:root {
    --color1: #1C75BC;
    --color2: #C41425;
    --color3: #4D4D4D;
    --color4: #F4F5F7;
    --color5: #8F8F8F;
    --danger: #d53343;
    --white: #ffffff;
    --black: #0F0F0F;
    --gray1: #4D4D4D;
    --gray2: #F4F5F7;
    --gray3: #8F8F8F;
    --gray4: #E6E6E6;
    --Regular: Regular;
    --SemiBold: SemiBold;
    --Bold: Bold;
    --en: montserrat;
    --heading_h1_fontsize: clamp(22px, 3vw, 32px);
}
/** Main **/
html,
html *,
::before,
::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--color1);
}
::selection {
    color: #fff;
    background: var(--color1);
}
.h-100 {
    height: 100%;
}
strong {
    font-family: var(--Bold) !important;
}
body {
    direction: rtl;
    text-align: right;
    font-family: var(--Regular), Arial !important;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}
.position-relative {
    position: relative;
}
.s-title {
    font-size: clamp(18px, 4vw, 28px);
    line-height: 1.8;
    font-family: var(--Bold);
}
.s-icon {
    position: relative;
    /* padding-top: 30px; */
    display: flex;
    align-items: center;
    gap: 8px;
}
.s-icon:before {
    content: "";
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 50%;*/
    /*transform: translateX(50%);*/
    background-image: url('data:image/svg+xml,<svg width="102" height="93" viewBox="0 0 102 93" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40.7883 42.3388C35.7113 47.3994 98.3232 45.4374 80.7691 59.8688C69.0771 69.4969 19.7276 68.2317 17.4365 92.5486C33.4633 78.1064 98.3125 74.3109 101.765 55.4729C104.487 40.634 45.876 37.2781 40.7883 42.3388ZM47.6077 92.9989C51.0927 92.2913 83.157 91.3156 94.9781 69.1967C72.6482 83.2743 53.7925 79.3823 47.6077 92.9989Z" fill="%23BF292E"/><path d="M70.3252 6.39011C67.0446 3.29153 61.6342 0.23584 61.6342 0.23584C61.6342 0.23584 30.8822 17.0904 20.1152 24.7457C45.8871 15.5572 78.8872 14.4743 70.3252 6.39011Z" fill="%230E71B6"/><path d="M71.4329 24.9395C62.0212 27.8558 17.4797 36.4546 19.1254 45.8147C20.5775 54.0597 61.2682 51.7438 61.5694 55.4321C61.8706 59.1204 22.8578 60.5571 9.26195 53.4915C-4.3339 46.4258 -2.12888 41.0221 10.4559 34.9214C36.658 22.2162 80.4896 19.5465 81.8449 11.9233C84.5232 18.7102 80.8446 22.0232 71.4329 24.9395Z" fill="%230E71B6"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-icon-right:before {
    right: 0;
    transform: unset;
}
.title-en {
    color: var(--color5);
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.4;
    font-family: var(--en);
    text-transform: uppercase;
}
.s-padding {
    padding-block: clamp(32px, 5vw, 72px);
    position: relative;
}
.s-padding:before {
    content: "";
    position: absolute;
    top: 0;
    right: 16px;
    width: calc(100% - 32px);
    height: 100%;
    border-radius: 2rem 2rem 0 0;
    z-index: -1;
    background: linear-gradient(180deg, #EFF7FA, transparent);
}
.c-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 32px;
    justify-content: center;
}
.btns {
    font-size: clamp(12px, 2vw, 14px);
    gap: 4px;
    display: flex;
    align-items: center;
    font-family: var(--Bold);
    position: relative;
    padding-left: 14px;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.4s;
}
.btns span {
    position: relative;
    transition: 0.4s;
}
.btns:hover span {
    color: var(--white);
}
.btns:before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    z-index: 0;
    transition: 0.4s;
}
.btns.btn1:hover .icons {
    background: var(--color1);
    background: var(--white);
    color: var(--color1);
}
.btns.btn2:hover .icons {
    background: var(--color2);
    background: var(--white);
    color: var(--color2);
}
.btns.btn1:before {
    background: var(--color1);
}
.btns.btn2:before {
    background: var(--color2);
}
.btns:hover:before {
    width: 100%;
}
.btns .icons {
    width: 2rem;
    height: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.4s;
}
.btn1 .icons {
    background: var(--color1);
    border: 1px solid var(--color1);
}
.btn2 .icons {
    background: var(--color2);
    border: 1px solid var(--color2);
}
.s-space {
    margin-block: clamp(64px, 7vw, 104px);
}
.s-space:nth-child(1) {
    margin-top: 0;
}
.s-space:nth-last-child(1) {
    margin-bottom: 0;
}
.title-box {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.abs-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.item-banner img {
    width: 100%;
    transition: 0.4s;
    border-radius: clamp(24px, 3vw, 32px);
}
.item-banner:hover img {
    transform: translateY(-10px);
    filter: drop-shadow(0px 8px 8px #00000030);
}
.section-sale .swiper-button-next {
    right: calc(100% - 1.5rem);
}
.section-sale .swiper-button-prev {
    left: calc(100% - 1.5rem);
}
@media screen and (max-width: 768px) {
    .home .site-main {
        padding-inline: 1rem;
    }
    .title-box {
        margin-bottom: 32px;
    }
    .c-btn {
        margin-top: 24px;
    }
    .section-sale .swiper-button-next {
        right: calc(100% - 1rem);
    }
    .section-sale .swiper-button-prev {
        left: calc(100% - 1rem);
    }
}
/** Tab CSS **/
/* --------------------
    TAB CSS
-------------------- */
.tab-content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
.tab-content.active {
    display: block;
}
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/** Config **/
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    /*border: 1px solid transparent;*/
    border-radius: .25rem;
}
.bg-primary {
    background-color: #007bff !important;
    color: white;
}
.bg-success {
    background-color: var(--color1) !important;
    color: white;
}
.bg-danger {
    background-color: var(--danger) !important;
    color: white;
}
.clearfix:after {
    content: '';
    clear: both;
    display: block;
}
.container-full {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.container-full > .row {
    margin: 0;
}
.sidebar {
    position: sticky;
    top: 110px;
}
.w-100 {
    width: 100%;
}
.row {
    margin-right: -10px;
    margin-left: -10px;
}
.row > [class*="col-"],
.row > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
#wrapper .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
#wrapper .no-gutters > .col,
#wrapper .no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.text-center {
    text-align: center !important;
}
h1, h2, h3, h4, h5, h6, b, strong {
    font-family: var(--bold_font), Arial;
}
input {
    font-family: var(--main_font), Arial;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
img {
    max-width: 100%;
    height: auto;
}
video {
    width: 100%;
    pointer-events: none;
}
a {
    transition: 0.3s;
    color: #222;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--color1);
}
.form-control.ltr {
    direction: ltr;
    text-align: left;
}
.inner-pages .site-main {
    padding: 50px 0;
}
.section-title {
    color: #313131;
    font-family: var(--bold_font);
    font-size: 26px;
    line-height: normal;
    margin-bottom: 10px;
}
.section-desc {
    font-size: 16px;
    font-family: var(--main_font);
    color: #555555;
}
.swiper-pagination.pagination-style {
    position: relative !important;
    margin-bottom: 0;
    bottom: 1px !important;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.swiper-pagination.abs-pagination {
    position: absolute !important;
    margin: 0;
    bottom: 24px !important;
}
.pagination-style .swiper-pagination-bullet {
    width: 16px !important;
    height: 8px !important;
    border-radius: 13px;
    background: #2EB77E66;
    opacity: 1;
    transition: 0.4s ease;
    margin: 0 6px !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}
.pagination-style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color1) !important;
    width: 38px !important;
    border-radius: 6px;
}
.pagination-style.v2 .swiper-pagination-bullet {
    background: #2D32B666;
}
.pagination-style.v2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2D32B6 !important;
}
.pagination-style.v3 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}
.pagination-style.v3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.archive-content .editor-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color2) !important;
}
.white-content > .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.pagination-style .swiper-pagination-bullet:hover {
    background: var(--color1);
}
.pagination-style.v2 .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.second-color.swiper-pagination .swiper-pagination-bullet {
    background: #44D1C933;
}
.second-color.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.second-color.swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--color2);
}
/*.archive-content,*/
/*.archive-faq,*/
/*.archive-related {*/
/*    margin: 60px 0;*/
/*}*/
.swiper-button-lock {
    display: none !important;
}
/* --------------------
   GENERAL SETTING
-------------------- */
.page-title {
    margin-bottom: 20px;
}
.page-title .title-heading {
    color: #313233;
    font-size: 24px;
    font-family: var(--main_font);
    line-height: 45px;
    margin-bottom: 10px;
}
.page-title .desc p {
    font-size: 14px;
    line-height: 32px;
    color: #555555;
}
.part-title {
    margin-bottom: 20px;
}
.part-title .title-heading {
    font-size: 22px;
    color: #313233;
    line-height: 45px;
}
.part-title.light-title .title-heading {
    color: #fff;
}
.inner-page .site-main {
    margin-top: 25px;
    margin-bottom: 75px;
}
.title-part.inner-title h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-part.inner-title {
    margin-bottom: 20px;
}
.title-site h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-site h4,
.title-site h2 {
    font-size: calc(var(--heading_h1_fontsize) - 2px);
}
.title-site-center {
    text-align: center
}
.title-site-center p.desc {
    text-align: center;
}
.title-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* --------------------
    Animation Pulse
-------------------- */
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 0 rgba(250, 190, 88, 0)
    }
}
@media only screen and (max-width: 768px) {
    .inner-page .site-main {
        margin-top: 25px;
    }
}
/* --------------------
      card
 -------------------- */
form .quantity {
    width: 106px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EFF7FA;
    padding: 12px;
}
form .quantity button {
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: var(--color1);
    border: 2px solid var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}
form .quantity button:hover {
    border-color: var(--color2);
    color: var(--color2);
}
form .quantity input {
    -webkit-appearance: none;
    border: none !important;
    text-align: center !important;
    -moz-appearance: textfield;
    width: 36px !important;
    margin: 0 !important;
    height: auto !important;
    font-size: 20px;
    background: none;
    line-height: 37px;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit;
    background: transparent !important;
    color: var(--black);
    padding-top: 4px !important;
}
form .quantity input::-webkit-outer-spin-button,
form .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* --------------------
    Alerts
-------------------- */
#wrapper .cart-empty.woocommerce-info,
.wpcf7-response-output.wpcf7-validation-errors,
.woocommerce-error,
.woocommerce-mini-cart__empty-message,
.comment-awaiting-moderation.waiting_pm,
.stock.out-of-stock {
    background: var(--bg_danger);
    color: var(--danger);
    border: 1px solid var(--danger);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    display: block;
}
.woocommerce-error li a {
    color: var(--color1);
}
.woocommerce-message,
.woocommerce-success,
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    margin: 0 auto 15px;
    font-size: 14px;
    background: #EFF7FA;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--gray3);
    max-width: fit-content;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background: green;
    color: white;
}
.woocommerce-info:not(.woocommerce-message) a:hover {
    color: var(--color1);
}
.woocommerce-info:not(.woocommerce-message) {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color1);
    color: var(--color1);
}
/** Blue intro **/
.default-page .blue-intro {
    display: flex;
    align-items: center;
    justify-content: center;
}
.archive-intro {
    position: relative;
}
.blue-intro {
    padding-top: 2rem;
    /*min-height: 280px;*/
    text-align: center;
    color: white;
    padding-bottom: clamp(64px, 6vw, 78px);
    background: var(--color1);
    z-index: 1;
    position: relative;
    border-radius: clamp(24px, 3vw, 32px);
}
.blue-intro .s-title {
    font-size: clamp(22px, 3vw, 32px);
}
.blue-intro .title-en {
    color: var(--gray4);
}
.blue-intro .desc {
    margin-top: 1.5rem;
}
.blue-intro .desc p {
    margin: 0;
    color: white;
}
.blue-patter {
    width: 100%;
    position: absolute;
    height: 100%;
    /* background-repeat: no-repeat; */
    background-size: contain;
    background-position: right center;
    width: calc(100% - 2rem);
    right: 50%;
    transform: translateX(50%);
    border-radius: clamp(24px, 3vw, 32px);
    background-color: var(--color1);
    background-image: url(../img/pattern.svg);
    overflow: hidden;
}
.blue-patter:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(28, 117, 188, 1) 80%, rgba(148, 187, 233, 0) 100%);
}
.blue-intro p a {
    background: rgb(255 255 255 / 50%) !important;
    color: black !important;
    transition: 0.4s;
}
.blue-intro p a:hover {
    background: rgb(196 20 37 / 70%) !important;
    color: white !important;
}
.blue-intro ul li,
.blue-intro ol li {
    color: white !important;
}
.blue-intro ol li:before {
    color: white !important;
}
.blue-intro ul li:before,
.blue-intro ol li:after {
    background: white !important;
}
@media only screen and (max-width: 768px) {
    .blue-patter {
        width: calc(100% - 1rem);
    }
    .blue-intro {
        padding-inline: 1rem;
    }
}
/** More Description **/
#more-tax-desc {
    background: var(--gray2);
    border-radius: 2rem;
    padding-top: clamp(48px, 4vw, 56px);
    padding-inline: clamp(16px, 4vw, 50px);
    padding-bottom: clamp(32px, 3vw, 36px);
    position: relative;
}
#more-tax-desc p:nth-last-child(1) {
    margin: 0;
}
#more-tax-desc > h1,
#more-tax-desc > h2,
#more-tax-desc > h3,
#more-tax-desc > h4,
#more-tax-desc > h5,
#more-tax-desc > h6 {
    font-size: clamp(18px, 2vw, 22px);
    margin: 0;
    margin-bottom: clamp(12px, 1vw, 16px);
    font-family: var(--Bold);
}
#more-tax-desc:before {
    content: '\e922';
    font-family: 'icomoon';
    position: absolute;
    right: 50%;
    top: 0;
    transform: translateX(50%);
    z-index: 1;
    color: white;
    font-size: 15px;
    line-height: 1;
}
#more-tax-desc:after {
    content: "";
    width: 44px;
    height: 4px;
    background-color: var(--color1);
    position: absolute;
    top: 0;
    border-radius: 100px;
    right: 50%;
    transform: translateX(50%);
    transition: 0.4s;
    z-index: 1;
}
/** Page Numbers **/
ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: clamp(24px, 4vw, 48px);
    gap: clamp(8px, 2vw, 12px);
}
.page-numbers .page-numbers {
    width: clamp(28px, 4vw, 60px);
    height: clamp(28px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray2);
    border-radius: 50%;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1;
    border: 1px solid var(--gray2);
    transition: 0.4s;
}
.page-numbers .page-numbers:hover,
.page-numbers.current {
    border-color: var(--color1);
    background: unset;
}
.prev.page-numbers,
.next.page-numbers {
    background: unset;
    border-color: transparent;
    color: var(--gray3);
}
/** Archive Posts **/
@media only screen and (min-width: 768px) {
    .accordion-container {
        display: flex !important;
    }
}
.archive--blog .post-item {
    margin-bottom: clamp(24px, 3vw, 32px);
}
.post-categories {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 24px;
    margin-bottom: clamp(32px, 5vw, 64px);
    position: relative;
    background: white;
    margin-top: -34px;
    border-radius: 1rem;
    border: 1px solid var(--gray4);
    width: 80%;
    margin-inline: auto;
    z-index: 1;
}
.categories-wrapper {
    display: flex !important;
    align-items: center;
    gap: 3rem;
}
.category-item {
    transition: 0.4s;
    position: relative;
    padding-block: 6px;
    background: none;
}
.category-item a {
    color: var(--black);
    font-size: 14px;
    transition: 0.4s;
}
.post-categories h3 {
    color: var(--black);
    font-size: clamp(14px, 2vw, 16px);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.post-categories h3 i {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--color2);
    width: clamp(20px, 2vw, 24px);
    height: clamp(20px, 2vw, 24px);
    background: rgb(196 20 37 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.category-item a:hover {
    color: var(--color1);
}
.has-subcategories {
    transition: 0.4s;
}
.category-item.has-subcategories {
    padding-left: 18px;
    padding-right: 0;
}
.categories-menu {
    display: flex;
    gap: 2rem;
}
.badge {
    font-size: 14px;
    color: #787C84;
    position: absolute;
    left: 20px;
    top: 27px;
}
/* CSS For ALLwidget & sidebar  */
.widget-side {
    width: 100%;
}
.widget-side li a {
    color: var(--black);
    font-size: 14px;
    transition: 0.4s;
}
.widget_categories .widget-title {
    transition: .4s;
    font-size: 16px;
    line-height: normal;
    font-family: var(--SemiBold);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}
.cat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
}
.children .cat-item > a {
    display: block;
    transition: 0.4s ease;
}
.widget-side .children {
    padding: 0 1rem 0 0;
    border-radius: 10px;
}
.widget-side .children li {
    border: 0;
}
.caticon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    width: 20px;
    height: 20px;
    font-size: 10px;
}
.caticon:before {
    content: "\e91b";
    font-family: icomoon;
    font-size: 10px;
    display: inline-block;
    z-index: 0;
    transition: 0.4s ease;
}
.caticon.active {
    transform: rotate(180deg);
}
.post-categories .cat-item:not(.children .cat-item) {
    padding-block: 18px;
}
.post-categories .children .cat-item {
    padding: 14px;
}
.post-categories .children .cat-item .children li {
    padding: 14px 0 0;
}
@media (min-width: 62em) {
    .post-categories .widget-side > ul > li > a {
        padding: 1.5rem 0;
    }
    .post-categories {
        margin-bottom: 5rem;
    }
    .post-categories .widget_categories > ul {
        display: flex !important;
        align-items: center !important;
        align-items: stretch;
        gap: 2rem;
    }
    .widget_categories .widget-title {
        margin-left: 1.5rem;
    }
    .post-categories .widget-side.widget_categories {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .post-categories .widget_categories .widget-title .caticon {
        display: none;
    }
    .post-categories .widget-side > ul > .cat-item > ul.children {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 300px;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 500;
        padding: 0px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: block !important;
    }
    .post-categories .widget-side > ul > .cat-item:hover > ul.children {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
.widget-side:not(.woocommerce-widget-layered-nav) ul {
    display: none;
}
@media only screen and (min-width: 768px) {
    .post-categories h3:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: -24px;
    }
    .subcategories-list {
        transition: 0.4s;
        display: none !important;
        position: absolute;
        background: white;
        min-width: 10rem;
        right: 50%;
        transform: translateX(50%);
        top: 100%;
        padding: 10px 14px;
        z-index: 1;
        box-shadow: 0px 0px 7px 0px #cecece73;
    }
    .has-subcategories:hover .subcategories-list {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .has-subcategories:after {
        content: "\e91b";
        font-family: 'icomoon';
        position: absolute;
        left: 0;
        top: 56%;
        transform: translateY(-50%);
        font-size: 10px;
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 768px) {
    .categories-wrapper {
        align-items: start;
        background: none;
        flex-direction: column;
        min-width: 12rem;
        gap: 1.5rem;
    }
    .categories-menu {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .categories-wrapper h3 {
        width: 100%;
    }
    .categories-wrapper .accordion-title:before {
        content: "\e91b";
        font-family: 'icomoon';
        position: absolute;
        left: 8px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
    }
    .category-item.has-subcategories.wrap-ft-menu .accordion-title:before {
        top: 60%;
    }
    .category-item.has-subcategories {
        width: 100%;
    }
    .post-categories {
        padding: 9px 16px;
    }
}
.single-content,
.modular-content {
    border: 1px solid var(--gray4);
    padding-block: clamp(16px, 2vw, 28px);
    border-radius: 2rem;
    padding-inline: clamp(16px, 2vw, 24px);
}
/** Category **/
.cats-items a {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.cats-items .cats-image {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.cats-items .cats-image:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: -25%;
    right: 50%;
    transform: translateX(50%);
    backdrop-filter: blur(8px);
    background: rgb(244 245 247 / 50%);
    transition: 0.4s;
    border-radius: 100%;
}
.cats-items:hover .cats-image:before {
    height: 150%;
    width: 150%;
}
.cats-items .icons {
    position: absolute;
    z-index: 1;
    width: 100px;
    height: 100px;
    bottom: -100px;
    right: 50%;
    transform: translate(50%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    /*color: var(--color2);*/
    transition: 0.4s;
}
.cats-items:hover .icons {
    bottom: 50%;
}
.cats-items .s-title {
    font-size: clamp(14px, 4vw, 18px);
}
.cats-items:after {
    content: "";
    width: 44px;
    height: 4px;
    background-color: var(--color5);
    position: absolute;
    top: 0;
    border-radius: 100px;
    right: 50%;
    transform: translateX(50%);
    transition: 0.4s;
    z-index: 1;
}
.cats-items:before {
    content: '\e922';
    font-family: 'icomoon';
    position: absolute;
    right: 50%;
    top: -1px;
    transform: translateX(50%);
    z-index: 1;
    color: white;
    font-size: 10px;
}
.cats-items:hover:after {
    background-color: var(--color2);
}
.section-categories .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: calc(100% - 1.5rem);
}
.section-categories .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: calc(100% - 1.5rem);
}
/** Archive Product **/
.product-archive-header {
    margin-top: -34px;
}
.archive .archive-product .col-sm-6.col-xl-3 {
    margin-bottom: clamp(24px, 4vw, 56px);
}
.archive .archive-product {
    margin-top: clamp(32px, 5vw, 56px);
    margin-inline: auto;
}
.term-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray3);
    padding: 8px 12px;
    font-size: 14px;
    gap: 8px;
    transition: 0.4s;
}
.term-item:hover {
    background: var(--color2);
    color: white;
}
.product-archive-header_inner {
    display: flex;
    background: white;
    border: 1px solid var(--gray4);
    padding-inline: clamp(12px, 2vw, 20px);
    align-items: center;
    position: relative;
    z-index: 2;
    border-radius: 1rem;
}
.woocommerce-ordering__title i {
    color: var(--color2);
    width: 1.5rem;
    height: 1.5rem;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(196 20 37 / 12%);
    border-radius: 5px;
}
.woocommerce-ordering__title .icon-down {
    font-size: 12px !important;
    width: 12px;
    height: 12px;
    background: unset;
}
.woocommerce-ordering__title {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--SemiBold);
}
.btn-sidebar {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    gap: 8px;
    border-left: 1px solid #A0A4A8;
}
.sidebar-header i,
.btn-sidebar i {
    color: var(--color2);
    font-size: 18px;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-header .icon-filter {
    background: rgb(196 20 37 / 12%);
    border-radius: 6px;
}
.orderby-form {
    margin-right: auto;
    position: relative;
    max-width: 180px !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-block: 18px;
}
.sidebar-shop {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 32px);
}
.sidebar-shop .widget-title {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black);
    font-size: 14px;
    gap: 6px;
    padding-block: 18px;
}
.widget-side {
    position: relative;
}
.product-categories > li {
    padding-block: 8px;
}
.woocommerce-ordering .orderby-list {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease;
    background: var(--gray2);
    width: 100%;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 2;
    padding: 10px 20px;
    max-height: 290px;
    overflow: auto;
    margin: 0 0 0 -1px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    left: 0
}
.orderby-form:hover .orderby-list {
    visibility: visible;
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.woocommerce-ordering .orderby-list button {
    all: unset;
    cursor: pointer;
    text-align: right;
    transition: 0.4s;
}
.woocommerce-ordering .orderby-list button:hover {
    color: var(--color1);
}
#sidebar-0 {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    z-index: 999;
    transition: 0.3s;
    width: 100%;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: white;
}
#sidebar-0.active {
    right: 0;
}
.sidebar-header .title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--SemiBold);
}
@media (min-width: 62em) {
    .widget_layered_nav_filters ul,
    .sidebar-shop .product-categories, .widget_price_filter form, .woocommerce-widget-layered-nav-list {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 260px;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 500;
        padding: 10px 20px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: block !important;
    }
    .widget_layered_nav_filters:hover ul,
    .sidebar-shop > div:hover .product-categories, .sidebar-shop > div:hover form, .sidebar-shop > div:hover .woocommerce-widget-layered-nav-list {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .btn-sidebar {
        display: none;
    }
    .sidebar-close {
        display: none;
    }
    #sidebar-0 {
        position: static;
        display: flex;
        align-items: center;
        border-top: 0;
        flex-direction: row;
        z-index: 1;
        gap: 1.5rem;
        padding: 0;
    }
}
@media only screen and (max-width: 992px) {
    .orderby-form {
        justify-content: center;
        margin: auto;
    }
    #sidebar-0 .widget-title {
        justify-content: space-between;
    }
    .sidebar-shop {
        align-items: flex-start;
        flex-direction: column;
        width: calc(100% - 6px);
    }
    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--gray4);
    }
    #sidebar-0 .widget-side {
        width: 100%;
    }
    #sidebar-0 .caticon:before {
        font-size: 20px;
    }
    .product-archive-header_inner {
        font-size: 12px;
    }
}
/**/
/* CSS For ALLwidget & sidebar  */
.widget_categories.widget-side {
    width: 100%;
    position: relative;
}
.widget-side li a {
    color: var(--black);
    font-size: 14px;
    transition: 0.4s;
    display: flex;
    padding: 10px 0;
}
.widget_categories .widget-title {
    transition: .4s;
    font-size: 16px;
    line-height: normal;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
}
.cat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
}
.children .cat-item > a {
    display: block;
    transition: 0.4s ease;
}
.widget-side .children {
    padding: .5rem 1rem 0 0;
}
.widget-side .children li {
    border: 0;
}
.caticon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    width: 12px;
    height: 12px;
    font-size: 10px;
    padding-top: 3px;
}
.caticon:before {
    content: "\e91b";
    font-family: icomoon;
    font-size: 10px;
    display: inline-block;
    z-index: 0;
    transition: 0.4s ease;
}
.caticon.active {
    transform: rotate(180deg);
}
.post-categories .cat-item:not(.children .cat-item) {
    padding-block: 18px;
}
.post-categories .children .cat-item {
    padding: 14px;
}
.post-categories .children .cat-item .children li {
    padding: 14px 0 0;
}
@media (min-width: 62em) {
    .post-categories .widget_categories > ul {
        display: flex !important;
        align-items: center !important;
        align-items: stretch;
        gap: 2rem;
    }
    .widget_categories .widget-title {
        margin-left: 1.5rem;
    }
    .post-categories .widget-side.widget_categories {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .post-categories .widget_categories .widget-title .caticon {
        display: none;
    }
    .post-categories .widget-side > ul > .cat-item > ul.children {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 300px;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 500;
        padding: 0px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: block !important;
    }
    .post-categories .widget-side > ul > .cat-item:hover > ul.children {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
.widget-side:not(.woocommerce-widget-layered-nav) ul {
    display: none;
}
@media only screen and (min-width: 992px) {
    .post-categories h3:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: -24px;
    }
    .subcategories-list {
        transition: 0.4s;
        display: none !important;
        position: absolute;
        background: white;
        min-width: 10rem;
        right: 50%;
        transform: translateX(50%);
        top: 100%;
        padding: 10px 14px;
        z-index: 1;
        box-shadow: 0px 0px 7px 0px #cecece73;
    }
    .has-subcategories:hover .subcategories-list {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .has-subcategories:after {
        content: "\e900";
        font-family: 'icomoon';
        position: absolute;
        left: 0;
        top: 56%;
        transform: translateY(-50%);
        font-size: 10px;
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar-header {
        position: relative;
        padding-left: 1.5rem;
    }
    .sidebar-header:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: 0px;
    }
}
@media only screen and (max-width: 768px) {
    .categories-wrapper {
        align-items: start;
        background: none;
        flex-direction: column;
        min-width: 12rem;
        gap: 1.5rem;
    }
    .categories-menu {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .categories-wrapper h3 {
        width: 100%;
    }
    .categories-wrapper .accordion-title:before {
        content: "\e91b";
        font-family: 'icomoon';
        position: absolute;
        left: 8px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
    }
    .category-item.has-subcategories.wrap-ft-menu .accordion-title:before {
        top: 60%;
    }
    .category-item.has-subcategories {
        width: 100%;
    }
    .post-categories {
        padding: 9px 16px;
    }
    .badge {
        top: 12px;
    }
}
.woocommerce-widget-layered-nav a:before {
    content: ' ';
    width: 20px !important;
    height: 20px !important;
    background: #aaa0 !important;
    margin: 1px 0 0 8px !important;
    border: 1px solid #ccc !important;
    display: inline-block;
}
/*.woocommerce-widget-layered-nav a:after {*/
/*    content: "\e93b";*/
/*    position: absolute;*/
/*    font-family: 'icomoon';*/
/*    color: #212121;*/
/*    line-height: 1;*/
/*    font-size: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 20px !important;*/
/*    height: 20px !important;*/
/*    margin: 4px 0 0 8px !important;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: 0.3s;*/
/*}*/
li.woocommerce-widget-layered-nav-list__item a:hover:after, li.woocommerce-widget-layered-nav-list__item.chosen a:after {
    opacity: 1 !important;
    visibility: visible !important;
}
li.woocommerce-widget-layered-nav-list__item a:hover:before, li.woocommerce-widget-layered-nav-list__item.chosen a:before {
    border-color: var(--color1) !important;
    background: var(--color1) !important;
    content: "\e94f";
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
/** Section Intro **/
.section-intro {
    min-height: 480px;
    position: relative;
    padding-top: 36px;
}
.img-intro {
    position: absolute;
    top: 0;
    right: 1rem;
    width: calc(100% - 2rem);
    height: 100%;
}
.img-intro.active:before {
    content: none;
}
.img-intro.active {
    z-index: 1;
}
.img-intro video,
.img-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 2rem 2rem;
}
.img-intro:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, white, transparent);
}
.section-intro .desc {
    margin-top: 1.5rem;
}
.intro-video-btn {
    background: #DCCDC9;
    width: clamp(32px, 4vw, 52px);
    height: clamp(32px, 4vw, 52px);
    font-size: clamp(32px, 4vw, 52px);
    position: absolute;
    bottom: 130px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color2);
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    .section-intro {
        padding-top: 0;
    }
    .img-intro {
        right: .5rem;
        width: calc(100% - 1rem);
        border-radius: 1.5rem;
    }
    .img-intro img {
        border-radius: 1.5rem;
    }
    .intro-content {
        padding-inline: 8px;
    }
}
#review_form_wrapper label:not(.comment-form-rating label) {
    position: absolute !important;
    top: -8px;
    right: 24px;
    font-size: 14px;
    background: white;
    padding-inline: 16px;
    z-index: 1;
    color: #787C84;
    line-height: 1;
}
/* route-bar */
.route-bar {
    position: relative;
    margin: 0 0 30px 0;
    user-select: none;
}
.route-bar:before {
    content: "";
    position: absolute;
    top: 30px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--gray4);
}
.route-bar .step-box .wrapper {
    text-align: center;
}
.route-bar .step-box .title a:hover {
    color: var(--color1);
}
.route-bar .step-box .title,
.route-bar .step-box .title a {
    margin: 0;
    color: #363636;
}
.route-bar .step-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gray4);
    border-radius: 50%;
    margin: 0 auto 5px auto;
    background: #fff;
}
.route-bar .step-box .icon-svg {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 0 !important;
}
.woocommerce-cart .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .first-step .icon,
.woocommerce-order-pay .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .first-step .icon,
.woocommerce-order-received .route-bar .second-step .icon,
.woocommerce-order-received .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .fourth-step .icon {
    background-color: var(--color2);
}
.woocommerce-cart .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .first-step .icon-svg,
.woocommerce-order-pay .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .first-step .icon-svg,
.woocommerce-order-received .route-bar .second-step .icon-svg,
.woocommerce-order-received .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .fourth-step .icon-svg {
    filter: brightness(0) invert(1);
}
.product-list-table {
    width: 100%;
}
.inner-intro.general-intro {
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.banner-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-top: 1rem;
}
.banner-sidebar img {
    transition: 0.4s;
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
}
.banner-sidebar:hover img {
    transform: scale(1.05);
}
input#min_price, input#max_price {
    border: 1px solid #E3E3E3;
    background: transparent;
    min-height: 35px;
    padding: 0 12px;
    color: #121212;
    width: 100%;
    margin-bottom: 14px;
}
.price_slider_wrapper {
    position: relative;
    margin: 1.25rem 0 1rem;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    height: 3px;
    margin: 18px 18px 65px 5px;
    background: #4E505133
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: var(--color1)
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em
}
.price_slider_wrapper .ui-slider .ui-slider-handle {
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: ew-resize;
    outline: 0;
    top: -10px;
    margin-left: -5px;
    background: var(--color1);
    border-radius: 100%;
    position: absolute;
    transition: all 0.3s;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center
}
.price_slider_amount {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px
}
.price_slider-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.price_slider_wrapper button {
    height: 40px;
    margin: 0;
    background: var(--color1);
    color: #fff;
    border: 1px solid var(--color1) !important;
    border-radius: 12px !important;
    font-family: var(--Regular);
}
.price_label {
    position: absolute;
    top: 22px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.header-mm {
    width: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.widget_layered_nav_filters .chosen a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget_layered_nav_filters .chosen a:before {
    content: "\e90a";
    font-family: 'icomoon' !important;
    width: 20px;
    height: 20px;
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}
.widget_layered_nav_filters .widget-title {
    min-width: 7rem;
}
.must-log-in {
    background: #EFF7FA;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 4rem !important;
    text-align: center !important;
}
.must-log-in a {
    background: var(--color2);
    border-radius: 5px;
    margin-inline: 4px;
    padding-inline: 4px;
    color: white;
}
.no-sale-products {
    background: var(--color2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}
.login-notice-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    .websima-auth-modal-btn {
        height: 50px;
        width: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color2);
        border-radius: 100px;
        transition: 0.4s;
        color: white;
        border: 0;
        font-family: var(--SemiBold);
        padding: 12px 24px;
    }
}
