.modal-window {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    background: white;
    border-radius: 10px;
    max-width: 100%;
    padding: 30px;
    position: relative;
}
.modal-window .modal-close {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 20px;
}
.modal-window .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.modal-window .description {
    color: rgba(107, 115, 131, 1);
    font-size: 18px;
    margin-bottom: 30px;
}
.modal-window.addcontact .description{
    color: rgba(44, 44, 44, 1);
    font-size: 16px;
    font-weight: 400;
}
.modal-window .connection-variants {

}
.modal-window .connection-variants .item {
    margin-bottom: 15px;
    border: 1px solid rgba(234, 234, 234, 1);
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    padding: 13px 20px;
    display: flex;
    align-items: center;
}
.modal-window .connection-variants .item:hover {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
}
.modal-window .connection-variants .item img {
    margin-right: 30px;
}
.modal-window .connection-variants .item span {

}
.modal-window .modal_form{
    color: rgba(44, 44, 44, 1);
}
.modal-window .modal_form .row{
    margin-bottom: 15px;
    width: 100%;
}
.modal-window .modal_form .row label{
    display: block;
    margin-bottom: 5px;
}
.modal-window .modal_form .row input{
    width: 100%;
    background: rgba(249, 249, 250, 1);
    border-radius: 10px;
    height: 44px;
    border: none;
    outline: none;
    padding-left: 20px;
    box-sizing: border-box;
}
.modal-window .modal_form .row input:focus{
    border: 1px solid rgba(234, 234, 234, 1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
    background: white;
}
.modal-window .modal_form .row input:active{
    border: 1px solid rgba(234, 234, 234, 1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
    background: white;
}
.modal-window .modal_form .row select{
    width: 100%;
    background: rgba(249, 249, 250, 1);
    border-radius: 10px;
    height: 44px;
    border: none;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.modal-window .modal_form .row select:focus{
    border: 1px solid rgba(234, 234, 234, 1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
    background: white;
}
.modal-window .modal_form .row select:active{
    border: 1px solid rgba(234, 234, 234, 1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
    background: white;
}
.modal-window .buttons_row{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 40px;
}
.modal-window .buttons_row .reject {
    border: 1px solid rgba(234, 234, 234, 1);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    background: none;
    padding: 10px 20px;
    display: block;
    margin-left: auto;
}
.modal-window .buttons_row .reject:hover {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
}
.modal-window .buttons_row .save{
    margin-left: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    border: none;
    background: none;
    padding: 10px 20px;
    display: block;
    background: rgba(20, 94, 252, 1);
    color: white;
}
.modal-window .buttons_row .save.delete{
    background: rgba(231, 0, 11, 1);
}
.modal-window.payment{
    max-width: 100%;

}
.modal-window.payment .images_support{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.modal-window.payment .title_row{
    margin-bottom: 25px;
    text-align: center;
}
.modal-window.payment .title_row .title_title{
    font-weight: bold;
    font-size: 24px;    
    color: rgba(44, 44, 44, 1);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.modal-window.payment .title_row .title_desc{
    font-size: 12px;
}
.modal-window.payment .payments{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-window.payment .payments .item{
    margin-right: 17px;
    background: rgba(239, 246, 255, 1);
    border-radius: 20px;
    position: relative;
    color: rgba(44, 44, 44, 1);
    min-height: 240px;
    padding: 20px;
    width: 203px;
}
.modal-window.payment .payments .item.orange{
    background: rgba(255, 247, 237, 1);
    margin: 0 17px;
}
.modal-window.payment .payments .item.green{
    background: rgba(241, 254, 244, 1);
    margin-left: 17px;
    margin-right: 0px;
}
.modal-window.payment .payments .item .sale{
    background: rgba(253, 104, 12, 1);
    border-radius: 2px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    margin-left: -34px;
    padding: 5px;
}
.modal-window.payment .payments .item.green .sale{
    background: rgba(14, 186, 129, 1);
}
.modal-window.payment .payments .item .period{
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}
.modal-window.payment .payments .item .price{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}
.modal-window.payment .payments .item .discount{
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
    min-height: 15px;
    position: relative;
}
.modal-window.payment .payments .item.orange .discount::after, .modal-window.payment .payments .item.green .discount::after{
    content: "";
    border: 1px solid rgba(231, 0, 11, 1);
    width: 50px;
    position: absolute;
    top: 48%;
    left: 50%;
    margin-left: -25px;
}
.modal-window.payment .payments .item .sale_desc{
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
    min-height: 30px;
}
.modal-window.payment .payments .item .present_text{
    font-weight: 400;
    font-size: 11px;
    margin-bottom: 10px;
    text-align: left;
    min-height: 14px;
}
.modal-window.payment .payments .item .present_select_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.modal-window.payment .payments .item .present_select_row .present_title{
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
}
.modal-window.payment .payments .item .present_select_row label{
    display: inline-block;
    width: 20px;
    height: 10px;
    position: relative;
}
.modal-window.payment .payments .item .present_select_row label input{
    display: none;
}
.modal-window.payment .payments .item .present_select_row label .slider{
    position: absolute;
    inset: 0;
    background: #d9d9df;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}
.modal-window.payment .payments .item .present_select_row label .slider::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 1px;
    top: 1px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    transition: transform 0.25s ease;
}
.modal-window.payment .payments .item .present_select_row label input:checked + .slider::before {
    transform: translateX(10px);
}
.modal-window.payment .payments .item .present_select_row label input:checked + .slider {
    background: rgba(20, 94, 252, 1);
}
.modal-window.payment .payments .item.orange .present_select_row label input:checked + .slider {
    background: rgba(255, 136, 0, 1);
}
.modal-window.payment .payments .item.green .present_select_row label input:checked + .slider {
    background: rgba(14, 186, 129, 1);
}
.modal-window.payment .payments .item .button{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(20, 94, 252, 1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    height: 35px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    outline: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.modal-window.payment .payments .item.orange .button{
    background: rgba(255, 136, 0, 1);
}
.modal-window.payment .payments .item.green .button{
    background: rgba(14, 186, 129, 1);
}
.modal-window.payment .rules{
    color: rgba(20, 94, 252, 1);
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    margin-top: 35px;
}
.modal-window.payment .step{
    max-width: 360px;
    margin: auto;
}
.modal-window.payment .step:not(.step1){
    display: none;
}
.modal-window.payment .step .info{
    background: rgba(241, 254, 244, 1);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
}
.modal-window.payment .step .info .title{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.modal-window.payment .step .info .price{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.modal-window.payment .step .info .oldprice{
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}
.modal-window.payment .step .info .oldprice::after{
    content: "";
    border: 1px solid rgba(231, 0, 11, 1);
    width: 50px;
    position: absolute;
    top: 48%;
    left: 50%;
    margin-left: -25px;
}
.modal-window.payment .step .info .description{
    color: rgba(44, 44, 44, 1);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 25px;
}
.modal-window.payment .step .info input{
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px;
    color: rgba(183, 183, 193, 1);
    font-size: 14px;
    border: 1px solid rgba(183, 183, 193, 1);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.modal-window.payment .step .button{
    border-radius: 10px;
    background:rgba(20, 94, 252, 1);
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.modal-window.training .content .block:not(.block1){
    display: none;
}
.modal-window.training .content .block .title{
    color: rgba(20, 94, 252, 1);
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}
.modal-window.training .content .block .text{
    font-size: 14px;
    line-height: 20px;   
    text-align: center;     
    color: rgba(44, 44, 44, 1);
    margin-bottom: 10px;
}
.modal-window.training .content .block .text a{
    cursor: pointer;
    text-decoration: underline;
    color: rgba(20, 94, 252, 1);
}
.modal-window.training .buttons{
    text-align: center;    
}
.modal-window.training .buttons .continue{
    color: rgba(20, 94, 252, 1);
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 30px;
    cursor: pointer;
}
.modal-window.training .buttons .skip{
    color: rgba(107, 115, 131, 1);
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
}
.modal-window.training .buttons .finalize{
    color: rgba(20, 94, 252, 1);
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: none;
    margin-top: 30px;
}

.modal-window.support .modal_form .row label{
    font-weight: bold;
    display: flex;
    align-items: center;
}
.modal-window.support .modal_form .row label img{
    margin-right: 12px;
}
.modal-window.support .modal_form .row label span{
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}
.modal-window .modal_form .row textarea {
    width: 500px;
    background: rgba(249, 249, 250, 1);
    border-radius: 10px;
    height: 120px;
    border: none;
    outline: none;
    padding: 20px;
    box-sizing: border-box;
}
.modal-window .modal_form .row .file-upload {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    margin-top: 15px;
}
.modal-window .modal_form .row input[type="file"] {
    display: none;
}
.modal-window .modal_form .row .file-btn {
    width: 170px;
    height: 42px;
    border-radius: 10px;
    background: #EEF2FB;
    color: #2450E6;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.modal-window .modal_form .row .file-btn:hover {
    background: #e5ebfa;
}
.modal-window .modal_form .row .file-name {
    color: #4F4F4F;
    font-size: 14px;
    font-weight: 500;
}
.modal-window .modal_form .row .file-name .file-remove{
    color: rgba(231, 0, 11, 1);
}
.modal-window.support .ourmail{
    background: rgba(249, 250, 251, 1);
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 12px;
    color: rgba(106, 114, 130, 1);
}
.modal-window.support .ourmail a{
    color: rgba(20, 94, 252, 1);
    cursor: pointer;
}