/*order-section*/
.order-section{}
.order-section .order-section__wrap{}
.order-section .order-section__step{}
.order-section .order-section__step.active{}
.order-section .order-section__navi {
  counter-reset: section-counter;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}
.order-section .order-section__navi:before {
  content:"";
  position: absolute;
  top: 45px;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: #bda98a;
}
.order-section .order-section__navi-item {
  counter-increment: section-counter;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.order-section .order-section__navi-item-number{
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #f8f8f8;
    color: #434345;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-section .order-section__navi-item.active .order-section__navi-item-number,
.order-section .order-section__navi-item:hover .order-section__navi-item-number{
    background: linear-gradient(to right, #197149 0%, #2b5944 100%);
    color: #fff;
}
.order-section .order-section__navi-item .order-section__navi-item-number::before {
  content: counter(section-counter);
}
.order-section .order-section__navi-item .order-section__navi-item-name{
    font-size: 12px;
}
@media screen and (max-width: 500px){
    .order-section .order-section__navi-item .order-section__navi-item-name{
        display: none;
    }
    .order-section .order-section__navi-item.active .order-section__navi-item-name{
        display: block;
    }
} 
.order-section .order-section__content{
    display: none;
    border-radius: 14px;
    background-color: #f8f8f8;
    overflow: hidden;
}
.order-section .order-section__content.active{
    display: block;
}
.order-section .order-section__header{
    background-color: #444342;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    padding: 20px 20px;
}
@media screen and (max-width: 500px){
    .order-section .order-section__header{
        text-align: center;
        font-size: 20px;
        padding: 10px;
    }
} 
.order-section .order-section__sub-header{
    background-color: #f4f3ee;
    color: #127749;
    font-size: 24px;
    font-weight: 500;
    margin: 0 -20px 20px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
@media screen and (max-width: 500px){
    .order-section .order-section__sub-header{
        text-align: center;
        font-size: 18px;
        padding: 10px;
    }
} 
.order-section .order-section__sub-header .header-name{
    text-align: left;
}
@media screen and (max-width: 500px){
    .order-section .order-section__sub-header .header-name{
        text-align: center
    }
} 
.order-section .order-section__sub-header .header-price{
    font-size: 22px;
    color: #394b4e;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media screen and (max-width: 500px){
    .order-section .order-section__sub-header .header-price{
        font-size: 13px;
    }
} 
.order-section .order-section__sub-header .header-price__amount{
    white-space: nowrap;
}
.order-section .order-section__sub-header .header-price__payment-type{
    font-size: 55%;
}
.order-section .order-section__body{
    padding: 20px;
}
.order-section .order-section__body > .order-section__sub-header:first-of-type{
    margin-top: -20px;
}
.order-section .order-section__body p{}
.order-section .order-section__body .order-section__packages-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 750px;
    margin: 0 auto 20px;
    gap: 20px;
}
.order-section .order-section__body .order-section__package{
    display: block;
    aspect-ratio: 1/1;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(33% - 12px);
    cursor: pointer;
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 500px){
    .order-section .order-section__body .order-section__package{
        width: calc(50% - 12px);
    }
} 
.order-section .order-section__body .order-section__package.active,
.order-section .order-section__body .order-section__package:hover{
    background-color: #f3efe5;
}
.order-section .order-section__body .order-section__package__icon{
    max-width: 55px;
    margin-bottom: 10px;
}
.order-section .order-section__body .order-section__package__icon img{
    display: block;
    width: 100$;
}
.order-section .order-section__body .order-section__package__name{}
.order-section .order-section__body .btns-wrap{
    margin-top: 50px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.order-section .form-group{
    margin-bottom: 20px;
}
.order-section .form-group .form-control{}
.order-section .styled-select{
    position: relative;
    border: 1px solid #c2c9ce;
    background-color: #ffffff;
    border-top-right-radius: 15px;
    max-width: 600px;
}
.order-section .styled-select::after{
    content: "";
    border-width: 0 3px 3px 0;
    border-style: solid;
    display: inline-block;
    padding: 5px;
    position: absolute;
    top: 21px;
    border-color: #45656a;
    transform: rotate(45deg);
    right: 15px;
}
.order-section .styled-select select{
    width: 100%;
    padding: 15px 15px;
    padding-right: 35px;
    font-size: 20px;
    background-color: transparent;
    border: 0;
    border-radius: 8px;
    color: #127749;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: none;
    height: 58px;
}
@media screen and (max-width: 500px){
    .order-section .styled-select select{
        font-size: 12px;
    }
} 
.order-section .styled-select select::invalid {
    color: #999;
}
.order-section .styled-select select option{}

.order-section .open-details-section{
    position: relative;
    border: 1px solid #c2c9ce;
    background-color: #ffffff;
    border-top-right-radius: 15px;
    padding: 15px 15px;
    padding-right: 55px;
    font-size: 20px;
    color: #127749;
    display: inline-block;
    margin-bottom: 20px;
}
.order-section .open-details-section.open{
    display: none;
}
.order-section .open-details-section::after{
    content: "";
    border-width: 0 3px 3px 0;
    border-style: solid;
    display: inline-block;
    padding: 5px;
    position: absolute;
    top: 19px;
    border-color: #45656a;
    transform: rotate(45deg);
    right: 15px;
}
.order-section .open-details-section.open::after{
    transform: rotate(225deg);
    top: 24px;
}

.order-section .styled-range-select {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 20px;
    padding-top: 20px;
    padding-bottom: 50px;
}
.order-section .styled-range-select .values {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 3px 0 9px;
}
.order-section .styled-range-select .value {/* transform: translateX(-50%); */}
.order-section .styled-range-select .value:nth-child(1) {left: 0%;}
.order-section .styled-range-select .value:nth-child(2) {left: 25%;}
.order-section .styled-range-select .value:nth-child(3) {left: 50%;}
.order-section .styled-range-select .value:nth-child(4) {left: 75%;}
.order-section .styled-range-select .value:nth-child(5) {left: 100%;}
.order-section .styled-range-select .swipeable-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right,  #a3c6c4 0%,#6aba96 100%);
    border-radius: 5px;
    outline: none;
    position: relative;
}
.order-section .styled-range-select .swipeable-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
/*    transform: translateX(-50%);*/
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
}
.order-section .styled-range-select .popup {
    position: absolute;
    top: 50px;
    transform: translateX(-50%);
    background-color: #f3efe5;
    color: #434345;
    max-width: 150px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    transition: left 0.2s ease;
    text-align: center;
}

.order-section .wrap-special {
    border-radius: 10px;
    background-color: #ebebeb;
    padding: 20px;
    margin-bottom: 20px;
}
.order-section .wrap-transactions {}
.order-section .wrap-transactions .transactions-title{
    font-size: 24px;
    color: #127749;
    margin-bottom: 20px;
}
@media screen and (max-width: 500px){
    .order-section .wrap-transactions .transactions-title{
        font-size: 12px;
    }
} 
.order-section .wrap-transactions .transactions-desc-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 500px){
    .order-section .wrap-transactions .transactions-desc-wrap{
        flex-direction: column;
    }   
} 
.order-section .wrap-transactions .transactions-desc,
.order-section .wrap-transactions .transactions-selector{
    width: calc(50% - 10px);
}
@media screen and (max-width: 500px){
    .order-section .wrap-transactions .transactions-desc,
    .order-section .wrap-transactions .transactions-selector{
        width: 100%;
    }   
} 
.order-section .wrap-transactions .transactions-selector{
    border-radius: 15px;
}
.order-section .wrap-transactions .transactions-selector select{
    font-size: 13px;
    padding: 15px 15px;
    padding-right: 35px;
    height: 50px;
}
.order-section .wrap-transactions .transactions-selector:after{
    top: 16px;
}

/*custom radio buttons*/
.order-section .custom-radio-group,
.order-section .custom-checkbox-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.order-section .custom-radio,
.order-section .custom-checkbox{
    display: block;
    cursor: pointer;
}
.order-section .custom-radio input[type="radio"],
.order-section .custom-checkbox input[type="checkbox"]{
    display: none;
}
.order-section .radio-content,
.order-section .checkbox-content{
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition: background 0.3s, border-color 0.3s;
}
.order-section .radio-circle,
.order-section .checkbox-circle{
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
}
.order-section .radio-text,
.order-section .checkbox-text{}
.order-section .radio-text .highlighted,
.order-section .checkbox-text .highlighted{
    font-size: 90%;
    color: #7c1010 !important;
    font-style: italic;
}
/* Active state */
.order-section .custom-radio input[type="radio"]:checked + .radio-content,
.order-section .custom-checkbox input[type="checkbox"]:checked + .checkbox-content{
    background-color: #fff;
    border-color: #c2c9ce;
}
/* Fill the circle when active */
.order-section .custom-radio input[type="radio"]:checked + .radio-content .radio-circle,
.order-section .custom-checkbox input[type="checkbox"]:checked + .checkbox-content .checkbox-circle{
    background-color: #147749;
    border-color: #147749;
}

.order-section .summary-table{
    border-radius: 10px !important;
}
.order-section .summary-table tbody{color: #394b4e;}
.order-section .summary-table tr{}
.order-section .summary-table td{
    background-color: #e6e5e5 !important;
    padding: 20px !important;
}
@media screen and (max-width: 500px){
    .order-section .summary-table td{
        padding: 10px !important;
    }
} 
.order-section .summary-table td:first-child{border-right: 5px solid #fff;}
.order-section .summary-table td:last-child{
    text-align: right;
    border-left: 5px solid #fff;
    font-weight: 500;
}
.order-section .summary-table tfoot{}
.order-section .summary-table tfoot td{font-size: 120%;font-weight: 500;background-color: #444342 !important;color: #fff;border-top: 5px solid #fff;}

.order-section .table-responsive.services-table {
    padding: 20px 10px;
    border-radius: 14px;
    border: 1px solid #c3a77a;
}
.order-section .table-responsive.services-table table.lg-table{
    color: inherit;
    font-size: 15px;
    background-color: transparent;
}
.order-section .table-responsive.services-table table.lg-table tbody{}
.order-section .table-responsive.services-table table.lg-table tr{}
.order-section .table-responsive.services-table table.lg-table td{
    background-color: transparent !important;
    padding: 10px 10px;
    text-align: left;
}
.order-section .table-responsive.services-table table.lg-table tr+tr td{
    border-top: 1px solid #d1be9e;
}
.order-section .table-responsive.services-table table.lg-table td:last-child{
    padding-left: 40px;
    position: relative;
}
.order-section .table-responsive.services-table table.lg-table td:last-child:before{
    font-family: "Font Awesome 6 Pro";
    content: "\f058";
    font-weight: 600;
    position: absolute;
    left: 10px;
    transform: translateY(-50%);
    top: 50%;
    font-size: 130%;
    color: #78bb96;
}

.order-section .order-section__body .btns-wrap .btn{
    border: 0;
    font-size: 20px;
    padding: 20px;
    width: 45%;
    max-width: 300px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}
.order-section .order-section__body .btns-wrap .btn:hover{
    opacity: 0.8;
}
.order-section .order-section__body .btns-wrap .btn.btn-next{
    background: linear-gradient(to right, #197149 0%, #2b5944 100%);
    color: #fff;
}
.order-section .order-section__body .btns-wrap .btn.btn-prev{
    background-color: #f3efe5;
    color: #3a4a4e;
}




.order-section .order-section__step .order-section__step__link{
    display: none;
}
.order-section .order-section__step.active .order-section__step__link{
    display: block;
    cursor: pointer;
}
.order-section .order-section__step.active .order-section__step__link:hover{
    opacity:0.95;
}
.order-section .order-section__step .order-section__step__link img{
    display: block;
    width: 100%
}

.service-paket-price-block{
    background-color: #1b7149;
    background-image: url(/wp-content/uploads/2025/06/expert-talk-wrap-bg.jpg);
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 20px 0 0 30px;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}
@media screen and (max-width: 700px){
    .service-paket-price-block{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
} 
.service-paket-price-block > div{
    width: calc(50% - 10px);
}
@media screen and (max-width: 700px){
    .service-paket-price-block > div{
       width: 100%;
    }
} 
.service-paket-price-block .service-desc{
    padding-bottom: 20px;
}
@media screen and (max-width: 700px){
    .service-paket-price-block .service-desc{
       padding-bottom: 0;
       padding-right: 30px;
    }
}
.service-paket-price-block .service-desc .service-desc-title{
    position: relative;
    font-size: 22px;
    font-weight: 500;
}
@media screen and (max-width: 700px){
    .service-paket-price-block .service-desc .service-desc-title{
       font-size: 20px;
        margin-bottom:10px;
    }
}
.service-paket-price-block .service-desc .service-desc-title:before{
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 110%;
    content: "\f14a";
    color: #f2d9a2;
    margin-right: 10px;
}
.service-paket-price-block .service-desc .service-desc-sub-title{
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    color: #ffdd95;
    text-shadow: -1px -1px 5px #000;
    border-top: 0.5px solid #ffdd95;
}
@media screen and (max-width: 700px){
    .service-paket-price-block .service-desc .service-desc-sub-title{
       font-size: 20px;
       padding-top: 10px;
       text-shadow: no;
    }
} 
.service-paket-price-block .service-details{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: -15px;
}
.service-paket-price-block .service-details .service-details-link{
    background-color: #3f3f3f;
    padding: 10px 10px 10px 50px;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    color: #e5252a;
    font-size: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}
.service-paket-price-block .service-details .service-details-link:hover{
    background-color: #3f3f3f;
    color: #1b7149;
}
.service-paket-price-block .service-details .service-details-link .link-icon{
    font-size: 400%;
    margin-right: 15px;
}
.service-paket-price-block .service-details .service-details-link .link-text{
    font-weight: 500;
    color: #fff;
}
.service-paket-price-block .service-details .service-price{
    display: flex;
    gap: 10px;
    background: linear-gradient(to right,  #ffdd94 0%,#fff0c5 24%,#b1832d 50%,#ffdb7b 72%,#ffd86f 85%,#7a4e1f 100%);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 7% 100%);
    color: #0b3e27;
    font-size: 26px;
    padding: 3px 10px 3px 50px;
}
@media screen and (max-width: 700px){
    .service-paket-price-block .service-details .service-price{
       flex-direction: column;
       width: 100%;
       gap: 0;
       text-align: right;
    }
}
.service-paket-price-block .service-details .service-price .service-price-amount{
    white-space: nowrap;
    font-weight: 500;
}
.service-paket-price-block .service-details .service-price .service-price-desc{
    font-size: 50%;
    text-align: left;
}
@media screen and (max-width: 700px){
    .service-paket-price-block .service-details .service-price .service-price-desc{
       text-align: right;
    }
}


/*order-section end*/