@charset "UTF-8";

/*
Theme Name: semantic
Theme URI: https://www.semanticseo.ir
Author: Amin haghighati
Author URI: https://www.semanticseo.ir
Description: a professional theme with wordpress website
Version: 1.0.0
Text Domain: semantic 
*/
:root {
    --main-font-size: 14px;
    --main-color: #b6e30c;
    --second-color: #053154;
    --main-text-color: #666666F2;
    --main-font-family: 'IRANYekan';
}

@font-face {
    font-family: 'IRANYekan';
    src: url('fonts/IRANYekanWeb-Medium.woff2') format('woff2'),
        url('fonts/IRANYekanWeb-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font-family);
    color: var(--main-text-color);
    font-size: var(--main-font-size);
    line-height: 27px;
    text-align: right;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1200px;
}

.title-section {
    margin-bottom: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-weight: 800;
}

h1 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 27px;
    line-height: 40px;
}

h2 {
    font-size: 22px;
    margin-bottom: 17px;
    margin-top: 25px;
    line-height: 39px;
}

h3 {
    font-size: 19px;
    margin-bottom: 15px;
    margin-top: 20px;
    line-height: 35px;
}

h4 {
    font-size: 17px;
    margin-bottom: 13px;
    margin-top: 17px;
    line-height: 33px;
}

h5,
h6 {
    font-size: 16px;
    margin-bottom: 11px;
    margin-top: 15px;
    line-height: 30px;
}

a {
    text-decoration: none;
}

p {
    line-height: 30px;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.col-custom {
    flex: 0 0 20%;
    max-width: 20%;
}

.main-color-bg {
    background-color: var(--main-color);
}

.main-color-text {
    color: var(--main-color);
}

.second-color-bg {
    background-color: var(--second-color);
}

.second-color-text {
    color: var(--second-color);
}

.site-title-sec {
    position: relative;
}

.site-title-sec span {
    color: #D9D9D926;
    font-size: 73px;
    font-weight: 800;
    position: absolute;
    right: 30px;
    line-height: 63px;
}

.site-title {
    color: #4A4A4A;
    font-size: 21px;
    position: relative;
    margin: 0;
}

.site-title::before {
    content: "";
    background-image: url(img/site-title-before.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
    display: inline-block;
    width: 37px;
    height: 37px;
    position: relative;
    top: 15px;
}

.site-btn {
    background: var(--main-color);
    color: #fff;
    position: relative;
    display: inline-block;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 100px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.site-btn::after {
    content: "";
    display: inline-block;
    background-image: url(img/site-btn-icon.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    margin-right: 5px;
    width: 20px;
    height: 19px;
    position: relative;
    top: 3px;
    filter: invert(100%);
    rotate: 180deg;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.site-btn:hover {
    background: var(--second-color);
    color: #fff;
}

#scroller {
    background: #010f1c;
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    line-height: 45px;
    font-size: 23px;
    position: fixed;
    bottom: 20px;
    right: 15px;
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    width: 13px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

::placeholder {
    color: #94929290;
}

/*------------------------
      Header Section
------------------------*/
#mobile-header {
    display: none;
}

.site-logo {
    position: relative;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}

.site-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #DADADA;
    border-radius: 0 0 25px 25px;
    z-index: -1;
}

.site-logo img {
    width: auto;
    height: 52px;
}

.top-btn {
    background: var(--main-color);
    font-size: 13px;
    color: #111;
    display: inline-block;
    padding: 7px 30px;
    border-radius: 100px;
    margin: 15px 0;
    position: relative;
    transition: all 0.3s;
}

.top-btn::before {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    outline: 3px solid #fff;
    position: absolute;
    right: -2px;
    top: 19px;
}

.top-btn:hover {
    background: var(--second-color);
    color: #fff;
}

.top-header-left-wrap {
    background: #0531541A;
    display: flex;
    border-radius: 0 0 20px 20px;
    height: 58px;
    padding: 19px 15px 10px 15px;
}

.woocommerce-product-search {
    width: 357px;
    height: 43px;
    margin-top: 10px;
}

.top-search-form .search-field {
    background: #F5F5F5;
    width: 100%;
    height: 100%;
    padding: 0 20px 0 50px;
    border: none;
    border-top: 1px solid var(--main-color);
    border-radius: 100px;
    position: relative;
}

.top-login-icon {
    display: inline-block;
    margin-left: 13px;
    border-left: 1px solid #999;
    padding-left: 13px;
    line-height: 0px;
}

.top-login-icon img {
    height: 19px;
}

.top-basket-sec {
    height: 42px;
}

.top-basket-icon img {
    height: 19px;
}

.header-fixed {
    position: fixed;
    top: -100%;
    width: 100%;
    transition: top 0.5s ease-in-out;
    z-index: 99;
    -webkit-transition: top 0.5s ease-in-out;
    -moz-transition: top 0.5s ease-in-out;
    -ms-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
}

.woocommerce-product-search-btn {
    background-image: url(img/search-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: contain;
    width: 17px;
    height: 17px;
    left: 15px;
    top: 13px;
    opacity: 0.5;
}

.top-navbar ul {
    list-style: none;
    display: flex;
}

.top-navbar ul a {
    color: #3a3a3a;
    display: inline-block;
    margin: 0 10px;
}

.top-navbar ul a:hover {
    color: var(--main-color);
}

#bottom-header {
    background: var(--second-color);
}

#bottom-header .container {
    border-bottom: 1px solid #DADADA4D;
}

.products-navbar>ul {
    position: relative;
    padding-right: 37px;
    border-left: 1px solid #FFFFFF4D;
    padding-left: 35px;
}

.products-navbar>ul::before {
    content: "";
    background-image: url('img/products-navbar-before.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 17px;
}

.products-navbar>ul>li>a {
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.products-navbar>ul>li>a {
    color: var(--main-color);
}

nav.main-navbar {
    padding: 0;
}

nav.main-navbar ul,
nav.main-list ul {
    list-style: none;
    display: flex;
    position: relative;
}

nav.main-list>ul::before {
    content: "";
    background-color: #FFFFFF4D;
    display: inline-block;
    width: 1px;
    height: 27px;
    position: absolute;
    right: -10px;
    top: 16px;
}

nav.main-navbar>ul>li:nth-child(1)>a {
    position: relative;
}

nav.main-navbar>ul>li>a::before {
    content: "";
    background-color: #FFFFFF1A;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    border-radius: 100%;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: 11px;
    top: 5px;
}

nav.main-navbar>ul>li:nth-child(1)>a::before {
    background-color: var(--main-color);
    background-image: url('img/technology-before-icon.svg');
}

nav.main-navbar>ul>li:nth-child(2)>a::before {
    background-image: url('img/treatments-before-icon.svg');
}

nav.main-navbar>ul>li:nth-child(3)>a::before {
    background-image: url('img/brands-before-icon.svg');
}

nav.main-navbar>ul>li>a {
    color: #DADADA;
    margin: 0 20px;
    position: relative;
}

nav.main-list {
    padding: 0;
}

nav.main-list ul a {
    font-size: 13px;
    color: #3a3a3a;
    margin: 0 20px;
}

nav.main-navbar>ul>li>a,
nav.main-list>ul>li>a {
    display: inline-block;
    padding: 17px 0;
    color: #fff;
    position: relative;
}

nav.main-navbar ul a:hover {
    color: var(--main-color);
}

nav.main-navbar>ul>li.menu-item-has-children {
    background-image: url(img/menu-child-after.svg);
    background-repeat: no-repeat;
    background-position: left center;
    margin-left: 15px;
}

nav.main-navbar>ul>li.menu-item-has-children::after {
    content: "";
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -17px;
    margin-right: -93px;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

nav.main-navbar>ul>li.menu-item-has-children:hover::after {
    visibility: visible;
    opacity: 1;
}

nav.main-navbar>ul>li.menu-item-has-children>ul {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 10px 10px 15px 10px;
    z-index: 5;
    display: block;
    border: 1px solid #47821C1A;
    border-radius: 15px;
    box-shadow: 0 45px 80px 0 #00000080;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    transform: translateY(20px);
}

nav.main-navbar>ul>li.menu-item-has-children:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

nav.main-navbar>ul>li.menu-item-has-children>ul::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 70%;
    height: 5px;
    position: absolute;
    bottom: -2.5px;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 19px;
}

nav.main-navbar>ul>li.menu-item-has-children>ul>li {
    width: 100%;
}

nav.main-navbar>ul>li.menu-item-has-children>ul>li>a {
    color: #3a3a3a;
    padding: 5px 0;
    display: block;
}

nav.main-navbar>ul>li.menu-item-has-children>ul>li>a::before,
nav.mobile-navbar li.menu-item-has-children ul a::before {
    content: "";
    background: var(--second-color);
    outline: 3px solid var(--main-color);
    border-radius: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
}

nav.main-navbar>ul>li.menu-item-has-children>ul>li>a:hover::before {
    animation: blink 1s infinite;
}

nav.main-navbar .home-page {
    background-image: url(img/home-menu-icon.svg);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 10px;
    position: relative;
}

nav.main-navbar .home-page::after {
    content: "";
    background: #fff;
    display: inline-block;
    width: 2px;
    height: 20px;
    position: relative;
    top: 7px;
}


nav.main-list>ul>li:nth-child(1)>a::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    background-color: var(--main-color);
    outline: 3px solid #b6e30c87;
    outline-offset: 1px;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(0.6);
    }
}

nav.main-list>ul>li:nth-child(2)>a::after {
    content: '';
    background-image: url('img/top-meni-item-after.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 78px;
    height: 7px;
    position: absolute;
    bottom: -4px;
    right: -2px;
}

.sports-menu>ul>li {
    width: 50% !important;
}

.sports-menu>ul>li:last-child a,
.sports-menu>ul>li:nth-last-child(2) a {
    border-bottom: none !important;
}

.sports-menu>ul>li>a {
    border-bottom: 2px solid #F4F4F5;
    display: flex;
    align-items: center;
    position: relative;
}

.sports-menu>ul>li>a::after {
    content: "";
    background-image: url(img/sports-menu-item-after.svg);
    display: inline-block;
    width: 18px;
    height: 13px;
    position: absolute;
    left: 0;
    filter: grayscale(1);
}

.sports-menu>ul>li>a::before {
    content: "";
    background-color: transparent;
    background-repeat: no-repeat !important;
    background-size: 50% !important;
    background-position: center;
    width: 52px !important;
    height: 52px !important;
    opacity: 1 !important;
    filter: none !important;
    border-radius: 5px 20px;
    top: 0 !important;
}

.sports-menu>ul>li>a:hover::after {
    filter: none;
}

.sports-menu>ul>li>a:hover::before {
    background-color: var(--main-color);
}



.products-navbar > ul > li.menu-item-has-children::after {
    content: "";
    background-image: url(img/menu-has-child=icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 9px;
    height: 9px;
    position: relative;
    top: 1px;
    margin-right: 5px;
}
.products-navbar, .products-navbar ul {
    position: unset;
    margin-top: 5px;
    list-style: none;
}
.products-navbar > ul > li ul{
    list-style: none;
}
.products-navbar > ul > li > ul {
    background: #fff;
    position: absolute;
    z-index: 2;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 55px 80px 0px rgba(0, 0, 0, 0.08);
    padding: 25px;
    padding-left: 35px;
    right: 0;
    top: 75px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.products-navbar > ul > li:hover > ul{
    opacity: 1;
    visibility: visible;
}
.products-navbar > ul > li > ul::before {
    content: "";
    position: absolute;
    top: -14px;
    right: 200px;
    border-bottom: 15px solid #fff;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
.products-navbar > ul > li > ul::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 10px;
    border-radius: 30px;
    position: absolute;
    left: 0;
    height: 96%;
    top: 2%;
}
.sub-menu-title > a {
    color: #3A3A3A;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
    pointer-events: none;
    cursor: not-allowed;
}
.sub-menu-title > a::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 9px;
    height: 16px;
    margin-left: 7px;
    border-radius: 10px;
    position: relative;
    top: 2px;
}
.products-navbar > ul > li > ul > li > ul a {
    color: #3A3A3A;
    display: block;
    margin-bottom: 10px;
}
.products-navbar > ul > li > ul > li > ul a::before {
    content: "";
    background: var(--second-color);
    outline: 3px solid var(--main-color);
    border-radius: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
}
.products-navbar > ul > li > ul > li > ul a:hover::before{
    animation: blink 1s infinite;
}

/*------------------------
    Slider Section
------------------------*/
.top-section {
    background-color: var(--second-color);
    background-image: url('img/top-sec-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #DADADA;
    padding-top: 55px;
    font-size: 15px;
    min-height: 475px;
}

.top-sec-title {
    color: #fff;
    font-size: 26px;
    position: relative;
    margin-top: 0;
    margin-bottom: 25px;
}

#top-sec-left p {
    min-height: 150px;
}

.top-sec-title::before {
    content: "";
    background-image: url('img/top-sec-title-before.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-left: 15px;
    position: relative;
    top: 11px;
}

#top-items-wrap {
    background: #fff;
    border-bottom: 4px solid var(--main-color);
    border-radius: 25px;
    padding: 20px 70px;
}

.contact-us-opt-wrap .owl-nav {
    top: 0;
    position: absolute;
    width: 100%
}

.top-sec-opt-wrap {
    position: absolute;
    width: 100%;
    margin-top: 90px;
}

.top-sec-opt-wrap h2,
.contact-top-opt-wrap h2 {
    background: #fff;
    font-size: 15px;
    border-radius: 25px 25px 0 0;
    display: table;
    border-top: 3px solid #90CAF8;
    position: absolute;
    top: -47px;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 3px 20px;
}

.top-cat-item-sec {
    text-align: center;
    margin-top: 5px;
}

.top-cat-item-sec-overlay {
    background-color: var(--second-color);
    background-image: url(img/top-opt-img-overlay.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    outline: 2px solid var(--second-color);
    outline-offset: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.top-cat-item-sec:hover .top-cat-item-sec-overlay {
    opacity: 1;
    visibility: visible;
}

.top-cat-item-sec img {
    width: 80px !important;
    height: 80px;
    border: 2px solid var(--main-color);
    display: table !important;
    border-radius: 100%;
    object-fit: cover;
    margin: auto;
}

.top-cat-item-sec h3 {
    color: #053154;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
}

#top-sec-right img {
    position: absolute;
    top: 0;
    right: 0;
    height: 465px;
}

/*------------------------
    Laser devices Section
------------------------*/
.laser-devices-section {
    box-shadow: 0px -5px var(--second-color);
    border-top: 6px solid #fff;
}

.laser-devices-opt-wrap {
    position: relative;
    top: 150px;
    margin-top: -100px;
}

.laser-devices-item-sec-overlay {
    background-color: var(--main-color);
    background-image: url(img/lase-devices-img-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 170px;
    height: 225px;
    border-radius: 25px;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.laser-devices-item-sec:hover .laser-devices-item-sec-overlay {
    opacity: 1;
    visibility: visible;
}

.laser-devices-item-sec-overlay::after {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
    outline: 3px solid var(--main-color);
}

.laser-devices-item-sec img {
    background-color: #fff;
    width: 170px !important;
    height: 225px;
    display: table;
    object-fit: cover;
    margin: auto;
    border-radius: 25px;
    border-bottom: 2px solid var(--main-color);
}

.laser-devices-item-sec h3 {
    color: var(--second-color);
    font-size: 15px;
    text-align: center;
    margin: 15px 0;
}

/*------------------------
    Products tab Section
------------------------*/
.products-section {
    margin: 220px 0 150px;
}

/*------------------------------
    Device technologies Section
--------------======----------*/
.device-technologies-section {
    margin-bottom: 100px;
}

#device-technologies-right-sec p {
    color: #666666F2;
    font-size: 15px;
}

.device-technologies-img-sec {
    background: var(--second-color);
    width: 170px;
    height: 208px;
    position: relative;
    border-radius: 25px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid var(--main-color);
    margin-top: 10px;
}

.device-technologies-img-sec img {
    width: auto !important;
    height: 165px;
}

#device-technologies-items-wrap h3, .device-technologies-item-sec h3 {
    color: var(--second-color);
    font-size: 15px;
    margin: 15px 0;
    text-align: center;
}

.device-technologies-img-sec-overlay {
    background-color: var(--second-color);
    background-image: url(img/device-technologies-opt-img-before.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.device-technologies-item-sec:hover .device-technologies-img-sec-overlay {
    opacity: 1;
    visibility: visible;
}

.device-technologies-img-sec-overlay::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: -6px;
    outline: 6px solid #fff;
    transition: all 0.3s;
}


/*------------------------------
    Beauty devices Section
-------------------------------*/
.beauty-devices-section {
    background-color: var(--main-color);
    background-image: url('img/top-sec-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 200px;
    padding-top: 35px;
    margin-bottom: 200px;
    box-shadow: 0px 5px var(--main-color);
    border-bottom: 6px solid #fff;
}

.beauty-devices-section::before {
    content: "";
    background-image: url('img/beauty-rejuvenation-devices.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 90%;
    height: 135px;
    position: absolute;
    top: -65px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.beauty-devices-section .top-sec-title, .installment-top-text-sec .top-sec-title {
    position: absolute;
    top: -105px;
    right: 0;
    margin: 0;
    color: var(--second-color);
    font-size: 21px;
}

.beauty-devices-section .top-sec-title::before, .installment-top-text-sec .top-sec-title::before {
    margin-left: 10px;
    top: 13px;
    filter: grayscale(1) brightness(0);
}

.beauty-devices-section #top-sec-right img {
    top: -125px;
}

.beauty-devices-section .laser-devices-opt-wrap {
    position: relative;
    top: 125px;
    margin-top: -100px;
}

.beauty-devices-section .laser-devices-item-sec img {
    border-bottom: 2px solid var(--second-color);
}

.beauty-devices-item-overlay {
    background-color: var(--second-color);
    background-image: url(img/beauty-devices-item-overlay-logo.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 170px;
    height: 225px;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.laser-devices-item-sec:hover .beauty-devices-item-overlay {
    opacity: 1;
    visibility: visible;
}

.beauty-devices-item-overlay::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
    outline: 3px solid var(--second-color);
}

/*------------------------
    About Us Section
------------------------*/
.about-us-section {
    background-image: url('img/about-us-shape.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 42% 100%;
    margin-bottom: 120px;
    z-index: 2;
}

#about-us-text-sec {
    color: #666666F2;
    font-size: 15px;
}

#about-us-text-sec h2 {
    color: var(--second-color);
    font-size: 21px;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.tavan-medical-text {
    background: var(--main-color);
    color: var(--second-color);
    font-size: 15px;
    border-radius: 5px;
    padding: 5px 20px;
    line-height: 25px;
    position: relative;
    padding-bottom: 17px;
    display: flex;
    width: max-content;
    margin: 0 15px;
}

.tavan-medical-text::after {
    content: "لــــــوازم و تجهیـــــزات پزشـــــکی";
    position: absolute;
    bottom: 0;
    font-size: 7px;
    line-height: 23px;
}

.phone-btn {
    background-color: var(--second-color);
    background-image: url(img/headset.svg);
    background-repeat: no-repeat;
    background-position: 87% center;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 7px 60px 7px 25px;
    border-radius: 100px;
    border-bottom: 2px solid var(--main-color);
    transition: all 0.3s;
    line-height: 35px;
}

.phone-btn:hover {
    background-color: #181818;
}

.read-more-btn {
    background-color: var(--main-color);
    background-image: url(img/read-more-btn-after.png);
    background-repeat: no-repeat;
    background-position: 15px center;
    color: var(--second-color);
    font-size: 13px;
    padding: 10px 20px 10px 50px;
    border-bottom: 2px solid var(--second-color);
    border-radius: 100px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background-color: #D9D9D9;
    color: var(--main-text-color);
}

#about-us-img-sec img {
    width: 424px;
    height: 512px;
    object-fit: cover;
    border-radius: 25px;
    float: left;
    margin-top: 155px;
}

/*------------------------
    Why us Section
------------------------*/
.why-us-section {
    background: #D9D9D926;
    padding-bottom: 55px;
    padding-top: 200px;
    top: -239px;
    margin-bottom: -170px;
    z-index: 1;
}

.why-us-section h2 {
    color: var(--second-color);
    font-size: 21px;
    margin-top: 0;
    margin-bottom: 40px;
}

.why-us-item-sec {
    position: relative;
}

.why-us-img-sec {
    background: var(--second-color);
    width: 73px;
    height: 73px;
    border-radius: 100%;
    padding: 24px;
    position: absolute;
    top: -37px;
    right: 0;
    left: 0;
    margin: auto;
}

.why-us-details-wrap {
    background: #05315433;
    border-radius: 25px;
    padding: 50px 10px 25px 10px;
    border-bottom: 1px solid var(--main-color);
    margin-top: 43px;
}

.why-us-item-sec h3 {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 10px;
}

.why-us-item-sec p {
    color: #666666F2;
    font-size: 13px;
    line-height: 27px;
    margin-bottom: 0;
}

/*------------------------
    Comments Section
------------------------*/
.comment-box {
    display: flex;
    gap: 20px;
    direction: rtl;
}

.comment-details {
    background: var(--second-color);
    color: #DADADA;
    padding: 35px 25px;
    border-radius: 25px;
}

.comment-details .name {
    font-weight: bold;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    line-height: 15px;
}

.comment-details .name span {
    margin-left: 15px;
    border-left: 1px solid;
    padding-left: 15px;
}

.comment-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-list button {
    background: #0531544D;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-list button.active {
    background: var(--second-color);
}

.comment-list img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin-left: 15px;
}

.user-info strong {
    border-left: 1px solid;
    padding-left: 10px;
}

.stars img {
    filter: brightness(1.4);
}

.comment-details-top-sec img {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    object-fit: cover;
    margin-left: 15px;
}

.comment-bottom-sec {
    margin-top: 25px;
    padding-top: 10px;
}

.comment-bottom-title {
    display: inline-block;
    position: relative;
    line-height: 33px;
}

.comment-bottom-title::before {
    content: "";
    background-image: url(img/comment-sec-bottom-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: 7px;
    margin-left: 15px;
}

.comment-bottom-product-name {
    background: var(--main-color);
    color: var(--second-color);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 30px;
}

/*------------------------
    Products Section
------------------------*/
#products-tab-section::before {
    display: none;
}

.products-section .site-title::after {
    content: "";
    background-color: #0531544D;
    display: inline-block;
    width: 1px;
    height: 20px;
    margin-right: 25px;
    margin-left: 15px;
    position: relative;
    top: 7px;
}

.products-section ul.nav-tabs li:last-child:after {
    display: none;
}

.products-section ul.nav-tabs li button,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    background: transparent;
    font-size: 15px;
    color: var(--second-color);
    padding: 0;
    margin-left: 20px;
    border: none;
}

.products-section ul.nav-tabs {
    position: relative;
    top: 9px;
}

.products-section ul.nav-tabs li button.active,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border: none;
    position: relative;
}

.products-section ul.nav-tabs li button.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    content: "";
    background: var(--main-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: 0;
}

.products-section ul.nav-tabs li button span {
    position: relative;
    z-index: 1;
}

.products-section ul.nav-tabs li button.active span {
    visibility: visible;
    opacity: 1;
}

.products-garanty-sec,
.products-transfer-sec {
    background-color: #0D2A01;
    background-repeat: no-repeat;
    background-position: 5px center;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
    padding: 1px 5px;
    border-radius: 5px;
    display: inline-block;
    text-indent: 25px;
    direction: ltr;
    transition: all 0.2s;
}

.products-transfer-sec {
    background-image: url(img/transfer-icon.svg);
}

.products-items-sec:hover .products-image-sec img {
    border-color: var(--main-color);
}

.products-items-sec .add_to_cart_button,
.product-items-sec .add_to_cart_button {
    background-image: url(img/basket-button-icon.svg) !important;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.product-items-sec span.price del,
.products-items-sec .product-price del {
    color: #fff;
    margin-left: 10px;
}

.product-items-sec span.price ins,
.products-items-sec .product-price ins {
    text-decoration: none;
    color: #fff;
}

.product-items-sec .add_to_cart_button,
.product-items-sec .product_type_simple,
.products-items-sec .product_type_simple {
    background-color: var(--second-color) !important;
    color: #fff !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0;
    font-size: 13px !important;
    display: inline-block !important;
    font-weight: 100 !important;
    line-height: 30px !important;
    padding: 5px 20px !important;
    margin-top: 15px !important;
    width: 100%;
    border-radius: 5px 20px !important;
    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    -ms-transition: all 0.3s !important;
    -o-transition: all 0.3s !important;
    opacity: 0;
    visibility: hidden;
}

.product-items-sec:hover .add_to_cart_button,
.product-items-sec:hover .product_type_simple,
.products-items-sec:hover .product_type_simple {
    opacity: 1;
    visibility: visible;
}

#products-tab-section-two .products-opt-wrap {
    background: transparent;
}

#products-tab-section-two .products-opt-sec {
    width: 31%;
    text-align: center;
    margin: 0 1% 15px;
    line-height: 17px;
    display: block;
}

.best-selling-sec {
    padding: 150px 0;
}

.best-selling-sec::before {
    content: "";
    background-image: url('img/best-selling-before.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 371px;
    height: 373px;
    position: absolute;
    top: 145px;
    right: 10px;
}

.best-selling-sec .container::before {
    content: "";
    background-image: url('img/best-selling-container-before.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 748px;
    height: 185px;
    position: absolute;
    top: -15px;
    left: -70px;
}

.accessories-sec {
    margin-bottom: 85px;
}

.accessories-product-item {
    background-color: #fff;
    border: 2px solid #DADADA;
    border-radius: 25px;
    padding: 10px 10px 35px 10px;
    margin-bottom: 30px;
}

.accessories-product-item .products-transfer-sec {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.accessories-img-overlay {
    background-image: url('img/product-img-overlay.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    border-radius: 25px;
    transition: all 0.3s;
    z-index: 1;
}

.accessories-product-item:hover .accessories-img-overlay {
    opacity: 1;
    visibility: visible;
}

.accessories-img-wrap img {
    height: 255px;
    object-fit: cover;
    border-radius: 25px;
    border-bottom: 2px solid var(--second-color);
}

.accessories-product-item .products-hover-logo {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}

.accessories-product-item h3 {
    font-size: 15px;
    text-align: center;
    margin: 20px 0;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

.accessories-opt-wrap ul {
    list-style: none;
    padding: 0 10px;
    min-height: 134px;
}

.accessories-opt-wrap ul li {
    color: #666666F2;
    margin-bottom: 7px;
}

.accessories-opt-wrap ul li::before {
    content: "";
    background-image: url(img/list-check-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    top: 7px;
    margin-left: 7px;
}

.accessories-product-item .price-wrap {
    background: var(--second-color);
    color: transparent;
    font-size: 13px;
    border-radius: 100px;
    padding: 5px 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    margin: auto;
    transition: all 0.3s;
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: center;
}
.accessories-product-item .price-wrap > span{
    color: var(--main-color);
}
.accessories-product-item .price-wrap > span:nth-child(3){
    display: none;
}
.accessories-product-item .price-wrap ins {
    text-decoration: none;
    margin-right: 10px;
}

.accessories-product-item .add_to_cart_button {
    background-color: var(--main-color) !important;
    color: var(--second-color) !important;
    padding: 5px !important;
    display: inline-block !important;
    font-size: 13px !important;
    border-radius: 100px !important;
    position: absolute !important;
    width: 95% !important;
    left: 0;
    bottom: -18px;
    right: 0 !important;
    margin: auto !important;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    line-height: 30px !important;
}

.accessories-product-item .add_to_cart_button::before {
    content: "";
    background-image: url('img/basket-button-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 7px;
    position: relative;
    top: 3px;
}

.accessories-product-item:hover .add_to_cart_button {
    visibility: visible;
    opacity: 1;
}

.accessories-product-item:hover h3 {
    color: var(--main-color);
}

.accessories-product-item:hover .products-hover-logo {
    filter: brightness(100);
}

.accessories-product-item:hover .price-wrap {
    opacity: 0;
    visibility: hidden;
}

.accessories-sec .owl-nav {
    position: absolute;
    top: -63px;
    width: 100%;
    text-align: left;
}

/*------------------------
    Blog Section
------------------------*/
.blogs-section {
    padding: 100px 0 170px;
}

.blog-item {
    margin-top: 7px;
}

.blog-img-wrap {
    height: 150px;
    border-bottom: 2px solid var(--main-color);
    border-radius: 25px;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.blog-img-wrap-overlay {
    background-color: var(--main-color);
    background-image: url(img/lase-devices-img-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 25px;
}

.blog-img-wrap-overlay::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    position: absolute;
    right: 0;
    left: 0;
    top: -6px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    outline: 2px solid #fff;
}

.category-name {
    background-color: var(--main-color);
    background-image: url(img/cat-icon.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    background-size: 15px;
    color: var(--second-color);
    display: inline-block;
    font-size: 13px;
    border-radius: 50px;
    padding: 0px 29px 0px 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    transition: all 0.3s;
}

.blog-text-wrap h3 {
    color: var(--second-color);
    font-size: 14px;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 10px 0;
}

.blog-text-wrap p {
    color: #666666F2;
    font-size: 13px;
    text-align: justify;
}

.blog-item:hover .blog-img-wrap-overlay {
    opacity: 1;
    visibility: visible;
}

.blog-item:hover .category-name,
.blog-item:hover .blog-date-sec {
    opacity: 0;
    visibility: hidden;
}

.blogs-section .owl-nav {
    top: 23px;
}
.owl-dots{
    text-align: center;
}
.owl-dots button {
    background: var(--second-color) !important;
    width: 13px;
    height: 13px;
    margin: 0 7px;
    border-radius: 100%;
}

.owl-dots button.active {
    background: var(--second-color);
    outline: 3px solid var(--main-color);
    width: 12px;
    height: 12px;
}

.owl-nav {
    top: 44px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 85px;
}

.owl-nav button {
    color: var(--second-color) !important;
    font-size: 33px !important;
    font-weight: bold !important;
}

.best-selling-sec .owl-dots, .products-section .owl-dots, .laser-devices-opt-wrap .owl-dots {
    display: none;
}

/*------------------------
    Category
------------------------*/
.sub-cat-wrap .owl-nav {
    top: -60px;
}

.pagination-wrapper {
    margin: 30px 0;
}

.pagination-numbers-sec {
    background: var(--main-color);
    color: #00112B;
    font-size: 20px;
    border-radius: 100px;
    padding: 10px 35px;
}

.pagination-numbers-sec a {
    color: #00112B;
    display: inline-block;
    margin: 0 7px;

}

.pagination-numbers-sec span {
    background: var(--second-color);
    border: 2px solid;
    color: #fff;
    display: inline-block;
    border-radius: 100%;
    padding: 5px 13px;
    margin: 0 7px;
}

.pagination-next-btn a,
.pagination-prev-btn a {
    background: var(--main-color);
    color: #0D2A01;
    display: inline-block;
    margin: 0 15px;
    border-radius: 100%;
    padding: 11px 17px;
    font-size: 29px;
}

/*------------------------
    Blog Single
------------------------*/
.blog-top-sec h1 {
    color: #fff;
}

.single-top-section {
    height: 407px;
    margin-bottom: 120px;
    min-height: unset;
}

.main-image-sec {
    height: 265px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.main-image-sec::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    outline: 3px solid #fff;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -6px;
    margin: auto;
}

.blog-details-wrap {
    color: #666666F2;
    display: flex;
    justify-content: space-between;
    border-radius: 150px !important;
    padding: 30px 50px !important;
}

.blog-details-title {
    position: relative;
    color: #6666668C;
    font-size: 13px;
    margin-left: 20px;
}

.blog-details-name {
    color: #666666F2;
    font-size: 13px;
}

.blog-details-title::before {
    content: "";
    background-image: url(img/blog-details-before-icon);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 13px;
    height: 16px;
    position: relative;
    top: 2px;
    margin-left: 10px;
}

.single-date-sec {
    background: #D9D9D980;
    color: #666666F2;
    font-size: 13px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    margin: 20px 10px 35px;
}

.single-date-title {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 21px;
    padding-right: 30px;
}

.single-date-title {
    background-image: url(img/publish-date-icon.svg);
}

.single-category-title {
    background-image: url(img/single-cat-icon.svg);
}

.article-blog {
    background: #fff;
    border-radius: 25px;
    border: 1px solid rgba(5, 49, 84, 0.30);
    padding: 25px;
    z-index: 1;
    position: relative;
}

.woocommerce-Reviews-title,
.comment-avatar {
    display: none;
}

.posts-comment-wrap {
    margin: 50px 0 120px;
}

.commentlist li {
    list-style: none;
}

.posts-comment-wrap .comment-footer {
    bottom: -20px;
}

.posts-comment-wrap .comment-rating {
    display: none;
}

.top-text-box {
    height: 150px;
    overflow: auto;
}

.top-text-box::-webkit-scrollbar {
    width: 5px;
}

.top-text-box::-webkit-scrollbar-track {
    width: 5px;
}

.toc {
    background: #fff;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 2em;
}
.toc-sidebar img {
    background-color: var(--second-color);
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: table;
    border-radius: 100%;
    margin: 20px auto 15px;
    padding: 25px;
    outline: 4px solid var(--main-color);
}
.toc-title {
    font-weight: bold;
    color: var(--second-color);
    position: relative;
    padding-bottom: 0.5em;
    display: table;
    margin: 0 auto 20px;
}

.toc-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: -4%;
    left: 0;
    bottom: 13px;
    width: 109%;
    height: 11px;
    margin: auto;
    border-radius: 5px;
    background: var(--main-color);
    z-index: 0;
}

.toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.toc ul::before {
    content: "";
    background: #6E6D6D4D;
    display: inline-block;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 4px;
}

.toc ul li {
    position: relative;
    padding-right: 17px;
    margin-bottom: 10px;
}

.toc ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    background-color: var(--main-color);
    outline: 2px solid #fff;
    border-radius: 50%;
}
.toc ul li.active::before {
    background-color: var(--second-color);
}
.toc ul li.active a{
    color: var(--second-color);
    font-weight: bold;
}

.toc ul li a {
    color: #666666F2;
    font-size: 13px;
}

.toc ul li a.active {
    color: #061B46;
    font-weight: bold;
}

.toc ul li a.active~li::before,
.toc ul li a.active::before {
    background-color: #061B46;
}

.treatment-technology-sec {
    background: #D9D9D91A;
    padding: 55px 0;
    margin-top: 70px;
}

/*------------------------
    Woocommerce cart
------------------------*/
.product-cat-top-text-wrap {
    border: 1px solid #D9D9D9;
    border-radius: 5px 20px;
    padding: 20px 30px;
}

.product-cat-wrap {
    margin: 85px 0 120px;
}

.customer-page-content .row {
    background: #fff;
    border: 1px solid #0000000f;
    border-bottom: navajowhite;
    padding: 50px 35px;
    border-radius: 5px 20px 0px 0px;
    margin-top: -55px;
}

.woocommerce-cart-form table {
    border-radius: 20px !important;
    border: 1px solid #4e901e59 !important;
    padding: 10px;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 73px !important;
    height: 73px !important;
    border-radius: 100%;
    object-fit: cover;
    border: 1px solid #0000002e;
}

.product-quantity .qty {
    background: var(--second-color) !important;
    color: #fff;
    border-radius: 100% !important;
    width: 100px !important;
    height: 39px !important;
}

.woocommerce a.remove {
    color: transparent !important;
    background-image: url(img/trash-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    border-radius: 0;
    display: inline-block;
}

.woocommerce a.remove:hover {
    color: transparent !important;
    background-image: url(img/trash-icon.svg) !important;
    background-color: transparent;
}

.woocommerce-cart-form thead {
    display: none;
}

.woocommerce-cart-form tr,
.woocommerce-cart-form td {
    border: none !important;
}

#coupon_code {
    background: #fff !important;
    border: 1px solid #0000001c !important;
    border-bottom: 1px solid var(--main-color) !important;
    padding: 10px 20px;
    border-radius: 50px !important;
}

.coupon {
    margin-top: 20px;
}

.coupon button {
    background: var(--main-color) !important;
    color: var(--second-color) !important;
    border-radius: 50px !important;
    padding: 15px 22px !important;
}

.woocommerce-cart-form tbody tr:last-of-type td>button {
    border-radius: 50px;
    padding: 15px 20px !important;
    margin-top: 20px;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    border: 1px solid #4e901e59 !important;
    width: 100%;
    border-radius: 20px;
    position: relative;
    padding-top: 75px;
}

.woocommerce a.button.alt {
    display: table !important;
    font-size: 13px !important;
    margin: 10px auto 0;
    padding: 13px 35px !important;
}

.cart_totals table.shop_table {
    border: none !important;
}

table.shop_table th,
table.shop_table td {
    border-bottom: none;
}

/*------------------------
    Woocommerce checkout
------------------------*/
.woocommerce-form-coupon-toggle {
    display: none;
}

.woocommerce-billing-fields, .woocommerce-additional-fields {
    border: 1px solid #4e901e3d;
    position: relative;
    border-radius: 20px;
    padding: 20px;
    padding-top: 55px;
    margin-bottom: 75px;
}

#filter-form h4 {
    position: relative;
    margin-bottom: 45px;
}

#filter-form h4 span::before {
    content: "";
    background-image: url(img/filter-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 16px;
    height: 17px;
    position: relative;
    top: 5px;
    margin-left: 7px;
}
#filter-form h4 span {
    background: var(--main-color);
    color: var(--second-color);
    font-size: 13px;
    display: block;
    text-align: center;
    border-radius: 100px;
    padding: 8px;
    width: 80%;
    margin: auto;
    position: relative;
    top: 19px;
}
#filter-form h4::after {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 9px;
    height: 9px;
    outline: 3px solid #fff;
    border-radius: 100%;
    position: absolute;
    top: -5px;
    right: 0;
    left: 0;
    margin: auto;
}
#filter-form h4::before {
    content: "";
    background: var(--second-color);
    display: block;
    width: 100%;
    height: 49px;
    border-radius: 100px;
    position: absolute;
    z-index: -1;
}
#filter-form h4 span::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 9px;
    height: 9px;
    outline: 3px solid #fff;
    border-radius: 100%;
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
}

.product-sidebar-banner-sec img{
    border-radius: 20px;
    margin-bottom: 20px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: #EAEAEA80 !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 50px !important;
    padding: 10px !important;
}

.woocommerce-billing-fields input,
.woocommerce-billing-fields .selection>span {
    background: #EAEAEA80 !important;
    border-radius: 50px !important;
    border: 1px solid #D9D9D9 !important;
}

.woocommerce-products-container {
    background: #fff;
    border: 1px solid #0000000f;
    padding: 25px;
    border-radius: 5px 20px 0px 0px;
    margin-top: -75px;
    margin-bottom: 75px;
}
.shop-page-products-wrap{
    margin: 185px 0;
}

.page-content-sec {
    background: #fff;
    border: 1px solid #0000000f;
    padding: 25px;
    border-radius: 5px 20px 0px 0px;
    margin-top: -55px;
    margin-bottom: 75px;
}

/*------------------------
    Footer
------------------------*/
.footer {
    background-color: var(--second-color);
    position: relative;
    color: #DADADA;
    font-size: 13px;
    padding-top: 115px;
}

.footer ul {
    list-style: none;
}

.footer-top-bar {
    background-color: var(--main-color);
    margin-bottom: 2rem;
    border-radius: 100px;
    width: 82% !important;
    position: absolute !important;
    top: -153px;
    left: 0;
    padding: 17px 50px;
}
.footer-top-bar .owl-stage-outer {
    overflow: unset !important;
}

.footer-top-bar .owl-item {
    text-align: center;
    display: flex;
    justify-content: center;
}

.top-footer-item-sec {
    position: relative;
    display: flex;
    align-items: center;
}

.top-footer-item-sec::before {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 10px;
    height: 10px;
    outline: 2px solid;
    border-radius: 100%;
    position: absolute;
    top: -21px;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.top-footer-item-sec:hover::before {
    opacity: 1;
    visibility: visible;
}

.widget-footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.widget-footer-title::before {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 8px;
    height: 8px;
    outline: 2px solid var(--main-color);
    border-radius: 100%;
    margin-left: 13px;
    position: relative;
    top: 1px;
}

#footer-sec-one {
    position: relative;
}

#footer-sec-one::before {
    content: "";
    background: #00000066;
    display: inline-block;
    width: 180px;
    height: 163px;
    border-radius: 0 0 25px 25px;
    position: absolute;
    right: 0;
    top: -109px;
    z-index: 0;
}

#footer-sec-one img {
    position: relative;
    height: 55px;
    width: auto;
    margin-bottom: 25px;
}

#footer-sec-one p {
    text-align: justify;
    line-height: 27px;
}

.footer-contact-sec {
    display: flex;
    align-items: center;
}

.footer-contact-sec img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain;
    background: #ffffff0f;
    border-radius: 100%;
    padding: 11px;
    margin-bottom: 0 !important;
    margin-left: 13px;
}

.footer-detail-contact-sec span {
    display: block;
}

#footer-sec-two-wrap {
    padding-right: 70px;
}

.top-footer-item-sec img {
    width: 45px !important;
    height: 45px;
    border-radius: 100%;
    margin-left: 15px;
}

.top-footer-item-sec span {
    color: var(--second-color);
}

.footer-top-bar .col-md-4 {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-top-bar .col-md-4:last-child {
    border-left: none;
}

.footer li {
    margin-bottom: 0.5rem;
}

.footer li::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 8px;
    height: 2px;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.footer li a {
    color: #D9D9D9;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-social-icons .icon-wrapper {
    background-color: #231f208f;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 7px;
}

.footer-social-icons .icon-wrapper i {
    color: #fff;
}

.footer-contact-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #314264;
    margin-inline-end: 1rem;
}

.footer-bottom-sec{
    background: #042641;
    padding: 15px 0;
    margin-top: 50px;
}
#footer-bottom-right-sec p{
    color: #D5D5D5;
}
.page-breadcrumb-sec{
    text-align: left;
    color: #D9D9D9;
    font-size: 14px;
}

.breadcrumb-title, .page-breadcrumb-sec a{
    font-size: 13px;
}
.breadcrumb-title::before, .page-breadcrumb-sec a::before {
    content: "";
    background-image: url(img/breadcrumb-items-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    top: 4px;
    margin-left: 7px;
}
.breadcrumb-home::before{
    background-image: url(img/breadcrumb-home-icon.svg) !important;
}


.customer-page-breadcrumb{
    text-align: left;
}
.customer-page-breadcrumb a{
    color: var(--main-color);
}
.customer-page-breadcrumb .breadcrumb-title::before, .customer-page-breadcrumb .page-breadcrumb-sec a::before {
    content: "/";
    background-image: none;
    margin-left: 15px;
    top: 2px;
    width: unset;
}
.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: var(--main-color);
}

@media (max-width: 767.98px) {
    .footer-top-bar .col-md-4 {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-top-bar .col-md-4:last-child {
        border-bottom: none;
    }

    .footer-top-bar {
        margin-bottom: 1rem;
    }

    .footer-contact-thumbs {
        justify-content: center;
    }
}

.footer-address-sec {
    text-align: center;
    padding: 0 15px;
}

.footer-address-img-sec {
    background: #ffffff0f;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 43px;
    margin-bottom: 10px;
}

.footer-symbols-wrap,
.footer-social-networks-wrap {
    background: #215075;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    min-height: 185px;
}

.footer-symbols-wrap h5,
.footer-social-networks-wrap h5 {
    color: #ddd;
    margin-top: 0;
    margin-bottom: 30px;
}

.footer-symbols-wrap img {
    background: #00000063;
    display: inline-block;
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 5px;
    padding: 5px;
    margin: 0 10px;
    filter: grayscale(1) brightness(0.9);
}

/*------------------------
    About us template
------------------------*/
.about-top-sec {
    background-image: none !important;
}

.about-top-items-sec img {
    height: 100px;
    border-radius: 30px;
    object-fit: cover;
}

.about-top-opt-wrap {
    position: absolute;
    width: 100%;
    margin-top: 130px;
}

.about-sec-one {
    padding-top: 200px;
    padding-bottom: 85px;
}

.about-sec-two {
    background: #D9D9D926;
    padding: 50px 0;
    margin-bottom: 85px;
}

.about-us-pahe-section #about-us-img-sec img {
    width: auto;
    height: 355px;
    border-radius: 0;
    float: none;
    margin-top: 120px;
    position: relative;
    right: -30px;
}

/*------------------------
    Contact us template
------------------------*/
.contact-top-sec {
    min-height: auto;
}
.woo-cat-top-sec{
    padding-bottom: 55px;
}
.contact-top-opt-wrap {
    top: 70px;
    margin-top: 25px;
}

.woo-top-opt-wrap {
    top: 120px;
    margin-top: 0px;
}

.contact-option-sec {
    display: flex;
    align-items: center;
}

.contact-option-sec p {
    direction: ltr;
}

.contact-us-opt-wrap {
    color: #666666F2;
    padding: 40px 70px !important;
}

.contact-option-sec img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-left: 10px;
}

.gform_required_legend,
.gfield_required {
    display: none !important;
}

.contact-us-main-sec {
    padding: 170px 0;
}

.gform_title {
    color: #4A4A4A;
    position: relative;
    font-size: 18px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

.gform_title::before {
    content: "";
    background-color: var(--second-color);
    background-image: url(img/contact-form-title-before.svg);
    background-repeat: no-repeat;
    background-size: 59%;
    background-position: center;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    position: relative;
    top: 15px;
    margin-left: 13px;
}

.gfield_label {
    background: linear-gradient(to bottom, #fff 50%, #e6eaee 50%);
    font-size: 14px !important;
    position: relative;
    top: 21px;
    right: 15px;
    padding: 0 5px !important;
}

.gform-body input,
.gform-body textarea {
    background: #0531541A;
    border: 1px solid var(--second-color);
    border-radius: 15px;
    font-size: 14px !important;
}

.gform-body textarea {
    padding: 23px 10px !important;
    height: 170px !important;
    resize: none;
}

.gform-footer {
    display: flex;
    justify-content: end;
}

.gform_button {
    background: var(--main-color) !important;
    color: var(--second-color) !important;
    border: none !important;
    display: inline-block !important;
    padding: 10px 50px !important;
    border-radius: 15px !important;
    transition: all 0.3s;
}

.gform_button:hover {
    background: var(--second-color) !important;
    color: #fff !important;
    border-radius: 15px !important;
}

#contact-us-main-left-sec iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border-bottom: 4px solid var(--second-color) !important;
}

.blog-cat-items-wrap .owl-nav {
    display: block !important;
}

.blog-cat-items-wrap .owl-nav button {
    background: #D9D9D94D !important;
    width: 45px;
    position: absolute;
}

.blog-cat-items-wrap .owl-nav button span {
    font-size: 40px !important;
}

.blog-cat-items-wrap .owl-nav button.owl-prev {
    right: -67px;
    top: -41px;
    height: 133px;
    border-radius: 0 25px 25px 0;
}

.blog-cat-items-wrap .owl-nav button.owl-next {
    left: -67px;
    top: -41px;
    height: 133px;
    border-radius: 25px 0 0 25px;
}

/*------------------------
    Blog category
------------------------*/
.blog-cat-items-wrap {
    width: 80%;
    margin: auto;
}

.blog-cat-item-sec a {
    background: var(--second-color);
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px 45px;
    border-radius: 5px;
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*------------------------
    Single
------------------------*/
.single-header-title {
    margin: 25px 0;
    margin-left: 25px;
}

.breadcrumb-sec a {
    color: #000;
}

.breadcrumb-sec i {
    color: #00000030;
    font-size: 9px;
    position: relative;
    top: 1px;
}

.single-cat-sec {
    border-radius: 25px;
    padding: 13px 0;
    border: 1px solid #F2F2F2;
}

.single-cat-sec ul,
.single-cat-sec li {
    display: inline-block;
}

.single-cat-sec ul {
    margin-right: 10px;
}

.single-cat-sec a {
    color: var(--main-text-color);
}

.single-header img {
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-cats-sec {
    border: 1px solid var(--second-color);
    height: 230px;
    overflow: auto;
}

.single-cats-sec span {
    color: var(--second-color);
    font-size: 16px;
    display: block;
    border-bottom: 1px solid var(--second-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.single-cats-sec a {
    color: #999;
}

.single-cats-sec a:hover {
    color: var(--main-color);
}

aside {
    background: #fff;
    padding: 5px;
    border-radius: 5px 5px 15px 15px;
    border-bottom: 4px solid var(--main-color);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

.Cbutton {
    background-color: var(--main-color);
    color: #fff;
    width: auto !important;
    padding: 7px 40px !important;
    border-radius: 5px;
    border: none !important;
}

.Cbutton:hover {
    background: var(--second-color);
}

.cat-article-sec {
    height: 182px;
    text-align: justify;
    padding: 0 20px !important;
    font-size: 13px;
}

.cat-article-sec h2::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-color);
    display: inline-block;
}

.cat-names-sec a {
    margin: 0 20px;
    background: var(--main-color);
    color: #fff;
    min-width: 120px;
    height: 47px;
    line-height: 47px;
    border-radius: 10px;
    font-size: 15px;
}

.cat-names-sec a:hover {
    background: var(--second-color);
}

.cat-article-sec h2 a {
    font-size: 15px;
    color: var(--main-text-color);
}

/*------------------------
    Therapy template
------------------------*/
.therapy-wrap{
    padding: 170px 0 150px;
}
.therapy-sec{
    margin-bottom: 85px;
}
.therapy-sec h2{
    margin-bottom: 35px;
}
.therapy-top-opt-wrap{
    background: #fff;
    border-radius: 15px;
    position: relative;
    top: -220px;
    padding: 45px 20px;
    margin-bottom: -220px;
}
.therapy-top-opt-sec {
    position: relative;
    margin-bottom: 35px;
}
.therapy-opt-header-sec {
    background: var(--main-color);
    display: block;
    width: 75%;
    margin: auto;
    border-radius: 50px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    top: 17px;
    margin-top: -17px;
}
.therapy-opt-header-sec img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}
.therapy-opt-header-sec h3 {
    color: var(--second-color);
    font-size: 13px;
    margin: 0;
    display: inline-block;
    margin-right: 10px;
}
.therapy-opt-main-sec{
    background: var(--second-color);
    color: #DADADA;
    font-size: 13px;
    border-radius: 200px;
    padding: 29px 25px 15px 23px;
}
.therapy-opt-main-sec p{
    margin-bottom: 0;
}
.therapy-content-cta {
    background: var(--second-color);
    border-radius: 15px;
    border-top: 4px solid var(--main-color);
    color: #DADADA;
    padding: 30px;
    margin: 30px 0;
    padding-left: 200px;
    position: relative;
}
.therapy-content-cta-text-sec h3 {
    color: var(--main-color);
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 10px;
}
.therapy-content-cta-phone-sec {
    background-color: #3B709A;
    background-image: url(img/therapy-cta-icon.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center 28px;
    position: absolute;
    top: 0;
    left: 50px;
    height: 130px;
    padding: 20px;
    border-radius: 0 0 25px 25px;
    padding-top: 80px;
    border-bottom: 1px solid var(--main-color);
}
.therapy-content-cta-phone-sec a{
    color: #fff;
}
.article-resource-btn-wrap {
    background-color: #D9D9D980;
    background-image: url(img/resource-logo.svg);
    background-repeat: no-repeat;
    background-position: 25px center;
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    border-radius: 0 0 25px 25px;
    padding: 13px 25px;
    cursor: pointer;
}
.article-resource-btn-wrap span{
    color: var(--second-color);
    display: inline-block;
    position: relative;
}
.article-resource-btn-wrap span::before {
    content: "";
    background-image: url(img/resource-btn-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: 5px;
    margin-left: 10px;
}
.article-resource-btn-wrap span::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    outline: 3px solid #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: -18px;
    margin: auto;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.article-resource-btn-wrap span:hover::after{
    opacity: 1;
    visibility: visible;
}
.resources-wrap {
    margin-bottom: 30px;
    height: 0;
    height: max-content;
    display: none;
}
.resources-wrap ul{
    list-style: none;
}
.resources-wrap ul li {
    border: 1px solid #0000001f;
    margin: 10px 0;
    border-radius: 5px;
}
.resources-wrap ul li a {
    background: #ececec82;
    display: flex;
    justify-content: space-between;
}
.resources-wrap ul li a span:nth-child(1) {
    background: #eee;
    color: var(--second-color);
    display: inline-block;
    min-width: 70px;
    padding: 5px 10px;
    font-size: 13px;
}
.resources-wrap ul li a span:nth-child(2) {
    color: #18181838;
    display: inline-block;
    padding: 5px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main-cta-wrap{
    background: var(--main-color);
    border-radius: 15px;
    border-top: 4px solid var(--second-color);
    position: relative;
    margin: 110px 0 35px;
    padding-right: 285px;
}
.main-cta-wrap > img{
    position: absolute;
    width: 226px;
    height: 304px;
    bottom: 0;
    object-fit: contain;
    right: 10px;
}
.main-cta-details-sec{
    padding-top: 30px;
    padding-left: 70px;
    text-align: center;
}
.main-cta-details-sec h3 {
    color: var(--second-color);
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
}
.main-cta-phone-sec {
    background: #fff;
    border-radius: 25px 25px 0 0;
    border-top: 3px solid var(--second-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 40px;
    margin: auto;
    margin-top: 30px;
    width: 85%;
}
.main-cta-phone-sec span {
    color: var(--second-color);
    font-size: 15px;
}
.main-cta-phone-sec a{
    color: var(--second-color);
    font-size: 15px;
}
.main-cta-phone-sec a::after {
    content: "";
    background-image: url(img/cta-headset-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 30px;
    height: 27px;
    position: relative;
    top: 7px;
    margin-right: 7px;
}
.treatment-device-technologies-section {
    background: #D9D9D91A;
    padding: 50px 0;
}


/*------------------------
    Installment Template
------------------------*/
.installment-top-sec {
    background-image: url(img/installment-top-shape.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40% 100%;
}
.installment-top-text-sec{
    padding: 55px 0;
}
.installment-top-text-sec .top-sec-title{
    position: relative;
    top: 0;
    margin-bottom: 23px;
}
.installment-top-text{
    font-size: 15px;
}
#installment-top-right-sec img{
    position: relative;
    top: 55px;
}

.installment-services-wrap{
    background: var(--second-color);
    color: #C9C2C2;
    margin: 135px 0;
}
.installment-services-wrap .owl-stage-outer{
    overflow: unset !important;
}
.installment-service-item {
    text-align: center;
    position: relative;
    top: -21px;
    font-size: 13px;
}
.installment-service-icon {
    background: var(--main-color);
    width: 45px;
    height: 45px;
    outline: 7px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.installment-service-icon img {
    width: 24px !important;
    height: 24px;
    object-fit: contain;
}
.installment-service-item h3{
    color: #fff;
    font-size: 16px;
    margin: 20px 0 10px;
}

.installment-product-steps-wrap{
    margin-bottom: 170px;
}
.line-title {
    color: var(--second-color);
    font-size: 26px;
    position: relative;
    text-align: center;
    width: max-content;
    display: table;
    margin: auto;
    margin-bottom: 35px;
}
.line-title::before {
    content: "";
    background-image: url('img/top-sec-title-before.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-left: 13px;
    position: relative;
    top: 11px;
    filter: brightness(0);
}
.line-title::after {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 82%;
    height: 7px;
    position: absolute;
    right: 18%;
    bottom: 10px;
    z-index: -1;
    border-radius: 50px;
}
.installment-product-step-item {
    background: var(--main-color);
    color: #374957;
    text-align: center;
    padding: 30px;
    border-radius: 25px;
    margin-top: 70px;
}
.installment-product-step-item::before {
    content: "";
    background: var(--second-color);
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    outline: 4px solid #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: -7px;
    margin: auto;
}
.installment-product-step-item span {
    color: #DADADA;
    font-size: 105px;
    font-weight: bold;
    line-height: 120px;
    position: absolute;
    right: 3px;
    z-index: -1;
    top: -60px;
}
.installment-product-step-item h3 {
    color: var(--second-color);
    font-size: 21px;
    margin-top: 0;
}
.installment-product-step-item p {
    color: #374957;
    line-height: 27px;
}

.required-documents-wrap {
    background-image: url('img/required-documents-shape');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 42% 100%;
    margin-bottom: 120px;
    padding: 100px 0;
}
.required-documents-text{
    margin-bottom: 35px;
}
.required-documents-item {
    list-style: none;
}
.required-documents-item li {
    font-size: 15px;
    margin-bottom: 20px;
}
.required-documents-item li:hover img{
    filter: brightness(0);
}
.required-documents-item li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px;
}
.required-documents-image img{
    position: relative;
    top: 95px;
    right: -13px;
}

.installment-laser-devices-section{
    margin-bottom: 250px;
}

.installment-faq-wrap{
    margin-bottom: 185px;
}

/*------------------------
    Products Sidebar
------------------------*/
.single-product-gallery{
    background: #fff;
    padding: 5px;
    border-bottom: 4px solid var(--main-color);
    border-radius: 10px;
}
.right-sidebar {
    top: 10px;
}

.prdctfltr_wc_widget.prdctfltr_wc .prdctfltr_filter {
    border: 1px solid #70707048;
    padding: 15px;
}

.products-widgets-title {
    color: #34343475;
    padding-bottom: 10px;
    font-weight: 800;
    border-bottom: 1px solid #70707048;
}

.prdctfltr_buttons,
.prdctfltr_collector,
.prdctfltr_filter_title,
.prdctfltr_ft_none {
    display: none !important;
}

.pf-help-title {
    border-bottom: 1px solid #70707048;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: -26px;
    z-index: 999;
    background: #fff;
    cursor: pointer;
}

.prdctfltr_wc_widget.prdctfltr_wc .prdctfltr_filter {
    padding-bottom: 25px;
}

.prdctfltr_add_scroll {
    display: none;
    padding-top: 40px;
}

.prdctfltr-down {
    z-index: 9999;
    display: inline-block !important;
    position: absolute;
    left: 0;
    font-size: 25px;
    color: #707070;
}

#filter-form {
    border: 1px solid #00000010;
    border-radius: 5px 20px;
    position: relative;
}

.product-filters-title {
    background-image: url(img/filters-title-bottom-icon.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
    color: #666;
    padding: 0 15px;
    cursor: pointer;
}

.product-filters-title-rotate {
    background-image: url(img/filters-title-top-icon.svg) !important;
}

.product-filters-opt-wrap {
    padding: 0 15px;
    overflow: hidden;
    height: 0px;
    transition: all 0.3s;
}

.height-auto {
    height: auto !important;
}

.filter-buttons-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.filter-buttons-wrap button {
    border: none;
    padding: 5px 25px;
    border-radius: 5px;
    transition: all 0.3s;
}

.filter-buttons-wrap button:nth-child(1) {
    background: var(--second-color);
    color: #fff;
    width: 100%;
}

.filter-buttons-wrap button:nth-child(1):hover {
    background: var(--main-color);
}

.filter-buttons-wrap button:nth-child(2) {
    display: none;
    background: #D9D9D9;
    color: #666666F2;
}

.filter-buttons-wrap button:nth-child(2):hover {
    background: #ccc;
}

.product-filters-opt-wrap label {
    background: #EAEAEA;
    color: #666666F2;
    border-radius: 50px;
    display: block;
    padding: 7px 15px;
    margin-top: 10px;
}

.product-filters-opt-wrap label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #374957;
    border-radius: 3px;
    outline: none;
    transition: all 0.3s;
    margin-left: 10px;
    position: relative;
    top: 3px;
}

.product-filters-opt-wrap label input[type="checkbox"]:checked {
    background-color: #374957;
    border-color: #374957;
}

.product-filters-opt-wrap label input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    left: 3px;
    top: -5px;
    font-size: 11px;
}

.product-sorting {
    background: #F4F4F5;
    border-radius: 100px;
    padding: 10px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.product-available {
    background-color: #0531541A;
    background-image: none !important;
    color: #05315480 !important;
    position: absolute;
    left: 0;
    margin-left: 0 !important;
    top: 0;
    border-radius: 100px;
    padding: 13px 30px;
}

.product-sorting span {
    background-image: url(img/products-sort-icon.svg);
    background-repeat: no-repeat;
    background-position: right center;
    display: inline-block;
    color: #666666F2;
    padding-right: 30px;
    margin-left: 35px;
}

.product-sorting button {
    color: #666666F2;
    font-size: 14px;
    margin-left: 10px;
    border: none;
    position: relative;
}
.product-sorting button::before{
    content: "";
    background: var(--main-color);
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    outline: 3px solid #fff;
    right: 0;
    left: 0;
    top: -15px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
}

.product-sorting button:hover:before{
    opacity: 1;
    visibility: visible;
}

.product-sorting button.active,
.product-sorting button:hover,
.product-sorting button:active,
.product-sorting button:focus-visible {
    color: var(--second-color);
    background: transparent !important;
}

.product-cat-banner-sec img {
    border-radius: 20px;
    margin-bottom: 20px;
}

#prouct-cat-bottom-text-wrap .toggle-btn {
    bottom: -9px !important;
}

.mobile-filter-title-wrap {
    display: none;
}

.single-product-main-title,
#single-product-mobile-bottom-fix {
    display: none;
}

/*------------------------
    Woocommerce
------------------------*/
.products-sec {
    padding: 20px;
}
.custom-product-rating{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-rating-score-wrap {
    background-image: url(img/product-score-star.png);
    background-repeat: no-repeat;
    background-position: left center;
    color: #666666F2;
    font-size: 13px;
    line-height: 0;
    padding-left: 33px;
    margin-right: 30px;
    position: relative;
}
.product-rating-score-wrap::after {
    content: "";
    background: #666;
    display: inline-block;
    width: 1px;
    height: 10px;
    position: absolute;
    right: -14px;
    top: 8px;
}
.product-rating-comment-wrap{
    background-image: url(img/comments-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    color: #666666F2;
    font-size: 13px;
    padding-left: 33px;
}
.product-items-sec h2,
.prdct-details a {
    font-size: 16px;
    margin: 10px 0;
    color: var(--main-text-color);
    display: block;
}

.price {
    font-size: 15px !important;
    color: #111 !important;
    display: block;
}

.price del {
    color: #999;
}

.price ins {
    text-decoration: none;
}

#yith-wacp-mini-cart {
    left: 20px !important;
    bottom: 60px !important;
    top: unset !important;
    background: var(--main-color);
}

.product-items-sec:hover .add_to_cart_button,
.product-items-sec:hover .product_type_simple {
    display: inline-block !important;
}

.product-items-sec .add_to_cart_button:hover::after,
.product_type_simple:hover::after,
.compare:hover::after {
    rotate: 0deg !important;
}

.product_type_simple:hover {
    background-color: var(--main-color) !important;
}

.compare {
    left: 102px !important;
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
    margin-right: 0 !important;
}

.product-items-sec .alg-wc-wl-btn {
    background: #fff;
    left: 65px !important;
    top: 300px !important;
    height: 30px !important;
    width: 30px;
    padding-top: 6px;
    text-align: center;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 16%) !important;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.product-items-sec .alg-wc-wl-btn:hover,
.product-items-sec .add_to_cart_button:hover {
    color: var(--main-color);
}

.alg-wc-wl-btn:hover i,
.alg-wc-wl-btn2:hover i {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}

a.wc-forward {
    display: none !important;
}

.yith-wacp-mini-cart-icon {
    width: 85px !important;
    height: 60px !important;
    text-align: center;
    line-height: 53px;
}

.yith-wacp-mini-cart-icon img {
    width: 31px;
    height: auto;
}

.yith-wacp-mini-cart-count {
    background: #181818 !important;
}

.home-products-wrap .nav-link {
    color: #111;
}

.home-products-wrap .nav-link {
    padding: 0;
    margin: 0 5px;
    border-bottom: 2px solid transparent;
}

.home-products-wrap .nav-link.active,
.home-products-wrap .nav-link:hover {
    border: none;
    border-bottom: 2px solid var(--main-color);
    border-radius: 0;
}

.home-products-wrap .nav-tabs {
    border-bottom: none;
}

.new-product-section .products {
    padding: 0 !important;
}

.alg-wc-wl-btn-text,
.alg-wc-wl-btn-wrapper .alg-wc-wl-btn {
    display: none !important;
}

.iziToast {
    background: var(--main-color) !important;
}

#yith-woocompare-table_wrapper {
    direction: rtl !important;
}

.yith-wacp-message {
    background: var(--main-color) !important;
    color: #fff !important;
}

.yith-wacp-main .product-title a {
    color: var(--main-text-color);
    font-size: 21px;
}

.yith-wacp-main .go-cart {
    background-color: var(--main-color) !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-size: 14px !important;
}

.yith-wacp-main .continue-shopping {
    border: 1px solid var(--main-color) !important;
    color: var(--main-color) !important;
    border-radius: 5px !important;
    font-size: 14px !important;
}

.yith-wacp-main .go-cart:hover,
.yith-wacp-main .continue-shopping:hover {
    background-color: var(--second-color) !important;
    color: #fff !important;
    border-color: var(--second-color) !important;
}

body.yith-woocompare-popup {
    font-family: var(--main-font-family) !important;
}

.single-top-sec-right,
.single-top-sec-left {
    padding: 10px;
}

.single-top-sec-left h1 {
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--main-text-color);
}

.products-scoring {
    margin-bottom: 35px;
}

.products-comments-count {
    position: relative;
    margin-left: 10px;
}

.products-comments-count i {
    font-size: 21px;
    color: #34343480;
    position: relative;
    top: 3px;
    margin-left: 3px;
}

.products-comments-count::after {
    content: "";
    width: 1px;
    height: 15px;
    display: inline-block;
    background: #707070;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.products-comments-count a {
    color: #343434;
}

.product-score i {
    color: gold;
    margin-right: 3px;
}

.product-delivery {
    background-color: #fff;
    border: 1px solid #70707025;
    display: table;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.delivery-title {
    color: #34343470;
}

.delivery-icon {
    background-image: url(img/truck.svg);
    background-repeat: no-repeat;
    width: 24.81px;
    height: 15.7px;
    display: inline-block;
    top: 17px;
    left: 10px;
}

.warranty-icon {
    background-image: url(img/warranty-icon.svg);
    background-repeat: no-repeat;
    width: 32px;
    height: 25px;
    display: inline-block;
    top: 12px;
    left: 6px;
}

.single-top-sec-left .price {
    font-size: 19px !important;
    position: relative;
    line-height: 40px;
    margin-top: 20px !important;
}

.single-top-sec-left .price del {
    color: var(--main-text-color);
    margin-left: 10px;
    font-size: 15px;
}

.single-top-sec-right .flex-control-thumbs li {
    width: 100% !important;
    padding-left: 10px !important;
    margin-bottom: 10px !important;
}

.single_add_to_cart_button:hover {
    background-color: var(--second-color) !important;
}

.woocommerce-product-details__short-description ::marker {
    color: var(--main-color);
    font-size: 17px;
}

.posted_in a {
    color: gray;
    margin: 20px 5px;
    display: inline-block;
    font-size: 12px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

.cart-collaterals {
    padding: 20px;
}

.cart-page-content .container{
    background: #fff;
    position: relative;
    top: -70px;
    border-radius: 20px;
    padding: 85px 35px;
    border: 1px solid #eeeeee;
}
.cart-collaterals h2, .woocommerce-billing-fields h3, .woocommerce-additional-fields h3 {
    position: absolute !important;
    width: 75% !important;
    top: -31px !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
}

.cart-collaterals h2::before, .woocommerce-billing-fields h3::before, .woocommerce-additional-fields h3::before {
    content: "";
    background: var(--second-color) !important;
    display: block !important;
    width: 100% !important;
    height: 55px !important;
    border-radius: 100px !important;
    position: absolute !important;
}

.cart-collaterals h2::after, .woocommerce-billing-fields h3::after, .woocommerce-additional-fields h3::after{
    content: "";
    background: var(--second-color) !important;
    display: inline-block !important;
    width: 9px !important;
    height: 9px !important;
    outline: 3px solid #fff !important;
    border-radius: 100% !important;
    position: absolute !important;
    top: -5px !important;
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
}

.cart-collaterals h2 span, .woocommerce-billing-fields h3 span, .woocommerce-additional-fields h3 span {
    background: var(--main-color) !important;
    color: var(--second-color) !important;
    font-size: 13px !important;
    display: block !important;
    text-align: center !important;
    border-radius: 100px !important;
    padding: 8px !important;
    width: 80% !important;
    margin: auto !important;
    position: relative !important;
    top: 19px !important;
}
.cart-collaterals h2 span::before, .woocommerce-billing-fields h3 span::before, .woocommerce-additional-fields h3 span::before {
    content: "";
    background-image: url(img/filter-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    display: inline-block !important;
    width: 16px !important;
    height: 17px !important;
    position: relative !important;
    top: 5px !important;
    margin-left: 7px !important;
}

.cart-collaterals h2 span::after, .woocommerce-billing-fields h3 span::after, .woocommerce-additional-fields h3 span::after {
    content: "";
    background: var(--main-color) !important;
    display: inline-block !important;
    width: 9px !important;
    height: 9px !important;
    outline: 3px solid #fff !important;
    border-radius: 100% !important;
    position: absolute !important;
    bottom: -5px !important;
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
}

.woocommerce table.shop_table {
    border-spacing: 0;
    border-radius: 5px;
    overflow: hidden;
}

#respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: var(--second-color) !important;
    color: var(--main-color) !important;
    font-size: 14px !important;
    font-weight: 100 !important;
    margin-bottom: 0 !important;
    text-align: right;
    width: auto;
    padding: 27px 20px 27px 55px;
    height: auto;
    background: var(--second-color);
    border-radius: 100px;
    opacity: 1 !important;
}

.woocommerce-product-price-wrap .single_add_to_cart_button {
    position: absolute !important;
    left: 0;
    top: 0;
    padding: 27px 25px 27px 60px !important;
}

.woocommerce button.button.alt {
    background-image: url(img/basket-button-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 17px center !important;
    padding: 17px 17px 17px 55px;
}

.woocommerce a.button.alt {
    display: inline-block;
    background: var(--main-color);
}

#respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #022949 !important;
    color: var(--main-color);
}

.cart_totals .checkout-button {
    background: var(--main-color) !important;
    color: var(--second-color) !important;
    position: absolute !important;
    left: 0;
    right: 0 !important;
    bottom: -19px;
}
.cart_totals .checkout-button:hover{
    background: var(--second-color) !important;
    color: #fff !important;
}
.shop_table thead {
    background: #f5f5f5;
    overflow: hidden !important;
}

.shop_table input[type="number"] {
    border: 1px solid #2C243350;
    border-radius: 5px;
}

.shop_table .product-name a {
    color: var(--main-text-color);
}

#coupon_code {
    background: #f7f7f7;
    border: none;
    width: 225px;
    font-size: 13px;
    border-radius: 5px;
}

.cart-collaterals th,
.cart-collaterals td {
    border-bottom: 1px solid #70707030;
}

.woocommerce-cart-form .actions button {
    font-weight: 100;
    color: var(--main-text-color);
}

.woocommerce-cart-form .actions button {
    font-weight: 100;
    color: #000 !important;
    background: #cbcbcb;
    font-size: 13px;
}

.woocommerce-billing-fields input,
.woocommerce-billing-fields .selection>span {
    width: 100%;
    border: none;
    background: #817D7D20;
    padding: 0 7px;
    line-height: 34px;
    color: #555;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 38px;
}

.woocommerce-additional-fields__field-wrapper textarea {
    width: 100%;
    border: none;
    background: #817D7D20;
}

.woocommerce-billing-fields .woocommerce-input-wrapper {
    width: 100%;
}

#customer_details h3 {
    font-size: 17px;
    color: var(--main-text-color);
}

.form-row {
    display: block;
}

.woocommerce-checkout-review-order-table th {
    background-color: #E6E5E5;
}

.woocommerce-checkout-review-order-table td {
    background-color: #fff;
}

.woocommerce-info {
    border-top-color: var(--main-color);
}

.woocommerce-info::before,
.woocommerce-info a {
    color: var(--main-color);
}

.variations_form select {
    width: 100%;
    border: 1px solid #70707035;
    padding: 5px;
    position: relative;
    top: -3px;
}

.prdctfltr_wc.prdctfltr_round .prdctfltr_filter label.prdctfltr_active>span:before {
    background: var(--main-color);
    width: 7px !important;
    height: 7px !important;
    padding: 0px;
    border: 5px double #fff !important;
}

.prdctfltr_wc.prdctfltr_round .prdctfltr_filter label>span:before {
    width: 12px !important;
    height: 12px !important;
}

.woocommerce-Tabs-panel h2 {
    display: none !important;
}

section.related {
    padding-top: 50px;
}

section.related>h2 {
    text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    justify-content: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.related .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

.device-specifications {
    background: #9C9C9C;
    color: #fff;
    font-size: 14px;
    padding: 0;
    margin-top: -39px;
    border-radius: 3px;
    height: 46px;
    line-height: 46px;
    width: 200px;
    text-align: right;
    text-indent: 15px;
}

.yith-wacp-content .cart-info>div>span {
    float: left !important;
}

.yith-wacp-content .product-variation dt {
    float: right !important;
}

.device-specifications:focus {
    box-shadow: none;
}

.yith-wacp-content .product-variation p {
    font-size: 14px !important;
    margin-right: 10px !important;
}

.device-specifications:hover {
    background: #7c7c7c;
    color: #fff;
}

.device-specifications i {
    left: 11px;
    font-size: 23px;
    top: 11px;
}

.woocommerce-variation-price .price {
    text-align: right;
}

.fa-window-minimize:before {
    content: "\f2d1";
    font-size: 10px;
    font-weight: 100;
    position: relative;
    top: -2px;
    left: -1px;
}

.fa-window-maximize:before,
.fa-times:before,
.fa-window-restore:before {
    font-weight: 100;
    position: relative;
}

.fa-window-maximize:before {
    left: -1px;
    top: 1.5px;
}

.fa-times:before {
    left: -1px;
    top: 1px;
}

.fa-window-restore:before {

    left: -1px;
    top: 2px;
}

.vcht_mainIcon>span {
    font-size: 39px;
}

.woocommerce-MyAccount-navigation {
    background-color: var(--main-color);
    padding: 10px 20px;
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid rgba(2555, 255, 255, 0.3);
}

.woocommerce-MyAccount-navigation li:hover {
    background-color: var(--second-color);
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    color: #fff;
    display: block;
    text-indent: 10px;
    padding: 10px 0;
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 10px 20px;
}

.woocommerce-MyAccount-navigation ::marker {
    content: "";
}

.woocommerce-Address {
    flex: 0 0 100%;
    max-width: 100%;
}

#woo-register-form h2,
#woo-login-form h2 {
    background-color: var(--main-color);
    color: #fff;
    margin-top: 0;
    text-align: center;
    border-radius: 5px;
    padding: 13px 0;
    font-size: 19px;
}

.counter-btn {
    margin-top: 15px;
}

.counter-btn::after {
    content: "\f177";
    font-family: 'Font Awesome 5 Pro';
    position: relative;
    top: 3px;
    margin-right: 5px;
    font-size: 17px;
}

.counter-title-section h2 {
    font-size: 29px;
    margin-top: 0;
}

.counter-title-section p {
    color: var(--second-color);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 40px;
}

.woocommerce-message {
    border-top-color: var(--main-color) !important;
}

.woocommerce-message::before {
    color: var(--main-color) !important;
}

.woocommerce-message .button {
    background: var(--main-color) !important;
    color: #fff !important;
    font-weight: 100 !important;
}

.reset_variations {
    display: none !important;
}

.products-stars-sec i {
    color: gold;
}

.products-cat-sec a {
    color: #bbb;
}

.top-cat-wrap {
    display: flex;
    justify-content: space-between;
}

.decrease,
.increase {
    padding: 8px 20px;
    margin: 0;
    background-color: #f1f1f1;
    border: none;
    border-right: none;
    color: #333;
    font-size: 18px;
    width: 30%;
}

.entry-summary form.cart {
    display: flex !important;
    align-items: center;
}

.entry-summary form .quantity {
    width: 30%;
    background: #f1f1f1;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
}

.entry-summary form button[type="submit"] {
    border-radius: 0 !important;
    height: 47px !important;
    position: relative;
    line-height: 46px;
    padding: 0 !important;
    width: 70% !important;
    text-align: center !important;
}

input[type="number"] {
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    width: auto;
}

.quantity .qty {
    background: #f1f1f1;
    height: 45px !important;
    width: 45px !important;
    border: none;
    border-left: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

#custom-cart-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
}

#custom-cart-popup-inner {
    background: #fff;
    width: max-content;
    display: table;
    margin: auto;
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 40vh;
}

#custom-cart-popup p {
    font-size: 18px;
    margin-bottom: 15px;
}

#popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#close-popup,
#checkout-btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#close-popup {
    background: #999999b3;
    color: white;
    border-radius: 50px;
    padding: 0 25px;
}

#checkout-btn {
    background: var(--main-color);
    color: var(--second-color);
    padding: 10px 25px;
    border-radius: 50px;
}

#single-product-top-sec {
    background-color: #d9dfe3;
    background-image: url(img/top-sec-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 508px;
    margin-bottom: 300px;
}

.quantity-input {
    border: 1px solid #4E901E;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    position: relative;
    margin-left: 10px;
}
.single-product-price-wrap .quantity-input{
    display: none;
}

.quantity-input::after {
    content: "متر مربع";
    background: #0D2A01;
    color: #fff;
    font-size: 13px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    display: table;
    bottom: -9px;
    line-height: 20px;
    padding: 0 5px;
}

.quantity-input input[type="number"] {
    background: transparent;
    border: none;
    color: #fff;
    width: 30px;
    text-align: center;
    border-radius: 4px;
    line-height: 20px;
    margin: 0 5px;
    font-size: 16px;
}

.quantity-input button {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    height: auto;
    line-height: unset;
}

.quantity-input button:focus {
    outline: none;
}

.single-main-image, .single-portfolio-top-sec .active-image {
    background: #f3f3f3;
    height: 430px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.single-main-image img,
.single-portfolio-top-sec .active-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-item-sec img, #single-portfolio-top-right .owl-carousel .owl-item img {
    border-radius: 10px;
    height: 173px;
    cursor: pointer;
    object-fit: cover;
    margin-bottom: 13px;
}

.thumbnail-slider,
#single-portfolio-top-right .owl-carousel {
    padding: 0 45px;
    margin: auto;
}

.thumbnail-slider .owl-nav,
#single-portfolio-top-right .owl-nav {
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: unset;
    display: flex;
    justify-content: space-between;
    right: 0;
    padding: 0 10px;
}

#single-portfolio-top-right .owl-nav {
    top: 47px;
}

.thumbnail-slider .owl-nav button,
#single-portfolio-top-right .owl-nav button {
    color: transparent !important;
    font-size: 47px !important;
    background-image: none !important;
}

.thumbnail-slider .owl-prev,
#single-portfolio-top-right {
    right: -29px !important;
}

.thumbnail-slider .owl-next,
#single-portfolio-top-right .owl-prev {
    left: 0 !important;
}
.thumbnail-slider .owl-prev span {
    background-image: url(img/product-slider-next-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 22px !important;
    position: relative;
    top: 20px;
}
.thumbnail-slider .owl-next span{
    background-image: url(img/product-slider-prev-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 22px !important;
    position: relative;
    top: 20px;
}

.single-garanty-sec {
    background-image: url(img/product-garanty-icon.svg);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 23px;
    padding-left: 15px;
    line-height: 17px;
    border-left: 1px solid #666666F2;
    margin-left: 15px;
}

.woocommerce-product-rating img {
    margin-right: 5px;
    height: 24px;
}

.product-single-top-sec {
    margin-bottom: 15px;
}

.product-single-top-sec h1 {
    color: var(--second-color);
    font-size: 25px;
    margin: 0;
}

.product-en-title{
    color: var(--second-color);
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}
.single-variable-wrap {
    border-radius: 50px;
    background: #FFF;
    height: 166px;
    position: relative;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    padding-top: 97px;
    margin-top: 29px;
}
.single-product-opt-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.single-product-opt-wrap::-webkit-scrollbar {
    width: 5px;
}

.single-product-opt-wrap::-webkit-scrollbar-track {
    width: 5px;
}

.single-product-opt-wrap::-webkit-scrollbar-thumb {
    background: var(--second-color);
}

.product-custom-options-sec {
    background: #0531544D;
    border-radius: 5px;
    width: max-content;
    min-width: 48%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-custom-options-sec > img {
    background: #FFFFFF33;
    width: 50px;
    height: 49px;
    border-radius: 5px;
    padding: 11px;
}

.product-custom-options-sec > div {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.device-color-pick-wrap, .product-device-colors{
    display: flex;
    align-items: center;
    list-style: none;
}
.device-color-pick-wrap {
    margin-bottom: 30px;
    padding-right: 30px;
    padding-top: 15px;
    margin-top: 30px;
}
.single-variable-wrap table.variations {
    position: absolute;
    top: -77px;
    left: 0;
    right: 0;
    width: 94%;
    margin: auto;
}
.single-variable-wrap table.variations tbody {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-variable-wrap table.variations label{
    color: var(--second-color);
}
.regular-attribute-label {
  background: #6666664D;
  color: var(--second-color);
  display: inline-block;
  line-height: 39px;
  border-radius: 50px;
  padding: 0 25px 0 50px;
  position: relative;
  left: -37px;
  top: -3px;
}

.single-variable-wrap table.variations select {
    background: var(--second-color);
    color: #fff !important;
    width: 225px;
    height: 39px;
    border-radius: 50px;
}


.woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce div.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce div.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce div.product .woosb-product .variations_form .tawcvs-swatches .swatch:first-child, .woocommerce div.product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce:not(.archive) li.product .cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce:not(.archive) li.product .cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce:not(.archive) li.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce:not(.archive) li.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce:not(.archive) li.product .woosb-product .variations_form .tawcvs-swatches .swatch:first-child, .woocommerce:not(.archive) li.product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.archive .cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.archive .cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.archive .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.archive .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.archive .woosb-product .variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.archive .woosb-product .variations_form .tawcvs-swatches .swatch-show-more:first-child, .wc-product-table-wrapper .cart.variations_form .tawcvs-swatches .swatch:first-child, .wc-product-table-wrapper .cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .wc-product-table-wrapper .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch:first-child, .wc-product-table-wrapper .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .wc-product-table-wrapper .woosb-product .variations_form .tawcvs-swatches .swatch:first-child, .wc-product-table-wrapper .woosb-product .variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.single-product .cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.single-product .cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.single-product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.single-product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more:first-child, .woocommerce.single-product .woosb-product .variations_form .tawcvs-swatches .swatch:first-child, .woocommerce.single-product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more:first-child {
    margin-left: 7px !important;
}
.woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce div.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce div.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce div.product .woosb-product .variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce div.product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce:not(.archive) li.product .cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce:not(.archive) li.product .cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce:not(.archive) li.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce:not(.archive) li.product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce:not(.archive) li.product .woosb-product .variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce:not(.archive) li.product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.archive .cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.archive .cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.archive .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.archive .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.archive .woosb-product .variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.archive .woosb-product .variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .wc-product-table-wrapper .cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .wc-product-table-wrapper .cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .wc-product-table-wrapper .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .wc-product-table-wrapper .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .wc-product-table-wrapper .woosb-product .variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .wc-product-table-wrapper .woosb-product .variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.single-product .cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.single-product .cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.single-product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.single-product .bundled_item_cart_content.cart.variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle, .woocommerce.single-product .woosb-product .variations_form .tawcvs-swatches .swatch.swatch-shape-circle, .woocommerce.single-product .woosb-product .variations_form .tawcvs-swatches .swatch-show-more.swatch-shape-circle {
    -webkit-border-radius: 5px !important;
    border-radius: 5px !important;
}


.woocommerce-product-price-wrap .single-product-price{
    display: none;
}
.device-color-pick-wrap span, .device-purchase-budget-wrap > span{
    color: var(--second-color);
    font-weight: bold;
    margin-left: 20px;
}
.device-color-item {
    position: relative;
    top: 12px;
}
.device-color-swatch{
    display: block;
    width: 40px;
    height: 25px;
    border-top: 2px solid var(--main-color);
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.device-color-swatch::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 4px;
    height: 4px;
    outline: 2px solid #fff;
    border-radius: 100%;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: -3px;
    opacity: 0;
    visibility: hidden;
}
.device-color-swatch:hover:before{
    opacity: 1;
    visibility: visible;
}
.device-color-name{
    color: #3A3A3A;
    font-size: 10px;
    display: block;
    text-align: center;
}

.device-purchase-budget-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.purchase-button{
    background: #05315499;
    color: var(--main-color);
    display: inline-block;
    padding: 9px 25px;
    border-radius: 5px;
    margin-left: 20px;
    transition: all 0.3s;
}
.purchase-button:hover{
    background: var(--second-color);
}
.btn-deactive{
    background: #C5C5C5;
    color: #DADADA;
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
}
.btn-deactive::after{
    content: "غیرفعال";
    color: #666666;
    position: absolute;
    left: -12px;
    top: -3px;
    transform: rotate(-45deg);
}

.project-description {
    background: #F6F6F6;
    border-radius: 5px 20px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.project-description span {
    color: #666666F2;
    width: 20%;
}

.project-description p {
    color: #3A3A3A;
    width: 80%;
}

.single-portfolio-desc-wrap {
    padding: 23px !important;
    margin-top: 50px;
}

.single-portfolio-desc-wrap h3 {
    font-size: 18px;
}

.single-portfolio-desc-wrap span {
    color: #F6F3F3;
    font-size: 13px;
}

#single-product-menu-sec {
    padding-bottom: 85px;
}

.product-custom-options-sec .product-custom-title {
    color: #053154B2;
    font-weight: bold;
    margin-left: 15px;
}

.product-custom-options-sec .product-custom-desc {
    color: var(--second-color);
    font-weight: bold;
}

.catalog-btn {
    background-color: var(--second-color);
    background-image: url(img/product-catalog-icon.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    color: #fff;
    border-bottom: 4px solid var(--main-color);
    display: inline-block;
    border-radius: 100px;
    padding: 18px 47px 18px 18px;
    margin-left: 20px;
}
.woocommerce-product-price-wrap{
    background: var(--main-color);
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 7px 25px 7px 40px;
    width: 77%;
}
.woocommerce-product-price-wrap .price {
    font-size: 19px !important;
    color: #111 !important;
    font-weight: bold;
}
.woocommerce-product-price-wrap .price .woocommerce-Price-currencySymbol{
    font-size: 11px;
}
.woocommerce-product-price-wrap .quantity{
    display: none !important;
}
.woocommerce-product-price-sec {
    font-size: 16px;
    font-weight: bold;
    color: var(--second-color);
    line-height: 55px;
    margin-left: 30px;
}
.single-product-price-wrap {
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
    position: relative;
}

.single-product-price {
    font-size: 18px;
    display: block;
    margin-right: 30px;
}

.single-product-price del {
    margin-left: 10px;
}

.single-product-price ins {
    text-decoration: none;
}

.single-product-contact-sec,
.single-portfolio-contact-wrap {
    background: #47821C1A;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 5px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-product-contact-wrap {
    background: #fff;
    border-top: 4px solid var(--second-color);
    border-left: 4px solid var(--second-color);
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    margin-top: 35px;
    position: relative;
}
.single-product-contact-img-sec {
    background: #0531541A;
    width: 115px;
    height: 115px;
    border-radius: 10px;
    text-align: center;
    line-height: 115px;
}
.single-product-contact-img-sec img {
    height: 88px;
}
.single-product-contact-wrap span {
    color: var(--second-color);
    font-size: 16px;
    margin-right: 35px;
}
.single-product-contact-wrap a {
    background-color: var(--second-color);
    background-image: url(img/headphone-icon.svg);
    background-repeat: no-repeat;
    background-position: 23px center;
    color: var(--main-color);
    padding-right: 30px;
    padding-top: 2px;
    display: inline-block;
    font-size: 19px;
    width: 220px;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    position: absolute;
    left: -2px;
}



.single-variable-simple-wrap .woocommerce-product-price-wrap .single-product-price {
    display: inline-block;
}
.single-variable-simple-wrap .woocommerce-product-price-wrap{
    width: 100%;
}
.single-variable-simple-wrap .woocommerce-product-price-wrap {
    padding: 7px 0px;
    width: 70% !important;
    position: unset;
}
.single-variable-simple-wrap .single-product-price-wrap {
    justify-content: start;
}

.contact-methods a {
    color: #0D2A01;
    font-size: 13px;
    margin-left: 15px;
    border-left: 1px solid #D9D9D9;
    padding-left: 15px;
}

.contact-methods a:last-of-type {
    border-left: none;
}

.contact-methods a img {
    height: 25px;
    margin-left: 10px;
}

.single-product-contact-sec a {
    color: #0D2A01;
    text-align: center;
    font-size: 13px;
    display: table;
    border-left: 2px solid #D9D9D9;
    background-repeat: no-repeat;
    background-position: 78% center;
    padding-right: 30px;
    line-height: 23px;
    width: 23%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.single-product-contact-title {
    color: #3A3A3A;
    width: 30%;
}

.single-product-instagram {
    background-image: url(img/single-product-instagram-icon.svg);
}

.single-product-whatsapp {
    background-image: url(img/single-product-whatsapp-icon.svg);
    background-position: 73% center !important;
}

.single-product-phone {
    background-image: url(img/single-product-phone-icon.svg);
    background-position: 85% center !important;
    border-left: none !important;
    padding-left: 0 !important;
}

#single-products-services-sec {
    padding: 50px 0;
}

.product-single-service-item-sec {
    border: 1px solid #0D2A0133;
    border-radius: 5px 50px;
    width: max-content;
    margin: auto;
    padding: 15px 25px;
    border-bottom: 3px solid var(--main-color);
}

.product-single-service-icon img {
    height: 36px;
}

.product-single-service-content {
    margin-right: 20px;
}

.product-single-title {
    color: #3A3A3A;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 25px;
}

.product-single-detail {
    color: #3A3A3A;
    font-size: 14px;
}

#single-product-list-fix {
    background: #F4F4F5;
    border-radius: 100px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2;
}

#single-product-list-fix ul {
    list-style: none;
    display: flex;
}

#single-product-list-fix ul li a {
    color: #666;
    margin: 0 15px;
    position: relative;
}

#single-product-list-fix ul li a::before {
    content: "";
    background: var(--main-color);
    display: inline-block;
    width: 43px;
    height: 43px;
    border-radius: 100%;
    position: absolute;
    z-index: -1;
    right: -8px;
    top: -10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
#single-product-list-fix ul li a:hover::before, #single-product-list-fix .active-menu-item::before {
    opacity: 1;
    visibility: visible;
}

#single-product-list-fix>div {
    width: max-content;
    display: flex;
    align-items: center;
}

.single-product-list-instagram {
    background-color: var(--main-color);
    background-image: url(img/list-instagram.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    color: var(--second-color);
    border-radius: 50px;
    padding: 7px 43px 7px 19px;
    transition: all 0.3s;
}

.single-product-list-go-top {
    background-color: #0D2A01;
    background-image: url(img/top-caret-icon.svg);
    background-repeat: no-repeat;
    background-position: center 3px;
    background-size: 50px;
    display: inline-block;
    width: 42px;
    height: 40px;
    border-radius: 100%;
    margin-right: 15px;
}


#single-product-table-sec {
    padding: 50px 0;
}

.single-product-table-wrap {
    border: 1px solid #D9D9D9;
    border-radius: 30px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    height: 250px;
    transition: height 0.3s;
}

.single-product-table-bottom-sec {
    width: 100%;
    height: 167px;
    background: linear-gradient(177deg, rgba(255, 255, 255, 0.60) 2.14%, rgba(255, 255, 255, 0.80) 54.14%, #FFF 97.86%);
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 1;
    transition: opacity 0.3s;
}

.single-product-table-bottom-sec button, .single-product-opt-wrap button {
    background-image: url(img/product-text-more-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 19px;
    border: none;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
}
.single-product-opt-wrap button {
    display: none;
}

.product-table-items-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-table-title {
    color: var(--second-color);
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 100px;
    margin-left: 2%;
    width: 23%;
    height: 47px;
    text-align: center;
}

.product-table-desc {
    background-color: #F6F6F6;
    font-size: 13px;
    color: #464646;
    padding: 10px 25px;
    border-radius: 100px;
    width: 75%;
}

.table-product-sec {
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    padding: 10px;
    border-radius: 10px;
}

.table-product-sec h3{
    color: var(--second-color);
    font-size: 16px;
    text-align: center;
}

.table-product-sec img {
    height: 430px;
    border-radius: 10px;
    object-fit: cover;
}

.single-product-table-price-sec {
    background: var(--second-color);
    color: var(--main-color);
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 37px;
}

.single-product-table-price-sec .single-product-price {
    font-size: 13px;
}

.single-product-table-price-sec .woocommerce-Price-currencySymbol {
    color: var(--main-color);
    margin-right: 5px;
}
.sidebar-product-cat-wrap {
    background-color: #DADADA80;
    background-image: url(img/product-cat-icon);
    background-repeat: no-repeat;
    background-position: 96% center;
    border-radius: 5px;
    padding: 11px;
    padding-right: 50px;
    margin-top: 25px;
}
.sidebar-product-cat-wrap ul {
    list-style: none;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.sidebar-product-cat-wrap ul li a{
    color: #053154B2;
    font-size: 13px;
}

#single-product-introduce-sec, #landing-content-sec {
    color: #666666F2;
    border: 1px solid #D9D9D9;
    padding: 25px;
    margin-top: 35px;
    border-radius: 30px;
    text-align: justify;
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out;
}
.landing-bottom-links-wrap{
    margin-top: 55px;
}
.woo-cat-opt-btn {
    background: #05315480;
    color: #231F20;
    font-size: 11px;
    display: inline-block;
    padding: 0px 5px 0px 20px;
    position: relative;
    border-radius: 100px;
    margin-bottom: 15px;
}
.woo-cat-opt-btn::before {
    content: "";
    background-image: url(img/woo-cat-opt-btn-before.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
    margin-left: 7px;
}

#landing-content-sec {
    max-height: 340px;
}

.fade-out {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.toggle-btn {
    background-image: url(img/product-text-more-icon.png);
    background-repeat: no-repeat;
    border: none;
    width: 18px;
    height: 19px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -9px;
    margin: auto;
}

#single-product-related-sec {
    margin: 50px 0;
}
#single-product-related-sec .owl-nav{
    display: none;
}
.related-products .owl-nav {
    position: absolute;
    top: -53px;
}

#single-product-questions-sec {
    margin-top: 100px;
}

.accordion-wrap {
    display: flex;
    margin-bottom: 35px;
}

.accordion-item {
    background: #F4F4F5;
    border-radius: 35px;
    border: none;
}

.qa-counter {
    background: #F4F4F5;
    color: #00112B;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    width: 73px;
    height: 73px;
    line-height: 80px;
    border-radius: 25px;
    border-bottom: 2px solid #47821C;
}

.accordion-item {
    width: 90%;
    margin-right: 3%;
}

.accordion-item h3 button {
    color: #3A3A3A !important;
    background: transparent;
    font-size: 16px;
    padding: 7px 0px;
    position: relative;
    box-shadow: none;
    border-bottom: 1px solid #D9D9D9;
    width: 90%;
    margin: auto;
    border-radius: 0 !important;
}

.accordion-item h3 button::after {
    background-image: url(img/question-btn-after-icon.svg);
    width: 23px;
    height: 23px;
    position: absolute;
    left: -17px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(img/question-btn-after-icon.svg);
}

.accordion-item {
    width: 90%;
    margin-right: 3%;
    border-radius: 25px !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.qa-answrer-sec {
    font-size: 14px;
    color: #666666F2;
    width: 90%;
    margin: auto;
    padding: 15px 0 30px;
}

.single-device-technologies-section{
    background: #D9D9D91A;
    padding: 55px 0;
    margin: 100px 0;
}

.product-banner {
    position: sticky;
    top: 0;
}

.product-banner img {
    border-radius: 5px 50px;
    height: 335px;
    width: 100%;
    object-fit: cover;
}

#single-products-comments-sec {
    padding: 100px 0;
}

.comment_container {
    color: #666666F2;
    border: 1px solid #C5C5C5;
    border-radius: 50px;
    padding: 35px;
    font-size: 15px;
    padding-top: 55px;
    position: relative;
    margin-bottom: 100px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 !important;
    border: none !important;
    border-radius: 4px;
    padding: 0 !important;
}

.comment-header-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    width: 87%;
    right: 0;
    left: 0;
    top: -24px;
    margin: auto;
    justify-content: space-between;
}

.comments-blog .comment-header-wrap{
    justify-content: center;
}

.comment-header {
    background: var(--main-color);
    border-radius: 50px;
    padding: 11px 40px;
    width: 71%;
    margin-left: 2%;
}

.woocommerce-review__author {
    background-image: url(img/comment-author-icon.svg);
    background-repeat: no-repeat;
    background-position: right top;
    color: #374957;
    font-size: 14px;
    min-width: 30%;
    padding-right: 25px;
    font-weight: 100;
}

.comment-date-sec {
    background-image: url(img/comment-date-icon.svg);
    background-repeat: no-repeat;
    background-position: right top;
    color: #374957;
    font-size: 14px;
    padding-right: 30px;
    display: inline-block;
    width: max-content;
}
.comment-rating-wrap {
    background: #F4F4F5;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 50px;
    gap: 5px;
    width: 25%;
}
.comment-rating-fill, .comment-rating-empty{
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.comment-rating-fill{
    background-image: url(img/star-fill-icon.svg);
}
.comment-rating-empty{
    background-image: url(img/star-empty-icon.svg);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
}

.comment_container .comment-meta {
    display: block;
}

.woocommerce-review__dash {
    display: none;
}

.comment-footer {
    width: 80%;
    bottom: 20px;
    position: absolute;
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: auto;
}

.comment_container .comment-footer {
    bottom: -22px;
    position: absolute;
    width: 89%;
}

.comment-rating {
    background: #F4F4F5;
    padding: 14px;
    border-radius: 50px;
    color: var(--main-color);
    font-size: 21px;
    width: 27%;
    display: flex;
    justify-content: center;
}

.comment-rating .rating {
    display: none;
}

.comment-reply a {
    background: #F4F4F5;
    color: var(--second-color);
    font-size: 14px;
    display: table;
    border-radius: 50px;
    padding: 9px 25px;
    margin: auto;
}

.comment-reply-title {
    display: none;
}

#review_form_wrapper,
.woocommerce #reviews #comments ol.commentlist #respond {
    background: #F4F4F580;
    padding: 25px;
    border-radius: 25px;
}

#comment_form_wrapper{
    background: #F4F4F580;
    border-radius: 25px;
    padding: 25px;
}
.comment-form {
    display: flex;
    flex-wrap: wrap;
}

.comment-form label {
    background: linear-gradient(to bottom, #F4F4F580 50%, #edeff2 50%);
    color: #374957;
    font-size: 14px;
    position: relative;
    top: 13px;
    right: 23px;
    padding: 0 5px;
}

.comment-form-email label {
    right: 33px;
}

.comment-form input {
    background: #0531540D;
    border: 1px solid var(--second-color);
    font-size: 13px;
    display: block;
    width: 100%;
    border-radius: 100px;
    padding: 10px;
}

.form-submit button {
    background: var(--second-color);
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 100px;
    position: relative;
    padding: 8px 50px;
    transition: all 0.3s;
}

.form-submit button::before {
    content: "";
    background-color: var(--second-color);
    border-radius: 50%;
    display: inline-block;
    outline: 2px solid #fff;
    width: 5px;
    height: 5px;
    position: absolute;
    right: -3px;
    top: 21px;
}

.form-submit button:hover {
    background: var(--main-color);
    color: var(--second-color);
}

.comment-form #email {
    float: left;
}

.comment-form textarea {
    background: #0531540D;
    border-radius: 25px;
    border: 1px solid var(--second-color);
    resize: none;
    height: 170px !important;
    padding: 15px;
    width: 100%;
}

.comment-form .comment-form-comment {
    width: 100%;
    order: 3;
}

.comment-form .comment-form-author {
    width: 100%;
    order: 1;
}

.comment-form .comment-form-email {
    width: 100%;
    order: 2;
}

.comment-form .comment-form-cookies-consent {
    order: 5;
    width: 100%;
}

.comment-form .form-submit {
    order: 4;
    width: 100%;
    text-align: center;
}

.comment-form .comment-form-rating {
    width: 100%;
    order: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 !important;
}

.comments-title-wrap {
    text-align: center;
    margin-bottom: 75px;
}

.comments-title-wrap h2 {
    color: var(--second-color);
    line-height: 70px;
    font-size: 18px;
    display: table;
    width: max-content;
    margin: auto;
    padding-right: 55px;
    margin-bottom: -5px;
    position: relative;
}

.comments-title-wrap h2::before {
    content: "";
    background-color: var(--second-color);
    background-image: url(img/comments-title-before.svg);
    background-repeat: no-repeat;
    background-size: 57%;
    background-position: center;
    display: inline-block;
    width: 42px;
    height: 42px;
    position: absolute;
    border-radius: 100%;
    right: 0;
    top: 13px;
}

.comments-title-wrap sub {
    color: #666666F2;
    font-size: 14px;
    display: inline-block;
    right: 27px;
    position: relative;
    top: -10px;
}

.comment-form-rating {
    display: flex;
    align-items: center;
}

.comment-form-rating label {
    top: 0;
    background: transparent;
    columns: #374957;
}

.comment-form-rating .stars {
    margin-bottom: 0 !important;
    margin-right: 40px !important;
}

.comment-form-rating .stars a {
    color: #374957;
    font-size: 21px;
    margin-left: 7px;
}

.comment-form .comment-form-cookies-consent {
    order: 5;
    width: 100%;
    margin-bottom: 0 !important;
}

#wp-comment-cookies-consent {
    display: inline-block;
    width: max-content;
    position: relative;
    top: 2px;
}

.comment-form .comment-form-cookies-consent label {
    top: 0;
    background: transparent;
    right: 0;
}

.mobile-btn {
    display: none;
}
.price-wrap > span:nth-child(3), .price-wrap > span:nth-child(4), .price-wrap > span:nth-child(5), .mobile-footer-fix{
    display: none;
}