/**================== ROOT ==================**/
:root {
    --cl-main: #76B800;
    --cl-sp-main: #864600;
    --cl-hover-main: #c51230;
    --cl-light-main: #9e753f;
    --cl-mega-menu: #F0F0F0;
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-gray: #fafafa;
    --cl-light-gray: #EBEFF4;
    --cl-dark-gray: #666666;
    --cl-sp-gray: #F0F0F0;
    --cl-light-red: #C60000;
    --cl-dark-red: #990a00;
    --cl-red: #EA403F;
    --cl-yl: #FDEE21;
    --cl-green: #009739;
    --cl-blue: #0C163A;
    --cl-light-blue: #dbedf9;
    --cl-orange: #D29728;
    --cl-light-orange: #BF9352;
    --font-aws: FontAwesome;
    --font-main: 'Montserrat', sans-serif !important;
    --ratio-16-9: calc(9 / 16 * 100%);
    --ratio-4-3: calc(3 / 4 * 100%);
    --ratio-3-4: calc(4 / 3 * 100%);
    --ratio-9-16: calc(16 / 9 * 100%);
    --ratio-1-1: 100%;
    --transition-duration: 1s;
    --transition-delay-one: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.1),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.2);
    --transition-delay-two: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.22),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.32);
    --transition-delay-three: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.28),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.38);
    --transition-delay-four: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.34),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.44);
    --transition-delay-five: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.4),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.5);
    --appear-animation: translateY(3.75rem);
    --active-appear-animation: translateY(0);
}

.appear-delay-1 {
    transition: var(--transition-delay-one);
}

.appear-delay-2 {
    transition: var(--transition-delay-two);
}

.appear-delay-3 {
    transition: var(--transition-delay-three);
}

.appear-delay-4 {
    transition: var(--transition-delay-four);
}

.appear-delay-5 {
    transition: var(--transition-delay-five);
}

.CR-show-mb {
    display: none !important;
}

/**================== HEADING TITLE GROUP ==================**/
.CR-heading-title--group {
    position: relative;
}

.CR-heading-title--group .sub-title {
    color: var(--cl-black);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.625rem  /* 10/16 */;
    text-transform: uppercase;
}

.CR-heading-title--group .heading-title {
    color: var(--cl-main);
    font-size: 2.25rem  /* 36/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

.CR-heading-title--group .heading-title b {
    font-weight: 700;
}

.CR-heading-title--group .heading-title strong {
    color: var(--cl-main);
}

.CR-heading-title--group .desc {
    color: var(--cl-black);
    font-size: 0.9375rem  /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem  /* 26/16 */;
    margin: 0.3125rem  /* 5/16 */ auto 0;
    text-align: center;
}

.CR-heading-title--group .desc b {
    font-weight: 700;
}

.CR-heading-title--group.vertical .desc,
.CR-heading-title--group.vertical .heading-title {
    text-align: center;
}



/**================== HEADER ==================**/
.admin-bar #CR-header {
    top: 32px;
}

#CR-header {
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8888;
    box-shadow: -1px 4px 29px transparent;
    color: var(--cl-white);
}

#CR-header:hover,
#CR-header.CR-fixed {
    box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
}

#CR-header .CR-top-header {
    padding: 0.3125rem  /* 5/16 */ 0;
    background: var(--cl-main);
}

#CR-header .CR-top-header .left--box {
    width: 45%;
}

#CR-header .CR-top-header .right--box {
    width: 55%;
}

#CR-header .logo--box {
    position: relative;
    padding-right: 1.25rem  /* 20/16 */;
    height: 100%;
}

#CR-header .logo--box img {
    width: auto;
    height: 3.125rem  /* 50/16 */;
    object-fit: contain;
}

#CR-header .slogan--box {
    font-weight: 900;
    color: var(--cl-white);
    font-style: normal;
    font-size: 0.875rem  /* 14/16 */;
    line-height: 1.25rem  /* 20/16 */;
    margin: 0;
    padding-left: 1.25rem  /* 20/16 */;
    text-align: left;
}

#CR-header .slogan--box b {
    color: var(--cl-sp-main);
}

#CR-header .logo--box:after,
#CR-header .search-head--box:after {
    content: '';
    background: var(--cl-white);
    position: absolute;
    bottom: -0.3125rem  /* -5/16 */;
    top: -0.3125rem  /* -5/16 */;
    right: 0;
    width: 1px;
}

#CR-header .search-head--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 2.5rem /* 40/16 */ 0 0;
    position: relative;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax form,
#CR-header .CR-search-form-suggest {
    position: relative;
    width: 100%;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax input {
    background-color: var(--cl-white);
    border: 0;
    width: 100%;
    height: 2.1875rem  /* 35/16 */;
    border-radius:3.75rem  /* 60/16 */;
    padding-right: 2.1875rem  /* 35/16 */;
    padding-left: 1.25rem  /* 20/16 */;
    font-size: 0.875rem  /* 14/16 */;
    line-height: normal;
    font-weight: 400;
    outline: none !important;
    color: var(--cl-black);
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.3125rem  /* 5/16 */;
    background: var(--cl-main);
    cursor: pointer;
    width: 1.875rem  /* 30/16 */;
    height: 1.875rem  /* 30/16 */;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 50%;
    color: var(--cl-white);
    aspect-ratio: 1/1;
    font-size: 0.875rem  /* 14/16 */;
}

#CR-header .action-head--box {
    padding-left: 2.5rem  /* 40/16 */;
}

#CR-header .action-head--box .CR-show-mini-cart-btn {
    background: var(--cl-white);
    border-radius: 0.3125rem  /* 5/16 */;
    padding: 0 0.625rem  /* 10/16 */;
    color: var(--cl-main);
    border: 1px solid var(--cl-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 2.5rem  /* 40/16 */;
    min-width: 11.25rem  /* 180/16 */;
}

#CR-header .action-head--box .CR-show-mini-cart-btn .icon--box {
    min-width: 1.875rem  /* 30/16 */;
    width: 1.875rem  /* 30/16 */;
    position: relative;
}

#CR-header .action-head--box .CR-show-mini-cart-btn .icon--box svg {
    width: 75%;
    height: auto;
}

#CR-header .action-head--box .CR-show-mini-cart-btn .icon--box svg * {
    fill: var(--cl-main);
}

#CR-header .action-head--box .CR-show-mini-cart-btn .icon--box .CR-view-total-cart-head {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.625rem /* 10/16 */;
    color: var(--cl-white);
    border-radius: 50%;
    width: 1rem /* 16/16 */;
    height: 1rem /* 16/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--cl-main);
}

#CR-header .action-head--box .CR-show-mini-cart-btn .cont--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 400;
    font-size: 0.8125rem /* 13/16 */;
    line-height: normal;
    padding-left: 1.25rem /* 20/16 */;
    text-align: left;
}

#CR-header .action-head--box .CR-show-mini-cart-btn .cont--box .total * {
    font-weight: 700;
}

#CR-header .CR-main-header {
    background: #aaec33;
    padding: 0;
}

#CR-header .CR-main-header .CR-top-special-menu-item {
    width: 20%;
}

.home #CR-header:not(.CR-fixed) .CR-main-header .menu-item--box .CR-top-special-menu-item.menu-item-has-children > .sub-menu {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
    -webkit-transition: -webkit-transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    -o-transition: -o-transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transition: transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

#CR-header .CR-main-header .menu-item--box .CR-top-special-menu-item.menu-item-has-children > .sub-menu {
    right: 0;
    width: auto;
    padding: 0;
    box-shadow: none;
    border: 1px solid #E1E1E1 !important;
    border-bottom-left-radius: 0.3125rem  /* 5/16 */;
    border-bottom-right-radius: 0.3125rem  /* 5/16 */;
    /*overflow: hidden;*/
}

#CR-header .CR-main-header .menu-item--box .CR-top-special-menu-item .sub-menu li {
    padding: 0 1.25rem  /* 20/16 */ !important;
}

#CR-header .CR-main-header .menu-item--box .CR-top-special-menu-item .sub-menu li:not(:last-child) a {
    border-bottom: 1px dashed #E1E1E1;
}

#CR-header .CR-main-header .menu-item--box .CR-top-special-menu-item .sub-menu a:hover {
    color: var(--cl-main) !important;
}

body #CR-header .CR-main-header .menu-item--box .CR-top-special-menu-item .sub-menu a {
    font-style: normal;
    font-weight: 600;
    font-size: 0.6875rem  /* 13/16 */ !important;
    line-height: 1.125rem  /* 18/16 */;
    text-transform: uppercase;
    color: var(--cl-black) !important;
    padding: 0.5rem  /* 8/16 */ 0  !important;
    background: transparent !important;
}

#CR-header .CR-main-header  .menu-item--box > div > ul > .CR-top-special-menu-item > .item-with-arrow-box > a {
    background: #aaec33;
    color: #9E753F !important;
    font-style: normal;
    font-weight: 800 !important;
    font-size: 0.9375rem  /* 15/16 */ !important;
    line-height: normal;
    text-transform: uppercase;
}

#CR-header .CR-main-header .CR-top-special-menu-item > .item-with-arrow-box a i {
    margin-right: 0.9375rem  /* 15/16 */;
    font-size: 1.25rem  /* 20/16 */;
}

#CR-header .CR-main-header .CR-top-special-menu-item > .item-with-arrow-box .arrow {
    display: none;
}

#CR-header .CR-main-header .CR-effect-menu > .item-with-arrow-box > a,
#CR-header .CR-main-header .CR-effect-menu > a {
    animation-name: flicker;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #ff0000 !important;
}

#CR-header .CR-main-header .menu-item--box:not(.logo--box) {
    text-align: center;
}

#CR-header .CR-main-header .menu-item--box > div {
    width: 100%;
}

#CR-header .CR-main-header .menu-item--box > div > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: 100%;
}

#CR-header .CR-main-header .menu-item--box > div > ul > li {
    padding: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header .CR-main-header .menu-item--box > div > ul > li > .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box > div > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.8125rem  /* 13/16 */;
    font-weight: 500;
    line-height: normal;
    vertical-align: middle;
    text-decoration: none;
    padding: 0.9375rem  /* 15/16 */ 1.25rem  /* 20/16 */;
    white-space: nowrap;
    color: #9E753F;
    position: relative;
    text-transform: capitalize;
}

#CR-header .CR-main-header .menu-item--box .active:not(.CR-top-parent-menu-item) > a:after,
#CR-header .CR-main-header .menu-item--box > div > ul > li:hover > .item-with-arrow-box > a:after,
#CR-header .CR-main-header .menu-item--box > div > ul > li:hover > a:after {
    right: 1.25rem  /* 20/16 */;
}

#CR-header .CR-main-header .menu-item--box > div > ul > li > .item-with-arrow-box > a:after,
#CR-header .CR-main-header .menu-item--box > div > ul > li > a:after {
    content: '';
    background: #9E753F;
    bottom: 0;
    left: 1.25rem  /* 20/16 */;
    position: absolute;
    right: 100%;
    height: 2px;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header .CR-main-header .menu-item--box li {
    position: relative;
}

#CR-header .CR-main-header .menu-item--box li .arrow {
    margin-left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.25rem;
    line-height: normal;
}

#CR-header .CR-main-header .menu-item--box li .arrow i {
    color: #9E753F;
    font-size: 0.625rem  /* 10/16 */;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

#CR-header .CR-main-header .menu-item--box .sub-menu .menu-item-has-children:hover > .sub-menu {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

#CR-header .CR-main-header .menu-item--box .sub-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    transform: translateX(102%);
}

#CR-header .CR-main-header .menu-item--box .sub-menu .sub-menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    top: 0;
    z-index: -1;
    width: 100%;
}

#CR-header .CR-main-header .menu-item--box .sub-menu .sub-menu .sub-menu {
    z-index: -2;
}

#CR-header .CR-main-header .menu-item--box .sub-menu li .arrow i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#CR-header .CR-main-header .menu-item--box .sub-menu {
    background: var(--cl-white);
    border: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
    border-bottom-left-radius: 0.3125rem  /* 5/16 */;
    border-bottom-right-radius: 0.3125rem  /* 5/16 */;
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transition: -webkit-transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end;
    -o-transition: -o-transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end;
    -webkit-transition: opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end, -webkit-transform .5s ease;
    transition: opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end, -webkit-transform .5s ease;
    -o-transition: transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end;
    transition: transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end;
    transition: transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end, -webkit-transform .5s ease;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    padding: 0.3125rem  /* 5/16 */;
    width: 12.5rem  /* 200/16 */;
}

#CR-header .CR-main-header .menu-item--box .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
    -webkit-transition: -webkit-transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    -o-transition: -o-transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transition: transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

#CR-header .CR-main-header .menu-item--box .sub-menu li {
    width: 100%;
    padding: 0.125rem  /* 2/16 */;
}

#CR-header .CR-main-header .menu-item--box .sub-menu li a {
    text-align: left;
    font-size: 0.875rem /* 14/16 */;
    font-weight: 400;
    line-height: normal;
    vertical-align: middle;
    padding: 0.3125rem  /* 5/16 */;
    color: var(--cl-black);
    position: relative;
    display: block;
    border-radius: 0.1875rem  /* 3/16 */;
    background: var(--cl-white);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header .CR-main-header .menu-item--box .sub-menu .current-menu-item a,
#CR-header .CR-main-header .menu-item--box .sub-menu li a:hover {
    background: var(--cl-main);
    color: var(--cl-white) !important;
}

#CR-header .CR-main-header .menu-item--box .active:not(.CR-top-parent-menu-item) > a,
#CR-header .CR-main-header .menu-item--box .current-menu-item .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current-menu-item > a,
#CR-header .CR-main-header .menu-item--box .current-product_cat-parent .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current-product_cat-parent > a,
#CR-header .CR-main-header .menu-item--box .current_page_parent .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current_page_parent > a,
#CR-header .CR-main-header .menu-item--box .sub-menu .current-menu-item a {
    font-weight: 700;
}

#CR-header .CR-main-header .menu-item--box .current-menu-item .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current-menu-item > a,
#CR-header .CR-main-header .menu-item--box .current-product_cat-parent .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current-product_cat-parent > a,
#CR-header .CR-main-header .menu-item--box .current_page_parent .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box .current_page_parent > a{
    color: var(--cl-main) !important;
    animation-name: unset;
}

#CR-header .CR-main-header .menu-item--box .current-menu-ancestor:not(.CR-top-parent-menu-item) > a,
#CR-header .CR-main-header .menu-item--box > div > ul > .current-menu-item {
    font-weight: 700;
    color: var(--cl-main) !important;
}

#CR-header .CR-main-header .menu-item--box > div > ul > li:hover .arrow i {
    color: #9E753F !important;
}

#CR-header .CR-main-header .menu-item--box > div > ul > li:not(.CR-top-special-menu-item):hover > .item-with-arrow-box > a,
#CR-header .CR-main-header .menu-item--box > div > ul > li:not(.CR-top-special-menu-item):hover > a{
    color: #9E753F !important;
    text-shadow: 0 0 0.5px #9E753F, 0 0 1px #9E753F;
}

/**================== FOOTER ==================**/
#CR-footer {
    background: var(--cl-white);
}

#CR-footer .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem  /* 16/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin: 0 0 1.25rem  /* 20/16 */;
}

#CR-footer .CR-main-footer {
    padding: 0;
}

#CR-footer .menu-box .menu-item-box:not(:last-child) {
    margin-bottom: 3.125rem  /* 50/16 */;
}

#CR-footer .menu-item.active a,
#CR-footer a:hover {
    color: var(--cl-main);
    text-shadow: 0 0 0.65px var(--cl-main);, 0px 0px 1px var(--cl-main);
}

#CR-footer a,
#CR-footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem  /* 16/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
}

#CR-footer li:not(:last-child) {
    margin-bottom: 0;
}

#CR-footer .logo-footer--box {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-footer .logo-footer--box .logo--box {
    min-width: 9.375rem  /* 150/16 */;
    width: 9.375rem  /* 150/16 */;
}

#CR-footer .logo-footer--box  .logo--box img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-footer .logo-footer--box .desc--box {
    flex: 1;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem  /* 14/16 */;
    line-height: 1.375rem  /* 22/16 */;
    color: var(--cl-black);
    padding-left: 1.875rem  /* 30/16 */;
}

#CR-footer .contact--box {
    position: relative;
}

#CR-footer .contact--box li a:hover {
    color: var(--cl-main);
}

#CR-footer .menu-box li:not(:last-child),
#CR-footer .contact--box li:not(:last-child) {
    margin-bottom: 0.625rem  /* 10/16 */;
}

#CR-footer .contact--box li a {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    position: relative;
    z-index: 2;
}

#CR-footer .contact--box li span {
    font-weight: 400;
    margin-right: 0.5rem;
    min-width: max-content;
    color: var(--cl-black) !important;
}

#CR-footer .contact--box li a {
    font-weight: 700;
}

#CR-footer .contact--box li .sub-list--box {
    gap: 0.25rem;
}

#CR-footer .contact--box li .sub-list--box span {
    margin: 0 !important;
}

#CR-footer .follow--box iframe {
    width: 100%;
}

#CR-footer .CR-main-footer {
    padding: 2.1875rem  /* 35/16 */ 0 3.125rem  /* 50/16 */;
    position: relative;
}

#CR-footer .CR-bottom-footer {
    border-top: 1px solid var(--cl-light-gray);
    padding: 1.875rem  /* 30/16 */ 0;
}

#CR-footer .CR-bottom-footer .right--box {
    gap: 6.25rem  /* 100/16 */;
}

#CR-footer .CR-bottom-footer .right--box ul {
    gap: 1.5625rem  /* 25/16 */;
}

#CR-footer .CR-bottom-footer .right--box a {
    font-size: 1.25rem /* 20/16 */;
    color: #535353;
}

#CR-footer .CR-bottom-footer .right--box a:hover {
    color: var(--cl-main);
}

#CR-footer .CR-bottom-footer .copyright--box p {
    font-size: 1rem  /* 16/16 */;
    font-weight: 400;
    line-height: normal;
    color: #888888;
}

#CR-footer .CR-top-footer {
    background: var(--cl-main);
    padding: 1.25rem  /* 20/16 */ 0;
}

#CR-footer .CR-top-footer .heading-title {
    font-style: normal;
    font-weight: 400;
    font-size: 1.625rem  /* 26/16 */;
    line-height: 2rem  /* 32/16 */;
    color: var(--cl-white);
    margin: 0;
}

#CR-footer .CR-top-footer .heading-title b {
    font-weight: 700;
}

#CR-footer .CR-top-footer .CR-form-def {
    position: relative;
    border-radius: 0.3125rem  /* 5/16 */;
    overflow: hidden;
    border: 1px solid var(--cl-white);
}

#CR-footer .CR-top-footer .CR-form-def li:not(:last-child) {
    margin-bottom: 0;
}

#CR-footer .CR-top-footer .CR-form-def .def-form-field:last-child {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto;
}

#CR-footer .CR-top-footer .CR-form-def .gr-def-form-btn {
    margin: 0;
}

#CR-footer .CR-top-footer .CR-form-def input {
    height: 3.75rem  /* 60/16 */;
    border-radius: 0;
}

#CR-footer .CR-top-footer .CR-form-def input:not([type=submit]) {
    background: var(--cl-white);
    padding-right: 12.5rem  /* 200/16 */;
    border: none;
}

#CR-footer .CR-top-footer .CR-form-def input[type=submit] {
    width: 100%;
}

#CR-footer .toggle-menu-item-cont--mb {
    display: none;
}

/**================== HOME PAGE ==================**/
#CR-home-page .home-heading-title {
    margin: 0;
    font-style: normal;
    font-weight: 800;
    font-size: 2.25rem  /* 36/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-main);
}

#CR-home-page .banner--sec {
    position: relative;
    padding: 0.9375rem  /* 15/16 */ 0 1.875rem  /* 30/16 */;
}

#CR-header.CR-fixed  ~ .CR-main-wrap #CR-home-page .banner--sec .list--box {
    width: 100%;
}


#CR-home-page .banner--sec .CR-slider-banner-home {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

#CR-home-page .banner--sec .CR-slider-banner-home.loading {
    opacity: 0;
}

#CR-home-page .banner--sec .list--box {
    width: calc(80% - 0.9375rem  /* 15/16 */);
    float: right;
    margin: 0;
    transition: 0.5s ease-in-out;
}

#CR-home-page .banner--sec .item {
    width: 100%;
    position: relative;
    height: 27.5rem  /* 440/16 */;
}

#CR-home-page .banner--sec .item img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

#CR-home-page .banner--sec .CR-custom-dots .slick-dots {
    bottom: 1.25rem  /* 20/16 */;
}

#CR-home-page .banner--sec .CR-custom-arrow-full {
    opacity: 1;
}

#CR-home-page .banner--sec .CR-custom-arrow-full.right {
    right: 0;
}

#CR-home-page .banner--sec .CR-custom-arrow-full.right .icon {
    border-radius: 30px 0 0 30px;
}

#CR-home-page .banner--sec .CR-custom-arrow-full.left {
    left: 0;
}

#CR-home-page .banner--sec .CR-custom-arrow-full.left .icon {
    border-radius: 0 30px 30px 0;
}

#CR-home-page .banner--sec .CR-custom-arrow-full .icon {
    background: rgb(255 255 255 / 50%);
}

#CR-home-page .best-selling--sec {
    background: #FFF7F0;
    padding: 3.75rem  /* 60/16 */ 0 2.5rem  /* 40/16 */;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full {
    opacity: 1;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full.right {
    right: -5rem;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full.left {
    left: -5rem;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full:hover .icon {
    background: var(--cl-main);
    border-color:  var(--cl-main);
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full {
    width: 3.125rem  /* 50/16 */;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full .icon {
    background: var(--cl-white);
    border: 1px solid var(--cl-sp-gray);
    width: 3.125rem  /* 50/16 */;
    height: 3.125rem  /* 50/16 */;
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full:hover svg {
    fill: var(--cl-white);
}

#CR-home-page .best-selling--sec .CR-custom-arrow-full svg {
    fill: var(--cl-dark-gray);
}

#CR-home-page .best-selling--sec .heading--box {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-home-page .terms--sec {

}

#CR-home-page .terms--sec .pds-terms--box .term--row:nth-child(odd) {
    background: var(--cl-white);
}

#CR-home-page .terms--sec .pds-terms--box .term--row {
    padding: 2.5rem  /* 40/16 */ 0;
    background: #F8F8F8;
}

#CR-home-page .terms--sec .pds-terms--box .term--row .heading--box {
    margin-bottom: 0.625rem  /* 10/16 */;
}

#CR-home-page .terms--sec .pds-terms--box .term--row .sub-terms--box ul {
    gap: 0.625rem /* 10/16 */;
}

#CR-home-page .terms--sec .pds-terms--box .term--row .sub-terms--box a:hover {
    color: var(--cl-white);
    background: var(--cl-main);
    border-color: var(--cl-main);
}

#CR-home-page .terms--sec .pds-terms--box .term--row .sub-terms--box a {
    color: var(--cl-black);
    font-size: 0.875rem /* 14/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 1px solid var(--cl-sp-gray);
    padding: 0 1.25rem /* 20/16 */;
    border-radius: 0.125rem  /* 2/16 */;
    height: 2.5rem /* 40/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: var(--cl-white);
}

#CR-home-page .terms--sec .CR-item-product-term,
#CR-home-page .terms--sec .CR-item-product{
    width: 20%;
}

#CR-home-page .news--sec {
    padding: 5rem  /* 80/16 */ 0 1.875rem  /* 30/16 */;
    background: #F8F8F8;
}

#CR-home-page .news--sec .heading--box .CR-btn-style {
    padding: 0 2.8125rem  /* 45/16 */;
    margin: 0;
}

/**================== PRODUCTS PAGE ==================**/
#CR-products-page .pds-main--sec {
    padding: 2.8125rem  /* 45/16 */ 0;
}

#CR-products-page .CR-products-main-top {
    margin-bottom: 1.875rem  /* 30/16 */;
}

#CR-products-page .CR-products-main-top .main-title-view {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem  /* 32/16 */;
    line-height: normal;
    color: var(--cl-main);
    margin: 0;
}

#CR-products-page .current-title-view {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem  /* 24/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-main);
    margin-bottom: 0.9375rem  /* 15/16 */;
}

#CR-products-page .filter--box {
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#CR-products-page .sort--box .CR-chosen-item {
    min-width: 12.5rem  /* 200/16 */;
}

#CR-products-page .summary--box span {
    color: var(--cl-dark-gray);
    font-style: normal;
    font-weight: 400;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: normal;
}

#CR-products-page .summary--box span b {
    font-weight: 700;
}

#CR-products-page .CR-sidebar-products {

}

#CR-products-page .CR-sidebar-products .CR-close-filter-box {
    display: none;
}

#CR-products-page .CR-sidebar-products .main-title {
    background: var(--cl-main);
    color: var(--cl-white);
    padding: 0.75rem  /* 12/16 */ 0.9375rem  /* 15/16 */;
    font-size: 1rem  /* 16/16 */;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

#CR-products-page .CR-sidebar-products .main-title svg {
    margin-right: 0.5rem;
}

#CR-products-page .CR-sidebar-products .main-title svg * {
    fill: var(--cl-white);
    stroke: var(--cl-white);
}

#CR-products-page .CR-sidebar-products .terms-box .level-1 > a,
#CR-products-page .CR-sidebar-products .title {
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem  /* 14/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin: 0 0 0.625rem  /* 10/16 */;
}

#CR-products-page .CR-sidebar-products .item-box {
    padding: 0.75rem  /* 12/16 */ 0.9375rem  /* 15/16 */;
    background: #F3F3F3;
}

#CR-products-page .CR-sidebar-products .item-box:not(:last-child) {
    margin-bottom: 0.25rem;
}

#CR-products-page .CR-sidebar-products .terms-box .CR-style-scroll {
    max-height: 37.5rem /* 300/16 */;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.5rem;
}

#CR-products-page .CR-sidebar-products .terms-box .level-1 > a {
    padding-left: 0;
}

#CR-products-page .CR-sidebar-products .terms-box .level-1 > a:before {
    display: none;
}

#CR-products-page .CR-sidebar-products .terms-box .level-2--box {
    margin-bottom: 0.625rem  /* 10/16 */;
}

#CR-products-page .CR-sidebar-products .terms-box li ul:not(.level-2--box) {
    padding-left: 0.625rem  /* 10/16 */;
}

#CR-products-page .CR-sidebar-products .item-box a {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: 1.625rem  /* 26/16 */;
    color: var(--cl-black);
    padding-left: 0.625rem  /* 10/16 */;
    position: relative;
    width: 100%;
    display: block;
}

#CR-products-page .CR-sidebar-products .item-box a:before {
    content: '';
    position: absolute;
    top: 0.75rem  /* 12/16 */;
    left: 0;
    width: 3px;
    height: 3px;
    background: var(--cl-black);
    border-radius: 50%;
    display: block;
}

#CR-products-page .CR-sidebar-products .item-box a:hover,
#CR-products-page .CR-sidebar-products .item-box a.active {
    color: var(--cl-main);
    text-shadow: 0 0 0.25px var(--cl-main), 0 0 1px var(--cl-main);
}

#CR-products-page .CR-load-more-wrap {
    margin-top: 1.25rem  /* 20/16 */;
}

#CR-products-page .main-list--box .term--row:not(:last-child) {
    margin-bottom: 1.875rem  /* 30/16 */;
}

.CR-product-list--box .CR-empty-result {
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.CR-item-product-term {
    width: 25%;
}

.CR-item-product-term .wrap {
    position: relative;
    height: 100%;
}

.CR-item-product-term .thumb--box {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.CR-item-product-term .thumb--box:before {
    content: "";
    display: block;
    padding-top: 133.77926421%;
    height: 0;
    width: 100%;
}

.CR-item-product-term .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.CR-item-product-term .heading-title {
    font-style: normal;
    font-weight: 800;
    font-size: 1.5rem  /* 24/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-main);
    margin: 0;
    background: rgb(255 255 255 / 70%);
    border-radius: 0 2.3125rem  /* 37/16 */ 2.3125rem  /* 37/16 */ 0;
    padding: 0.3125rem  /* 5/16 */ 0.8125rem  /* 13/16 */;
    position: absolute;
    top: 1.25rem  /* 20/16 */;
    left: 0;
    width: auto;
    max-width: 95%;
}

.CR-item-product-term .CR-btn-style {
    position: absolute;
    bottom: 1.25rem /* 20/16 */;
    left: 1.25rem /* 20/16 */;
    right: 1.25rem /* 20/16 */;
    margin: 0;
    font-weight: 600;
    width: auto;
    min-height: 2.5rem /* 40/16 */;
    height: auto;
    padding: 0.625rem  /* 10/16 */ 1.25rem  /* 20/16 */;
}

.CR-item-product-term .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.CR-item-product {
    width: 25%;
    border: 0.05625rem  /* 0.9/16 */ solid var(--cl-sp-gray);
    background-color: var(--cl-white);
}

.CR-item-product .wrap {
    position: relative;
    padding: 1.125rem  /* 18/16 */;
}

.CR-item-product .tags-box {
    position: absolute;
    top: 0.9375rem  /* 15/16 */;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.CR-item-product .tags-box .list-box {
    gap: 0.25rem;
}

.CR-item-product .discount-box,
.CR-item-product .tags-box .tag {
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem  /* 12/16 */;
    line-height: normal;
    color: var(--cl-white);
}

.CR-item-product .tags-box .tag {
    padding: 0.25rem  /* 4/16 */ 0.3125rem  /* 5/16 */;
    border-radius: 0.625rem  /* 10/16 */;
    font-size: 0.75rem  /* 12/16 */;
}

.CR-item-product .tags-box .tag:last-child {
    border-radius: 0.625rem  /* 10/16 */ 0  0 0.625rem  /* 10/16 */;
}

.CR-item-product .tags-box .tag.out-stock {
    background-color: var(--cl-hover-main);
}

.CR-item-product .tags-box .tag.selling {
    background-color: var(--cl-main);
}

.CR-item-product .discount-box {
    background: var(--cl-red);
    border-radius: 0 0.625rem  /* 10/16 */ 0.625rem  /* 10/16 */ 0;
    height: 1.375rem  /* 22/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 0.3125rem  /* 5/16 */;
}

.CR-item-product .discount-box i {
    margin-right: 0.25rem;
    color: var(--cl-yl);
}

.CR-item-product .thumb--box {
    position: relative;
    aspect-ratio: 1/1;
    margin-bottom: 0.625rem  /* 10/16 */;
}

.CR-item-product .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.CR-item-product .cont--box {
    position: relative;
}

.CR-item-product .wrap:hover .heading-title {
    color: var(--cl-main);
}

.CR-item-product .heading-title {
    font-style: normal;
    font-weight: 600;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: 1.375rem  /* 22/16 */;
    color: var(--cl-black);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.75rem  /* 44/16 */;
    max-height: 2.75rem  /* 44/16 */;
}

.CR-item-product .price--box {
    margin: 0.625rem  /* 10/16 */ 0 0.9375rem  /* 15/16 */;
}

.CR-item-product .CR-woo-prices {
    justify-content: flex-start;
}

.CR-item-product .action--box {
    gap: 0.5rem;
}

.CR-item-product .action--box .item:first-child {
    width: 40%;
}

.CR-item-product .action--box .item:last-child {
    width: 60%;
}

/*.CR-item-product .action--box .item {*/
/*    width: 50%;*/
/*}*/

.CR-item-product .action--box .item.out-stock {
    width: 100%;
    cursor: no-drop;
}

.CR-item-product .action--box .item.out-stock a {
    font-size: 0.75rem  /* 12/16 */;
    background: var(--cl-dark-red);
    opacity: 0.5;
    pointer-events: none;
}

.CR-item-product .action--box a {
    width: 100%;
    height: 1.875rem  /* 30/16 */;
    margin: 0;
    font-size: 0.625rem  /* 10/16 */ !important;
    gap: 0.2rem;
    padding: 0 0.625rem  /* 10/16 */ !important;
}

.CR-item-product .action--box a svg {
    width: auto;
    height: 50%;
}

.CR-item-product .action--box a svg * {
    fill: var(--cl-white);
}

.CR-item-product .CR-number-input--box.quantity.run {
    width: 100%;
}

.CR-item-product .CR-number-input--box .number-input-wrapper span {
    width: 25%;
    min-width: 25%;
}

.CR-item-product .CR-number-input--box .number-input-wrapper input {
    width: 50%;
    padding: 0;
}

/** PRODUCT DETAIL PAGE **/
#CR-single-product-page .CR-manage-view-more-content--box .CR-btn-style {
    position: initial;
    display: block;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 100%;
    text-align: center;
    background: transparent !important;
    color: var(--cl-black) !important;
    box-shadow: none !important;
    font-weight: 700;
    margin: 0;
}

#CR-single-product-page .CR-single-product-top {
    padding: 3.75rem  /* 60/16 */ 0 3.125rem  /* 50/16 */;
}

#CR-single-product-page .CR-single-product-top .main-box {
    background: var(--cl-white);
    border-radius: 0;
    padding: 0.625rem  /* 10/16 */ 0 0;
}

#CR-single-product-page .CR-single-product-top .main-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.625rem  /* 26/16 */;
    line-height: 2.125rem  /* 34/16 */;
    margin-bottom: 0;
}

#CR-single-product-page .CR-single-product-top .review-info-box {
    margin: 0.9375rem  /* 15/16 */ 0;
    display: none !important;
}

#CR-single-product-page .CR-single-product-top .review-info-box .item:not(:last-child) {
    position: relative;
    margin-right: 0.875rem  /* 14/16 */;
    padding-right: 0.875rem  /* 14/16 */;
}

#CR-single-product-page .CR-single-product-top .review-info-box .item:not(:last-child):after {
    content: '';
    width: 1px;
    height: 1rem /* 16/16 */;
    background: #999999;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#CR-single-product-page .CR-single-product-top .review-info-box p {
    color: #25252B;
    font-size: 0.8125rem  /* 13/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#CR-single-product-page .CR-single-product-top .review-info-box p b {
    color: var(--cl-black);
    font-weight: 700;
}

#CR-single-product-page .CR-single-product-top .sort-desc-box {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: 1.375rem  /* 22/16 */;
    margin: 0.9375rem  /* 15/16 */ 0;
    color: var(--cl-black);
}

#CR-single-product-page .CR-single-product-top .CR-manage-view-more-content--box .CR-btn-style {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    left: 0;
    top: 100%;
    color: #333333;
    -webkit-text-decoration-line: underline !important;
    text-decoration-line: underline !important;
    text-transform: capitalize;
    text-underline-position: under;
    background-color: transparent;
    position: initial;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: max-content;
    font-size: 0.75rem  /* 12/16 */;
    font-weight: 500 !important;
    padding: 0 !important;
}

#CR-single-product-page .CR-single-product-top .CR-add-cart-pd-box .stock {
    display: none;
}

#CR-single-product-page .CR-single-product-top .CR-review-rating-total-sold {
    font-size: 0.75rem /* 12/16 */;
    line-height: normal;
    letter-spacing: .03em;
    font-weight: 500;
    color: var(--cl-black);
    margin-left: 0.5rem;
}

#CR-single-product-page .CR-single-product-top .CR-all-btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem  /* 10/16 */;
    border-top: 1px solid #D8D8DD;
    padding: 0.9375rem  /* 15/16 */ 0 0;
    margin: 1.5625rem  /* 25/16 */ 0 0;
}

#CR-single-product-page .CR-single-product-top .CR-custom-qty-box {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box {
    flex: 1;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .CR-btn-style {
    position: relative;
    border-radius: 3.125rem /* 50/16 */;
    font-weight: 400;
    font-size: 0.8125rem  /* 13/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin: 0 !important;
    flex: 1;
    height: 2.8125rem  /* 45/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .CR-btn-style svg {
    width: auto;
    height: 60%;
    margin-right: 0.5rem;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .CR-btn-style svg * {
    fill: var(--cl-white);
    stroke: var(--cl-white);
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .CR-single-add-to-cart-btn {
    position: relative;
    /*display: none !important;*/
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .hide--box {
    gap: 0.625rem  /* 10/16 */;
}

/*#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .hide--box .CR-btn-style {*/
/*    width: 2.8125rem  !* 45/16 *!;*/
/*    padding: 0;*/
/*    border: 1px solid var(--cl-black);*/
/*    color: var(--cl-black);*/
/*}*/

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .hide--box .CR-single-popup-btn {
    background-color: var(--cl-red) !important;
    color: var(--cl-white) !important;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .hide--box .CR-single-popup-btn.CR-btn-style,
#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box .hide--box .single_add_to_cart_button {
    flex: 1;
    color: var(--cl-black);
    background-color: var(--cl-main);
    border: none;
    display: none !important;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices {
    position: relative;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices * {
    font-size: 1.625rem  /* 26/16 */;
    font-weight: 600;
    color: var(--cl-black) !important;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .price ins {
    width: 100%;
    margin-bottom: 0.3125rem  /* 5/16 */ !important;
    padding: 0;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .price del {
    margin-right: 0;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .variable-sp-price--box {
    font-size: 1.125rem  /* 18/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .variable-sp-price--box * {
    color: var(--cl-black);
    font-size: 1.125rem  /* 18/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .discount-percent.percentage {
    margin-left: 0 /* 15/16 */;
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem  /* 12/16 */;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--cl-white) !important;
    background: var(--cl-red);
    height: 1.375rem  /* 22/16 */;
    padding: 0 0.3125rem  /* 5/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 3.75rem  /* 60/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices .discount-percent.percentage b {
    display: none;
}

#CR-single-product-page .CR-single-product-top .CR-woo-prices del,
#CR-single-product-page .CR-single-product-top .CR-woo-prices del span,
#CR-single-product-page .CR-single-product-top .CR-woo-prices del span * {
    font-size: 0.9375rem  /* 15/16 */ !important;
}

#CR-single-product-page .CR-single-product-top .CR-price-pd-box {
    margin: 1.25rem /* 20/16 */ 0 0;
}

#CR-single-product-page .CR-single-product-top .CR-price-pd-box .sub--box {
    gap: 0.4375rem  /* 7/16 */;
    margin-left: 1.25rem  /* 20/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-price-pd-box .sub--box span {
    color: var(--cl-white);
    font-size: 0.625rem /* 10/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0.125rem /* 2/16 */;
    padding: 5px 0.4375rem /* 7/16 */;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-single-product-page .CR-single-product-top .CR-price-pd-box .sub--box .vat {
    background: var(--cl-red);
}

#CR-single-product-page .CR-single-product-top .CR-price-pd-box .sub--box .installment {
    background: #009706;
}

#CR-single-product-page .CR-single-product-top .stock-status--box {
    margin-top: 0;
    display: none !important;
}

#CR-single-product-page .CR-single-product-top .stock-status--box .sub-title {
    font-size: 0.8125rem  /* 13/16 */;
    line-height: normal;
    font-weight: 600;
    margin: 0.75rem 0;
    display: block;
}

#CR-single-product-page .CR-single-product-top .stock-status--box p {
    font-size: 0.8125rem  /* 13/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    display: block !important;
    text-transform: capitalize;
}

#CR-single-product-page .CR-single-product-top .stock-status--box .in-stock {
    color: #1FA425;
}

#CR-single-product-page .CR-single-product-top .stock-status--box .out-of-stock {
    color: var(--cl-red);
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .list-only li,
#CR-single-product-page .CR-single-product-top .bundle-list--box li {
    color: var(--cl-black);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem  /* 22/16 */;
    position: relative;
    padding-left: 1rem;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .list-only li:not(:last-child),
#CR-single-product-page .CR-single-product-top .bundle-list--box li:not(:last-child) {
    margin-bottom: 0.75rem  /* 12/16 */;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .list-only li:before,
#CR-single-product-page .CR-single-product-top .bundle-list--box li:before {
    content: '';
    position: absolute;
    background-color: var(--cl-black);
    top: 0.5rem  /* 8/16 */;
    left: 0;
    width: 0.3125rem  /* 5/16 */;
    height: 0.3125rem  /* 5/16 */;
    border-radius: 50%;
}

#CR-single-product-page .CR-single-product-top .reason--box {
    background: #FAFAFA;
}

#CR-single-product-page .CR-single-product-top .reason--box .item {
    width: 100%;
    padding: 1rem;
}

#CR-single-product-page .CR-single-product-top .reason--box .item:not(:last-child) {
    border-bottom: 1px solid #F0F0F2;
}

#CR-single-product-page .CR-single-product-top .reason--box .item .desc {
    color: var(--cl-black);
    text-align: center;
    font-size: 0.75rem  /* 12/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
}

#CR-single-product-page .CR-single-product-top .reason--box .item .icon {
    border-radius: 50%;
    position: relative;
    width: 1.875rem  /* 30/16 */;
    height: 1.875rem  /* 30/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    margin: 0 auto 0.625rem  /* 10/16 */;
}

#CR-single-product-page .CR-single-product-top .reason--box .item .icon i {
    font-size: 1.5625rem  /* 25/16 */;
    color: var(--cl-main);
}

#CR-single-product-page .CR-single-product-top .reason--box .item .icon img {
    width: auto;
    height: 60%;
    max-width: 60%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box {
    margin: 0.75rem 0;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box .label {
    color: var(--cl-black);
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    margin: 0;
    display: block;
    line-height: normal;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box .label label {
    font-style: normal;
    font-weight: 600;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: normal;
    margin-right: 0;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box .label .view {
    margin-left: 0.5rem;
    font-weight: 700;
    display: none;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box a {
    font-size: 0.875rem /* 14/16 */;
    color: var(--cl-main);
    font-weight: 500;
}

#CR-single-product-page .CR-variations-box .tawcvs-swatches {
    margin: -0.375rem /* -6/16 */;
    padding: 0;
}

#CR-single-product-page .CR-variations-box .hrSwatch.swatch.swatch-image {
    min-width: auto;
}

#CR-single-product-page .CR-variations-box .hrSwatch {
    background-color: transparent !important;
    border: none !important;
    width: auto;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0.375rem /* 6/16 */ !important;
    min-width: max-content;
}

#CR-single-product-page .CR-variations-box .hrImg,
#CR-single-product-page .CR-variations-box .hrDown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 2rem  /* 32/16 */;
    border-radius: 3.75rem  /* 60/16 */;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 0.75rem  /* 12/16 */;
    padding-right: 0.75rem  /* 12/16 */;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

#CR-single-product-page .CR-variations-box .hrImg {
    background-color: var(--cl-white);
    width: 3.75rem /* 60/16 */;
    height: 3.75rem /* 60/16 */;
    border: 1px solid var(--cl-gray);
    border-radius: 0.5rem /* 8/16 */;
}

#CR-single-product-page .CR-variations-box .hrDown {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: normal;
    background-color: #F0F0F2 !important;
    color: var(--cl-black);
    border: 1px solid #F0F0F2;
    text-indent: initial;
}

#CR-single-product-page .CR-variations-box .hrSwatch.selected .hrDown {
    border-color: var(--cl-main);
    color: var(--cl-main);
    background-color: var(--cl-white) !important;
}

#CR-single-product-page .CR-variations-box .hrImg:after,
#CR-single-product-page .CR-variations-box .hrImg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 1;
}

#CR-single-product-page .CR-variations-box .hrSwatch.selected .hrImg:after,
#CR-single-product-page .CR-variations-box .hrSwatch.selected .hrImg:before {
    opacity: 1;
}

#CR-single-product-page .CR-variations-box .hrImg:after {
    border: 2px solid var(--cl-main);
    border-radius: 0.75rem /* 12/16 */;
}

#CR-single-product-page .CR-variations-box .hrImg:before {
    border: 0.25rem /* 4/16 */ solid var(--cl-white);
    border-radius: 0.8125rem /* 13/16 */;
}

#CR-single-product-page .CR-variations-box .hrImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 1rem /* 16/16 */;
}

#CR-single-product-page .CR-variations-box .value .reset_variations {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -1.25rem;
    color: var(--cl-black);
    font-weight: 700;
}

#CR-single-product-page .CR-variations-box .detail-variation:not(:last-child) {
    margin-bottom: 1.25rem  /* 20/16 */;
}

#CR-single-product-page .CR-variations-box .detail-variation {

}

#CR-single-product-page .single-variation-wrap .woocommerce-variation-description,
#CR-single-product-page .single-variation-wrap .woocommerce-variation-price,
#CR-single-product-page .single-variation-wrap .woocommerce-variation-availability,
#CR-single-product-page .tawcvs-swatches .swatch-color.selected:before,
#CR-single-product-page .CR-price-product #CR-main-price.hide {
    display: none !important;
}

#CR-single-product-page .woocommerce-variation-add-to-cart-disabled .CR-custom-qty,
#CR-single-product-page .CR-custom-qty.hide_qty {
    cursor: no-drop;
}

#CR-single-product-page .woocommerce-variation-add-to-cart-disabled .CR-custom-qty .quantity,
#CR-single-product-page .CR-custom-qty.hide_qty * {
    opacity: 0.5;
    pointer-events: none;
}

#CR-single-product-page .CR-custom-add-cart-box.disable .CR-single-add-to-cart-btn {
    cursor: no-drop;
    opacity: 0.5;
    background: var(--cl-red);
}

#CR-single-product-page .CR-custom-add-cart-box.disable .CR-single-add-to-cart-btn .out-stock {
    display: block !important;
}

#CR-single-product-page .CR-custom-add-cart-box.disable .CR-single-add-to-cart-btn .in-stock {
    display: none !important;
}

#CR-single-product-page .CR-single-product-bottom {
    margin: 0;
    padding: 3.125rem  /* 50/16 */ 0 4.375rem  /* 70/16 */;
}

#CR-single-product-page .CR-tabs-pd-box {
    padding-right: 2.5rem /* 40/16 */;
}

#CR-single-product-page .CR-tabs-pd-box .nav-tabs {
    margin-bottom: 2px;
    border-top: 1px solid #E1E1E1;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: #FAFAFA;
}

#CR-single-product-page .CR-tabs-pd-box .nav-tabs .nav-item {
    padding: 0;
}

#CR-single-product-page .CR-tabs-pd-box .nav-tabs .nav-item:not(:last-child) {
    margin-right: 1px;
}

#CR-single-product-page .CR-tabs-pd-box .nav-tabs button {
    padding: 0 1.25rem /* 20/16 */;
    height: 3.125rem  /* 50/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
    border: none;
    background-color: transparent;
    font-size: 0.875rem  /* 14/16 */;
    font-weight: 700;
    text-transform: capitalize;
    line-height: normal;
    color: var(--cl-black);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content {
    padding: 1.25rem  /* 20/16 */;
    border-radius: 0;
    background: var(--cl-white);
    box-shadow: none;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .item {
    background: var(--cl-light-main);
    border-radius: 0.625rem /* 10/16 */;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .item:not(:last-child) {
    margin-bottom: 0.25rem;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .item .label {
    font-size: 1rem;
    line-height: normal;
    font-weight: 700;
    margin: 0;
    padding: 0.75rem;
    width: 12.5rem /* 200/16 */;
    word-wrap: break-word;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .item .cont {
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    font-weight: 400;
    margin: 0;
    padding: 0.75rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    word-wrap: break-word;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content .tab-box .heading-title {
    color: var(--cl-black);
    font-size: 2rem  /* 32/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.25rem  /* 20/16 */;
}

#CR-single-product-page .CR-tabs-pd-box .CR-manage-view-more-content--box .CR-btn-style {
    position: initial;
    display: block;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 100%;
    text-align: center;
    background: transparent !important;
    color: var(--cl-black) !important;
}

#CR-single-product-page .CR-tabs-pd-box .tag--box {
    border-top: 1px solid var(--cl-light-gray);
    padding: 1.5625rem  /* 25/16 */ 0 0;
    margin: 1.5625rem  /* 25/16 */ 0 0;
}

#CR-single-product-page .CR-single-product-slider-row:not(:last-child){
    margin-bottom: 3.75rem /* 60/16 */;
}

#CR-single-product-page .CR-single-product-slider-row .heading-title--box {
    margin-bottom: 1.875rem  /* 30/16 */;
}

#CR-single-product-page .CR-single-product-slider-row .heading-title--box .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.25rem  /* 36/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin-bottom: 0;
}

#CR-single-product-page .CR-single-product-slider-row .arrow-slider--box {
    gap: 0.875rem /* 14/16 */;
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow {
    position: initial !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent;
    transform: unset;
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow .icon:hover {
    background: var(--cl-main);
    opacity: 1;
    border-color: var(-cl-main);
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow .icon:hover svg {
    fill: var(--cl-white);
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow .icon {
    opacity: 0.5;
    border: 1px solid #999999;
    width: 3.125rem /* 50/16 */;
    height: 3.125rem /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow svg {
    fill: #999999;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-single-product-page .CR-single-product-slider-row .CR-product-list--box .CR-empty-result {
    width: 100%;
}

#CR-single-product-page .CR-single-product-slider-row .CR-item-product {
    width: 20%;
}

/**================== ABOUT PAGE ==================**/
#CR-about-page {
    background: var(--cl-white);
    overflow: hidden;
}

#CR-about-page .CR-heading-title--group .sub-title {
    color: var(--cl-main);
    font-size: 1.25rem  /* 20/16 */;
}

#CR-about-page .CR-heading-title--group .heading-title {
    color: var(--cl-black);
    font-size: 2.5rem  /* 40/16 */;
}

#CR-about-page .CR-heading-title--group .desc {
    margin-top: 0.625rem  /* 10/16 */;
}

#CR-about-page .banner--sec {
    position: relative;
    z-index: 1;
}

#CR-about-page .banner--sec img {
    width: 100%;
    height: auto;
}

#CR-about-page .intro--sec {
    padding: 2.5rem  /* 40/16 */ 0 1.25rem  /* 20/16 */;
    position: relative;
    z-index: 1;
}

#CR-about-page .intro--sec:before,
#CR-about-page .intro--sec:after {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

#CR-about-page .intro--sec:before {
    content: url(../images/bg_intro_top_left.png);
    left: 0;
    bottom: -50%;
}

#CR-about-page .intro--sec:after {
    content: url(../images/bg_intro_top_right.png);
    right: 0;
    top: -2.8125rem  /* -45/16 */;
}

#CR-about-page .intro--sec,
#CR-about-page .intro--sec .image--box {
    position: relative;
}

#CR-about-page .intro--sec .image--box img {
    width: 100%;
    height: auto;
    max-height: 30.625rem  /* 490/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-about-page .intro--sec .content--box {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-about-page .intro--sec .content--box * {
    text-align: left;
    -webkit-box-pack: left !important;
    -ms-flex-pack: left !important;
    justify-content: left !important;
}

#CR-about-page .why--sec {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(55.65%, #FFF7F0), to(rgba(255, 247, 240, 0)));
    background: -o-linear-gradient(bottom, #FFF7F0 55.65%, rgba(255, 247, 240, 0) 100%);
    background: linear-gradient(360deg, #FFF7F0 55.65%, rgba(255, 247, 240, 0) 100%);
    padding: 1.5625rem  /* 25/16 */ 0 3.125rem  /* 50/16 */;
    position: relative;
    z-index: 1;
}

#CR-about-page .why--sec .list--box {
    margin: 1.25rem  /* 20/16 */ -2.5rem  /* -40/16 */ 0;
}

#CR-about-page .why--sec .CR-item-about-why {
    width: 33.33%;
    padding: 1.25rem  /* 20/16 */ 2.5rem  /* 40/16 */;
}

#CR-about-page .why--sec .CR-item-about-why .wrap {
    position: relative;
}

#CR-about-page .why--sec .CR-item-about-why .icon--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 6.25rem /* 100/16 */;
    height: 6.25rem /* 100/16 */;
    margin: 0 auto 0.625rem /* 10/16 */;
    background-image: url(../images/bg_icon_intro_why.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    font-size: 2.1875rem  /* 35/16 */;
    font-weight: 700;
    color: var(--cl-white);
}

#CR-about-page .why--sec .CR-item-about-why .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.125rem  /* 18/16 */;
    line-height: 1.375rem  /* 22/16 */;
    text-align: center;
    color: var(--cl-black);
    margin: 0 auto;
}

#CR-about-page .why--sec .CR-item-about-why .desc {
    font-style: normal;
    font-weight: 500;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: 1.375rem  /* 22/16 */;
    text-align: center;
    color: var(--cl-black);
    margin: 0.3125rem  /* 5/16 */ auto 0;
}

#CR-about-page .customer--sec {
    padding: 5rem /* 80/16 */ 0 2.1875rem /* 35/16 */;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
    background-color: var(--cl-main);
    position: relative;
}

#CR-about-page .customer--sec .CR-heading-title--group * {
    color: var(--cl-white) !important;
}

#CR-about-page .customer--sec .list--box {
    margin: 2.1875rem  /* 35/16 */ auto 0;
}

#CR-about-page .customer--sec .list-content {
    margin: 0 auto 1.5625rem  /* 25/16 */;
    width: 70%;
}

#CR-about-page .customer--sec .list-content .item .desc {
    font-style: normal;
    font-weight: 500;
    font-size: 0.8125rem  /* 13/16 */;
    line-height: 1.375rem  /* 22/16 */;
    text-align: center;
    color: rgb(255 255 255 / 80%);
    margin: 0 auto 0;
}

#CR-about-page .customer--sec .list-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45%;
    margin: 0 auto;
}

#CR-about-page .customer--sec .list-view .CR-custom-arrow-full .icon {
    margin-top: -100%;
}

#CR-about-page .customer--sec .list-view .item .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

#CR-about-page .customer--sec .list-view .item.slick-current.slick-active .thumb--box {
    border-color: var(--cl-main);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#CR-about-page .customer--sec .list-view .item .thumb--box {
    margin: 0 auto;
    width: 6.875rem  /* 110/16 */;
    height: 6.875rem  /* 110/16 */;
    border-radius: 50%;
    border: 0.3125rem  /* 5/16 */ solid transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    position: relative;
    display: block;
    overflow: hidden;
}

#CR-about-page .customer--sec .list-view .item .thumb--box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#CR-about-page .customer--sec .list-view .item.slick-current.slick-active .content--box {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#CR-about-page .customer--sec .list-view .item .content--box {
    margin: 0.9375rem  /* 15/16 */ auto 0;
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

#CR-about-page .customer--sec .list-view .item .address,
#CR-about-page .customer--sec .list-view .item .name {
    font-style: normal;
    font-size: 1rem  /* 16/16 */;
    line-height: 1.375rem  /* 22/16 */;
    text-align: center;
    color: var(--cl-white);
    margin: 0 auto;
}

#CR-about-page .customer--sec .list-view .item .name {
    font-weight: 700;
}

#CR-about-page .customer--sec .list-view .item .address {
    font-weight: 400;
}

#CR-about-page .store--sec {
    padding: 5.625rem  /* 90/16 */ 0 4.375rem  /* 70/16 */;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#CR-about-page .store--sec:after {
    content: '';
    pointer-events: none;
    position: absolute;
    width: 50rem  /* 800/16 */;
    height: 50rem  /* 800/16 */;
    left: -15%;
    top: -55%;
    background: #F8F8F8;
    border-radius: 50%;
    z-index: -1;
}

#CR-about-page .store--sec .content--box {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-about-page .store--sec .heading-title {
    font-style: normal;
    font-weight: 900;
    font-size: 9.375rem  /* 150/16 */;
    line-height: 8.125rem  /* 130/16 */;
    color: var(--cl-main);
    margin: 0;
}

#CR-about-page .store--sec .desc {
    font-style: normal;
    font-weight: 400;
    font-size: 1.875rem  /* 30/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin: 0;
}

#CR-about-page .store--sec .desc b {
    font-weight: 900;
    font-size: 3.125rem  /* 50/16 */;
}

#CR-about-page .store--sec .CR-btn-style {
    margin-top: 2.5rem  /* 40/16 */;
}

#CR-about-page .store--sec .image--box img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem  /* 20/16 */;
}


/**================== NEWS PAGE ==================**/
#CR-news-page {
    padding-bottom: 3.125rem  /* 50/16 */;
}

#CR-news-page .intro--sec {
    padding: 2.5rem  /* 40/16 */ 0;
    background: #F8F8F8;
}

#CR-news-page .intro--sec .heading--box .heading-title {
    font-style: normal;
    font-weight: 800;
    font-size: 2.25rem  /* 36/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-main);
    margin: 0 0 2.5rem  /* 40/16 */;
}

.hot-news--list {
    gap: 0.75rem  /* 12/16 */;
    margin: 2.8125rem  /* 45/16 */ 0 0;
}

.hot-news--list .CR-item-news .heading-title {
    margin: 0;
    font-size: 1.125rem  /* 18/16 */;
    line-height: 1.75rem  /* 28/16 */;
    height: auto;
}

.hot-news--list .right--box,
.hot-news--list .left--box {
    width: 50%;
}

.hot-news--list .right--box {
    gap: 0.75rem /* 12/16 */;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hot-news--list .left--box .CR-item-news .wrap {
    padding-top: var(--ratio-16-9);
}

.hot-news--list .left--box .CR-item-news .wrap:after {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(57.69%, rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 57.69%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 57.69%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.hot-news--list .left--box .CR-item-news .thumb--box {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hot-news--list .left--box .CR-item-news .cont--box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.1875rem  /* 35/16 */ 2.5rem  /* 40/16 */;
    z-index: 1;
}

.hot-news--list .left--box .CR-item-news .cont--box * {
    color: var(--cl-white);
}

.hot-news--list .left--box .CR-item-news .terms-date--box {
    display: none !important;
}

.hot-news--list .left--box .CR-item-news .heading-title {
    max-height: 5.25rem  /* 84/16 */;
}

.hot-news--list .right--box .CR-item-news {
    height: 33.33%;
}

.hot-news--list .right--box .CR-item-news .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

.hot-news--list .right--box .CR-item-news .thumb--box {
    width: 12.5rem  /* 200/16 */;
    min-width: 12.5rem  /* 200/16 */;
    padding: 0;
    z-index: 2;
    height: 100%;
}

.hot-news--list .right--box .CR-item-news .cont--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 1.5625rem  /* 25/16 */;
}

.hot-news--list .right--box .CR-item-news .terms-date--box {
    margin-bottom: 0.3125rem  /* 5/16 */;
}

.hot-news--list .right--box .CR-item-news .heading-title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-height: 3.5rem  /* 56/16 */;
}

.hot-news--list .CR-item-news {
    padding: 0;
    width: 100%;
}

.hot-news--list .CR-item-news .wrap {
    background: transparent;
}

.hot-news--list .CR-item-news .icon,
.hot-news--list .CR-item-news .author {
    display: none;
}

#CR-news-page .list--sec {
    padding: 2.5rem  /* 40/16 */ 0 0;
}

#CR-news-page .list--sec .filter--box {
    margin-bottom: 3.125rem  /* 50/16 */;
}

#CR-news-page .list--sec .filter--box ul {
    gap: 0.625rem /* 10/16 */;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#CR-news-page .list--sec .filter--box a:hover,
#CR-news-page .list--sec .filter--box .active a{
    background: var(--cl-main);
    color: var(--cl-white);
    border-color: var(--cl-main);
}

#CR-news-page .list--sec .filter--box a {
    color: var(--cl-black);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 1.875rem  /* 30/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-dark-gray);
    background: var(--cl-white);
    height: 3.125rem  /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.CR-news-list--box {
    margin: -0.75rem  /* -12/16 */;
}

.CR-item-news {
    padding: 0.75rem  /* 12/16 */;
    width: 33.33%;
}

.CR-item-news .wrap {
    position: relative;
    background-color: var(--cl-gray);
    border-radius: 0.3125rem  /* 5/16 */;
    overflow: hidden;
}

.CR-item-news .wrap:hover:before {
    right: 0;
}

.CR-item-news .wrap:before {
    content: '';
    background: var(--cl-main);
    height: 0.25rem  /* 4/16 */;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news .view,
.CR-item-news .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.CR-item-news .view {
    z-index: 2;
}

.CR-item-news .thumb--box {
    position: relative;
    padding-top: var(--ratio-16-9);
    width: 100%;
    overflow: hidden;
}

.CR-item-news .thumb--box img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.CR-item-news .cont--box {
    padding: 1.25rem  /* 20/16 */ 1.875rem  /* 30/16 */;
}

.CR-item-news .heading-title {
    color: var(--cl-black);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75rem  /* 28/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 5.25rem  /* 84/16 */;
    height: 5.25rem  /* 84/16 */;
    margin-bottom: 1.25rem  /* 20/16 */;
}

.CR-item-news .terms-date--box {
    margin-bottom: 0;
}

.CR-item-news .terms-date--box a:hover {
    color: var(--cl-main);
}

.CR-item-news .terms-date--box a,
.CR-item-news .terms-date--box p,
.CR-item-news .author {
    color: var(--cl-dark-gray);
    font-size: 0.875rem  /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.CR-item-news .author {
    text-transform: capitalize;
}

.CR-item-news .terms:after {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--cl-sp-gray);
}

.CR-item-news .terms {
    padding-right: 0.75rem;
    margin-right: 0.75rem;
    position: relative;
    z-index: 3;
}

.CR-item-news .icon {
    width: 1.875rem /* 30/16 */;
    height: 1.875rem /* 30/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 1.25rem /* 20/16 */;
    right: 1.875rem /* 30/16 */;
}

.CR-item-news .icon svg {
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    fill: var(--cl-main);
}


/**================== NEWS DETAIL PAGE ==================**/
#CR-news-detail-page {

}

#CR-news-detail-page .CR-news-detail-main .main--box {
    width: 80%;
    margin: 0 auto;
}

.CR-news-page .CR-news-detail-main {
    padding: 4.0625rem  /* 65/16 */ 0 5rem  /* 80/16 */;
}

.CR-news-page .CR-news-detail-main .main--box {
    width: 100%;
    margin: 0 auto;
}

.CR-news-page .CR-news-detail-main .main--box .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.25rem  /* 36/16 */;
    line-height: 2.75rem  /* 44/16 */;
    color: var(--cl-black);
    margin: 0 0 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box {
    margin-bottom: 2.125rem  /* 34/16 */;
    border-bottom: 1px solid var(--cl-sp-gray);
    padding: 0 0 0.9375rem  /* 15/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box a:hover {
    color: var(--cl-main);
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box a,
.CR-news-page .CR-news-detail-main .main--box .terms-date--box span {
    color: var(--cl-dark-gray);
    font-size: 0.875rem  /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box svg {
    margin-right: 0.5rem;
    width: auto;
    height: 1rem /* 16/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box svg path {
    stroke: var(--cl-main);
    fill: var(--cl-main);
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box i {
    margin-right: 0.5rem;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box {
    gap: 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-main .share--box ul {
    gap: 1rem  /* 16/16 */;
}

.CR-news-page .CR-news-detail-main .action--box {
    gap: 1rem;
    margin: 2.5rem  /* 40/16 */ 0 0;
}

.CR-news-page .CR-news-detail-main .action--box > div {
    width: 50%;
}

.CR-news-page .CR-news-detail-bottom {
    border-top: 0.5px solid var(--cl-sp-gray);
    margin: 1.875rem  /* 30/16 */ 0 0;
    padding: 3.75rem  /* 60/16 */ 0 6.25rem  /* 100/16 */;
}

.CR-news-page .CR-news-detail-bottom .heading-title--box {
    margin-bottom: 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-bottom .heading-title--box .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.25rem  /* 36/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin-bottom: 0;
}

.CR-news-page .CR-news-detail-bottom .arrow-slider--box {
    gap: 0.875rem /* 14/16 */;
}

.CR-news-page .CR-news-detail-bottom .CR-custom-arrow {
    position: initial !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent;
    transform: unset;
}

.CR-news-page .CR-news-detail-bottom .CR-custom-arrow .icon:hover {
    background: var(--cl-main);
    opacity: 1;
    border-color: var(-cl-main);
}

.CR-news-page .CR-news-detail-bottom .CR-custom-arrow .icon:hover svg {
    fill: var(--cl-white);
}

.CR-news-page .CR-news-detail-bottom .CR-custom-arrow .icon {
    opacity: 0.5;
    border: 1px solid #999999;
    width: 3.125rem /* 50/16 */;
    height: 3.125rem /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-news-page .CR-news-detail-bottom .CR-custom-arrow svg {
    fill: #999999;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

/**================== CONTACT PAGE ==================**/
#CR-contact-page {

}

#CR-contact-page .intro--sec {
    padding: 6.25rem  /* 100/16 */ 0;
    background-color: var(--cl-white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

#CR-contact-page .intro--sec:before {
    content: '';
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(64.06%, rgba(255, 255, 255, 0.755208)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, #FFFFFF 0%, rgba(255, 255, 255, 0.755208) 64.06%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.755208) 64.06%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#CR-contact-page .intro--sec .list--box {
    margin: 1.875rem  /* 30/16 */ auto 0;
    width: 80%;
}

#CR-contact-page .intro--sec .item {
    width: 33.33%;
    padding: 1rem  /* 16/16 */;
}

#CR-contact-page .intro--sec .item .wrap {
    position: relative;
    padding: 2.8125rem  /* 45/16 */ 2.1875rem  /* 35/16 */;
    background-color: var(--cl-white);
    height: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 0.625rem  /* 10/16 */;
    -webkit-box-shadow: 0px 2px 10px rgb(4 4 4 / 10%);
    box-shadow: 0px 2px 10px rgb(4 4 4 / 10%);
}

#CR-contact-page .intro--sec .item .wrap:hover {
    background-color: var(--cl-main);
}

#CR-contact-page .intro--sec .item .wrap:hover * {
    color: var(--cl-white) !important;
}

#CR-contact-page .intro--sec .item .icon {
    margin-bottom: 1rem /* 16/16 */;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-contact-page .intro--sec .item .icon i {
    color: var(--cl-main);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    font-size: 2.5rem  /* 40/16 */;
}

#CR-contact-page .intro--sec .item b {
    color: var(--cl-black);
    text-align: center;
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    padding-bottom: 1.125rem  /* 18/16 */;
    margin-bottom: 1.125rem  /* 18/16 */;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-contact-page .intro--sec .item .wrap:hover b:after {
    background-color: var(--cl-white);
}

#CR-contact-page .intro--sec .item b:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 4.0625rem  /* 65/16 */;
    height: 2px;
    background-color: var(--cl-black);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-contact-page .intro--sec .item a {
    color: var(--cl-black);
    text-align: center;
    font-size: 0.9375rem  /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    display: block;
}

#CR-contact-page .form--sec {
    padding: 4.375rem  /* 70/16 */ 0;
}

#CR-contact-page .form--sec .main--box {
    background: #F8F8F8;
    width: 75%;
    margin: 6.25rem  /* 100/16 */ auto 0;
    position: relative;
    padding: 3.125rem  /* 50/16 */;
}

#CR-contact-page .form--sec .form--box,
#CR-contact-page .form--sec .image-main--box {
    position: relative;
    width: 50%;
}

#CR-contact-page .form--sec .image-main--box {
    padding-right: 3.125rem /* 50/16 */;
}

#CR-contact-page .form--sec .image--box {
    position: absolute;
    width: calc(100% - 3.125rem /* 50/16 */);
    height: 125%;
    bottom: 0;
    left: 0;
}

#CR-contact-page .form--sec .image--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#CR-contact-page .form--sec .form--box {
    padding:0;
}

#CR-contact-page .map--sec .acf-map {
    height: 31.25rem  /* 500/16 */;
}


/**================== SUPPORT PAGE ==================**/
#CR-support-page {
    padding: 0 0 4.375rem  /* 70/16 */;
}

#CR-support-page .CR-breadcrumb {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-support-page .CR-sidebar-support {
    background: var(--cl-white);
    -webkit-box-shadow: 0 4px 250px rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 250px rgba(0, 0, 0, 0.03);
    border-radius: 0.3125rem /* 5/16 */;
    border: 0.5px solid rgb(193 193 193 / 50%);
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#CR-support-page .CR-sidebar-support .heading--box {
    border-bottom: none !important;
    background-color: #F5F5F5;
}

#CR-support-page .CR-sidebar-support .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem  /* 20/16 */;
    line-height: normal;
    color: var(--cl-black);
    margin: 0;
    display: block;
    text-transform: uppercase;
}

#CR-support-page .CR-sidebar-support ul li a,
#CR-support-page .CR-sidebar-support .heading--box {
    padding: 1.25rem  /* 20/16 */;
}

#CR-support-page .CR-sidebar-support ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

#CR-support-page .CR-sidebar-support ul li a:after {
    font-family: var(--font-aws);
    font-size: 0.875rem /* 14/16 */;
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 1.25rem  /* 20/16 */;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#CR-support-page .CR-sidebar-support ul li:not(:last-child):after {
    content: '';
    background: rgba(0, 0, 0, 0.1);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 1.25rem  /* 20/16 */;
    right: 1.25rem  /* 20/16 */;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#CR-support-page .CR-sidebar-support .heading--box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#CR-support-page .CR-sidebar-support li {
    position: relative;
}

#CR-support-page .CR-sidebar-support li * {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem  /* 14/16 */;
    line-height: normal;
    color: var(--cl-black);
}

#CR-support-page .CR-sidebar-support li.active a {
    font-weight: 700;
}

#CR-support-page .CR-sidebar-support li.active a,
#CR-support-page .CR-sidebar-support li:hover a {
    color: var(--cl-white);
    background-color: var(--cl-main);
}

#CR-support-page .CR-content-support {
    padding-left: 1.25rem  /* 20/16 */;
}

#CR-support-page .CR-content-support .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem /* 30/16 */;
    line-height: normal;
    margin-bottom: 1.875rem  /* 30/16 */;
    display: block;
    text-transform: uppercase;
}

#CR-support-page .CR-support-editor {
    background: #F5F5F5;
    border-radius: 0.125rem  /* 2/16 */;
    box-shadow: -1px 2px 15px rgb(0 0 0 / 10%);
}

#CR-support-page .CR-support-editor .banner-box {
    background: -webkit-gradient(linear, right top, left top, from(var(--cl-main)), color-stop(49.79%, var(--cl-main)), to(var(--cl-main)));
    background: -o-linear-gradient(right, var(--cl-main) 0%, var(--cl-main) 49.79%, var(--cl-main) 100%);
    background: linear-gradient(270deg, var(--cl-main) 0%, var(--cl-main) 49.79%, var(--cl-main) 100%);
    border-radius: 0.3125rem /* 5/16 */;
}

#CR-support-page .CR-support-editor .banner-box img {
    width: 100%;
    height: auto;
}

#CR-support-page .CR-support-editor .cont-box {
    padding: 1.875rem  /* 30/16 */;
}

#CR-support-page .CR-support-accordion .accordion-item {
    background: none;
    border: none;
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
    -webkit-box-shadow: -1px 5px 10px rgb(0 0 0 / 10%);
    box-shadow: -1px 5px 10px rgb(0 0 0 / 10%);
}

#CR-support-page .CR-support-accordion .accordion-item:not(:last-child) {
    margin-bottom: 0.9375rem /* 15/16 */;
}

#CR-support-page .CR-support-accordion .accordion-button:hover {
    color: var(--cl-main);
}

#CR-support-page .CR-support-accordion .accordion-button {
    color: var(--cl-black);
    text-align: left;
    border-radius: 0 !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
    padding: 1.25rem 6rem 1.25rem 1.25rem;
    font-size: 1.125rem /* 18/16 */;
    font-weight: 600;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-support-page .CR-support-accordion .accordion-button .num-head {
    font-style: normal;
    font-weight: 700;
    font-size: 1.375rem /* 22/16 */;
    line-height: normal;
    color: var(--cl-main);
    border-right: 1px solid var(--cl-light-gray);
    padding-right: 0.8125rem /* 13/16 */;
    margin-right: 2.5rem /* 40/16 */;
    min-width: 3rem;
}

#CR-support-page .CR-support-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

#CR-support-page .CR-support-accordion .accordion-button::after {
    font-family: FontAwesome;
    width: auto;
    height: auto;
    content: "\f067";
    background-image: unset !important;
    position: absolute;
    top: 50%;
    right: 1.875rem /* 30/16 */;
    -webkit-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    color: var(--cl-light-gray);
}

#CR-support-page .CR-support-accordion .accordion-body {
    padding: 1.875rem /* 30/16 */ 6.25rem /* 100/16 */ 3.75rem /* 60/16 */ 4.0625rem /* 65/16 */;
    font-size: 1rem /* 16/16 */;
}

#CR-support-page .CR-support-accordion .CR-style-default-content p,
#CR-support-page .CR-support-accordion .CR-style-default-content li,
#CR-support-page .CR-support-accordion .CR-style-default-content strong,
#CR-support-page .CR-support-accordion .CR-style-default-content b {
    font-size: 0.9375rem /* 15/16 */;
    line-height: 1.67;
    margin-bottom: 1rem;
    font-weight: 500;
}

#CR-support-page .CR-support-accordion .CR-style-default-content a {
    color: var(--cl-main);
    text-decoration: underline !important;
    font-weight: 500;
}

/**================== DEFAULT TERMS SECTION ==================**/
#CR-default-terms--sec {
    padding: 1.25rem  /* 20/16 */ 0;
    background: var(--cl-white);
}

#CR-default-terms--sec .default-term--row:not(:last-child) {
    margin-bottom: 1.125rem  /* 18/16 */;
}

#CR-default-terms--sec .heading--box {
    margin-bottom: 1.125rem  /* 18/16 */;
}

#CR-default-terms--sec .heading--box .heading-title {
    font-size: 1.25rem  /* 20/16 */;
    line-height: normal;
    font-weight: 700;
    color: var(--cl-main);
    margin-bottom: 0;
    text-transform: uppercase;
}

#CR-default-terms--sec .heading--box .view-more-btn {
    color: var(--cl-light-main);
    font-size: 1.125rem  /* 18/16 */;
    line-height: normal;
    font-weight: 700;
}

#CR-default-terms--sec .type-one .list--box {
    margin: -0.1rem;
}

#CR-default-terms--sec .type-two .list--box {
    margin: -1rem;
}

.type-one .CR-item-product-default-term {
    padding: 0.1rem;
}

.type-two .CR-item-product-default-term {
    padding: 1rem;
}

.CR-item-product-default-term {
    width: 16.6667%;
}

.CR-item-product-default-term .wrap {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.CR-item-product-default-term .thumb--box {
    position: relative;
    aspect-ratio: 1/1;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    border: 1.5px solid var(--cl-main);
}

.type-one .CR-item-product-default-term .thumb--box {
    border-radius: 1rem;
}

.type-two .CR-item-product-default-term .thumb--box {
    border-radius: 50%;
}

.CR-item-product-default-term .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.type-two .CR-item-product-default-term .thumb--box img {
    transform: scale(1) !important;
}

.CR-item-product-default-term .heading-title {
    color: var(--cl-main);
    transition: 0.5s ease-in-out;
    font-size: 1rem  /* 16/16 */;
    font-weight: 700;
    line-height: 1.25rem  /* 20/16 */;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
}

.type-one .CR-item-product-default-term .heading-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgb(118 184 0 / 50%);
    color: var(--cl-white);
    padding: 0.5rem;
    backdrop-filter: blur(20px);
}

.type-two .CR-item-product-default-term .thumb--box {
    margin-bottom: 1rem;
}

.type-two .CR-item-product-default-term .wrap:hover {
    transform: scale(1.15);
}

.type-one .CR-item-product-default-term .wrap:hover {
    transform: scale(1.010);
    border-width: 0;
}

.type-one .CR-item-product-default-term .wrap:hover .thumb--box {
    border-radius: 0;
}

.type-one .CR-item-product-default-term .wrap:hover .heading-title {
    bottom: -50%;
    margin: 0;
    opacity: 0;
}

.type-two .CR-item-product-default-term .wrap:hover .heading-title {
    opacity: 0;
}

/**================== SEARCH PAGE ==================**/
.CR-search-products-page .summary--box {
    min-height: 2rem  /* 32/16 */;
}
.actionToolbar_mobile.toolbar_style_1{
    display: none;
}.CR-item-product .CR-woo-prices ins {
     order: 2;
 }
 
/**================== RESPONSIVE ==================**/
@media (min-width: 1025px) {
    html {
        font-size: 0.75rem;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 0.8rem;
    }
}

@media (min-width: 1440px) {
    /*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {*/
    /*    max-width: 1140px !important;*/
    /*}*/

    html {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1440px) {
    body .CR-container {
        padding: 0 1rem /* 16/16 */;
    }
}

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

}

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

    .CR-show-mb {
        display: block !important;
    }

    .CR-hide-mb {
        display: none !important;
    }

    #CR-header .logo--box {
        padding-right: 0.9375rem  /* 15/16 */;
    }

    #CR-header .logo--box img {
        height: 2.5rem  /* 40/16 */;
        max-width: 100%;
        object-fit: contain;
    }

    #CR-header .action-head--box .CR-show-mini-cart-btn .cont--box,
    #CR-header .slogan--box {
        display: none;
    }

    #CR-header .CR-top-header .left--box {
        width: 40%;
    }

    #CR-header .CR-top-header .right--box {
        width: 60%;
    }

    #CR-header .search-head--box {
        flex: 1;
    }

    #CR-header .search-head--box,
    #CR-header .action-head--box {
        padding: 0 0.9375rem  /* 15/16 */;
    }

    #CR-header .action-head--box {
        padding-right: 0 !important;
        width: auto;
    }

    #CR-header .action-head--box > ul > li:not(:last-child) {
        margin-right: 0.9375rem  /* 15/16 */;
    }
    #CR-header .action-head--box > ul > li.CR-show-mini-cart {
        display: none;
    }
    #CR-header .action-head--box .CR-show-mini-cart-btn {
        min-width: auto;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        color: var(--cl-white);
    }

    #CR-header .action-head--box .CR-show-mini-cart-btn .icon--box {
        min-width: 1.25rem  /* 20/16 */;
        width: 1.25rem  /* 20/16 */;
    }

    #CR-header .action-head--box .CR-show-mini-cart-btn .icon--box svg * {
        fill: var(--cl-white);
    }

    #CR-header .action-head--box .CR-show-mini-cart-btn .icon--box .CR-view-total-cart-head {
        background: var(--cl-white);
        color: var(--cl-main);
    }

    #CR-header .action-head--box .CR-open-mobile-menu {
        color: var(--cl-white);
        font-size: 1.125rem  /* 18/16 */;
    }

    #CR-header .CR-main-header {
        padding: 0.9375rem  /* 15/16 */ 0;
    }

    #CR-header .action-head--box .CR-show-mini-cart-btn .icon--box .CR-view-total-cart-head {
        font-size: 0.4375rem  /* 7/16 */;
        width: 0.8125rem  /* 13/16 */;
        height: 0.8125rem  /* 13/16 */;
    }

    #CR-header .CR-search-form-suggest .CR-search-form-ajax input,
    #CR-header .CR-search-form-suggest .CR-search-form-ajax input::placeholder {
        font-size: 0.625rem  /* 10/16 */;
    }

    #CR-header .toggle-menu-head--box svg {
        width: 1.875rem /* 30/16 */;
        height: 1.875rem /* 30/16 */;
    }

    #CR-header .toggle-menu-head--box svg path {
        fill: none !important;
        stroke-width: 0.3125rem  /* 5/16 */;
        stroke: var(--cl-black);
        stroke-linecap: var(--cl-black);
        stroke-linejoin: var(--cl-black);
    }

    #CR-header .CR-main-nav-mb--box {
        position: fixed;
        top: 0;
        bottom: 0;
        opacity: 1;
        z-index: 9999;
        width: 28.125rem  /* 450/16 */;
        right: -28.125rem  /* 450/16 */;
        max-width: 95%;
        -webkit-box-shadow: 0 0 150px #0000001a;
        box-shadow: 0 0 150px #0000001a;
        transition: transform .5s cubic-bezier(.165, .84, .44, 1);
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: var(--cl-white);
    }

    #CR-header .CR-main-nav-mb--box .appear-animation {
        opacity: 0;
        transform: var(--appear-animation);
    }

    .admin-bar #CR-header .CR-main-nav-mb--box {
        padding-top: 32px;
    }

    #CR-header .main-merged-menu a .icon {
        display: none;
    }

    #CR-header .CR-main-nav-mb.active .CR-main-nav-mb--box {
        transition-duration: .45s;
        transform: translateX(-28.125rem);
    }

    #CR-header .CR-main-nav-mb.active .CR-main-nav-mb--box .appear-animation {
        opacity: 1;
        transform: var(--active-appear-animation);
    }

    #CR-header .CR-main-nav-mb.active .CR-main-nav-mb--bg {
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
    }

    #CR-header .CR-main-nav-mb--bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        background: rgb(0 0 0 / 40%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        backdrop-filter: blur(5px);
    }

    #CR-header .CR-main-nav-mb .nav-mb--head {
        padding: 0 1rem;
        background: var(--cl-main);
    }

    #CR-header .CR-main-nav-mb .nav-mb--content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0 1rem;
    }

    #CR-header .CR-main-nav-mb .nav-mb--head .inner--box {
        height: auto;
        padding: 0;
    }

    #CR-header .CR-main-nav-mb .nav-mb--head .inner--box a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        color: var(--cl-white);
        font-size: 1.125rem  /* 18/16 */;
        line-height: normal;
        font-weight: 400;
        width: 100%;
        padding: 1rem 0;
    }

    #CR-header .CR-main-nav-mb .nav-mb--head .inner--box svg {
        width: 1.875rem /* 30/16 */;
        height: 1.875rem /* 30/16 */;
        fill: var(--cl-white);
        stroke: var(--cl-white);
    }

    #CR-header .CR-main-nav-mb .nav-cont--list {
        padding: 0 0 5rem  /* 80/16 */;
    }

    #CR-header .main-merged-menu .CR-sub-menu > li,
    #CR-header .main-merged-menu > ul > li {
        position: relative;
    }

    #CR-header .main-merged-menu .item-with-arrow-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    #CR-header .main-merged-menu > ul > li.nav-active > a,
    #CR-header .main-merged-menu > ul > li.nav-active > .item-with-arrow-box a {
        color: var(--cl-main);
    }

    #CR-header .main-merged-menu > ul > li > a,
    #CR-header .main-merged-menu > ul > li > .item-with-arrow-box a {
        font-size: 0.875rem  /* 14/16 */;
        letter-spacing: normal;
        word-break: break-word;
        line-height: normal;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--cl-black);
        padding: 0.9375rem /* 15/16 */ 0;
        display: block;
        flex: 1;
        text-align: left;
    }

    #CR-header .main-merged-menu .arrow {
        position: relative;
        min-width:2.5rem  /* 40/16 */;
        width: 2.5rem  /* 40/16 */;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        padding: 0.75rem /* 12/16 */ 0;
        color: var(--cl-black);
        font-size: 0.75rem  /* 12/16 */;
    }

    #CR-header .main-merged-menu .arrow:before {
        content: '';
        background: var(--cl-light-gray);
        position: absolute;
        left: 0;
        width: 1px;
        top: 0.75rem /* 12/16 */;
        bottom: 0.75rem /* 12/16 */;
    }

    #CR-header .main-merged-menu .sub-menu-wrapper {
        display: none;
    }

    #CR-header .main-merged-menu .CR-sub-menu > li:not(:last-child):after,
    #CR-header .main-merged-menu > ul > li:after {
        content: '';
        background: var(--cl-light-gray);
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        bottom: 0;
    }

    #CR-header .main-merged-menu .sub-menu-wrapper .CR-sub-menu {
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        transition: transform .3s cubic-bezier(.25, .46, .45, .94);
        padding-left: 0.625rem  /* 10/16 */;
    }

    #CR-header .menu-item.nav-active > .sub-menu-wrapper > .CR-sub-menu {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-header .main-merged-menu a {
        font-size: 0.75rem  /* 12/16 */;
        line-height: normal;
        font-weight: 600;
        color: var(--cl-black);
    }

    #CR-header .main-merged-menu .current-menu-item > .item-with-arrow-box > a,
    #CR-header .main-merged-menu .current-menu-item > a,
    #CR-header .main-merged-menu .current-product_cat-parent > .item-with-arrow-box > a,
    #CR-header .main-merged-menu .current-product_cat-parent > a,
    #CR-header .main-merged-menu .current_page_parent > .item-with-arrow-box > a,
    #CR-header .main-merged-menu .current_page_parent > a,
    #CR-header .main-merged-menu .sub-menu .current-menu-item > a {
        font-weight: 700;
        color: var(--cl-main);
    }

    #CR-header .main-merged-menu .CR-sub-menu > li:first-child:before {
        content: '';
        background: var(--cl-light-gray);
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        top: 0;
    }

    #CR-header .main-merged-menu .CR-sub-menu > li > a,
    #CR-header .main-merged-menu .CR-sub-menu > li > .item-with-arrow-box a {
        padding: 0.75rem /* 12/16 */ 0;
        display: block;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: left;
    }

    #CR-home-page .banner--sec .list--box {
        width: 100% !important;
    }

    #CR-home-page .banner--sec .item {
        height: auto !important;
        aspect-ratio: 16/9;
    }

    #CR-home-page .home-heading-title {
        font-size: 1.5625rem  /* 25/16 */;
    }

    #CR-news-page .list--sec .filter--box,
    #CR-home-page .terms--sec .pds-terms--box .term--row .sub-terms--box {
        padding-left: 0;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
    }

    #CR-news-page .list--sec .filter--box ul {
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        -webkit-box-pack: unset !important;
        -ms-flex-pack: unset !important;
        justify-content: unset !important;
    }

    #CR-news-page .list--sec .filter--box a {
        padding: 0 1rem;
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-products-page .filter--box {
        z-index: 99999;
    }

    #CR-products-page .CR-sidebar-products.active .items-box {
        left: 0;
    }

    .admin-bar #CR-products-page .CR-sidebar-products .items-box {
        padding-top: 46px;
    }

    #CR-products-page .CR-sidebar-products .items-box {
        position: fixed;
        background: var(--cl-white);
        top: 0;
        left: -25rem /* -400/16 */;
        width: 25rem /* 400/16 */;
        height: 100%;
        z-index: 999999;
        transition: 0.5s ease-in-out;
        max-height: 100%;
        overflow-y: auto;
        padding: 1rem;
        box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
    }

    #CR-products-page .CR-sidebar-products .items-box::-webkit-scrollbar {
        width: 3px;
        border-radius: 2px;
        background-color: var(--cl-white);
    }

    #CR-products-page .CR-sidebar-products .items-box::-webkit-scrollbar-track {
        border: none;
    }

    #CR-products-page .CR-sidebar-products .items-box::-webkit-scrollbar-thumb {
        background-color: #cccccc;
        outline: 1px solid #cccccc;
    }

    #CR-products-page .CR-sidebar-products .main-title {
        position: fixed;
        cursor: pointer;
        box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
        border-radius: 0.3125rem /* 5/16 */;
        left: 0.625rem /* 10/16 */;
        bottom: 1.5625rem /* 25/16 */;
    }

    #CR-products-page .CR-sidebar-products .main-title svg path {
        fill: var(--cl-white);
        color: var(--cl-white);
        stroke: var(--cl-white);
    }

    #CR-products-page .CR-sidebar-products .main-title svg {
        fill: var(--cl-white);
    }

    #CR-products-page .CR-sidebar-products.active .bg-filter-box {
        opacity: 1;
        pointer-events: auto;
    }

    #CR-products-page .CR-sidebar-products .bg-filter-box {
        position: fixed;
        pointer-events: none;
        opacity: 0;
        background: rgb(0 0 0 / 50%);
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        cursor: pointer;
        backdrop-filter: blur(10px);
        display: block;
    }

    #CR-products-page .CR-sidebar-products a.CR-close-filter-box {
        height: 2.5rem /* 40/16 */;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 0.3125rem /* 5/16 */;
        font-size: 0.875rem /* 14/16 */;
        line-height: normal;
        font-weight: 500;
        background: var(--cl-main);
        color: var(--cl-white);
        padding: 0 1rem;
        width: 100%;
        margin: 0 auto 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-transform: uppercase;
    }
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 0.95rem;
    }

    .CR-main-wrap {
        overflow: hidden !important;
    }

    #CR-products-page .summary-sort--box {
        flex-direction: column;
        gap: 1.25rem  /* 20/16 */;
    }

    #CR-products-page .summary-sort--box > div {
        width: 100%;
    }

    #CR-products-page .CR-products-main-top .main-title-view {
        font-size: 1.5625rem  /* 25/16 */;
        margin-bottom: 1rem;
    }

    #CR-products-page .current-title-view {
        font-size: 1rem;
    }

    #CR-home-page .terms--sec .CR-item-product-term,
    #CR-home-page .terms--sec .CR-item-product,
    #CR-single-product-page .CR-single-product-slider-row .CR-item-product,
    .CR-item-product-term,
    .CR-item-product {
        width: 33.33%;
    }
}

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

    body .CR-container {
        padding: 0 0.9375rem /* 15/16 */;
    }

    .CR-breadcrumb * {
        min-width: max-content;
    }

    .CR-breadcrumb {
        overflow-y: hidden;
    }

    .CR-sticky-icons {
        right: 0.5rem;
        bottom: 0.5rem;
    }

    #CR-products-page .CR-sidebar-products .main-title {
        bottom: 4.5rem;
        left: 0.5rem;
    }

    #CR-footer .logo-box {
        margin-bottom: 1.125rem  /* 18/16 */;
    }

    .CR-product-list--box .CR-empty-result {
        width: 66.67%;
    }

    .CR-item-product-term .heading-title {
        font-size: 1rem  /* 16/16 */;
    }

    .CR-item-product-term .CR-btn-style {
        font-size: 0.625rem  /* 10/16 */;
    }

    #CR-home-page .terms--sec .CR-item-product-term,
    #CR-home-page .terms--sec .CR-item-product,
    #CR-single-product-page .CR-single-product-slider-row .CR-item-product,
    .CR-item-product-term,
    .CR-item-product {
        width: 50%;
    }

    .hot-news--list {
        flex-wrap: wrap;
    }

    .hot-news--list .right--box,
    .hot-news--list .left--box {
        width: 100%;
    }

    .hot-news--list .right--box .CR-item-news .wrap,
    .hot-news--list .CR-item-news .heading-title {
        height: auto !important;
    }

    .hot-news--list .right--box .CR-item-news .thumb--box {
        aspect-ratio: 16/9;
    }

    .CR-item-news .heading-title {
        font-size: 0.875rem  /* 14/16 */ !important;
        line-height: 1.25rem  /* 20/16 */ !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        max-height: 3.75rem  /* 60/16 */ !important;
        height: 3.75rem  /* 60/16 */ !important;
    }

    .hot-news--list .left--box .CR-item-news .cont--box {
        padding: 0.9375rem  /* 15/16 */;
    }

    .hot-news--list {
        margin-top: 1.875rem  /* 30/16 */;
    }

    #CR-home-page .best-selling--sec,
    #CR-home-page .terms--sec .pds-terms--box .term--row,
    #CR-home-page .news--sec {
        padding: 1.875rem  /* 30/16 */ 0;
    }

    #CR-home-page .best-selling--sec .heading--box {
        margin-bottom: 1.875rem  /* 30/16 */;
    }

    .CR-btn-style {
        font-size: 0.75rem  /* 12/16 */ !important;
        padding: 0 1.25rem  /* 20/16 */ !important;
        height: 1.875rem  /* 30/16 */;
    }

    #CR-default-terms--sec .default-term--row {
        position: relative;
        margin-bottom: 5rem  /* 80/16 */ !important;
    }

    #CR-default-terms--sec .heading--box .heading-title {
        font-size: 0.875rem  /* 14/16 */;
    }

    .CR-item-product-default-term {
        width: 33.33% !important;
    }

    .CR-item-product-default-term .heading-title {
        font-size: 0.75rem  /* 12/16 */;
    }

    #CR-default-terms--sec .heading--box .view-more-btn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        font-size: 0.75rem  /* 12/16 */;
        background-color: var(--cl-main);
        color: var(--cl-white) !important;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        height: 2.8125rem /* 45/16 */;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 1.875rem /* 30/16 */;
        padding: 0 1.25rem /* 20/16 */;
        margin: 0.9375rem /* 15/16 */ 0 0;
        -webkit-box-shadow: 0px 4px 20px transparent;
        box-shadow: 0px 4px 20px transparent;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: 100%;
    }

    #CR-footer .CR-top-footer .heading-title {
        font-size: 1.125rem  /* 18/16 */;
        margin-bottom: 1.25rem  /* 20/16 */;
        line-height: normal;
    }

    #CR-footer .CR-top-footer .heading-title br {
        display: none;
    }

    #CR-footer .CR-top-footer .CR-form-def input {
        height: 2.5rem  /* 40/16 */;
    }

    #CR-footer .CR-top-footer .CR-form-def input[type=submit] {
        font-size: 0.875rem  /* 14/16 */;
        padding: 0 1.25rem  /* 20/16 */ !important;
    }

    #CR-footer .CR-bottom-footer .content--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.9375rem  /* 15/16 */;
    }

    #CR-footer .CR-bottom-footer .content--box > div {
        width: 100%;
    }

    #CR-footer .CR-bottom-footer .right--box {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    #CR-footer .CR-bottom-footer .copyright--box p {
        text-align: center;
    }

    #CR-footer .CR-bottom-footer .copyright--box p,
    #CR-footer .CR-bottom-footer .right--box a {
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-footer .CR-main-footer,
    #CR-footer .CR-bottom-footer {
        padding: 0.9375rem  /* 15/16 */ 0;
    }

    #CR-footer .CR-main-footer .menu-item-box {
        border-top: 1px solid var(--cl-main);
        padding-bottom: 0;
        margin: 0 !important;
    }

    #CR-footer .CR-main-footer .menu-item-box .heading-title {
        position: relative;
        text-align: left;
        letter-spacing: normal;
        font-size: 0.8125rem /* 13/16 */;
        padding: 0.9375rem /* 15/16 */ 0 1.125rem /* 18/16 */;
        margin: 0 !important;
    }

    #CR-footer .CR-main-footer .menu-item-box .toggle-menu-item-cont--mb {
        width: 100%;
        height: 100%;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2;
    }

    #CR-footer .CR-main-footer .menu-item-box.active .menu-item-cont--mb {
        visibility: visible;
        opacity: 1;
        transition: opacity 1s cubic-bezier(.25, .46, .45, .94), height .35s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box .menu-item-cont--mb {
        visibility: hidden;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        opacity: 0;
        height: 0;
        transition: opacity .3s cubic-bezier(.25, .46, .45, .94), height .3s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box.active .menu-item-cont--mb .inner--box {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box .menu-item-cont--mb .inner--box {
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        transition: transform .5s cubic-bezier(.25, .46, .45, .94);
        padding: 0 0 0.9375rem /* 15/16 */;
    }

    #CR-footer .logo-footer--box {
        margin-bottom: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #CR-footer .logo-footer--box .desc--box {
        font-size: 0.75rem  /* 12/16 */;
        line-height: 1.25rem  /* 20/16 */;
        padding: 0.9375rem  /* 15/16 */ 0 0 0 !important;
    }

    #CR-footer .CR-main-footer .follow--box .menu-item-box .menu-item-cont--mb {
        opacity: 1;
        height: auto;
        visibility: visible;
    }

	#CR-footer .CR-main-footer .follow--box .menu-item-box .menu-item-cont--mb .inner--box {
		transform: unset;
		padding: 0;
	}
	
    #CR-footer a, #CR-footer p {
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-support-page .CR-content-support .heading-title,
    .CR-heading-title--group .heading-title {
        font-size: 1.5625rem  /* 25/16 */;
    }

    #CR-contact-page .form--sec .image-main--box {
        display: none;
    }

    #CR-contact-page .form--sec .main--box {
        margin: 1.25rem  /* 20/16 */ auto 0;
        padding: 1rem;
    }

    #CR-contact-page .form--sec .form--box,
    #CR-contact-page .form--sec .main--box,
    #CR-contact-page .intro--sec .list--box {
        width: 100%;
    }

    #CR-support-page .CR-content-support,
    #CR-default-terms--sec {
        padding: 1.875rem  /* 30/16 */ 0;
    }

    #CR-support-page .CR-support-accordion .accordion-body,
    #CR-support-page .CR-support-editor .cont-box {
        padding: 1rem;
    }

    #CR-support-page {
        padding-bottom: 1.875rem  /* 30/16 */;
    }

    #CR-support-page .CR-support-accordion .accordion-body,
    #CR-support-page .CR-support-accordion .accordion-button {
        font-size: 0.8125rem  /* 13/16 */;
    }

    .CR-item-news {
        width: 50%;
    }

    #CR-news-page .list--sec .filter--box {
        margin-bottom: 1.25rem  /* 20/16 */;
    }

    #CR-news-detail-page .CR-news-detail-main .main--box {
        width: 100%;
    }

    .CR-news-page .CR-news-detail-main .main--box .heading-title {
        font-size: 1.5625rem  /* 25/16 */;
        margin-bottom: 1.25rem  /* 20/16 */;
        line-height: normal;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box a,
    .CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box span {
        font-size: 0.75rem  /* 12/16 */;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box svg {
        height: 0.75rem  /* 12/16 */;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box .back {
        display: none !important;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box {
        gap: 0.5rem;
    }

    .CR-news-page .CR-news-detail-main {
        padding: 1.875rem  /* 30/16 */ 0;
    }

    .CR-news-page .CR-news-detail-main .action--box {
        gap: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #CR-about-page .customer--sec .list-content,
    .CR-news-page .CR-news-detail-main .action--box > div {
        width: 100%;
    }

    .CR-default-tags li {
        padding: 0;
    }

    .CR-default-tags ul {
        margin: 0;
        gap: 0.5rem;
    }

    .CR-default-tags a {
        display: block;
    }

    #CR-about-page .store--sec,
    .CR-news-page .CR-news-detail-bottom {
        margin-top: 0;
        padding: 1.875rem  /* 30/16 */ 0;
    }

    #CR-single-product-page .CR-single-product-slider-row .heading-title--box,
    .CR-news-page .CR-news-detail-bottom .heading-title--box {
        align-items: center !important;
    }

    #CR-single-product-page .CR-single-product-slider-row .heading-title--box .heading-title,
    .CR-news-page .CR-news-detail-bottom .heading-title--box .heading-title {
        font-size: 1.5625rem  /* 25/16 */;
        padding-right: 1.25rem  /* 20/16 */;
    }

    #CR-about-page .intro--sec:after {
        display: none;
    }

    #CR-about-page .CR-heading-title--group .heading-title {
        font-size: 1.875rem  /* 30/16 */;
    }

    #CR-about-page .intro--sec .content--box {
        margin-top: 1.25rem  /* 20/16 */;
    }

    #CR-about-page .customer--sec {
        padding: 1.875rem  /* 30/16 */ 0 3.75rem  /* 60/16 */;
    }

    #CR-about-page .store--sec .heading-title {
        font-size: 5.625rem  /* 90/16 */;
    }

    #CR-about-page .store--sec .desc {
        font-size: 1.25rem  /* 20/16 */;
    }

    #CR-about-page .store--sec .desc b {
        font-size: 1.875rem  /* 30/16 */;
    }

    #CR-about-page .store--sec .image--box {
        margin-top: 1.25rem  /* 20/16 */;
    }

    .CR-nav-search-form-suggest #CR-nav-block-suggest-search-form,
    .CR-search-form-suggest #CR-block-suggest-search-form {
        width: 37.5rem  /* 600/16 */;
        max-width: 37.5rem  /* 600/16 */;
    }

    #CR-single-product-page .CR-single-product-bottom,
    #CR-single-product-page .CR-single-product-top {
        padding: 1.875rem  /* 30/16 */ 0;
    }

    #CR-single-product-page .CR-single-product-top .main-title {
        font-size: 1.25rem  /* 20/16 */;
    }

    #CR-single-product-page #CR-custom-meta-pd {
        margin: 1.25rem  /* 20/16 */ 0 0;
    }

    #CR-single-product-page .CR-tabs-pd-box {
        padding-right: 0;
    }

    #CR-single-product-page .CR-single-product-top .reason--box {
        background: transparent;
        margin: 1rem 0;
    }

    #CR-mobile-terms--sec {
        padding: 1.25rem  /* 20/16 */ 0 2.5rem  /* 40/16 */;
    }

    #CR-mobile-terms--sec .heading--box {
        margin-bottom: 1rem;
    }

    #CR-mobile-terms--sec .heading--box .heading-title {
        font-size: 1rem  /* 16/16 */;
        text-transform: uppercase;
        font-weight: 700;
        line-height: normal;
        margin: 0;
    }

    #CR-mobile-terms--sec .list--box {
        margin: -0.5rem;
    }

    .CR-item-product-term-mb {
        width: 33.33%;
        padding: 0.5rem;
    }

    .CR-item-product-term-mb .wrap {
        position: relative;
        height: 100%;
    }

    .CR-item-product-term-mb a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        border-radius: 0.3125rem  /* 5/16 */;
        background: var(--cl-white);
        color: #000;
        box-shadow: -1px 3px 10px rgb(0 0 0 / 16%);
        height: 100%;
    }

    .CR-item-product-term-mb a span {
        font-size: 0.875rem  /* 14/16 */;
        line-height: 1.25rem  /* 20/16 */;
        max-height: 2.5rem  /* 40/16 */;
        font-weight: 700;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: center;
    }
    .actionToolbar_mobile.toolbar_style_1{
        display: block;
    }
    .actionToolbar_mobile {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        background: #fff;
        display: none;
    }
    .actionToolbar_mobile .toolbar-wrapper {
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper {
        height: 55px;
        padding: 8px 5px 15px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper.d-flex {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper .flex-index-bottom {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item {
        flex: 0 0 auto;
        width: 20%;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__btn {
        border: 0;
        background: none;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        width: 100%;
        padding-right: 2px;
        padding-left: 2px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon {
        width: 25px;
        height: 27px;
        display: block;
        position: relative;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon svg {
        display: block;
        margin: 0 auto;
        height: 100%;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon .count {
        display: inline-block;
        vertical-align: top;
        background: #f00;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        position: absolute;
        border-radius: 50%;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        top: -4px;
        left: 12px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__label {
        margin-top: 4px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-weight: 500;
        font-size: 11px;
        line-height: 1;
        color: #333;
    }
    .actionToolbar_mobile_product .flex-40 {
        flex: 0 0 44%;
        width: 44%;
        display: flex;
        align-items: center;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-item {
        flex: 0 0 33.33333%;
        width: 33.3333%;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-item__icon {
        width: 20px;
        height: 18px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart {
        flex: 0 0 56%;
        width: 56%;
        display: flex;
        justify-content: space-between;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .add-to-cart {
        height: 44px;
        width: 50%;
        background: #FF7D19;
        line-height: 15px;
        border-radius: 30px;
        padding: 7px 10px;
        border: none;
        color: #ffffff;
        font-weight: bold;
        font-size: 14px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .add-to-cart > span {
        width: 80%;
        display: block;
        margin: auto;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .buynow {
        background: #376303;
        min-width: 80px;
        height: 44px;
        width: 50%;
        border-radius: 30px;
        padding-top: 0;
        color: #ffffff;
        font-weight: bold;
        margin-left: 10px;
        border: none;
        font-size: 14px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .buynow > span {
        width: 50%;
        display: block;
        margin: auto;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-wrapper {
        padding: 22px 5px 22px;
    }
    #CR-footer .CR-bottom-footer {
        margin-bottom: 4rem;
    }
    .actionToolbar_mobile {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        background: #fff;
        display: none;
    }
    .actionToolbar_mobile .toolbar-wrapper {
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper {
        height: 55px;
        padding: 8px 5px 15px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper.d-flex {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-wrapper .flex-index-bottom {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item {
        flex: 0 0 auto;
        width: 20%;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__btn {
        border: 0;
        background: none;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        width: 100%;
        padding-right: 2px;
        padding-left: 2px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon {
        width: 25px;
        height: 27px;
        display: block;
        position: relative;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon svg {
        display: block;
        margin: 0 auto;
        height: 100%;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__icon .count {
        display: inline-block;
        vertical-align: top;
        background: #f00;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        position: absolute;
        border-radius: 50%;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        top: -4px;
        left: 12px;
    }
    .actionToolbar_mobile.toolbar_style_1 .toolbar-item__label {
        margin-top: 4px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-weight: 500;
        font-size: 11px;
        line-height: 1;
    }
    .actionToolbar_mobile_product .flex-40 {
        flex: 0 0 44%;
        width: 44%;
        display: flex;
        align-items: center;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-item {
        flex: 0 0 33.33333%;
        width: 33.3333%;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-item__icon {
        width: 20px;
        height: 18px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart {
        flex: 0 0 56%;
        width: 56%;
        display: flex;
        justify-content: space-between;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .add-to-cart {
        height: 44px;
        width: 50%;
        background: #FF7D19;
        line-height: 15px;
        border-radius: 30px;
        padding: 7px 10px;
        border: none;
        color: #ffffff;
        font-weight: bold;
        font-size: 14px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .add-to-cart > span {
        width: 80%;
        display: block;
        margin: auto;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .buynow {
        background: #376303;
        min-width: 80px;
        height: 44px;
        width: 50%;
        border-radius: 30px;
        padding-top: 0;
        color: #ffffff;
        font-weight: bold;
        margin-left: 10px;
        border: none;
        font-size: 14px;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-btn-addtocart .buynow > span {
        width: 50%;
        display: block;
        margin: auto;
    }
    .actionToolbar_mobile_product.toolbar_style_1 .toolbar-wrapper {
        padding: 22px 5px 22px;
    }
    .zalo-chat-widget {
        right: 10px!important;
        bottom: 30px!important;
    }
    .toolbar-item.toolbar-cart li {
        list-style: none;
    }

    .toolbar-item.toolbar-cart li svg {
        height: 25px;
        width: auto;
        opacity: .9;
        display: block;
        margin: 0 auto 4px;
    }

    .actionToolbar_mobile.toolbar_style_1 .toolbar-item .icon--box {
        position: relative;
        margin-top: 4px;
        text-align: center;
        font-weight: 500;
        font-size: 11px;
        line-height: 1;
        color: #333;
    }

    .actionToolbar_mobile.toolbar_style_1 .icon--box .CR-view-total-cart-head {
        position: absolute;
        display: inline-block;
        vertical-align: top;
        background: #f00;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        position: absolute;
        border-radius: 50%;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        top: -4px;
        right: 6px;
    }
}

@media only screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
        height: 46px;
        min-width: 240px;
        border-radius: 0;
    }

    .admin-bar #CR-header {
        top: 46px;
    }

    .admin-bar #CR-header .CR-main-nav-mb--box {
        padding-top: 46px;
    }

    .admin-bar #CR-products-page .CR-sidebar-products .items-box {
        padding-top: 62px;
    }
}

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

    .CR-nav-search-form-suggest #CR-nav-block-suggest-search-form,
    .CR-search-form-suggest #CR-block-suggest-search-form {
        width: 18.75rem  /* 300/16 */;
        max-width: 18.75rem  /* 300/16 */;
    }

    /*.CR-item-product-default-term {*/
    /*    width: 50% !important;*/
    /*}*/

    .CR-item-product-default-term .heading-title {
        font-size: 0.625rem  /* 10/16 */;
        line-height: 1rem;
    }

	#CR-home-page .terms--sec .CR-item-product-term,
	#CR-home-page .terms--sec .CR-item-product,
    #CR-single-product-page .CR-single-product-slider-row .CR-item-product,
    .CR-item-product-term,
    .CR-item-product {
        width: 50%;
    }

    .CR-product-list--box .CR-empty-result {
        width: 50%;
        font-size: 0.75rem  /* 12/16 */;
    }

    .CR-item-product .action--box {
        flex-direction: column;
    }

    .CR-item-product .CR-number-input--box .number-input-wrapper input {
        flex: 1;
    }

    .CR-item-product .CR-number-input--box.quantity,
    .CR-item-product .action--box > div {
        width: 100% !important;
    }

    .CR-mini-cart-box {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 0.95rem;
    }

    #CR-header .CR-main-nav-mb--box {
        width: 20rem  /* 320/16 */;
        right: -20rem  /* -320/16 */;
    }

    #CR-header .CR-main-nav-mb.active .CR-main-nav-mb--box {
        -webkit-transform: translate(-20rem);
        -ms-transform: translate(-20rem);
        transform: translate(-20rem);
    }

    .CR-item-news,
    .CR-form-def .def-form-field.def-form-field-half {
        width: 100%;
    }
}

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

}