/*
Theme Name: unimedsoft
Theme URI: #
Author: Anatoliy
Author URI: #
Description: Unimedsoft custom theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, theme, development
Text Domain: unimedsoft-theme
*/

/* Regular */
@font-face {
    font-family: 'Inter Tight';
    src: url('/wp-content/themes/unimedsoft/assets/fonts/InterTight-Regular.ttf');
    font-weight: 400;
}

/* Semibold */
@font-face {
    font-family: 'Inter Tight';
    src: url('/wp-content/themes/unimedsoft/assets/fonts/InterTight-SemiBold.ttf');
    font-weight: 600;
}

*,
*::before,
*::after { box-sizing: border-box; }

img, picture, video, canvas, svg {
    display: block;
}

a{
    text-decoration: none;
}

input, button, textarea, select { font: inherit; }

html, body {
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}
.site-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/*===== Root ==============*/
:root {

    /* ===== Colors Elements ===== */
    --color-bg-light: #F7F6F3;
    --color-bg-dark-light: #F3EFEB;
    --color-primary-red: #C53313;
    --color-element-orange: #E54516;


    /* ===== Colors Fonts ===== */
    --color-ft-white: #FFFFFF;
    --color-ft-main: #212121;


    /* ===== Typography ===== */
    --font-family: 'Inter Tight', sans-serif;

    /* Type scale */
    --fs-small: 14px;
    --fs-main: 16px;
    --fs-btn: 20px;
    --fs-desc: 22px;


    /* Font weights */
    --fw-regular: 400;
    --fw-semibold: 600;


    /* Headings */
    --fs-h6: 18px;
    --fs-h4: 30px;
    --fs-h2: 58px;
    --fs-h1: 90px;


    /* ===== Radius ===== */
    --radius-card: 14px;

    /* Button styles*/
    --btn-background: radial-gradient(55.94% 55.94% at 50% 44.06%, #E54516 0%, #B12810 100%), #FFFFFF;
    --btn-box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
    --btn-border-radius: 6px;


    /* ===== Sections ===== */
    --sec-pad: 100px 0;

    /*=======  Elements Size =======*/
    --w-btn: 340px;
    --h-btn: 78px;
}

@media (max-width: 475px){
    :root {
        --fs-h1: 46px;
        --fs-h2: 36px;

        --fs-btn: 16px;
        --fs-main: 14px;
        --fs-h4: 24px;

        --sec-pad: 70px 0;
    }
}
/*===== Root End ==============*/
html._lock {
    overflow: hidden;
}
body{
    font-size: var(--fs-main);
    color: var(--color-ft-main);
    font-family: var(--font-family);
    font-weight: var(--fw-regular);
}
body._lock {
    overflow: hidden;
}
.with-star{
    position: relative;
}
.with-star:before{
    content: '';
    display: block;
    position: absolute;
    left: -34px;
    top: 26px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/themes/unimedsoft/assets/images/title-star.svg');
    background-position: center;
}
.btn-primary-red{
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 30px;
    background: radial-gradient(55.94% 55.94% at 50% 44.06%, #E54516 0%, #B12810 100%), #FFFFFF;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1) !important;
    border-radius: var(--btn-border-radius);
    width: var(--w-btn);
    height: var(--h-btn);
    color: var(--color-ft-white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-btn);
    text-align: left;
    padding: 0 28px;
    border: none;
    cursor: pointer;
}
.btn-primary-red:after{
    content: '';
    display: block;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url('/wp-content/themes/unimedsoft/assets/images/btn-primary-arrow.svg');
}
.btn-hover:hover{
    transition: 0.2s;
    transform: translateY(3px) !important;
}
/*================ Header ================*/
.header-top{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    top: 20px;
    padding: 8px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--btn-border-radius);
    background: #fff;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
}
header#main-header._active{
    height: 98%;
}
.logo-block{
    margin-right: 40px;
    width: 100px;
}
.logo-block a{
    display: block;
    width: 100%;
}
.logo-block img{
    width: 100%;
}
.menu-block .main-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.menu-block .main-menu li{
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
.menu-block .main-menu li a{
    display: block;
    padding: 8px 14px;
    border-radius: 3px;
    color: var(--color-ft-main);
    font-size: var(--fs-small);
    transition: 0.2s;
}
.menu-block .main-menu li.current-menu-item a{
    background: #F2F2F2;
}
.menu-block .main-menu li a:hover{
    background: #F2F2F2;
}

.action-button a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    height: 29px;
    padding: 0 6px 0 14px;
    margin-left: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    background: #161616;
    border-radius: 30px;
}

.header-right-content{
    display: flex;
    align-items: center;
}

.mobile-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #161616;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}
.mobile-nav-btn span {
    position: absolute;
    width: 16px;
    height: 1px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-nav-btn span:nth-child(1) {
    top: 12px;
}
.mobile-nav-btn span:nth-child(2) {
    top: 18px;
}
.mobile-nav-btn span:nth-child(3) {
    top: 24px;
}
.mobile-nav-btn._active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}
.mobile-nav-btn._active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-btn._active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}
/*================ Header End ================*/

/*================ Footer ================*/
.footer-main{
    padding-top: 50px;
    padding-bottom: 50px;
    background: radial-gradient(55.94% 55.94% at 50% 44.06%, #E54516 0%, #B12810 100%), #FFFFFF;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
}
.footer-content-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer-right-content{
    display: flex;
    align-items: flex-start;
    column-gap: 60px;
}
.footer-logo{
    display: block;
    margin-bottom: 30px;
    width: fit-content;
}
.footer-col-title{
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-btn);
}
.footer-main-menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-main-menu li{
    padding: 0;
    list-style: none;
    display: block;
    margin: 0 0 18px 0;
}
.footer-main-menu li a{
    color: #fff;
}
.footer-main-menu li a:hover{
    transition: 0.2s;
    color: #333;
}
.footer-banner{
    width: 100%;
}
.footer-disclaimer{
    max-width: 600px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    margin: 50px auto 0 auto;
}
.footer-disclaimer span{
    font-weight: var(--fw-semibold);
}
/*================ Footer End ================*/

/*===== Product Hero ==============*/
.product-hero{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.product-hero-bg{
    padding: 90px 0;
    width: 100%;
    height: 100%;
}
.ph-content-container{
    max-width: 540px;
}
.product-hero h1{
    color: var(--color-ft-white);
    font-size: var(--fs-h1);
    margin: 0 0 14px 0;
    font-weight: var(--fw-semibold);
}
.first-desc{
    color: var(--color-ft-white);
    font-size: var(--fs-desc);
    margin: 0 0 90px 0;
}
.ph-points-flex{
    display: flex;
    flex-wrap: wrap;
}
.ppf-item{
    width: 50%;
    margin-bottom: 20px;
}
.ppf-item h6{
    color: var(--color-ft-white);
    font-size: var(--fs-h6);
    margin: 0 0 6px 0;
    font-weight: var(--fw-semibold);
}
.ppf-item span{
    display: block;
    color: var(--color-ft-white);
    font-size: 14px;
}
.ph-bottom-row{
    margin-top: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.ph-bottom-buttons{
    display: flex;
    column-gap: 20px;
}
.phb-white{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--w-btn);
    height: var(--h-btn);
    background: #fff;
    font-size: var(--fs-main);
    font-weight: var(--fw-semibold);
    padding: 0 26px;
    color: var(--color-ft-main);
    border-radius: var(--btn-border-radius);
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
}
.phb-transparent{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 216px;
    height: var(--h-btn);
    border-radius: var(--btn-border-radius);
    border: 1px solid #fff;
    color: var(--color-ft-white);
    text-align: center;
    font-size: var(--fs-main);
    padding: 0 26px;
}
.ph-bottom-text{
    font-size: var(--fs-main);
    color: var(--color-ft-white);
    margin: 0;
    max-width: 300px;
}
/*===== Product Hero End ==============*/

/*===== How it Works ==============*/
.how-it-works{
    background: var(--color-bg-dark-light);
    padding: var(--sec-pad);
}
.hiw-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.hic-number{
    position: absolute;
    width: 80px;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    left: 20px;
    font-size: var(--fs-main);
    font-weight: var(--fw-semibold);
    border-radius: var(--btn-border-radius);
    background: #fff;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
}
.how-it-works h2{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    max-width: 260px;
    margin: 0;
}
.hiw-image-container {
    position: relative;
    height: 604px;
    width: 382px;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.hiw-image-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
}

.hiw-image-container .hic-number.is-active{
    display: flex;
}

.hiw-image-container img.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hiw-text-container .hiw-text-item {
    opacity: 0.5;
    transition: font-weight 200ms ease, opacity 200ms ease;
    border-bottom: 1px solid var(--color-ft-main);
    padding: 34px 0;
    cursor: pointer;
}
.hiw-text-container .hiw-text-item:first-child{
    padding-top: 0;
}
.hiw-text-container .hiw-text-item:last-child{
    border-bottom: none;
}
.hiw-text-item h6{
    font-size: var(--fs-btn);
    font-weight: var(--fw-semibold);
    margin: 0 0 4px 0;
}
.hiw-text-item span{
    display: block;
    font-size: var(--fs-main);
}
.hiw-text-container .hiw-text-item.is-active {
    opacity: 1;
}
.hiw-text-container .hiw-text-item:hover{
    transition: 0.2s;
    opacity: 1;
}
/*===== How it Works End ==============*/

/*===== WC Product Section ==============*/
.custom-woocommerce-product-section{
    background: linear-gradient(to right, var(--color-primary-red) 0%, var(--color-primary-red) 40%, var(--color-bg-light) 40%, var(--color-bg-light) 100%);
}
.product-layout{
    display: flex;
}
.product-layout__left{
    width: 40%;
    padding: 100px 90px 80px 0;
    background: var(--color-primary-red);
}
.product-layout__left img{
    height: 700px;
    width: auto;
    margin-left: auto;
    position: sticky;
    top: 100px;
}
.product-layout__right{
    width: 60%;
    padding: 100px 0 80px 90px;
    background: var(--color-bg-light);
}
.product-layout__right h2{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    margin: 0 0 10px 0;
}
.product-description{
    margin-bottom: 30px;
}
.product-description p{
    font-size: var(--fs-btn);
    font-weight: var(--fw-semibold);
}
.product-specialist{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #AEAEAE;
    border-radius: 14px;
    padding: 20px;
}
.product-specialist p{
    margin: 0 0 0 20px;
}
.product-info{
    margin-bottom: 40px;
}
.pi-item{
    border-bottom: 1px solid #A6A6A6;
    padding: 12px 0;
}
.pi-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.pi-title h6{
    margin: 0;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-btn);
}
.pi-title:hover h6 {
    transition: 0.3s;
    color: var(--color-primary-red);
    transform: translateX(14px);
}
.pi-text{
    font-size: var(--fs-main);
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.product-regular-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border: 2px solid #E54516;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.prp-title{
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: 2px;
}
.prp-description{
    font-size: var(--fs-btn);
}
.prp-value{
    font-size: 68px;
    font-weight: var(--fw-semibold);
}

.product-buy label{
    font-size: 14px;
}
.product-consent{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.product-buy .product-consent input{
    display: block;
    width: 28px;
    height: 28px;
    border: 1px solid #C9C9C9;
    background-color: #F2F3F4;
    border-radius: var(--btn-border-radius);
    margin-right: 10px;
    margin-left: 0;
    accent-color: var(--color-primary-red);
}
.product-consent span{
    display: block;
    width: calc(100% - 38px);
}

.product-buy .single_add_to_cart_button{
    display: block;
    position: relative;
    margin-top: 30px;
    background: radial-gradient(55.94% 55.94% at 50% 44.06%, #E54516 0%, #B12810 100%), #FFFFFF;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1) !important;
    border-radius: var(--btn-border-radius);
    width: var(--w-btn);
    height: var(--h-btn);
    color: var(--color-ft-white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-btn);
    text-align: left;
    padding: 0 28px;
    border: none;
    cursor: pointer;
}
.product-buy .single_add_to_cart_button:after{
    content: '';
    display: block;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url('/wp-content/themes/unimedsoft/assets/images/btn-primary-arrow.svg');
}

.single_add_to_cart_button.is-disabled,
.single_add_to_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.product-buy .single_add_to_cart_button:hover{
    transition: 0.2s;
    transform: translateY(3px) !important;
}
/*===== WC Product Section End ==============*/

/*===== how-it-understanding ==============*/
.how-it-understanding{
    background: var(--color-bg-dark-light);
    padding: var(--sec-pad);
}
.how-it-understanding h2{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    max-width: 600px;
    margin: 0 0 70px 0;
}
.hiu-content-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.hiu-sub-title{
    max-width: 26%;
}
.hiu-card, .hiu-text{
    max-width: 32%;
}
.hiu-sub-title h4{
    font-weight: var(--fw-semibold);
    font-size: var(--fs-h4);
}
.hiu-card img{
    width: 100%;
}
.hiu-card{
    background: #E1E1E1;
    border-radius: 12px;
    overflow: hidden;
}
.hiu-points{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px;
}
.hiu-point-item{
    width: 50%;
    margin-bottom: 20px;
}
.hiu-point-item h6{
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin: 0 0 2px 0;
}
.hiu-point-item span{
    display: block;
    font-size: 12px;
}
/*===== how-it-understanding End ==============*/

/*=========== how-product-work ==========*/
.how-product-work{
    padding: var(--sec-pad);
    background: var(--color-bg-dark-light);
}
.hpw-title-flex{
    display: flex;
    align-items: flex-start;
    margin-bottom: 38px;
}
.hpw-title-flex h2{
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    width: 250px;
    margin: 0 30px 0 0;
}
.hpw-title-flex p{
    margin: 0;
    max-width: 640px;
}
.hpw-step{
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #C7C7C7;
}
.hpw-steps-block .hpw-step:last-child{
    border-bottom: none;
}
.hs-number{
    width: 250px;
    margin-right: 30px;
    color: #A3A3A3;
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
}
.hpw-step-text-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 280px);
}
.hpw-step-text{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.hpw-step h6{
    font-size: var(--fs-h6);
    font-weight: var(--fw-semibold);
    color: #A3A3A3;
    margin: 0 40px 0 0;
}
.hpw-step-text p{
    color: #A3A3A3;
    margin: 0;
    max-width: 340px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.hpw-step-text p span{
    font-weight: var(--fw-semibold);
}
/*=========== how-product-work End ==========*/

/*============= Mechanism Banner =============*/
.mech-banner{
    padding: 150px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mech-banner-content h2{
    color: #fff;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-h2);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 16px auto;
}
.mech-banner-content p{
    margin: 0 auto 28px auto;
    color: #fff;
    font-size: var(--fs-btn);
    max-width: 520px;
}
.mech-banner-content a.btn-primary-red{
    margin: 0 auto;
}
/*============= Mechanism Banner End =============*/

/*============= Compare Options =============*/
.compare-options{
    background: var(--color-bg-dark-light);
    padding-top: 100px;
}
.compare-options h2{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    max-width: 600px;
    margin: 0 0 20px 0;
}
.compare-options p{
    font-size: var(--fs-btn);
    font-weight: var(--fw-semibold);
    max-width: 600px;
    margin: 0 0 40px 0;
}

.point-columns-flex{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #EBEBEB;
}
.point-column{
    width: 33.33%;
}
.columns-cont h6{
    font-size: var(--fs-btn);
    font-weight: var(--fw-semibold);
    margin: 0 0 40px 0;
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
}
.columns-cont h6 span{
    display: block;
    width: 100%;
}
.block-one h6{
    color: #fff;
}
.title-column, .point-column{
    padding: 60px 16px;
}
.columns-cont ul{
    display: block;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}
.columns-cont ul li{
    list-style: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 0 30px 0;
}
.columns-cont .block-one ul li{
    color: #fff;
}
.title-column ul li{
    font-weight: var(--fw-semibold);
    text-align: left;
}
.columns-cont ul li:last-child{
    margin-bottom: 0;
}
.block-one{
    background: #C53313;
}
.block-two{
    background: #F2F3F4;
}
.block-three{
    background: #EBEBEB;
}
/*============= Compare Options End =============*/

/*================ FAQs section ================*/
.faqs{
    background: #18161B;
    padding: var(--sec-pad);
}
.faq-content-flex{
    display: flex;
    align-items: flex-start;
}
.faq-title-block{
    width: 340px;
    margin-right: 100px;
}
.faq-title-block h2{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    color: #fff;
    margin: 0 0 20px 0;
}
.faq-title-block p{
    font-size: var(--fs-btn);
    font-weight: var(--fw-semibold);
    color: #fff;
    margin: 0 0 40px 0;
}
.faqs-container{
    width: calc(100% - 440px);
}
.tabs-row{
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    margin-bottom: 20px;
}
.tabs-row h6{
    font-size: var(--fs-small);
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: var(--radius-btn);
    margin: 0 0 6px 0;
    cursor: pointer;
    transition: 0.2s;
}
.tabs-row h6:hover{
    background: var(--color-primary-red);
}
.tabs-row h6.active{
    background: var(--color-primary-red);
}
.q-row{
    padding: 28px 0;
    border-bottom: 1px solid #fff;
}
.q-row-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.q-row-title span{
    display: block;
    font-size: var(--fs-btn);
    color: #fff;
}
.q-row-title:hover span {
    transition: 0.3s;
    color: var(--color-primary-red);
    transform: translateX(14px);
}
.q-row-answer{
    color: #fff;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
/*================ FAQs section End ================*/

/*================ Text Page Styles ================*/
.text-page-section{
    padding: var(--sec-pad);
    background: var(--color-bg-light);
}
.text-page-section h1{
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    margin: 0 0 40px 0;
    text-align: center;
}
.page-text-block{
    line-height: 1.6;
}
/*================ Text Page Styles End ================*/

/*=========== Cart Custom Styles ==========*/
body.page-id-8, body.page-id-9{
    background: var(--color-bg-dark-light);
}
body.page-id-8 button.wc-block-cart-item__remove-link{
    display: none !important;
}
body.page-id-8 .content-area{
    padding: 200px 0;
}
body.page-id-9 .content-area{
    padding: 100px 0;
}
body.page-id-8 .wp-block-woocommerce-cart, body.page-id-9 .wp-block-woocommerce-checkout, body.page-id-9 .woocommerce-order{
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}
body.page-id-9 .woocommerce-order .woocommerce ul.order_details{
    padding: 0 !important;
}
body.page-id-8 .wc-block-components-sidebar-layout{
    padding: 30px;
    background: #E1E1E1;
    border-radius: var(--radius-card);
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1);
}

body.page-id-8 .wc-block-cart__submit-button{
    display: flex;
    align-items: center;
    justify-content: unset !important;
    position: relative;
    margin-top: 30px;
    background: radial-gradient(55.94% 55.94% at 50% 44.06%, #E54516 0%, #B12810 100%), #FFFFFF;
    box-shadow: 70px 188px 80px rgba(0, 0, 0, 0.01), 40px 106px 68px rgba(0, 0, 0, 0.05), 18px 47px 50px rgba(0, 0, 0, 0.09), 4px 12px 28px rgba(0, 0, 0, 0.1) !important;
    border-radius: var(--btn-border-radius);
    width: var(--w-btn);
    height: var(--h-btn);
    color: var(--color-ft-white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-btn);
    text-align: left;
    padding: 0 28px;
    border: none;
    cursor: pointer;
}
body.page-id-8 .wc-block-cart__submit-button:after{
    content: '';
    display: block;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url('/wp-content/themes/unimedsoft/assets/images/btn-primary-arrow.svg');
}
body.page-id-8 .wc-block-cart-item__prices,
body.page-id-8 .wc-block-components-product-metadata,
body.page-id-8 .wc-block-cart-item__quantity{
    display: none !important;
}
body.page-id-9 .c-block-components-order-summary-item__individual-prices,
body.page-id-9 .wc-block-components-product-metadata{
    display: none !important;
}
body.page-id-9 .woocommerce-order-overview{
    padding: 0 !important;
}

.woocommerce-notices-wrapper{
    width: 98% !important;
    position: fixed !important;
    top: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/*body.page-id-8 .menu-block .main-menu li,*/
/*body.page-id-9 .menu-block .main-menu li,*/
/*body.page-id-8 .header-right-content .action-button,*/
/*body.page-id-9 .header-right-content .action-button,*/
/*body.page-id-8 #menu-main-menu-1 li,*/
/*body.page-id-9 #menu-main-menu-1 li,*/
/*body.page-id-8 .footer-left-content .phb-white,*/
/*body.page-id-9 .footer-left-content .phb-white{*/
/*    display: none;*/
/*}*/
/*body.page-id-8 .menu-block .main-menu li:first-child,*/
/*body.page-id-9 .menu-block .main-menu li:first-child,*/
/*body.page-id-8 #menu-main-menu-1 li:first-child,*/
/*body.page-id-9 #menu-main-menu-1 li:first-child{*/
/*    display: block;*/
/*}*/
/*=========== Cart Custom Styles End ==========*/