.deactive__form {
    display: none
}

.circle-icon {
    background: #ffc0c0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 10px;
}

.wait_time{
  font-size: 30px;
}

.modal_pop {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal_pop-content {
  background-color: #fefefe;
  margin: 8% auto; /* 15% from the top and centered */
  padding: 0px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.step_div{
    background-color: #304767;
    height: 500px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 30px;
    box-sizing: border-box;
    color: white;
}
.vrt {
    margin-bottom: 42px;
    /* display: grid; */
}

/* CSS for steps icon line */
#icon1:after {
    content: '';
    position: absolute;
    right: 171px;
    border-right: 1px solid #fff;
    top: 25%;
    bottom: 66%;
}
#icon2:after {
    content: '';
    position: absolute;
    right: 171px;
    border-right: 1px solid #fff;
    top: 43.5%;
    bottom: 47.5%;
}
/*
--delete
#icon3:after {
    content: '';
    position: absolute;
    right: 171px;
    border-right: 1px solid #fff;
    top: 43.5%;
    bottom: 47.5%;
}
*/

/*
#icon3:after {
    content: '';
    position: absolute;
    right: 171px;
    border-right: 1px solid #fff;
    top: 61.9%;
    bottom: 29.2%;
}
*/

/* CSS for steps */
.circle-icon {
    background: #b3b3b3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 10px;
}
.step_active {
    background: #5dc300;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 10px;
}
@media screen and (max-width: 768px) {
    ul#progressbar {
        display: contents;
        padding: 0px;
    }
    .vrt{
        float: left;
        display: grid;
        margin-right: 45px;
    }
    .step_div{
        background-color: #304767;
        max-height: 170px !important;
        border-radius: 10px 10px 0 0;
        /* border-bottom-left-radius: 10px; 
        padding: 15px 25px;*/
        box-sizing: border-box;
        color: white;
    }
    #icon1:after {
        display:none;
    }
    #icon2:after {
        display:none;
    }
    #icon3:after {
        display:none;
    }
    #icon1:before {
        content: '';
        position: absolute;
        right: 73%;
        width: 43px;
        height: 0px;
        border: 1px solid #fff;
        background-color: #ccc;
        top: 58%;
    }
    #icon2:before {
        content: '';
        position: absolute;
        right: 52%;
        width: 45px;
        height: 0px;
        border: 1px solid #fff;
        background-color: #ccc;
        top: 58%;
    }
    #icon3:before {
        content: '';
        position: absolute;
        right: 31%;
        width: 47px;
        height: 0px;
        border: 1px solid #fff;
        background-color: #ccc;
        top: 58%;
    }
    
}