




.order-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.order-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.order-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.order-info-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
}

.order-info-item b {
    display: inline-block;
    min-width: 140px;
}

.address-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
}

.products-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.product-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.product-row:last-child {
    border-bottom: none;
}

.product-name {
    flex: 2;
    font-weight: 600;
}

.product-model,
.product-qty,
.product-price,
.product-total {
    flex: 1;
    text-align: center;
}

.total-box {
    margin-top: 20px;
    background: #28a745;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    text-align: right;
    font-size: 22px;
    font-weight: 700;
}

.mobile-label {
    display: none;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

@media (max-width: 768px) {

    .order-info-grid {
        display: block;
    }

    .order-info-item {
        margin-bottom: 15px;
    }

    .product-row {
        display: block;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 12px;
        margin-bottom: 15px;
        border: none;
    }

    .product-name,
    .product-model,
    .product-qty,
    .product-price,
    .product-total {
        text-align: left;
        margin-bottom: 10px;
    }

    .mobile-label {
        display: block;
    }

    .total-box {
        text-align: center;
        font-size: 20px;
    }

    .desktop-header {
        display: none;
    }
}

.account-orders-page{
    padding-bottom:40px;
}

.account-page-title{
    font-size:32px;
    font-weight:800;
    margin-bottom:30px;
    color:#111827;
}

.orders-wrapper{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.order-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(15,23,42,0.06);
}

.order-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #f1f5f9;
}

.order-id{
    font-size:24px;
    font-weight:800;
    color:#111827;
    margin-bottom:5px;
}

.order-date{
    color:#6b7280;
    font-size:14px;
}

.btn-order-view{
     height: 35px;
    padding: 0 12px !important;
    border: none !important;
    border-radius: 4px !important;
    background: #f97316 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}

.btn-order-view:hover{
    background:#ea580c !important;
}

.order-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.order-item{
    background:#f8fafc;
    border-radius:18px;
    padding:18px;
}

.order-label{
    font-size:13px;
    color:#6b7280;
    margin-bottom:10px;
    font-weight:600;
}

.order-value{
    font-size:16px;
    font-weight:700;
    color:#111827;
}

.order-price{
    font-size:24px;
    font-weight:900;
    color:#111827;
}

.order-statuses{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.status-paid,
.status-unpaid,
.status-inventory{
    padding:10px 14px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
}

.status-paid{
    background:#ecfdf5;
    color:#15803d;
}

.status-unpaid{
    background:#fff1f2;
    color:#dc2626;
}

.status-inventory{
    background:#eff6ff;
    color:#2563eb;
}

.personal-payment-card{
    margin-top:25px;
    background:#f8fafc;
    border-radius:24px;
    padding:24px;
    border:1px solid #e2e8f0;
}

.personal-payment-header{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
    margin-bottom:20px;
}

.pp-title{
    font-size:24px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.pp-desc{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
    max-width:520px;
}

.pp-badge{
    padding:12px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.pp-success{
    background:#dcfce7;
    color:#15803d;
}

.pp-warning{
    background:#fff7d6;
    color:#a16207;
}

.pp-alert{
    background: #fff1f2;
    color: #dc2626;
    border-radius: 14px;
    padding: 14px 9px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 17px;
    text-align: center;
}

.pp-price-box{
    margin-bottom:24px;
}

.pp-price-label{
    color:#6b7280;
    font-size:15px;
    margin-bottom:8px;
}

.pp-price{
    font-size:42px;
    font-weight:900;
    color:#111827;
}

button.btn.btn-default.club-archive-btn {
    color: #ffffff;
    background-color: #dc2626b8;
    border: 0px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 400;
    box-shadow: none;
    text-shadow: none;
}

@media only screen and (max-width: 1199px){
.pp-btn-pay{
    width:100%;
    height:56px;
    border:none !important;
    border-radius:18px !important;
    background:linear-gradient(135deg,#4f46e5,#2563eb) !important;
    color:#fff !important;
    font-size:17px;
    font-weight:800;
    display:flex !important;
    align-items:center;
    justify-content:center;
}
}


@media only screen and (min-width: 1200px){
.pp-btn-pay{
    width:30%;
    height:56px;
    border:none !important;
    border-radius:18px !important;
    background:linear-gradient(135deg,#4f46e5,#2563eb) !important;
    color:#fff !important;
    font-size:17px;
    font-weight:800;
    display:flex !important;
    align-items:center;
    justify-content:center;
}
}





.pp-btn-pay:hover{
    opacity:0.95;
}

.pp-wait{
    background:#fff;
    border:2px dashed #cbd5e1;
    border-radius:16px;
    padding:16px;
    color:#64748b;
    font-weight:700;
}

.pp-paid-text{
    background:#dcfce7;
    color:#15803d;
    border-radius:14px;
    padding:16px;
    font-weight:800;
}

.empty-orders{
    background:#fff;
    border-radius:24px;
    padding:60px 20px;
    text-align:center;
    border:1px solid #edf2f7;
}

.empty-icon{
    font-size:60px;
    margin-bottom:20px;
}

.empty-title{
    font-size:24px;
    font-weight:800;
}

.btn-continue{
    margin-top:25px;
    border-radius:14px !important;
    height:50px;
    padding:0 24px !important;
    font-weight:700;
}

@media(max-width:991px){

.order-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.account-page-title{
    font-size:26px;
}

.order-card{
    padding:18px;
    border-radius:20px;
}

.order-card-top{
    flex-direction:column;
    align-items:flex-start;
}

.btn-order-view{
    width:100%;
    justify-content:center;
}



.fitness-room-block ul {
    list-style-type: none;
    padding-left: 0;
}

.order-grid{
    grid-template-columns:1fr;
    gap:14px;
}

.order-item{
    padding:16px;
}

.order-price{
    font-size:30px;
}

.personal-payment-card{
    padding:18px;
    border-radius:20px;
}

.personal-payment-header{
    flex-direction:column;
}

.pp-title{
    font-size:19px;
}

.pp-price{
    font-size:34px;
}

.pp-badge{
    width:100%;
    text-align:center;
}

.pp-btn-pay{
    height:54px;
    font-size:16px;
}

.pull-right{
    width:100%;
}

.btn-continue{
    width:100%;
}

}


.order-card-top i.fa.fa-eye {
    color: #ffffff;
}

.order-card-top span {
    color: #ffffff;
}


#account-register .btn-primary {
    background: #000000 !important;
    color: white;
    margin-bottom: 20px;
}


#account-register .btn-primary:hover {
    background: #000000 !important;
    color: white !important;
}


.text-danger {
    font-size: 16px;
    color: red;
    font-weight: 600;
    margin-top: 3px;
}

form.form-horizontal input {
    color: #000000;
    font-size: 16px !important;
    font-weight: 600;
}

.fitness-register-hero{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    margin:20px 0 30px;
    border-radius:18px;
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
}

.fitness-register-hero__icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:16px;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.fitness-register-hero__title{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.fitness-register-hero__text{
    opacity:.9;
    line-height:1.7;
}

#account-register fieldset{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
}

#account-register legend{
    border:0;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

#account-register .form-group{
    margin-bottom:18px;
}

#account-register .form-control{
    height:54px;
    border-radius:12px;
    border:1px solid #dbe2ea;
}

#account-register .form-control:focus{
    border-color:#4f46e5;
    box-shadow:0 0 0 3px rgba(79,70,229,.12);
}

#account-register .btn-primary{
    height:54px;
    padding:0 35px;
    border-radius:12px;
    font-weight:700;
    font-size:16px;
}

@media(max-width:768px){

    .fitness-register-hero{
        flex-direction:column;
        text-align:center;
    }

    .fitness-register-hero__title{
        font-size:22px;
    }

}







.about-fitness-room{
    max-width:1000px;
    margin:40px auto;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    overflow:hidden;
}

.about-fitness-room__header{
    text-align:center;
    padding:40px 30px 25px;
    background:#f8fafc;
}

.about-fitness-room__label{
    display:inline-block;
    padding:8px 18px;
    background:#eef6ff;
    color:#2563eb;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.about-fitness-room__title{
    margin:0;
    font-size:38px;
    font-weight:700;
    color:#111827;
}

.about-fitness-room__content{
    padding:35px;
}

.about-fitness-room__content p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:20px;
}

.about-fitness-room__content p:last-child{
    margin-bottom:0;
}

.about-fitness-room__footer{
    text-align:center;
    padding:25px;
    background:#f8fafc;
    font-size:22px;
    font-weight:700;
    color:#111827;
    border-top:1px solid #e5e7eb;
}

@media(max-width:768px){

    .about-fitness-room{
        margin:20px 0;
        border-radius:15px;
    }

    .about-fitness-room__header{
        padding:30px 20px 20px;
    }

    .about-fitness-room__title{
        font-size:28px;
    }

    .about-fitness-room__content{
        padding:20px;
    }

    .about-fitness-room__content p{
        font-size:15px;
        line-height:1.8;
    }

    .about-fitness-room__footer{
        font-size:18px;
        padding:20px;
    }

}


.veteran-benefits{
    max-width:1000px;
    margin:40px auto;
}

.veteran-benefits__header{
    text-align:center;
    margin-bottom:40px;
}

.veteran-benefits__label{
    display:inline-block;
    padding:8px 16px;
    background:#eef6ff;
    color:#2563eb;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.veteran-benefits__title{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.veteran-benefits__text{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.veteran-benefits__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.veteran-benefits__card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    padding:25px;
}

.veteran-benefits__card h3{
    margin-top:0;
    margin-bottom:20px;
}

.veteran-benefits__card ul,
.veteran-benefits__card ol{
    margin:0;
    padding-left:20px;
}

.veteran-benefits__card li{
    margin-bottom:10px;
}

.veteran-benefits__info{
    margin-top:30px;
    text-align:center;
    background:#f8fafc;
    padding:30px;
    border-radius:15px;
}

.veteran-benefits__btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.veteran-benefits__btn:hover{
    color:#fff;
    opacity:.9;
}

@media(max-width:768px){

    .veteran-benefits__grid{
        grid-template-columns:1fr;
    }

    .veteran-benefits__title{
        font-size:28px;
    }

}



.veteran-guide{
    max-width:1000px;
    margin:40px auto;
}

.veteran-guide__header{
    text-align:center;
    margin-bottom:40px;
}

.veteran-guide__label{
    display:inline-block;
    background:#eef6ff;
    color:#2563eb;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.veteran-guide__title{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.veteran-guide__intro{
    max-width:800px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.veteran-guide__step{
    display:flex;
    gap:20px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    padding:25px;
    margin-bottom:20px;
}

.veteran-guide__number{
    min-width:60px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.veteran-guide__content h3{
    margin:0 0 10px;
    font-size:22px;
}

.veteran-guide__content p{
    margin:0;
    color:#555;
    line-height:1.7;
}

.veteran-guide__info{
    margin-top:40px;
    background:#f8fafc;
    border-radius:15px;
    padding:30px;
}

.veteran-guide__info h3{
    margin-top:0;
    margin-bottom:20px;
}

.veteran-guide__info ul{
    margin:0;
    padding-left:20px;
}

.veteran-guide__info li{
    margin-bottom:10px;
}

@media(max-width:768px){

    .veteran-guide__title{
        font-size:28px;
    }

    .veteran-guide__step{
        flex-direction:column;
        text-align:center;
    }

    .veteran-guide__number{
        margin:0 auto;
    }

}


#faqAccordion {
    margin-top: 20px;
}

#faqAccordion .panel {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: none;
}

#faqAccordion .panel-heading {
    background: #f8fafc;
    padding: 0;
    border: 0;
}

#faqAccordion .panel-title {
    margin: 0;
}

#faqAccordion .panel-title a {
    display: block;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: 0.2s;
}

#faqAccordion .panel-title a:hover {
    background: #f1f5f9;
}

#faqAccordion .panel-body {
    padding: 20px;
    background: #fff;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

#faqAccordion ul {
    margin: 10px 0;
    padding-left: 20px;
}

#faqAccordion li {
    margin-bottom: 8px;
}

#faqAccordion b,
#faqAccordion strong {
    color: #111827;
}

#faqAccordion .panel-collapse.in {
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {

    #faqAccordion .panel-title a {
        font-size: 15px;
        padding: 15px;
    }

    #faqAccordion .panel-body {
        padding: 15px;
        font-size: 14px;
    }

}
.payment-method {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment-method p {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.payment-method ul {
    margin: 0;
    padding-left: 20px;
}

.payment-method li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #374151;
    font-size: 15px;
}

.payment-method li:last-child {
    margin-bottom: 0;
}

.payment-method b {
    color: #111827;
}

.payment-method .attention {
    margin-top: 15px;
    padding: 12px 15px;
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    font-size: 14px;
}

input.btn.btn-primary.login-btn {
   background-color: #000000 !important;
}

input.btn.btn-primary.login-btn:hover {
    color: #ffffff !important;
	    background-color: #4B4072 !important;
}

input#input-email {
    color: #000000;
    font-weight: 600;
}

#column-right .sidebar{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border:1px solid #eaeaea;
}

#column-right .nav-tabs{
    border:none;
    margin:0;
}

#column-right .nav-tabs > li{
    float:none;
    margin:0;
    border-bottom:1px solid #f1f1f1;
}

#column-right .nav-tabs > li:last-child{
    border-bottom:none;
}

#column-right .nav-tabs > li > a{
    display:block;
    border:none;
    border-radius:0;
    padding:14px 18px;
    font-size:15px;
    font-weight:500;
    color:#333;
    background:#fff;
    transition:all .25s ease;
}

#column-right .nav-tabs > li > a:hover{
    background:#f7f9fc;
    color:#0d6efd;
    padding-left:24px;
}

#column-right .nav-tabs > li > a:before{
    content:"›";
    color:#0d6efd;
    font-size:18px;
    margin-right:10px;
    font-weight:700;
}

#column-right .sidebar:before{
    content:"Інформація";
    display:block;
    background:#0d6efd;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:16px 20px;
}

.club-auth-wrap{
    display:flex;
    gap:30px;
    margin:40px 0;
}

.club-auth-card{
    flex:1;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.club-auth-icon{
    font-size:42px;
    margin-bottom:15px;
}

.club-auth-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.club-auth-text{
    font-size:16px;
    color:#666;
    margin-bottom:25px;
}

.club-auth-btn{
    display:block;
    padding:15px;
    border-radius:8px;
    color:#fff !important;
    font-size:18px;
    font-weight:700;
    text-decoration:none !important;
}

.login-btn{
    background:#0d6efd;
}

.register-btn{
    background:#28a745;
}

.login-btn:hover{
    background:#0b5ed7;
}

.register-btn:hover{
    background:#218838;
}

@media(max-width:768px){
    .club-auth-wrap{
        flex-direction:column;
    }
}


.login-card{
    background:#fff;
    border:1px solid #eaeaea;
    border-radius:20px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.login-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.login-desc{
    text-align:center;
    color:#777;
    font-size:16px;
    margin-bottom:35px;
}

.login-input{
    height:68px !important;
    font-size:22px !important;
    border-radius:12px !important;
    padding-left:20px !important;
}

.login-card label{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

.login-btn{
    width:100%;
    height:68px;
    border-radius:12px;
    font-size:22px;
    font-weight:700;
	line-height: 32px;
}

.forgot-box{
    margin-top:12px;
}


.som p {
    font-size: 19px;
    font-weight: 600;
}


.forgot-box a{
    font-size:15px;
}

@media (max-width:768px){

    .login-card{
        padding:25px;
    }

    .login-title{
        font-size:28px;
    }

    .login-input{
        height:60px !important;
        font-size:18px !important;
    }

    .login-btn{
        height:60px;
        font-size:18px;
    }

}

.login-card {
    margin-bottom: 50px;
}






.sr-invite-box{
    display:flex;
    align-items:center;
    gap:40px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    margin:40px 0;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.sr-invite-image{
    width:45%;
}

.sr-invite-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.sr-invite-content{
    width:55%;
    padding:40px;
}

.sr-invite-label{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.sr-invite-content h2{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.sr-invite-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

.sr-invite-content ul{
    margin:0 0 25px;
    padding-left:20px;
}

.sr-invite-content ul li{
    margin-bottom:10px;
    font-size:16px;
}

.sr-invite-address{
    background:#f8f8f8;
    padding:18px;
    border-radius:12px;
    margin-bottom:25px;
    font-size:16px;
    font-weight:600;
}

.sr-open-warning{
    background:#fff3cd;
    border-left:5px solid #ff9800;
    padding:20px;
    border-radius:10px;
    margin-bottom:25px;
}

.sr-open-warning-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    color:#000;
}

.sr-open-warning-text{
    font-size:15px;
    line-height:1.7;
    color:#333;
}

.sr-invite-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.sr-invite-btn:hover{
    background:#000;
    color:#fff;
}

@media(max-width:991px){

    .sr-invite-box{
        flex-direction:column;
        gap:0;
    }

    .sr-invite-image,
    .sr-invite-content{
        width:100%;
    }

    .sr-invite-image img{
        height:300px;
    }

    .sr-invite-content{
        padding:25px;
    }

    .sr-invite-content h2{
        font-size:28px;
    }

}



.sr-invite-box{
    display:flex;
    align-items:center;
    gap:40px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    margin:40px 0;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.sr-invite-image {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.sr-invite-image img {
    margin-right: 5px;
}

.sr-invite-image img{
    height:500px;
    object-fit:cover;
    display:block;
}

.sr-invite-content{
    width:55%;
    padding:40px;
}

.sr-invite-label{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.sr-invite-content h2{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.sr-invite-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

.sr-invite-content ul{
    margin:0 0 25px;
    padding-left:20px;
}

.sr-invite-content ul li{
    margin-bottom:10px;
    font-size:16px;
}

.sr-invite-address{
    background:#f8f8f8;
    padding:18px;
    border-radius:12px;
    margin-bottom:25px;
    font-size:16px;
    font-weight:600;
}

.sr-invite-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.sr-invite-btn:hover{
    background:#000;
    color:#fff;
}

@media(max-width:991px){

    .sr-invite-box{
        flex-direction:column;
        gap:0;
    }

    .sr-invite-image,
    .sr-invite-content{
        width:100%;
    }

    .sr-invite-image img{
        height:300px;
    }

    .sr-invite-content{
        padding:25px;
    }

    .sr-invite-content h2{
        font-size:28px;
    }

}
.checkout-password-tooltip{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: #f5f7fb;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #2b2b2b;
}

.tabs__header__scroll.dragscroll.hs-1 {
    display: none;
}

.checkout-password-tooltip .tooltip-icon{
    min-width: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2f6fed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.checkout-password-tooltip .tooltip-text{
    width: 100%;
}

@media (max-width: 767px){

    .checkout-password-tooltip{
        font-size: 12px;
        padding: 10px;
        border-radius: 10px;
    }

    .checkout-password-tooltip .tooltip-icon{
        min-width: 20px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

}









/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.about-club-box{
    max-width:1200px;
    margin:60px auto;
    padding:50px;
    background:#fff;
    border-radius:32px;
    box-shadow:0 15px 45px rgba(0,0,0,0.06);
}

.about-club-label{
    display:inline-block;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.about-club-title{
    font-size:54px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:35px;
}

.about-club-text p{
    font-size:20px;
    line-height:2;
    color:#555;
    margin-bottom:28px;
}

.about-club-footer{
    margin-top:40px;
    padding-top:35px;
    border-top:1px solid #ececec;
    font-size:28px;
    font-weight:800;
    color:#16a34a;
}

@media(max-width:991px){

    .about-club-box{
        padding:25px;
        margin:30px 15px;
    }

    .about-club-title{
        font-size:36px;
    }

    .about-club-text p{
        font-size:17px;
        line-height:1.9;
    }

    .about-club-footer{
        font-size:22px;
    }

}


/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.sr-veteran-plus{
    margin-top:60px;
}

.sr-veteran-plus__header{
    text-align:center;
    margin-bottom:45px;
}

.sr-veteran-plus__label{
    display:inline-block;
    padding:10px 18px;
    background:#16a34a;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.sr-veteran-plus__title{
    font-size:46px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.sr-veteran-plus__text{
    max-width:900px;
    margin:0 auto;
    font-size:20px;
    line-height:1.9;
    color:#666;
}

.sr-veteran-plus__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.sr-veteran-plus__card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #ececec;
}

.sr-veteran-plus__card-full{
    grid-column:1/3;
}

.sr-veteran-plus__card-title{
    font-size:32px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.sr-veteran-plus__card-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.sr-veteran-plus__list{
    margin:22px 0;
    padding-left:22px;
}

.sr-veteran-plus__list li{
    margin-bottom:14px;
}

.sr-veteran-plus__address{
    margin:22px 0;
    background:#f3f4f6;
    padding:18px;
    border-radius:14px;
    font-weight:700;
    color:#222;
}

.sr-veteran-plus__note{
    margin-top:25px;
    padding:18px;
    background:#eff6ff;
    border-left:4px solid #2563eb;
    border-radius:12px;
    color:#1e3a8a;
    font-weight:700;
    line-height:1.8;
}

.sr-veteran-plus__btn{
    display:inline-block;
    margin-top:25px;
    padding:16px 24px;
    background:#16a34a;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.sr-veteran-plus__btn:hover{
    background:#15803d;
    color:#fff;
    text-decoration:none;
}

@media(max-width:991px){

    .sr-veteran-plus__grid{
        grid-template-columns:1fr;
    }

    .sr-veteran-plus__card-full{
        grid-column:auto;
    }

    .sr-veteran-plus__title{
        font-size:34px;
    }

    .sr-veteran-plus__text{
        font-size:17px;
    }

    .sr-veteran-plus__card{
        padding:25px;
    }

    .sr-veteran-plus__card-title{
        font-size:26px;
    }

}


/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.sr-veteran-plus{
    margin-top:70px;
    margin-bottom:40px;
}

.sr-veteran-plus__header{
    text-align:center;
    margin-bottom:50px;
}

.sr-veteran-plus__label{
    display:inline-block;
    padding:10px 20px;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(34,197,94,0.25);
}

.sr-veteran-plus__title{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.sr-veteran-plus__text{
    max-width:920px;
    margin:0 auto;
    font-size:20px;
    line-height:1.9;
    color:#666;
}

.sr-veteran-plus__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.sr-veteran-plus__card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:38px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
    border:1px solid #ececec;
    overflow:hidden;
    transition:0.35s;
}

.sr-veteran-plus__card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

.sr-veteran-plus__card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#16a34a,#2563eb);
}

.sr-veteran-plus__card-full{
    grid-column:1/3;
}

.sr-veteran-plus__icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:24px;
}

.sr-veteran-plus__card-title{
    font-size:32px;
    font-weight:800;
    color:#111;
    margin-bottom:22px;
    line-height:1.3;
}

.sr-veteran-plus__card-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.sr-veteran-plus__list{
    margin:24px 0;
    padding-left:24px;
}

.sr-veteran-plus__list li{
    margin-bottom:14px;
}

.sr-veteran-plus__address{
    margin:24px 0;
    background:#f8fafc;
    padding:18px 20px;
    border-radius:16px;
    font-weight:700;
    color:#222;
    border:1px solid #e5e7eb;
}

.sr-veteran-plus__note{
    margin-top:25px;
    padding:18px 20px;
    background:#eff6ff;
    border-left:4px solid #2563eb;
    border-radius:14px;
    color:#1e3a8a;
    font-weight:700;
    line-height:1.8;
}

.sr-veteran-plus__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:28px;
    padding:18px 28px;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    box-shadow:0 10px 24px rgba(34,197,94,0.25);
}

.sr-veteran-plus__btn:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,#15803d,#16a34a);
    color:#fff;
    text-decoration:none;
}

@media(max-width:991px){

    .sr-veteran-plus__grid{
        grid-template-columns:1fr;
    }

    .sr-veteran-plus__card-full{
        grid-column:auto;
    }

    .sr-veteran-plus__title{
        font-size:34px;
    }

    .sr-veteran-plus__text{
        font-size:17px;
    }

    .sr-veteran-plus__card{
        padding:28px;
    }

    .sr-veteran-plus__card-title{
        font-size:26px;
    }

    .sr-veteran-plus__icon{
        width:58px;
        height:58px;
        font-size:28px;
    }

}


/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.sr-program-list{
    margin:20px 0;
    padding-left:20px;
}

.sr-program-list li{
    margin-bottom:14px;
    line-height:1.8;
    color:#444;
}

.sr-program-address{
    background:#f3f4f6;
    padding:16px 18px;
    border-radius:12px;
    margin:20px 0;
    font-weight:600;
    line-height:1.7;
    color:#222;
}

.sr-program-note{
    margin-top:20px;
    padding:16px 18px;
    background:#eff6ff;
    border-left:4px solid #2563eb;
    border-radius:10px;
    line-height:1.8;
    color:#1e3a8a;
    font-weight:600;
}

.sr-program-btn{
    display:inline-block;
    margin-top:25px;
    padding:16px 24px;
    background:#16a34a;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.sr-program-btn:hover{
    background:#15803d;
    color:#fff;
    text-decoration:none;
}




/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.sr-trip-page{
    padding:60px 0;
}

.sr-trip-container{
    max-width:1250px;
    margin:0 auto;
    padding:0 20px;
}

.sr-trip-top{
    background:#fff;
    border-radius:30px;
    padding:50px;
    margin-bottom:40px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.sr-trip-label{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.sr-trip-title{
    font-size:62px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.sr-trip-subtitle{
    font-size:22px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
    max-width:900px;
}

.sr-trip-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.sr-trip-stat{
    background:#f8fafc;
    border-radius:20px;
    padding:25px;
}

.sr-trip-stat strong{
    display:block;
    font-size:15px;
    margin-bottom:10px;
    color:#111;
}

.sr-trip-stat span{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
}

.sr-trip-section{
    background:#fff;
    border-radius:30px;
    padding:45px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.sr-trip-section h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:30px;
    color:#111;
}

.sr-trip-section p{
    font-size:20px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

.sr-trip-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:35px;
}

.sr-trip-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.sr-trip-card-title{
    font-size:26px;
    font-weight:800;
    margin-bottom:18px;
    color:#111;
}

.sr-trip-card-text{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.sr-trip-steps{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.sr-trip-step{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#f8fafc;
    padding:25px;
    border-radius:22px;
}

.sr-step-number{
    width:60px;
    min-width:60px;
    height:60px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:800;
}

.sr-step-content{
    font-size:19px;
    line-height:1.8;
    color:#444;
}

.sr-days-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.sr-day-card{
    background:#f8fafc;
    border-radius:24px;
    padding:35px;
}

.sr-day-title{
    font-size:34px;
    font-weight:800;
    margin-bottom:18px;
    color:#111;
}

.sr-day-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.sr-items-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.sr-item{
    background:#f8fafc;
    padding:22px;
    border-radius:18px;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.sr-trip-bottom{
    margin-top:40px;
}

.sr-trip-price-box{
    background:linear-gradient(135deg,#166534,#16a34a);
    border-radius:30px;
    padding:50px;
    text-align:center;
    color:#fff;
}

.sr-price-title{
    font-size:26px;
    margin-bottom:15px;
}

.sr-price-value{
    font-size:62px;
    font-weight:800;
    margin-bottom:20px;
}

.sr-price-desc{
    font-size:20px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto;
}

@media(max-width:991px){

    .sr-trip-title{
        font-size:38px;
    }

    .sr-trip-subtitle{
        font-size:18px;
    }

    .sr-trip-stats,
    .sr-trip-cards,
    .sr-days-grid,
    .sr-items-grid{
        grid-template-columns:1fr;
    }

    .sr-trip-top,
    .sr-trip-section,
    .sr-trip-price-box{
        padding:25px;
    }

    .sr-trip-section h2{
        font-size:30px;
    }

    .sr-trip-section p,
    .sr-step-content,
    .sr-day-text{
        font-size:17px;
    }

    .sr-price-value{
        font-size:42px;
    }

}
/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.tours-grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.tours-grid-2 .tour-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

@media(max-width:991px){

    .tours-grid-2{
        grid-template-columns:1fr;
    }

    .tours-grid-2 .tour-img img{
        height:240px;
    }

}



/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ
*/

.sr-veteran-tours{
    margin:60px 0;
}

.sr-veteran-header{
    text-align:center;
    margin-bottom:40px;
}

.sr-veteran-header h2{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin:0 0 15px;
    line-height:1.1;
}

.sr-veteran-subtitle{
    max-width:900px;
    margin:0 auto;
    font-size:20px;
    color:#666;
    line-height:1.7;
}

.sr-veteran-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.sr-tour-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.sr-tour-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 45px rgba(0,0,0,0.14);
}

.sr-tour-image{
    position:relative;
    display:block;
    overflow:hidden;
}

.sr-tour-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.sr-tour-card:hover .sr-tour-image img{
    transform:scale(1.04);
}

.sr-tour-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;
    background:linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

.sr-tour-badges{
    position:absolute;
    top:20px;
    left:20px;
    display:flex;
    gap:10px;
    z-index:2;
}

.sr-tour-badges span{
    background:#2563eb;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:9px 14px;
    border-radius:30px;
}

.sr-tour-content{
    padding:30px;
}

.sr-tour-title{
    font-size:34px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
    line-height:1.2;
}

.sr-tour-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:30px;
}

.sr-meta-item{
    background:#f7f7f7;
    padding:14px 16px;
    border-radius:10px;
    font-size:16px;
    color:#444;
    font-weight:600;
}

.sr-tour-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:25px;
    border-top:1px solid #ececec;
}

.sr-tour-guide{
    font-size:16px;
    font-weight:700;
    color:#333;
}

.sr-tour-price{
    background:#16a34a;
    color:#fff;
    font-size:20px;
    font-weight:800;
    padding:14px 22px;
    border-radius:12px;
    white-space:nowrap;
}

@media(max-width:1200px){

    .sr-tour-title{
        font-size:28px;
    }

}

@media(max-width:991px){

    .sr-veteran-grid{
        grid-template-columns:1fr;
    }

    .sr-veteran-header h2{
        font-size:36px;
    }

    .sr-tour-image img{
        height:280px;
    }

    .sr-tour-content{
        padding:20px;
    }

    .sr-tour-title{
        font-size:24px;
    }

    .sr-tour-meta{
        grid-template-columns:1fr;
    }

    .sr-tour-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .sr-tour-price{
        width:100%;
        text-align:center;
    }

}









.martial-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: stretch;
}

.martial-item {
    aspect-ratio: 1/1;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.martial-img {
    width: 100%;
    height: 100%;
}

.martial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.martial-wrap {
    margin: 60px 0;
}

.martial-header {
    text-align: center;
    margin-bottom: 30px;
}

.martial-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.martial-sub {
    color: #777;
    font-size: 14px;
}

.martial-item:hover {
    transform: translateY(-5px);
}







/* Р°РґР°РїС‚РёРІ */
@media (max-width: 992px) {
    .martial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* FILE:
catalog/view/theme/YOUR_THEME/stylesheet/stylesheet.css

ВСТАВИТЬ В САМЫЙ НИЗ ФАЙЛА
*/

.sr-boxing-schedule{
    background:#fff;
    border:1px solid #e5e5e5;
    padding:40px;
    margin:30px 0;
    border-radius:8px;
}

.sr-boxing-header{
    text-align:center;
    margin-bottom:35px;
}

.sr-boxing-subtitle{
    display:inline-block;
    background:#111827;
    color:#fff;
    padding:8px 18px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    border-radius:4px;
    margin-bottom:15px;
}

.sr-boxing-header h1{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin:0 0 15px;
}

.sr-boxing-desc{
    max-width:850px;
    margin:0 auto;
    color:#555;
    font-size:18px;
    line-height:1.7;
}

.sr-boxing-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
    margin-bottom:40px;
}

.sr-boxing-card{
    background:#f8f8f8;
    border:1px solid #e9e9e9;
    padding:25px;
    border-radius:6px;
}

.sr-boxing-card-title{
    font-size:15px;
    font-weight:700;
    color:#777;
    margin-bottom:10px;
    text-transform:uppercase;
}

.sr-boxing-card-text{
    font-size:22px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.sr-boxing-table-wrap{
    overflow-x:auto;
}

.sr-boxing-table{
    width:100%;
    border-collapse:collapse;
}

.sr-boxing-table thead tr{
    background:#111827;
}

.sr-boxing-table thead th{
    color:#fff;
    padding:18px;
    font-size:15px;
    text-transform:uppercase;
    font-weight:700;
    text-align:left;
}

.sr-boxing-table tbody td{
    padding:18px;
    border-bottom:1px solid #ececec;
    font-size:16px;
    color:#333;
}

.sr-boxing-table tbody tr:hover{
    background:#f8f8f8;
}

.sr-boxing-note{
    margin-top:30px;
    background:#f3f7ff;
    border-left:4px solid #2457d6;
    padding:20px;
    font-size:16px;
    color:#333;
    line-height:1.6;
}

@media(max-width:991px){

    .sr-boxing-info{
        grid-template-columns:1fr;
    }

    .sr-boxing-header h1{
        font-size:30px;
    }

    .sr-boxing-schedule{
        padding:20px;
    }

    .sr-boxing-card-text{
        font-size:18px;
    }

}



#cart tr.d_n_ns:nth-child(1),
#cart tr.d_n_ns:nth-child(2),
#cart tr.d_n_ns:nth-child(3){
    display:none !important;
}


a.btn.btn-shopping {
     display:none !important;
}


table.table.table_total.table-cart tr:nth-child(1){
    display:none !important;
}

.veteran-group-title {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}

.veteran-group-title.litls {
    font-size: 13px;
}

.payment-method img {
    position: relative;
    right: -6px;
}

.h-100.w-100.mb-30.opc_block_comment .checkout-heading {
    padding-left: 23px;
}

@media (max-width: 768px) {

    #top-fixed-mobile {
        overflow: visible !important;
    }

    #top-fixed-mobile .box-flex-fix,
    #top-fixed-mobile .box-fm-r,
    #top-fixed-mobile .cart_fix_mob,
    #top-fixed-mobile #cart {
        position: static !important;
        overflow: visible !important;
    }

    #top-fixed-mobile .cart_fix_mob #cart .dropdown-menu {
        display: none;
        position: fixed !important;

        top: 55px !important;
        left: 10px !important;
        right: 10px !important;

        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;

        max-height: 80vh !important;
        overflow-y: auto !important;

        background: #fff !important;

        z-index: 999999 !important;

        border-radius: 12px !important;
        padding: 15px !important;

        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }

    #top-fixed-mobile #cart.open .dropdown-menu {
        display: block !important;
    }
a.btn.btn-shopping {
    display: none;
}
}

/*
.box-flex-fix svg path {
    fill: #000000 !important;
}
*/

/* ИНФО */
#top-fixed-mobile .btn-menu-info svg path{
    fill:#000 !important;
}

/* ПОИСК */
#top-fixed-mobile .search_fix_mob svg path{
    fill:#000 !important;
}

/* СРАВНЕНИЕ */
#top-fixed-mobile .compare-h-fix svg path{
    fill:#000 !important;
}

/* ЗАКЛАДКИ */
#top-fixed-mobile .wishlist-h-fix svg path{
    fill:#000 !important;
}

/* КОРЗИНА */
#top-fixed-mobile .cart_fix_mob svg path{
    fill:#000 !important;
}




.shipping-top-info{
    background:#111;
    color:#fff;
    padding:10px 45px 10px 15px;
    position:relative;
    text-align:center;
    border-radius:6px;
    margin:8px 0;
    font-size:14px;
    font-weight:600;
}

.shipping-close{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:18px;
    opacity:0.8;
}

.shipping-close:hover{
    opacity:1;
}

@media(max-width:768px){

.shipping-top-info{
    font-size:12px;
    padding:10px 35px 10px 10px;
}

.shipping-close{
    right:10px;
    font-size:16px;
}

}




@media (max-width: 768px) {

    /* скрываем 1,2,3 строку только во втором LI */
    #top-fixed-mobile #cart .dropdown-menu > li:nth-child(2) table.table tr:nth-child(1),
    #top-fixed-mobile #cart .dropdown-menu > li:nth-child(2) table.table tr:nth-child(2),
    #top-fixed-mobile #cart .dropdown-menu > li:nth-child(2) table.table tr:nth-child(3) {
        display: none !important;
    }
ul.dropdown-menu.pull-right li tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: nowrap;
}
}



@media only screen and (max-width: 1199px){

.phones-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.phones-icons .additional-tel:first-child {
    position: relative;
    top: 3px;
}
.mob-m-i.wishlist-h-fix {
    position: relative !important;
}
.mob-m-i.compare-h-fix {
    position: relative !important;
}

}

@media only screen and (max-width: 991px){


#search .input-lg {
    background: #000000!important;
}



#top-fixed-mobile .btn.btn-menu-mobile, .btn-menu {
   background: #009c44 !important;
}


#top-fixed-mobile .btn.btn-menu-mobile, .btn-menu .box-flex-fix svg path {
    fill: #ffffff !important;
}



#top-fixed-mobile .btn.btn-menu-info {
    background: none!important;
}

}


.sr-program-box{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:35px;
    box-shadow:0 6px 25px rgba(0,0,0,0.05);
    margin:40px 0;
}

.sr-program-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#1f5fd7;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.sr-program-title{
    font-size:42px;
    line-height:52px;
    font-weight:700;
    color:#111111;
    margin-bottom:25px;
}

.sr-program-text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:30px;
}

.sr-program-highlight{
    background:#1f5fd7;
    color:#ffffff;
    padding:18px 24px;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    margin-bottom:30px;
}

.sr-program-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
@media only screen and (max-width: 1199px){
.sr-program-item{
    background:#f8fafc;
    border-radius:18px;
    padding:0;
    border:1px solid #ececec;
}
}

@media (max-width: 768px) {

    #featured-category-slider .owl-item {
        padding: 0 4px !important;
    }

    #featured-category-slider .box-fcat {
        margin: 0 !important;
    }

}
@media only screen and (min-width: 1200px){
.sr-program-item{
    background:#f8fafc;
    border-radius:18px;
    padding:11px;
    border:1px solid #ececec;
}
}


.sr-program-item-title{
    font-size:22px;
    line-height:32px;
    font-weight:700;
    color:#111111;
    margin-bottom:14px;
}

.sr-program-item-text{
    font-size:16px;
    line-height:29px;
    color:#666666;
}

@media(max-width:991px){

    .sr-program-box{
        padding:25px;
    }

    .sr-program-title{
        font-size:32px;
        line-height:42px;
    }

    .sr-program-features{
        grid-template-columns:1fr;
    }

}

.sr-program-item{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    border:1px solid #ececec;
}

.sr-program-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    text-decoration:none;
}

.sr-program-image{
    position:relative;
    overflow:hidden;
}

.sr-program-image img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:0.4s;
}

.sr-program-item:hover .sr-program-image img{
    transform:scale(1.05);
}

.sr-program-content{
       padding: 13px 5px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.sr-program-title{
    font-size:19px;
    font-weight:700;
    color:#111111;
    margin-bottom:10px;
    line-height:1.3;
}

.sr-program-desc{
    font-size:16px;
    color:#666666;
    line-height:24px;
    margin-bottom:10px;
    flex-grow:1;
}

.sr-program-price{
    font-size:28px;
    font-weight:700;
    color:#ff6b00;
}

@media(max-width:991px){

    .sr-home-programs{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

}

@media(max-width:575px){

    .sr-home-programs{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .sr-program-content{
        padding:14px;
    }

    .sr-program-title{
        font-size:17px;
    }

    .sr-program-desc{
        font-size:12px;
        line-height:20px;
        margin-bottom:12px;
    }

    .sr-program-price{
        font-size:22px;
    }

}


/* ПК - 6 кубиков */
.sr-home-programs{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
    margin:40px 0;
}

/* Планшет */
@media(max-width:1200px){

    .sr-home-programs{
        grid-template-columns:repeat(4,1fr);
    }

}

/* Планшет маленький */
@media(max-width:991px){

    .sr-home-programs{
        grid-template-columns:repeat(3,1fr);
    }

}

/* Мобильный - 2 кубика */
@media(max-width:575px){

    .sr-home-programs{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

}


.sr-mini-seo{
    margin: 30px 0;
    padding: 22px 28px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #ececec;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.sr-mini-seo p{
    margin: 0;
    font-size: 16px;
    line-height: 29px;
    color: #555555;
}

.sr-home-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin:20px 0 35px;
    color:#111111;
    line-height:1.3;
}

@media(max-width:768px){

    .sr-home-title{
        font-size:28px;
        margin:15px 0 25px;
    }

}

.sr-about-seo{
    display:flex;
    gap:40px;
    align-items:center;
    padding:50px 0;
}

.sr-about-seo__left{
    flex:1;
}

.sr-about-seo__right{
    width:360px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.sr-about-seo__label{
    display:inline-block;
    padding:8px 16px;
    background:#eef5ff;
    color:#2154cf;
    font-size:14px;
    font-weight:700;
    border-radius:40px;
    margin-bottom:20px;
}

.sr-about-seo__title{
    font-size:42px;
    line-height:52px;
    color:#111111;
    font-weight:700;
    margin-bottom:25px;
}

.sr-about-seo__text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:22px;
}

.sr-about-seo__card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.sr-about-seo__card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.sr-about-seo__card-title{
    font-size:22px;
    font-weight:700;
    color:#111111;
    margin-bottom:12px;
}

.sr-about-seo__card-text{
    font-size:15px;
    line-height:27px;
    color:#666666;
}

@media(max-width:991px){

    .sr-about-seo{
        flex-direction:column;
        padding:35px 0;
    }

    .sr-about-seo__right{
        width:100%;
    }

    .sr-about-seo__title{
        font-size:30px;
        line-height:40px;
    }

    .sr-about-seo__text{
        font-size:16px;
        line-height:29px;
    }

}




.sr-veteran{
    padding:50px 0;
}

.sr-veteran__top{
    max-width:900px;
    margin:0 auto 40px;
    text-align:center;
}

.sr-veteran__label{
    display:inline-block;
    padding:8px 18px;
    background:#eef7ff;
    color:#2160d2;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.sr-veteran__title{
    font-size:46px;
    line-height:56px;
    font-weight:700;
    color:#111111;
    margin-bottom:25px;
}

.sr-veteran__text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:20px;
}

.sr-veteran__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:35px;
}

.sr-veteran__card{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    border:1px solid #ececec;
    box-shadow:0 6px 25px rgba(0,0,0,0.05);
}

.sr-veteran__card-title{
    font-size:24px;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.sr-veteran__list,
.sr-veteran__steps{
    margin:0;
    padding-left:20px;
}

.sr-veteran__list li,
.sr-veteran__steps li{
    margin-bottom:12px;
    font-size:16px;
    line-height:28px;
    color:#555555;
}

.sr-veteran__small{
    margin-top:20px;
    font-size:14px;
    line-height:25px;
    color:#777777;
}

.sr-veteran__info{
    background:#f7f9fc;
    border-radius:20px;
    padding:35px;
    border:1px solid #ececec;
}

.sr-veteran__info-title{
    font-size:30px;
    line-height:40px;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.sr-veteran__info-text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:18px;
}

@media(max-width:991px){

    .sr-veteran{
        padding:35px 0;
    }

    .sr-veteran__grid{
        grid-template-columns:1fr;
    }

    .sr-veteran__title{
        font-size:32px;
        line-height:42px;
    }

    .sr-veteran__card,
    .sr-veteran__info{
        padding:25px;
    }

}


.sr-veteran-page{
    padding:50px 0;
}

.sr-veteran-page__hero{
    text-align:center;
    max-width:920px;
    margin:0 auto 45px;
}

.sr-veteran-page__label{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#1e5ed7;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.sr-veteran-page__title{
    font-size:48px;
    line-height:58px;
    font-weight:700;
    color:#111111;
    margin-bottom:25px;
}

.sr-veteran-page__text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:20px;
}

.sr-veteran-page__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:35px;
}

.sr-veteran-page__card{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    border:1px solid #ececec;
    box-shadow:0 6px 25px rgba(0,0,0,0.05);
}

.sr-veteran-page__card-title{
    font-size:24px;
    line-height:34px;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.sr-veteran-page__list,
.sr-veteran-page__steps{
    margin:0;
    padding-left:20px;
}

.sr-veteran-page__list li,
.sr-veteran-page__steps li{
    font-size:16px;
    line-height:29px;
    color:#555555;
    margin-bottom:12px;
}

.sr-veteran-page__note{
    margin-top:20px;
    padding:14px 18px;
    background:#f7f9fc;
    border-radius:12px;
    font-size:14px;
    line-height:24px;
    color:#666666;
}

.sr-veteran-page__info{
    background:#f8fafc;
    border:1px solid #ececec;
    border-radius:24px;
    padding:40px;
}

.sr-veteran-page__info-title{
    font-size:34px;
    line-height:44px;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.sr-veteran-page__info-text{
    font-size:17px;
    line-height:31px;
    color:#555555;
    margin-bottom:18px;
}

@media(max-width:991px){

    .sr-veteran-page{
        padding:35px 0;
    }

    .sr-veteran-page__grid{
        grid-template-columns:1fr;
    }

    .sr-veteran-page__title{
        font-size:34px;
        line-height:44px;
    }

    .sr-veteran-page__card,
    .sr-veteran-page__info{
        padding:25px;
    }

}


.sr-program-box{
    background:#ffffff;
    border:1px solid #e5e5e5;
    padding:30px;
    margin-bottom:30px;
    border-radius:10px;
    font-family:Arial,sans-serif;
}

.sr-program-top{
    margin-bottom:30px;
}

.sr-program-top h1{
    font-size:34px;
    font-weight:700;
    color:#111111;
    margin-bottom:15px;
}

.sr-program-subtitle{
    font-size:18px;
    line-height:28px;
    color:#555555;
}

.sr-program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.sr-program-card{
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:10px;
    padding:25px;
    transition:0.3s;
}

.sr-program-card:hover{
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.sr-program-card h2{
    font-size:22px;
    color:#ff6b00;
    margin-bottom:15px;
    font-weight:700;
}

.sr-program-card p{
    font-size:16px;
    line-height:26px;
    color:#444444;
    margin-bottom:15px;
}

.sr-program-card ul{
    padding-left:18px;
    margin:0;
}

.sr-program-card ul li{
    font-size:16px;
    line-height:28px;
    color:#444444;
    margin-bottom:8px;
}

.sr-program-access{
    background:#fff8f2;
    border:1px solid #ffd3b0;
}

@media(max-width:768px){

    .sr-program-box{
        padding:20px;
    }

    .sr-program-top h1{
        font-size:26px;
    }

    .sr-program-subtitle{
        font-size:16px;
        line-height:24px;
    }

}

.phone-flex img {
    width: 21px;
}


#menu.open-mob .btn-menu, #menu.open .btn-menu, .btn-menu:hover, .btn-menu:focus, .btn-menu.focus, .btn-menu:active, .btn-menu.active, .btn-menu.disabled, .btn-menu[disabled] {
    background-color: #2f2f2f !important;
    color: #ffffff !important;
}

.btn-search:hover, .btn-search:active {
    background-color: #292929 !important;
}

@media (max-width: 991px) {
span.sp_cl {
        position: absolute;
        top: -4px;
        left: 9px;
        color: #000000;
        font-weight: 500;
        font-size: 11px;
        text-transform: lowercase;
}
}


.easy-b-logo-brand {
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.easy-b-logo-brand img {
    width: 20%;
}


@media (min-width: 992px) {
span.sp_cl {
    position: absolute;
    top: -7px;
    left: 14px;
    color: #000000;
    font-weight: 500;
	        text-transform: lowercase;
        font-size: 12px;
}
}

@media only screen and (max-width: 1199px){
span.power_of {
    position: absolute;
    bottom: -7px;
    left: 2px;
    color: #2a2a2a;
    font-size: 10px;
}
}


@media only screen and (min-width: 1200px){
span.power_of {
    position: absolute;
    bottom: -7px;
    left: 2px;
    color: #2a2a2a;
    font-size: 12px;
}
}








.cert-item {
    margin-bottom: 30px;
}


.cert-section {
    margin-bottom: 60px;
    text-align: center;
}

.cert-item img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}


.d_c {
    text-align: center;
}



@media only screen and (min-width: 1200px){

input[name="search"]::placeholder {
    color: #000000 !important;
}


div#right-info button.btn.btn-general {
    background: #00bc52;
}









.additional-tel.dth img {
    width: 25px;
}

.shopping-cart svg path {
    fill: #000 !important;
}
.row.banner-footer {
    background: #ffffff;
    display: flex;
    justify-content: center;
}
.box-account svg path {
    fill: #000 !important;
}
footer.type-footer-1 .container {
    background: black;
}

.easy-b-description {
    border: 1px solid #000000;
    text-align: center!important;
}

.phones-icons {
    display: flex !important;
    align-items: flex-end;
    gap: 8px;
}

.phones-icons .additional-tel {
    display: inline-flex !important;
}

.container {
    background: #ffffff;
}

header, #top, .navbar, .header-type-2 {
    background: transparent !important;
}


    .menu-header-box.cont-mw.h-type-2.hide-box-menu {
        background: #ffffff;
    }

body {
    background: url(https://power-of-move.com.ua/img/bg.png) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    background-color: #ffffff;
}



.compare-h a svg path, .wishlist-h a svg path {
    fill: #000000 !important;
}