.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    overflow: auto;

}
.modal.innermodal {
    position: relative;
    width: auto;
    height: auto;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}
.modal-wrap {
    width: 550px;
    top: 100px;
    left: calc(50% - 275px);
    position: absolute;
    background: #fff;
    padding: 80px 50px 60px;
}

.modal-wrap-success {
    width: 550px;
    top: 100px;
    left: calc(50% - 275px);
    position: absolute;
    background: #fff;
    display: none;
}
.modal-wrap-success .line1 {
    padding-top: 75px;
    background: #54BBAB;
    padding-bottom: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.modal-wrap-success .line1 img {
    display: inline-block;
    margin-bottom: 25px;
}
.modal-wrap-success .line2 {
    padding: 75px 0;
    text-align: center;
    
}
.modal-wrap-success .line2 p {
    margin: 0 0 40px;
    padding: 0;
    font-weight: 400;
    font-size: 18px;
    color: #000;
}

.modal-wrap-success .line2 .btn {
    text-decoration: none;
    height: 70px;
    line-height: 70px;
    background: #000000;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    width: 370px;
    font-size: 18px;
}
.modal.innermodal .modal-wrap {
    top: 0;
    left: 0;
    position: relative;
}
.modal-wrap .close {
    top: 30px;
    right: 40px;
    position: absolute;
    cursor: pointer;
}
.modal-wrap .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}
.modal-wrap .tabs a {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    padding: 0 30px 5px;

}

.modal-wrap .tabs a.act {
    border-color: #000;
}
.modal-wrap .hint {
    font-weight: 400;
    font-size: 16px;
    color: #8D8993;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}
.modal-wrap .hint.left {
    text-align: left;
}
.modal-wrap .inp-row {
    margin-bottom: 24px;
    width: 100%;
}
.modal-wrap .inp-row .lbl {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 2;

}

.modal-wrap .inp-row .inptext {
    height: 52px;
    border: 1px solid #000;
    line-height: 52px;
    padding: 0 24px;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    border-radius: 4px;
    width: 100%;
}
.modal-wrap .inp-row.err .inptext {
    border-color: rgba(226, 38, 28, 1);
}
.modal-wrap .inp-row .hinterr {
    display: none;
}
.modal-wrap .inp-row.err .hinterr {
    display: block;
    
    font-weight: 400;
    font-size: 16px;
    color: #E2261C;
}
.modal-wrap .tab-content {
    display: none;
}
.modal-wrap .tab-content.act {
    display: block;
}
.modal-wrap .btn {
    height: 70px;
    line-height: 70px;
    width: 100%;
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    background: #000000;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.modal-wrap .btn.orange {
    background: #E66A25;
    color: #000;
}
.modal-wrap .btn.blue {
    background: #532CE5;
}
.modal-wrap .spaceb {
    margin-bottom: 25px;
}

.modal-wrap .spaceb a {
    text-decoration-line: underline;

    color: #574AF2;
    font-size: 16px;
    line-height: 20px;
}
.modal-wrap .checkbox {
    padding-left: 32px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    position: relative;
    cursor: pointer;
}
.modal-wrap .checkbox.small {
    font-size: 14px;
    margin-bottom: 20px;
}
.modal-wrap .checkbox:before {
    height: 21px;
    width: 21px;
    border-radius: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    content: " ";
    display: block;
}
.modal-wrap .checkbox.act:before {
    background: #000 url(../images/lk/check.svg) center center no-repeat;
}
.modal-wrap .hr {
    background: #000;
    height: 1px;
    width: 100%;
    margin-bottom: 30px;
}
.modal-wrap .passwords {
    gap: 18px;
}
.modal-wrap .spaceb .inp-row  {
    margin-bottom: 0;
}
