* {
    margin: 0;
    padding: 0;
    /* outline: 2px solid red; */
}
.doc-comp{
    display: none;
}
.active-doc{
    display: table-cell;
}

/* font styles */
h1 {
    font-family: montserrat-sb;
    font-size: 36px;
    color: #1D3E8E;
    margin-bottom: 20px;
}

p {
    font-family: montserrat-rg;
    font-size: 18px;
    color: #222;

}



/* Main Styles */

header {
    width: 100%;
    padding: 20px 0;
    background: #1D3E8E;
    position: fixed;
    z-index: 2;
}

.header {
    max-width: max-content;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rdr_link {
    font-family: ubuntu-rg;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin: 0 20px;
}

.nav_socials {
    margin: 0 10px;
}

.logo {
    width: 200px;
}

.nav_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials {
    margin: 0 20px;
}

.nav_socials > svg {
    width: 30px;
    height: 30px;
}

.callme {
    padding: 10px 20px;
    outline: #fff 2px solid;
    border-radius: 6px;
    color: #fff;
    font-family: ubuntu-rg;
    text-decoration: none;
    font-size: 16px;
    transition: ease-in-out 0.3s;
}

.callme:hover {
    color: #1D3E8E;
    outline: none;
    background: #fff;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin: 0 20px;
}

.lang-btn {
    font-family: ubuntu-rg;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    outline: 2px solid white;
    padding: 8px 30px;
    border-radius: 6px;
    transition: 0.5s ease-in-out;
}
.lang-content{
    display: none;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
}
.lang-content >div {
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.lang-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: ubuntu-rg;
    font-size: 16px;

}

.lang-content a:hover {
    /* background-color: #ddd; */
    color: #1D3E8E;
}

.lang-dropdown:hover .lang-content {
    display: block;
}

.lang-dropdown:hover .lang-btn {
    background-color: #ffffff;
    color: #1D3E8E;
}



.burger{
    display: none;
}

.login {
    width: 100%;
    display: flex;
    height: 100vh;
}

.banner_photo {
    width: 50%;
    background-image: url(../img/man.png);
    background-position: center;
    background-size: cover;

}



.banner_form {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    box-sizing: border-box;
}

.banner_form form {
    width: 70%;
}

.banner_form input {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px 60px;
    box-sizing: border-box;
    border-radius: 10px;
    border: none;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    font-family: montserrat-rg;
    font-size: 18px;
    color: #222;
    transition: 0.2s ease-in-out;
    background-image: url(../img/tel.svg);
    background-position: 20px center;
    background-repeat: no-repeat;
}

#sms {
    background-image: url(../img/SMS.svg);
}

.banner_form input:focus,
.banner_form input:active {
    outline: 2px solid #1D3E8E;
    color: #1D3E8E;
    font-family: montserrat-sb;
}

.btn_submit {
    width: 100%;
    border: none;
    color: white;
    background: #1D3E8E;
    padding: 15px 0;
    border-radius: 10px;
    font-family: montserrat-sb;
    font-size: 20px;
    
}
.btn_back{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    color: #1D3E8E;
    outline: 2px solid #1D3E8E;
    padding: 13px 0;
    border-radius: 10px;
    font-family: montserrat-sb;
    font-size: 20px; 
    text-decoration: none;
}
.err_message{
    color: red;
    margin-bottom: 20px;
}

.rules {
    font-size: 14px;
    margin: 20px 0 30px 0;
}

.rules>a {
    color: #1D3E8E;
}

.login_lines {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.login_lines div {
    width: 28%;
    height: 2px;
    background: rgba(34, 34, 34, 0.4)
}

.login_lines p {
    color: rgba(34, 34, 34, 0.4)
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: montserrat-sb;
    font-size: 20px;
    width: 100%;
    height: 50px;
    outline: 2px solid #1D3E8E;
    border-radius: 10px;
    /* background-color: #1d3e8e; */
    color: #1D3E8E;

}

/***************************** Стили Регистарции ****************************************/
.reg {
    background: #f4f4f4;
}

.container {
    max-width: 1160px;
    width: 1160px;
    height: max-content;
    overflow: scroll;
    background: #fff;
    margin: auto;
    -ms-overflow-style: none;
    /* IE и Edge */
    scrollbar-width: none;
    /* Firefox */
    border-radius: 25px;
    padding: 40px 60px 60px 60px;
    box-sizing: border-box;

}

.container::-webkit-scrollbar {
    display: none;
}

.instruction {
    text-align: center!important;
}

.stages {
    width: 840px;
    margin: auto;
    margin-top: 30px;
}

.stages-circle {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.stage-line {
    width: 100%;
    height: 2px;
    background: rgba(36, 72, 109, 0.4);
    position: relative;
    top: -25px;
    z-index: 0;
}

.stage-message {
    margin-top: 10px;
    padding: 7px 20px;
    outline: 1px solid #A7B6C5;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}

.stage-message::before,
.stage-message::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #A7B6C5;
}

.stage-message::after {
    top: -19px;
    border-bottom: 10px solid white;
}

.stage {
    position: relative;
}

.stage:hover .stage-tooltip {
    display: block;
}

.stage-tooltip {
    display: none;
    position: absolute;
    top: 55px;
    left: 0px;
    width: max-content;
    padding: 7px 20px;
    background: white;
    border: 1px solid #A7B6C5;
    border-radius: 6px;
    z-index: 10;
    font-family: montserrat-rg;
    font-size: 16px;
    color: #222;
}

.stage-tooltip::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #A7B6C5;
}

.stage-tooltip::after {
    content: '';
    position: absolute;
    top: -19px;
    left: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid white;
}


.form-body>div {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

label {
    font-family: montserrat-MD;
    font-size: 18px;
    margin-left: 10px;
}

.form-inpt {
    width: 500px;
}

.reg-inpt {
    width: 100%;
    height: 50px;
    border: none;
    padding-left: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    font-family: montserrat-rg;
    font-size: 18px;
    color: #222;
    transition: 0.2s ease-in-out;
    margin-top: 10px;
}

.reg-inpt:focus,
.reg-inpt:active {
    outline: 2px solid #1D3E8E;
    color: #1D3E8E;
    font-family: montserrat-sb;
}

.submit_btn {
    background: #1D3E8E;
    border: none;
    color: white;
    padding: 13px 40px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: montserrat-sb;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
.submit_btn:hover{
    background: #336daa;
}

.resend_btn {
    background: white;
    border: none;
    color: #1D3E8E;
    border: 2px solid #1D3E8E;
    padding: 10px 40px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: montserrat-sb;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 25px;
    cursor: pointer;
}

.resend_btn:disabled {
    background: #f0f0f0;
    color: #52638b;
    border-color: #52638b;
    cursor: not-allowed;
}
#timer-span{
    color: #1D3E8E;
    font-family:montserrat-sb ;
}
.submit_btn2 {
    background: white;
    border: none;
    color: #1D3E8E;
    border: 2px solid #1D3E8E;
    padding: 10px 40px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: montserrat-sb;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 40px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
.submit_btn2:hover{
    color: #fff;
    background: #1D3E8E;
}
.hidden {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 27, 47, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.modal-content {
    width: 690px;
    padding: 40px 60px;
    box-sizing: border-box;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

input[type="number"] {
    width: 70px;
    height: 80px;
    line-height: 1;
    margin: 40px 10px;
    padding: 15px 10px;
    box-sizing: border-box;
    text-align: center;
    appearance: textfield;
    -webkit-appearance: textfield;
    border: none;
    border-radius: 6px;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    font-family: montserrat-sb;
    font-size: 36px;
    color: #222;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"]:active,
input[type="number"]:focus {
    outline: 2px solid #1D3E8E;
    color: #1D3E8E;
}

.stage-2 {
    display: flex;
    justify-content: center;
}

.stage-message-2 {
    margin-left: 240px;
}

/*  */
select {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: none;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    border-radius: 10px;
    margin-top: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/select.svg) no-repeat;
    background-position: right 20px top 50%;
    background-size: 20px;
    transition: 0.2s ease-in-out;
    font-family: montserrat-rg;
    color: #222;
    font-size: 18px;
}

select:focus,
select:active {
    outline: 2px solid #1D3E8E;
    color: #1D3E8E;
    font-family: montserrat-sb;
}



/*  */
.custom-file-input-wrapper {
    position: relative;
    margin-top: 10px;
}

.custom-file-input-wrapper input[type="file"] {
    width: 100%;
    height: 50px;
    border: none;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    opacity: 0;
}

#file-label {
    margin-left: 0;
}

.custom-file-input-wrapper label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0 10px 10px;
    border: none;
    outline: 1px solid rgba(36, 72, 109, 0.40);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-file-input-wrapper label::after {
    content: 'Загрузить';
    padding: 14px 20px;
    background-color: #1D3E8E;
    color: #fff;
    border-radius: 0 8px 8px 0;
    margin-left: -300px;
    font-family: montserrat-md;
    font-size: 18px;
}

.stage-3 {
    display: flex;
    justify-content: end;
}

.stage-message-3 {
    margin-top: 10px;
    padding: 7px 20px;
    outline: 1px solid #A7B6C5;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}

.stage-message-3::before,
.stage-message-3::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #A7B6C5;
}

.stage-message-3::after {
    content: '';
    position: absolute;
    top: -19px;
    right: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid white;
}

.succes_photo {
    margin: 40px auto;
    display: flex;
}

.redirect_btn {
    text-align: center;
    margin: auto;
}
#error-message{
    margin-bottom: 40px;
}

.stage-4 {
    display: flex;
    justify-content: end;
}
.stage-message-4::before,.stage-message-4::after {
    left: 120px;
}
/*------------------------------- Страница выбора тарифов ------------------------------*/
.tariff {
    padding-top: 130px;
    margin-bottom: 100px;
}

.tariff-container {
    width: 80%;
    margin: auto;
}

.tariff-container>.stages {
    width: 100%;
    margin: 0;
    /* margin-top: 30px; */
}

.tariff-block>h1,
.tariff-block>p {
    text-align: center;
}

.tariff-type {
    width: max-content;
    outline: 2px solid #1D3E8E;
    padding: 4px;
    box-sizing: border-box;
    margin: auto;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.subscription-button {
    padding: 15px 30px;
    color: #1D3E8E;
    border: none;
    cursor: pointer;
    background: white;
    font-family: montserrat-md;
    font-size: 18px;
}

.sub-btn-active {
    background-color: #1D3E8E;
    color: white;
    border-radius: 8px;
    transition: 0.5s ease-in-out;
}

.subscription-block,
.comparison-block {
    display: none;
    justify-content: space-between;

}

.subscription-div {
    width: 31%;
    padding: 60px 30px 50px 30px;
    box-sizing: border-box;
    border: 1px solid #979797;
    height: 800px;
    position: relative;
    border-radius: 10px;
}

.sub_block_active {
    display: flex;
}

.comp_block_active {
    display: flex;
}

.subscription-div h1 {
    margin: 0;
}

.price {
    display: flex;
    margin-top: 20px;

}

.count {
    font-family: montserrat-sb;
    font-size: 96px;
    color: #1D3E8E;
}

.period {
    font-family: montserrat-rg;
    font-size: 20px;
    color: #1D3E8E;
    margin-top: 20px;
    margin-left: 10px;
}

.oportunities {
    margin-top: 40px;
}

.option {
    display: flex;
    margin-top: 20px;
}

.option>img {
    margin-right: 10px;
}

.opt_btns {
    position: absolute;
    bottom: 40px;
    /* Adjust according to padding */
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opt_btns>button {
    border: none;
    background: #1D3E8E;
    color: white;
    font-family: montserrat-sb;
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
}

.opt_btns>a {
    text-align: center;
    font-family: montserrat-md;
    font-size: 18px;
    text-decoration: none;
    color: #1D3E8E;
}

.popular-tariff {
    border: 2px solid #1D3E8E;
    padding-top: 0;

}

.popular-banner {
    margin: auto;
    width: max-content;
    padding: 6px 30px;
    background: #1D3E8E;
    border-radius: 0 0 100px 100px;
    margin-bottom: 25px;
}

.popular-banner>p {
    color: #fff;
    font-family: montserrat-rg;
    font-size: 14px;
}


.differences {
    margin-top: 130px;
}

.differences>h1 {
    text-align: center;
}

.tariff-diff {
    margin-top: 40px;
    outline: 1px solid #1D3E8E;
    border-radius: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    border-top: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.active-block {
    display: flex;
}

.pricing-header {
    width: 20%;
    text-align: center;
    margin-top: 40px;
}

.header1 p {
    font-size: 28px;
    font-family: montserrat-sb;
    text-align: left;
    margin: 20px 40px;
}

.header2 p {
    font-size: 28px;
    font-family: montserrat-sb;
    margin-bottom: 10px;
}

.pricing-header span {
    display: block;
    font-size: 18px;
    color: #222;
    font-family: montserrat-rg;
}

.pricing-button {
    border: none;
    background: #1D3E8E;
    color: white;
    font-family: montserrat-sb;
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 6px;
    margin-bottom: 30px;
    cursor: pointer;
}

.check-mark {
    color: #1D3E8E;
    font-size: 36px;
}

.header1,
.desc1 {
    width: 40%;
}

.desc1 {
    text-align: left !important;
    padding-left: 40px !important;
    font-family: montserrat-sb;
    font-size: 18px;
}

.decs2 {
    color: #1D3E8E;
    font-family: montserrat-md;
    font-size: 18px;
}

.check-mark {
    width: 20%;
}

.callme_block {
    width: 80%;
    margin: auto;
    display: flex;
    margin-top: 120px;
    justify-content: space-between;
    align-items: center;

}

.callme_decs {
    margin-left: 100px;
}

.callme_decs p {
    margin-bottom: 20px;

}

.callme_decs a {
    font-family: montserrat-sb;
    color: #1D3E8E;
    text-decoration: none;
}




.faq_block {
    margin: 120px auto;
    width: 80%;
}

.faq_block h1 {
    text-align: center;
}

.accordion-item1 {
    border-top: 1px solid #A6A6A6;
}

.accordion .accordion-item {
    border-bottom: 1px solid #A6A6A6;
}

/* .accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #03b5d2;
} */

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #222;
    font-size: 18px;
    border: none;
    background: none;
    outline: none;
    font-family: montserrat-sb;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #1D3E8E;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #1D3E8E;
    border: 1px solid #1D3E8E;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 12px;
    height: 12px;
    transform: translateY(-100%);
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion button[aria-expanded="true"] .icon::before {
    transform: rotate(-135deg);
}

.accordion button[aria-expanded=true] {
    color: #1D3E8E;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 18px;
    margin: 20px 0;
}

.start {
    width: 40%;
    margin: auto;
    text-align: center;
}

.start p {

    margin-bottom: 30px;
}

.start a {
    text-decoration: none;
    padding: 10px 100px;
}

/*********************************   Страница доп услуг ***************************************/
.extra-services {
    width: 100%;
    height: 100vh;
    display: flex;
}

.services-container {
    width: 50%;
    height: 100vh; /* Make sure it takes the full height of the viewport */
    /* overflow-y: auto;  */
    padding: 120px 100px 100px 100px;
    box-sizing: border-box;
}

.banner_photo2 {
    width: 50%;
    position: fixed; /* Fix the position */
    right: 0; /* Align it to the right */
    height: 100vh; /* Make sure it takes the full height of the viewport */
    background-image: url(../img/services.png);
    background-position: center;
    background-size: cover;
}

.services-container::-webkit-scrollbar {
    display: none;
}
.services-container .stages{
    width: 100%;
}
.services-container .stage-message-2 {
    margin-left: 0;
    margin-right: 114px;
}
.services-container h1 {
    margin-top: 60px;
    text-align: left;
}
.services-container >p{
    text-align: center;
}


.tariff-options {
    margin-top: 40px;
    margin-bottom: 60px;
}

.tariff-options>p {
    font-size: 28px;
    font-family: montserrat-sb;
    color: #222;
}

.ServiceModal {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    color: #1D3E8E;
    font-size: 18px;
    font-family: montserrat-rg;
    margin-top: 10px;
    cursor: pointer;
}

.ServiceModal>img {
    margin-left: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 27, 47, 0.5);

}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 40px;
    width: 690px;

}

.modal-content h1 {
    margin: 0;
    margin-bottom: 5px;
    text-align: left;
}

.modal-content p {
    text-align: left;
}

.close {
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    bottom: 20px;
    left: 10px;
}

.close:hover,
.close:focus {
    color: #1D3E8E;
    text-decoration: none;
    cursor: pointer;
}


.service-block {
    margin: 30px 0;
}

input[type="radio"] {
    display: none;
}

label.option {
    display: block;
    outline: 1px solid rgba(36, 72, 109, 0.4);
    border-radius: 8px;
    padding: 20px 30px;
    cursor: pointer;
    transition: border-color 0.3s;
    margin: 0;
    transition: 0.5s ease-in-out;
}

label.option:hover {
    outline: 1px solid #1D3E8E;
}

input[type="radio"]:checked+label.option, .service-block  input[type="checkbox"]:checked+label.option {
    border-color: #1D3E8E;
    outline: 2px solid #1D3E8E;
    transition: 0.5s ease-in-out;
}
.service-block  input[type="checkbox"] {
    display: none;
}

.content{
     display: flex;
     align-items: center;
     justify-content: space-between;
}
.content >div{
    width: 65%;
}
.opt_title{
    font-size: 18px;
    font-family: montserrat-sb;
}
.content>div > div {
    display: flex;
    margin: 10px 0;
}

.content>div p {
    margin-left: 10px;
}

.content .price{
    margin: 0;
    font-size: 28px;
    font-family: montserrat-sb;
}
.navigation{
    padding-bottom: 100px;
}

.price-card{
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    background: #ffffff;
    position: fixed;
    z-index: 2;
    bottom: 0;
    border-top: 2px solid rgba(29, 63, 142, 0.4);
    display: flex;
    justify-content: space-between;
    
}

.price-card> div{
display: flex;
align-items: center;
}

.price-card> div p {
    margin-right: 40px;
    font-family: montserrat-sb;
    font-size: 28px;
}

#total-sum{
    color: #1D3E8E;
}
.one-time{
    padding-bottom: 150px;
    
}
.modal-mobile h1 {
margin-top: 0!important;
}

.price-mobile{
    display: none;
}
.price-card> div> .submit_btn2{
    display: none;
}
/*********************************   Страница корзины ***************************************/
.card-page .stage-3{
    justify-content: center;
}
.card-page .stage-message-3{
    margin-left: 50px;
}
.card-page .stage-message-3::before{

   left: auto;
  
}

.card-page .stage-message-3::after {

    left: auto;
  
}

.checkout-block{
    outline: 1px solid rgba(36, 72, 109, 0.4);
   padding: 20px 30px;
   margin: 30px 0;
   border-radius: 10px;
   display: flex;
   justify-content: space-between;
   /* align-items: center; */
   position: relative;
}

.checkout-block >div:nth-of-type(1){
    width: 65%;
}
.checkout-block >div:nth-of-type(2) >p{
    font-size: 28px;
    font-family: montserrat-sb;
    margin: 0;
}
.checkout-block >div:nth-of-type(1) >div{
margin: 10px 0 ;
display: flex;
}

.checkout-block >div:nth-of-type(1) >div>img{
    margin-right: 10px;
   
    }
    
.dlt_btn{
    position: absolute;
    bottom: 20px; 
    right: 30px; 
}

.remove-btn{
    border: none;
    background: none;
    color: #646464;
    font-size: 18px;
    font-family: montserrat-rg;
    transition: 0.5s ease-in-out;
    display: flex;
    align-items: center;
   
}
.det-img{
  margin-right: 8px;
  width: 12px;
  height: 14px;
  fill: #646464; 
  transition: fill 0.5s; 
}
.remove-btn:hover{
    color: red; 
}
.remove-btn:hover .det-img {
    fill: red; /* Цвет иконки при наведении */
  }

.no-item{
    font-size: 18px!important;
    font-family: montserrat-rg!important;
    color: #1D3E8E!important;
    margin-top: 20px;
    margin-bottom: 30px;
}
.choose-service{
    text-decoration: none;
    font-size: 18px;
    font-family: montserrat-rg;
    color: #1D3E8E;
    padding: 8px 30px;
    box-sizing: border-box;
    border-radius: 8px;
    outline: 1px solid #1D3E8E;
    transition: 0.5s ease-in-out;
}

.choose-service:hover{
    color: #fff;
    background: #1D3E8E;
   
}

.total-price{
    margin: 40px 0;
    padding: 20px 10px;
    border-top: rgba(29, 63, 142, 0.4) 1px solid;
    border-bottom: rgba(29, 63, 142, 0.4) 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price h1{
    margin: 0;
}

.checkout-block.expanded {
    max-height: 1000px; /* Adjust based on content */
}

.checkout-block .tariff-details {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.3s ease-out, padding 0.3s ease-out; */
    padding: 0;
}

.checkout-block.expanded .tariff-details {
    max-height: 500px; /* Adjust based on content */
    padding-top: 10px;
    display: block;
}

.toggle-text {
    color: #646464;
    cursor: pointer;
    font-size: 16px;
    width: max-content;
}

.toggle-text.hide {
    display: none;
}

.checkout-block.expanded .toggle-text.show {
    display: none;
}

.checkout-block.expanded .toggle-text.hide {
    display: inline;
}
.tariff-details >p{
    margin-bottom: 10px;
}
.checkout h1{
    text-align: center;
}
.checkout .stage-message-3 {
    margin-left: 25px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++ СТРАНИЦА ОПЛАТЫ +++++++++++++++++++++++++++++++++++++++++++++++ */

.card-page .stage-4{
    display: flex;
    justify-content: end;
}

.payment-block{
    outline: 1px solid rgba(36, 72, 109, 0.4);
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 10px;
    /* display: flex;
    justify-content: space-between; */
    position: relative;
}
.payment-block.expanded {
    max-height: 1000px; /* Adjust based on content */
}

.payment-block .payment-details {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.3s ease-out, padding 0.3s ease-out; */
    padding: 0;
}

.payment-block.expanded .payment-details {
    max-height: 500px; /* Adjust based on content */
  padding: 30px 0;
}
.payment-block.expanded .toggle-text.show {
    display: none;
}

.payment-block.expanded .toggle-text.hide {
    display: inline;
}

.payment-title{
    color: #222;
    font-size: 26px;
    font-family: montserrat-sb;
    margin-bottom: 10px;
}
.payment-desc{
    font-size: 16px;
    font-family: montserrat-rg;
    color: #646464;
    margin-bottom: 10px;
}

.payment-details{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.payment-details label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-details span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 3px;
    box-sizing: border-box;
    outline: 1px solid rgba(36, 72, 109, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

.payment-details span > span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    outline: none;
    background: #1D3E8E;
    visibility: hidden; /* Hide by default */
}

.payment-details input[type="radio"]:checked + label span > span {
    visibility: visible; /* Show when radio is checked */
}

/* ++++++++++++++++++++++++++++++++++++++++++++++ СТРАНИЦА DDOX +++++++++++++++++++++++++++++++++++++++++++++++ */
.ddox-container{
    background-image: url(../img/Oval1.svg);
    /* background-position: center;
    background-size: cover; */
    background-repeat: no-repeat;
}
.ddox-container> img{
    display: block;
 margin: 40px auto;
 
}

.ddox-container> a{
    margin: auto;
    display: block;
    width: max-content;
 
}
.ddox-container >p>a{
    font-family: montserrat-sb;
    color: #1D3E8E;
}

/* Footer  */


footer {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 75px;
    background-color: #1d3e8e;
}

.footer {
    width: 1200px;
    margin: auto;
}


