.container_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: auto;
}


.list-subs{
    width: 100%;
    margin-bottom: 40px;
}
.list-subs tr:first-child{
    background-color: #00528717;
    border-bottom: 1px solid #77cbe7;
    color: #323232;
}
.list-subs th{
    font-weight: bold;
}
.list-subs td{
    text-align:center;
}
.list-subs th, .list-subs td{
    padding: 20px;
}
.list-subs td.btn-check{
    display: flex;
    justify-content: center;
}
.step_form{
    width: 100%;
    min-height: 400px;
}
#step_loading{
    display: none;
    height: 200px;
    padding-top: 80px;
    text-align: center;
}
#step_loading svg {
    height: 100px;
    width: 100px;
}
#step_loading svg path{
    fill: #77cbe7;
}
.step_form__step{
    border: 1px solid #eee;
    border-radius: 4px;
    padding:10px;
    position: relative;
    padding-bottom: 70px;
    width: 100%;
    max-width: 
}
.step_form__step__container{
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.step_form__step__container h3{
    margin-top: 20px;
    margin-bottom: 20px;
}
.step_form__step h2{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.step_form__step h2+p{
    padding: 8px;
    height: 99px;
}
.step_form__step form{
    white-space: none;
}
.step_form__step form .col{
    display:inline-block;
    width: 98%;
    padding: 1%;
}
.step_form__step form .col select{
    width: 100%;
    padding: 0 10px;
}
.step_form__next-btns{
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
}
#step_1{
    display: block;
}
#step_2{
    min-height: 605px;
}
#step_2, #step_2_form, #step_3, #step_4{
    display: none;
}
.step_form__container-forms{
    display: flex;
}
.step_form__container-forms form{
    width: 50%;

}
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #77cbe7;
}

.container-radio:hover input ~ .checkmark {
    background-color: #ccc;
}

.container-radio input:checked ~ .checkmark {
    background-color: #77cbe7;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-radio input:checked ~ .checkmark:after {
    display: block;
}

.container-radio .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#imei-activation{
    display: flex;
    flex-direction: column;
    width: 100%;
}

#imei-activation-form{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
#imei{
    width: 100%;
    padding: 15px;
}
#btn_activate_device, .step_form__btn{
    border-color: #2e1a4e;
    border: none;
    border: 2px solid;
    background: rgba(255,255,255,0);
    cursor: pointer;
    padding: 9px 35px;
    color: #2e1a4e;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-size: var(--button_font_size, 14px);
    transition: all .2s;
    transition-property: background;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    display: flex;
    justify-content: center;
    min-width: 165px;
    border-radius: 2px 2px 2px 2px;
}
#btn_activate_device{
    border-color:#77cbe7;
    background-color:#77cbe7;
    color: white;
    margin-left: 10px;
}

#btn_activate_device:hover, .step_form__btn:hover{
    color: #ffffff;
    border-color: #ffffff;
    background: #123274;
}
#btn_activate_device:disabled, #btn_activate_device:disabled:hover,  .step_form__btn:disabled, .step_form__btn:disabled:hover {
    opacity: 0.3;
    color: #2e1a4e;
    border-color: #2e1a4e;
    background: rgba(255,255,255,0);
}

.imei-activation-form__info{
    margin-top: 20px;
}
.imei-activation-form__message{
    padding: 10px;
    border-radius: 3px;
}
.success{
    background-color: rgb(234 252 234);
}
.fail{
    background-color: rgb(248, 215, 213);
}

@media (max-width: 600px) {

    .container_form h1{
        padding-left:20px;
    }

    .container_form{
        margin-top: 20px;
        width: 100%;
    }

    .step_form__step__container{
        padding: 0px 10px;
    }

}