/**================== ROOT ==================**/
:root {
    --cl-main: #C02340;
    --cl-hover-main: #ff2e55;
    --cl-light-main: #FFF5F6;
    --cl-mega-menu: rgba(192, 35, 64, 0.1);
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-gray: #f2f2f2;
    --cl-light-gray: #d9d9d9;
    --cl-dark-gray: #666666;
    --cl-light-red: #C60000;
    --cl-dark-red: #990a00;
    --cl-red: #c72528;
    --cl-yl: #fefa01;
    --cl-green: #009739;
    --cl-blue: #0d6efd;
    --cl-light-blue: #dbedf9;
    --cl-orange: #D29728;
    --cl-dark-orange: #EC9717;
    --font-aws: FontAwesome;
}

/**================== HEADER ==================**/
#CR-header.CRis_admin {
    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;
    background: var(--cl-light-main);
}

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

#CR-header .CR-topbar {
    background: var(--cl-main);
    display: block;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
    z-index: 3;
}

#CR-header .CR-topbar img {
    width: 100%;
    height: auto;
}

#CR-header .CR-top-header {
    background: var(--cl-white);
    padding: 0.9375rem /* 15/16 */ 0;
}

#CR-header .CR-main-header {
    background: transparent;
    padding: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
    z-index: 3;
}

#CR-header .logo-box {
    height: 100%;
}

#CR-header .logo-box img {
    width: auto;
    max-width: 100%;
    height: 3.75rem /* 60/16 */;
    -o-object-fit: contain;
    object-fit: contain;
    -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 .CR-nav .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

#CR-header .CR-main-header .CR-nav .main-menu > li:nth-child(2) {
    padding-left: 1.5rem /* 24/16 */;
}

#CR-header .CR-main-header .CR-nav .main-menu > li {
    padding: 1rem /* 16/16 */ 0.75rem /* 12/16 */;
}

#CR-header .CR-main-header .CR-nav .main-menu > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.9375rem /* 15/16 */;
    line-height: normal;
}

#CR-header .CR-main-header .CR-nav li {
    position: relative;
}

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

#CR-header .CR-main-header .CR-nav li .arrow i {
    color: var(--cl-main);
}

#CR-header .CR-main-header .CR-nav .icon {
    margin-right: 0.5rem;
}

#CR-header .CR-main-header .CR-nav .icon img {
    min-width: 1.25rem /* 20/16 */;
    width: 1.25rem /* 20/16 */;
    height: 1.25rem /* 20/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-header .CR-main-header .CR-nav .icon svg {
    width: 1.25rem /* 20/16 */;
    height: 1.25rem /* 20/16 */;
    -o-object-fit: contain;
    object-fit: contain;
    fill: var(--cl-main);
}

#CR-header .CR-main-header .CR-nav .icon svg path {
    fill: var(--cl-main);
    opacity: 1;
}

#CR-header .CR-main-header .CR-nav .menu-item-has-children:hover > .sub-menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

#CR-header .CR-main-header .CR-nav .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 .CR-nav .sub-menu .sub-menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    top: 0;
}

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

#CR-header .CR-main-header .CR-nav .sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    position: absolute;
    top: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    width: 20rem;
    left: 0;
}

#CR-header .CR-main-header .CR-nav .sub-menu li {
    width: 100%;
}

#CR-header .CR-main-header .CR-nav .sub-menu li a {
    padding: 1rem;
    border-bottom: 1px solid #dce0e0;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.875rem /* 14/16 */;
}

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

#CR-header .CR-main-header .CR-nav .sub-menu li a:after {
    display: none;
}

#CR-header .CR-main-header .CR-nav .current-menu-ancestor:not(.CR-top-parent-menu-item) a,
#CR-header .CR-main-header .CR-nav .active:not(.CR-top-parent-menu-item) a,
#CR-header .CR-main-header nav .main-menu > .current-menu-item,
#CR-header .CR-main-header #CR-nav-pc a:hover {
    color: var(--cl-black);
}

#CR-header .CR-main-header .CR-nav a {
    color: var(--cl-main);
    font-weight: 700;
    font-size: 0.9375rem /* 15/16 */;
    line-height: normal;
    text-transform: uppercase;
    padding: 0;
    white-space: nowrap;
    display: block;
    position: relative;
}

#CR-header .CR-action-head-box li:nth-child(2) {
    margin-right: 0 !important;
}

#CR-header .CR-action-head-box li:not(:last-child) {
    margin-right: 1.25rem /* 20/16 */;
}

#CR-header .CR-action-head-box li > a {
    position: relative;
}

#CR-header .CR-action-head-box .CR-hotline-head-btn svg {
    width: 2.1875rem /* 35/16 */;
    height: 2.1875rem /* 35/16 */;
    max-width: 2.1875rem /* 35/16 */;
}

#CR-header .CR-action-head-box .CR-account-head-btn svg {
    width: 2.5rem /* 40/16 */;
    height: 2.5rem /* 40/16 */;
    max-width: 2.5rem /* 40/16 */;
}

#CR-header .CR-action-head-box .CR-account-head-btn .intro-view-box {
    max-width: 8.125rem /* 130/16 */;
}

#CR-header .CR-action-head-box .CR-account-head-btn .intro-view-box b {
    line-height: 2rem /* 32/16 */;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 2rem /* 32/16 */;
}

#CR-header .CR-action-head-box .intro-view-box {
    padding-left: 0.625rem /* 10/16 */;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#CR-header .CR-action-head-box .intro-view-box b {
    color: var(--cl-main);
    font-style: normal;
    font-weight: 700;
    font-size: 1.1875rem /* 19/16 */;
    line-height: normal;
    display: block;
    word-break: break-word;
}

#CR-header .CR-action-head-box .intro-view-box p {
    font-weight: 400;
    font-size: 1.0625rem /* 17/16 */;
    line-height: normal;
    color: var(--cl-black);
    display: block;
    word-break: break-word;
}

#CR-header .CR-action-head-box .CR-show-mini-cart-btn {
    width: 2.5rem /* 40/16 */;
    height: 2.5rem /* 40/16 */;
    background: var(--cl-main);
    border-radius: 0.3125rem /* 5/16 */;
    margin-left: 1.875rem /* 30/16 */;
}

#CR-header .CR-action-head-box .CR-show-mini-cart-btn svg {
    fill: var(--cl-white);
    width: auto;
    height: 40%;
}

#CR-header .CR-action-head-box .CR-view-total-cart-head {
    border: 1px solid var(--cl-gray);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    background: var(--cl-light-main);
    color: var(--cl-main);
    line-height: normal;
    border-radius: 50%;
    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;
    right: -0.75rem /* -12/16 */;
    top: -0.75rem /* -12/16 */;
    width: 1.5rem /* 24/16 */;
    height: 1.5rem /* 24/16 */;
    font-size: 0.625rem /* 10/16 */;
    font-weight: 700;
    pointer-events: none;
}

#CR-header .CR-mobile-menu-head-box {
    display: none;
}

#CR-header .CR-open-mobile-menu {
    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: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#CR-header .CR-open-mobile-menu i {
    color: var(--cl-main);
    font-size: 1.2rem;
    line-height: normal;
}

#CR-header .logo-box {
    width: 9.75rem /* 156/16 */;
}

#CR-header .CR-action-head-box {
    width: 27.5rem /* 440/16 */;
}

#CR-header .search-head-box {
    /*-webkit-box-flex: 1;*/
    /*-ms-flex: 1;*/
    /*flex: 1;*/
    width: calc(100% - 37.25rem /* 596/16 */);
    padding: 0 2.5rem /* 40/16 */;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax form {
    position: relative;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax input::placeholder {
    color: #999999;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax input {
    background-color: #ECECEC;
    border: 0;
    width: 100%;
    height: 2.5rem /* 40/16 */;
    border-radius: 0.3125rem /* 5/16 */;
    padding-right: 1.5rem;
    padding-left: 3rem;
    font-size: 1rem;
    font-weight: 500;
    outline: none !important;
    color: var(--cl-black);
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax button {
    position: absolute;
    top: 0;
    bottom: 0.9375rem /* 15/16 */;
    left: 0.5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 2.5rem /* 40/16 */;
    height: 2.5rem /* 40/16 */;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

#CR-header .CR-search-form-suggest .CR-search-form-ajax button svg {
    width: auto;
    height: 40%;
}

#CR-header .CR-search-form-suggest .CR-search-featured-keywords {
    margin: 0.375rem /* 6/16 */ 0 0;
}

#CR-header .CR-search-form-suggest .CR-search-featured-keywords ul {
    /*margin: -0.4375rem  !* -7/16 *!;*/
    margin: 0;
}

#CR-header .CR-search-form-suggest .CR-search-featured-keywords li:not(:last-child) {
    /*padding: 0.4375rem  !* 7/16 *!;*/
    margin-right: 0.875rem /* 14/16 */;
}

#CR-header .CR-search-form-suggest .CR-search-featured-keywords a:hover {
    color: var(--cl-main);
}

#CR-header .CR-search-form-suggest .CR-search-featured-keywords a {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem /* 12/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
}

#CR-header .item-with-arrow-box {
    position: relative;
    width: 100%;
}

#CR-nav-mb {
    display: none;
}

.CR-marquee-box {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.CR-marquee {
    overflow: hidden;
    width: 100%;
}

.CR-marquee ul {
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 45s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/** MEGA MENU **/
#CR-header .CR-main-header .CR-top-mega-menu-item > .CR-sub-menu {
    width: 18rem;
    backdrop-filter: blur(20px);
}

#CR-header .CR-main-header .CR-top-mega-menu-item {
    background: var(--cl-mega-menu);
    padding-left: 0.625rem /* 10/16 */ !important;
    padding-right: 0.625rem /* 10/16 */ !important;
}

#CR-header .CR-main-header .CR-top-mega-menu-item > .arrow {
    display: none !important;
}

#CR-header .CR-main-header .CR-top-parent-menu-item {

}

#CR-header .CR-main-header .CR-mega-parent-item {
    position: initial !important;
}

#CR-header .CR-main-header .CR-mega-parent-item > .CR-sub-menu::-webkit-scrollbar {
    width: 3px;
    border-radius: 2px;
    background-color: var(--cl-gray);
}

#CR-header .CR-main-header .CR-mega-parent-item > .CR-sub-menu::-webkit-scrollbar-track {
    border: none;
}

#CR-header .CR-main-header .CR-mega-parent-item > .CR-sub-menu::-webkit-scrollbar-thumb {
    background-color: var(--cl-main);
    outline: 1px solid var(--cl-main);
}

#CR-header .CR-main-header .CR-mega-parent-item > .CR-sub-menu {
    position: absolute;
    left: 100% !important;
    top: 0 !important;
    width: calc(78rem - 18rem) !important;
    padding-right: 25rem /* 400/16 */ !important;
    z-index: 9;
    margin: 0;
    list-style-type: none;
    padding: 1.5625rem /* 25/16 */;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    -ms-flex-direction: unset !important;
    flex-direction: unset !important;
    -webkit-transform: translateX(50%) scale(0) !important;
    -ms-transform: translateX(50%) scale(0) !important;
    transform: translateX(50%) scale(0) !important;
    opacity: 0;
    pointer-events: none;
    background: var(--cl-white);
}

#CR-header .CR-main-header .CR-mega-parent-item:hover > .CR-sub-menu {
    -webkit-transform: translateX(0) scale(1) !important;
    -ms-transform: translateX(0) scale(1) !important;
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#CR-header .CR-main-header .CR-mega-parent-item .CR-mega-child-item {
    width: 50% !important;
    display: inline-block;
    float: left;
    padding-bottom: 1.5rem;
}

#CR-header .CR-main-header .CR-mega-parent-item .CR-mega-child-item .CR-sub-menu {
    position: initial !important;
    transform: unset !important;
    width: 100% !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    background: transparent !important;
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .CR-mega-child-item a {
    background: transparent !important;
    font-size: 0.9375rem /* 15/16 */;
    padding: 0.75rem;
    border: none;
    word-break: break-word;
    display: block !important;
    white-space: initial;
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .CR-mega-child-item .CR-sub-menu a {
    text-transform: capitalize;
    color: var(--cl-black);
    font-weight: 500;
    padding: 0.5rem 0;
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .CR-mega-child-item .CR-sub-menu a:before {
    content: '-';
    margin-right: 0.25rem;
    display: none;
}

#CR-header .CR-main-header .CR-mega-parent-item .CR-mega-child-item > .item-with-arrow-box .arrow,
#CR-header .CR-main-header .CR-top-parent-menu-item > .item-with-arrow-box .arrow {
    display: none !important;
}

#CR-header .CR-main-header .CR-mega-parent-item .arrow {

}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item:hover > a,
#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item:hover > .item-with-arrow-box a {
    background: var(--cl-white) !important;
    color: var(--cl-main) !important;
    text-shadow: 0 0 0 var(--cl-main), 0 0 0 var(--cl-main), 0 0 0 var(--cl-main), 0 0 0 var(--cl-main);
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item > a,
#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item > .item-with-arrow-box a {
    color: var(--cl-black) !important;
    font-weight: 400 !important;
    font-size: 0.75rem  /* 12/16 */ !important;
    word-break: break-word;
    white-space: normal;
    padding: 0.5rem  /* 8/16 */ 0.625rem /* 10/16 */;
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item:hover .icon img {
    filter: grayscale(0);
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .icon img {
    filter: grayscale(100);
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .icon img {
    transition: 0.5s ease-in-out;
}

#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .CR-mega-child-item > .item-with-arrow-box a,
#CR-header .CR-main-header .CR-nav .CR-top-parent-menu-item .CR-mega-parent-item .CR-mega-child-item > a {
    font-size: 0.9375rem /* 15/16 */;
    font-weight: 700;
    color: var(--cl-black);
    padding: 0 1rem 0.5rem 0;
}

#CR-header .CR-main-header .CR-nav .CR-mega-parent-item .CR-img-mega-nav {
    position: absolute !important;
    top: 0;
    right: 0;
    width: auto !important;
    height: 100%;
    background: var(--cl-white);
}

#CR-header .CR-main-header .CR-nav .CR-mega-parent-item .CR-img-mega-nav-item {
    position: relative;
    width: 18.75rem /* 300/16 */;
    height: 25rem /* 400/16 */;
}

#CR-header .CR-main-header .CR-nav .CR-mega-parent-item .CR-img-mega-nav a {
    padding: 1.5625rem 1.5625rem 1.5625rem 0;
    border: none !important;
}

#CR-header .CR-main-header .CR-nav .CR-mega-parent-item .CR-img-mega-nav-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

#CR-footer * {
    color: var(--cl-black);
}

#CR-footer .main-title {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 1.375rem /* 22/16 */;
    line-height: normal;
    margin-bottom: 0.625rem /* 10/16 */;
    color: var(--cl-main);
}

#CR-footer .CR-main-footer,
#CR-footer .CR-bottom-footer {
    border-top: 1px solid var(--cl-main);
}

#CR-footer .CR-bottom-footer {
    padding: 1.875rem /* 30/16 */ 0;
}

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

#CR-footer .menu-box .menu-item-box {
    margin-bottom: 1.875rem /* 30/16 */;
}

#CR-footer .menu-item.active a,
#CR-footer a:hover {
    color: var(--cl-main);
}

#CR-footer a,
#CR-footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
}

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

#CR-footer li svg {
    width: auto;
    height: 0.8rem;
    margin-right: 0.5rem;
}

#CR-footer .sidebar-box > div:not(:last-child) {
    margin-bottom: 1.5625rem /* 25/16 */;
}

#CR-footer .logo-box img {
    width: auto;
    max-width: 100%;
    height: 4.375rem /* 70/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-footer .branch-box li {
    margin: 0;
}

#CR-footer .branch-box svg {
    margin-right: 0.25rem;
    width: 0.8125rem /* 13/16 */;
    min-width: 0.8125rem /* 13/16 */;
    height: auto;
}

#CR-footer .branch-box p,
#CR-footer .branch-box a {
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: 1.5625rem /* 25/16 */;
}

#CR-footer .branch-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

#CR-footer .form-row .desc {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem  /* 16/16 */;
    line-height: 1.375rem /* 22/16 */;
    color: var(--cl-dark-gray);
}

#CR-footer .form-row .CR-form-def {
    margin-top: 0.625rem /* 10/16 */;
}

#CR-footer .form-row .CR-form-def ul {
    position: relative;
}

#CR-footer .form-row .CR-form-def .def-form-field {
    margin: 0;
}

#CR-footer .form-row .CR-form-def input:not([type=submit]) {
    background: rgba(255, 255, 255, 0.4);
    padding-right: 2.8125rem /* 45/16 */;
}

#CR-footer .form-row .CR-form-def input[type=submit] {
    width: 100%;
    height: 100%;
    color: var(--cl-white);
    border-radius: 50%;
    padding: 0;
}

#CR-footer .form-row .CR-form-def .gr-def-form-btn {
    position: absolute;
    top: 50%;
    right: 0.15625rem /* 2.5/16 */;
    transform: translateY(-50%);
    width: 2.1875rem /* 35/16 */;
    height: 2.1875rem /* 35/16 */;
}

#CR-footer .social-row ul {
    margin: -0.3125rem /* -5/16 */;
}

#CR-footer .social-row li {
    padding: 0.3125rem /* 5/16 */;
    margin: 0;
}

#CR-footer .social-row img {
    height: 2.5rem /* 40/16 */;
    width: 2.5rem /* 40/16 */;
    object-fit: contain;
}

#CR-footer .payment-method-row ul {
    margin: -0.5rem -1rem;
}

#CR-footer .payment-method-row li {
    margin: 0;
    padding: 0.5rem 1rem;
}

#CR-footer .payment-method-row img {
    height: auto;
    width: 2.5rem /* 40/16 */;
    object-fit: contain;
}

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

/**================== HOME PAGE ==================**/
#CR-home-page {
    padding-bottom: 7.5rem /* 120/16 */;
}

#CR-home-page .home-default-section {
    margin-top: 3.75rem /* 60/16 */;
}

#CR-home-page .home-default-box {
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
    padding: 1.5625rem /* 25/16 */ 1.25rem /* 20/16 */;
}

#CR-home-page .home-default-title-box:after {
    content: '';
    position: absolute;
    bottom: -0.78125rem /* -12.5/16 */;
    left: -1.25rem /* -20/16 */;
    right: -1.25rem /* -20/16 */;
    background: var(--cl-gray);
    height: 1px;
}

#CR-home-page .home-default-title-box {
    margin-bottom: 1.5625rem /* 25/16 */;
    position: relative;
}

#CR-home-page .home-default-title-box a:hover {
    color: var(--cl-main);
}

#CR-home-page .home-default-title-box a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem /* 20/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-dark-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-home-page .home-default-title-box a i {
    margin-left: 1.25rem /* 20/16 */;
}

#CR-home-page .home-default-title-box .title {
    font-style: normal;
    font-weight: 800;
    font-size: 2rem /* 32/16 */;
    line-height: normal;
    color: var(--cl-main);
    margin: 0;
}

#CR-banner-home {
    position: relative;
}

#CR-banner-home .CR-slider-banner-home {
    position: relative;
    margin: 0;
}

#CR-banner-home .CR-slider-banner-home:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

#CR-banner-home .CR-slider-banner-home .item {
    width: 100%;
    position: relative;
}

#CR-banner-home .CR-slider-banner-home .item img {
    width: 100%;
    height: auto;
    -webkit-animation: myMove 10s linear infinite;
    animation: myMove 10s linear infinite;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    will-change: transform;
}

#CR-banner-home .CR-slider-banner-home .item.slick-active img {
    -webkit-animation: Slick-FastSwipeIn 1s both;
    animation: Slick-FastSwipeIn 1s both;
}

#CR-banner-home .CR-custom-dots .slick-dots {
    bottom: 0.9375rem /* 15/16 */;
}

#CR-banner-home .CR-custom-dots .slick-dots li.slick-active button {
    opacity: 1;
}

#CR-banner-home .CR-custom-dots .slick-dots li button {
    opacity: 0.2;
    background-color: var(--cl-white);
    border: none;
}

#CR-banner-home .CR-custom-dots .slick-dots li button:before {
    display: none;
}

@-webkit-keyframes myMove {
    from {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
    to {
        -webkit-transform: matrix(1.8, 0, 0, 1.9, 0, 0);
        transform: matrix(1.8, 0, 0, 1.9, 0, 0);
    }
}

@keyframes myMove {
    from {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
    to {
        -webkit-transform: matrix(1.8, 0, 0, 1.9, 0, 0);
        transform: matrix(1.8, 0, 0, 1.9, 0, 0);
    }
}

@-webkit-keyframes Slick-FastSwipeIn {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(18.75rem);
        transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(18.75rem);
    }
    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(18.75rem);
        transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(18.75rem);
    }
}

@keyframes Slick-FastSwipeIn {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
        transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
    }
    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
        transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
    }
}

#CR-icons-home {
    background: #FFECEE;
    padding: 1.4375rem /* 23/16 */ 0;
}

#CR-icons-home .list {
    margin: -0.875rem /* -14/16 */;
}

#CR-icons-home .item {
    padding: 0.875rem /* -14/16 */;
    flex: 0 0 auto;
    width: 16.6667%;
}

#CR-icons-home .item .wrap {
    position: relative;
}

#CR-icons-home .item .wrap:hover .title {
    color: var(--cl-main);
}

#CR-icons-home .item .title {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-align: center;
    display: block;
    margin: 0.8125rem /* 13/16 */ auto 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-icons-home .item .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#CR-icons-home .item .icon {
    border-radius: 50%;
    background: #FFF5F6;
    width: 7.5rem /* 120/16 */;
    height: 7.5rem /* 120/16 */;
    margin: 0 auto;
}

#CR-icons-home .item .wrap:hover .icon img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

#CR-icons-home .item .icon img {
    width: auto;
    height: 60%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 90%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#CR-flash-sale-home {
    padding-top: 3.75rem /* 60/16 */;
}

#CR-flash-sale-home .CR-countdown-date-time-main-box {
    margin-bottom: 1.625rem /* 26/16 */;
}

#CR-flash-sale-home .CR-countdown-date-time-main-box .icon-box {
    position: absolute;
    pointer-events: none;
}

#CR-flash-sale-home .CR-countdown-date-time-main-box .icon-box img {
    width: auto;
    height: 100%;
}

#CR-flash-sale-home .CR-countdown-date-time-main-box .icon-before-box {
    left: -15%;
    top: -15%;
}

#CR-flash-sale-home .CR-countdown-date-time-main-box .icon-after-box {
    right: -5%;
    z-index: -1;
}

#CR-flash-sale-home .CR-countdown-date-time-box span {
    font-size: 1.25rem /* 20/16 */;
    width: 3.75rem /* 60/16 */;
    height: 2.5rem /* 40/16 */;
}

#CR-flash-sale-home .list {

}

#CR-suggest-home .banner-box {
    margin: -0.3125rem /* -5/16 */;
}

#CR-discover-home .banner-box .item {
    width: 33.33%;
    padding: 0.3125rem /* 5/16 */;
}

#CR-discover-home .banner-box .item .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem /* 10/16 */;
    aspect-ratio: 16/9;
}

#CR-discover-home .banner-box .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-discover-home .banner-box .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#CR-discover-home .list {
    margin: 0.625rem /* 10/16 */ -0.3125rem /* -5/16 */ -0.3125rem /* -5/16 */;
}

#CR-terms-home .CR-custom-arrow-full {
    opacity: 1;
}

#CR-terms-home .CR-custom-arrow-full.right {
    right: -6rem;
}

#CR-terms-home .CR-custom-arrow-full.left {
    left: -6rem;
}

.CR-item-product-term {
    padding: 0.625rem /* 10/16 */;
    flex: 0 0 auto;
    width: 20%;
}

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

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

.CR-item-product-term .thumb {
    width: 12.5rem /* 200/16 */;
    height: 12.5rem /* 200/16 */;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--cl-gray);
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
}

.CR-item-product-term .wrap:hover .thumb {
    background: var(--cl-main);
    boder-color: var(--cl-main);
}

.CR-item-product-term .wrap:hover .thumb img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.CR-item-product-term .thumb img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

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

.CR-item-product-term .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin: 1.4375rem /* 23/16 */ auto 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-brands-home .banner-box {
    margin: 0.625rem /* 10/16 */ -0.625rem /* -10/16 */ -0.625rem /* -10/16 */;
}

#CR-brands-home .banner-box .item {
    width: 50%;
    padding: 0.625rem /* 10/16 */;
}

#CR-brands-home .banner-box .item .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem /* 10/16 */;
    aspect-ratio: 16/6;
}

#CR-brands-home .banner-box .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-brands-home .banner-box .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#CR-brands-home .list {
    margin: -0.625rem /* -10/16 */;
}

.CR-item-brand {
    padding: 0.625rem /* 10/16 */;
    flex: 0 0 auto;
    width: 20%;
}

.CR-item-brand .wrap {
    position: relative;
}

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

.CR-item-brand .logo {
    width: 100%;
    height: 4.375rem /* 70/16 */;
}

.CR-item-brand .wrap:hover .logo img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.CR-item-brand .logo img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

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

.CR-item-brand .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin: 1.4375rem /* 23/16 */ auto 0;
    padding-top: 1rem /* 16/16 */;
    border-top: 1px solid var(--cl-light-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-search-home .list {
    margin: -0.28125rem /* -4.5/16 */;
}

#CR-search-home .item {
    width: 20%;
    padding: 0.28125rem /* 4.5/16 */;
}

#CR-search-home .item .wrap {
    position: relative;
    overflow: hidden;
    background: var(--cl-white);
    border: 1px solid var(--cl-light-gray);
    border-radius: 5.3125rem /* 85/16 */;
    padding-right: 1.5625rem /* 25/16 */;
}

#CR-search-home .item .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-search-home .item .thumb {
    max-width: 5.9375rem /* 95/16 */;
    width: 5.9375rem /* 95/16 */;
    height: 5.9375rem /* 95/16 */;
}

#CR-search-home .item img {
    width: auto;
    max-width: 70%;
    height: 70%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#CR-search-home .item .wrap:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

#CR-search-home .item .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem /* 16/16 */;
    line-height: 1.25rem /* 20/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem /* 40/16 */;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-search-home .item .wrap:hover .title {
    color: var(--cl-main);
}

#CR-suggest-home .banner-box {
    margin: -0.3125rem /* -5/16 */;
}

#CR-suggest-home .banner-box .item {
    width: 33.33%;
    padding: 0.3125rem /* 5/16 */;
}

#CR-suggest-home .banner-box .item .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem /* 10/16 */;
    aspect-ratio: 16/9;
}

#CR-suggest-home .banner-box .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-suggest-home .banner-box .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#CR-suggest-home .list {
    margin: 0.625rem /* 10/16 */ -0.3125rem /* -5/16 */ -0.3125rem /* -5/16 */;
}

.CR-slider-pds-home .CR-custom-arrow-full {
    opacity: 1;
}

.CR-slider-pds-home .CR-custom-arrow-full.right {
    right: -6rem;
}

.CR-slider-pds-home .CR-custom-arrow-full.left {
    left: -6rem;
}

#CR-pds-terms-home .CR-pds-term-list {

}

#CR-pds-terms-home .CR-pds-term-list .banner-term-box {
    width: 15rem /* 240/16 */;
    min-height: 43.75rem /* 700/16 */;
    position: relative;
    border-radius: 0.3125rem /* 5/16 */;
    overflow: hidden;
}

#CR-pds-terms-home .CR-pds-term-list .banner-term-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-pds-terms-home .CR-pds-term-list .list-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

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

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

#CR-about-page .intro-main-box {
    padding-right: 6.25rem /* 100/16 */;
}

#CR-about-page .main-title {
    font-weight: 700;
    font-size: 2.875rem /* 46/16 */;
    line-height: normal;
    margin-bottom: 1.25rem /* 20/16 */;
}

#CR-about-page .store-box {
    background: var(--cl-light-main);
    border: 1.5px solid var(--cl-main);
    border-radius: 0.625rem /* 10/16 */;
    overflow: hidden;
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#CR-about-page .store-box .store-heading {
    font-weight: 700;
    font-size: 1.5625rem /* 25/16 */;
    line-height: normal;
    text-transform: uppercase;
    padding: 2.1875rem /* 35/16 */ 1rem /* 16/16 */;
    background: var(--cl-main);
    color: var(--cl-white);
}

#CR-about-page .store-box .CR-item-store:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#CR-about-page .store-box .CR-item-store .wrap {
    padding: 2.5rem /* 40/16 */;
    position: relative;
}

#CR-about-page .store-box .CR-item-store .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#CR-about-page .store-box .CR-item-store .thumb {
    position: relative;
    aspect-ratio: 16/9;
}

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

#CR-about-page .store-box .CR-item-store .cont {
    padding: 2.5rem /* 40/16 */ 0 0;
}

#CR-about-page .store-box .CR-item-store .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem /* 20/16 */;
    line-height: 1.5rem /* 24/16 */;
    text-transform: uppercase;
    margin-bottom: 1.25rem /* 20/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-about-page .store-box .CR-item-store ul {
    padding: 0;
    margin: 0;
}

#CR-about-page .store-box .CR-item-store li:not(:last-child) {
    margin-bottom: 0.9375rem /* 15/16 */;
}

#CR-about-page .store-box .CR-item-store li i,
#CR-about-page .store-box .CR-item-store .wrap:hover .title,
#CR-about-page .store-box .CR-item-store li a:hover {
    color: var(--cl-main);
}

#CR-about-page .store-box .CR-item-store li i {
    margin-right: 1.125rem /* 18/16 */;
}

#CR-about-page .store-box .CR-item-store li p,
#CR-about-page .store-box .CR-item-store li a {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: 1.375rem /* 22/16 */;
    color: var(--cl-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

#CR-about-page .store-box .CR-item-store li a {
    position: relative;
    z-index: 2;
}

#CR-about-page .ecommerce-box {
    padding-top: 6.25rem /* 100/16 */;
}

#CR-about-page .ecommerce-box .list {
    background: var(--cl-main);
}

#CR-about-page .ecommerce-box .item:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

#CR-about-page .ecommerce-box .item {
    padding-top: calc(var(--bs-gutter-x) * .5);
    padding-bottom: calc(var(--bs-gutter-x) * .5);
}

#CR-about-page .ecommerce-box .item .wrap {
    height: 100%;
}

#CR-about-page .ecommerce-box .item img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 5rem /* 80/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-about-page .commit-box {
    margin: 3.125rem /* 50/16 */ -1rem -1rem;
}

#CR-about-page .commit-box .item {
    width: 25%;
    padding: 1rem;
}

#CR-about-page .commit-box .item .wrap {
    position: relative;
}

#CR-about-page .commit-box .item img {
    width: auto;
    max-width: 100%;
    height: 8.75rem /* 140/16 */;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

#CR-about-page .commit-box .item .cont {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: 1.5rem /* 24/16 */;
    text-align: center;
    margin: 0.9375rem /* 15/16 */ auto 0;
    padding: 0 1rem;
}

/**================== RECRUITMENT PAGE ==================**/
#CR-recruitment-page {
    padding-bottom: 7.5rem /* 120/16 */;
}

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

#CR-recruitment-page .main-title {
    font-weight: 700;
    font-size: 2.875rem /* 46/16 */;
    line-height: normal;
    margin-bottom: 3.125rem /* 50/16 */;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.CR-item-recruitment {
    width: 100%;
}

.CR-item-recruitment:not(:last-child) {
    margin-bottom: 1.875rem /* 30/16 */;
}

.CR-item-recruitment .wrap {
    position: relative;
    background: var(--cl-white);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.03);
    border-radius: 1.25rem /* 20/16 */;
    padding: 1.75rem /* 28/16 */ 3.75rem /* 60/16 */;
}

.CR-item-recruitment .info-box {
    width: 80%;
}

.CR-item-recruitment .view-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-item-recruitment .title-box {
    margin-bottom: 0.625rem /* 10/16 */;
}

.CR-item-recruitment .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.5625rem /* 25/16 */;
    line-height: 1.875rem /* 30/16 */;
    margin-right: 1.125rem /* 18/16 */;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.875rem /* 30/16 */;
}

.CR-item-recruitment .date {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
}

.CR-item-recruitment .welfare-box {
    margin: -0.4375rem /* -7/16 */ -0.4375rem /* -7/16 */ 1rem /* 16/16 */;
}

.CR-item-recruitment .welfare-box li {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.4375rem /* 7/16 */;
}

.CR-item-recruitment .welfare-box li:before {
    content: '';
    width: 0.5rem /* 8/16 */;
    height: 0.5rem /* 8/16 */;
    border-radius: 50%;
    background: var(--cl-main);
    margin-right: 0.3125rem /* 5/16 */;
    display: block;
}

.CR-item-recruitment .salary {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4375rem /* 23/16 */;
    line-height: normal;
    margin: 0;
}

.CR-item-recruitment .wrap:hover .view-box a {
    background: var(--cl-light-main);
    color: var(--cl-main);
}

.CR-item-recruitment .view-box a {
    height: 2.5rem /* 40/16 */;
    background: var(--cl-main);
    border: 1px solid var(--cl-main);
    color: var(--cl-white);
    padding: 0 1rem /* 16/16 */;
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    border-radius: 1.25rem /* 20/16 */;
    margin-bottom: 0.875rem /* 14/16 */;
}

.CR-item-recruitment .view-box ul {
    margin: 0 -0.9375rem /* -15/16 */;
}

.CR-item-recruitment .view-box li {
    padding: 0 0.9375rem /* 15/16 */;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-item-recruitment .view-box li:first-child p {
    text-align: right;
}

.CR-item-recruitment .view-box li p {
    font-style: normal;
    font-weight: 400;
    font-size: 0.9375rem /* 15/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
}

/**================== RECRUITMENT DETAIL PAGE ==================**/
#CR-recruitment-detail-page {
    padding-bottom: 6.875rem /* 110/16 */;
}

#CR-recruitment-detail-page .main-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.875rem /* 46/16 */;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 1rem /* 16/16 */;
}

#CR-recruitment-detail-page .recruitment-sidebar-box:not(:last-child),
#CR-recruitment-detail-page .info-box:not(:last-child) {
    margin-bottom: 1.25rem /* 20/16 */;
}

#CR-recruitment-detail-page .recruitment-sidebar-box,
#CR-recruitment-detail-page .info-box {
    box-shadow: 0 24px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0.3125rem /* 5/16 */;
    background: var(--cl-white);
    padding: 3.125rem /* 50/16 */ 4.375rem /* 70/16 */;
}

#CR-recruitment-detail-page .info-box .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem /* 20/16 */;
    line-height: normal;
    text-transform: capitalize;
    color: var(--cl-main);
    margin-bottom: 1.875rem /* 30/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-recruitment-detail-page .info-box .title svg {
    margin-right: 1.25rem /* 20/16 */;
    width: 1.1875rem /* 19/16 */;
    height: 1.1875rem /* 19/16 */;
    fill: var(--cl-main);
    object-fit: contain;
}

#CR-recruitment-detail-page .employment-box {
    margin: -0.625rem /* -10/16 */;
}

#CR-recruitment-detail-page .employment-box li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    padding: 0.625rem /* 10/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-recruitment-detail-page .employment-box li b {
    font-weight: 600;
    min-width: 40%;
    padding-right: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-recruitment-detail-page .employment-box li svg {
    margin-right: 1rem /* 16/16 */;
    width: 1.1875rem /* 19/16 */;
    height: 1.1875rem /* 19/16 */;
    fill: var(--cl-black);
    object-fit: contain;
}

#CR-recruitment-detail-page .welfare-box {
    margin: -0.9375rem /* -15/16 */;
}

#CR-recruitment-detail-page .welfare-box li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33%;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    padding: 0.9375rem /* 15/16 */;
}

#CR-recruitment-detail-page .welfare-box li i {
    margin-right: 1.5625rem /* 25/16 */;
}

#CR-recruitment-detail-page .recruitment-sidebar-box {
    padding: 0 !important;
}

#CR-recruitment-detail-page .recruitment-sidebar-box > .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem /* 20/16 */;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
    padding: 1.4375rem /* 23/16 */ 2.1875rem /* 35/16 */;
    color: var(--cl-main);
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar {
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box .item .title {
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    margin-bottom: 0.4375rem /* 7/16 */;
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box .hotline a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.6875rem /* 27/16 */;
    line-height: normal;
    color: var(--cl-main);
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box a:hover {
    color: var(--cl-main);
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box a,
#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: 1.25rem /* 20/16 */;
    margin: 0;
    color: var(--cl-black);
}

#CR-recruitment-detail-page .CR-recruitment-detail-sidebar .contact-box .item {
    padding: 1.25rem /* 20/16 */ 2.1875rem /* 35/16 */;
    border-top: 1px solid var(--cl-gray);
}

#CR-recruitment-detail-page .form-box {
    margin-top: 2.75rem /* 44/16 */;
}

#CR-recruitment-detail-page .form-box a:hover {
    background: var(--cl-light-main);
    color: var(--cl-main);
}

#CR-recruitment-detail-page .form-box a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 3.125rem /* 50/16 */;
    height: 2.5rem /* 40/16 */;
    background: var(--cl-main);
    border: 1px solid var(--cl-main);
    color: var(--cl-white);
    border-radius: 1.25rem /* 20/16 */;
}

#CR-recruitment-detail-page .CR-cf7-box {
    display: none;
    padding-top: 2.5rem /* 40/16 */;
}

.CR-item-recruitment-related {
    border-top: 1px solid var(--cl-gray);
}

.CR-item-recruitment-related .wrap {
    position: relative;
    padding: 1rem /* 16/16 */ 2.1875rem /* 35/16 */;
}

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

.CR-item-recruitment-related .title {
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.5rem /* 24/16 */;
    text-transform: capitalize;
    margin-bottom: 0.3125rem /* 5/16 */;
    color: var(--cl-black);
}

.CR-item-recruitment-related .date {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
}

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

#CR-news-page .CR-news-main-slider {
    margin-bottom: 6.25rem /* 100/16 */;
}

#CR-news-page .CR-news-main-slider .CR-item-news {

}

#CR-news-page .CR-news-main-slider .CR-item-news .wrap {
    box-shadow: none !important;
}

#CR-news-page .CR-news-main-slider .CR-item-news .wrap:after {
    content: '';
    background: linear-gradient(180deg, rgba(255, 245, 246, 0) 0%, rgba(255, 245, 246, 0.9) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 40%;
}

#CR-news-page .CR-news-main-slider .CR-item-news .wrap > div {
    width: 100% !important;
}

#CR-news-page .CR-news-main-slider .CR-item-news .thumb {
    aspect-ratio: 16/9;
}

#CR-news-page .CR-news-main-slider .CR-item-news .cont {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2.5rem /* 40/16 */ 2.9375rem /* 47/16 */;
}

#CR-news-page .CR-news-main-slider .CR-item-news .cont .view-btn,
#CR-news-page .CR-news-main-slider .CR-item-news .cont .des {
    display: none !important;
}

#CR-news-page .CR-news-main-slider .CR-item-news .title {
    font-weight: 500;
    font-size: 1.5625rem /* 25/16 */;
    line-height: 2rem /* 32/16 */;
    max-height: 4rem /* 64/16 */;
    margin: 0.25rem 0 0;
    padding-right: 2.5rem;
    position: relative;
}

#CR-news-page .CR-news-main-slider .CR-item-news .title:after {
    content: '\f061';
    font-family: var(--font-aws);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: var(--cl-main);
}

#CR-news-page .CR-news-parent-terms {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #E9E9E9;
    margin-bottom: 2.5rem /* 40/16 */;
}

#CR-news-page .CR-news-parent-terms ul {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

#CR-news-page .CR-news-parent-terms li a:hover {
    background: var(--cl-white);
    color: var(--cl-main);
}

#CR-news-page .CR-news-parent-terms li.active a {
    background: var(--cl-main);
    color: var(--cl-white);
}

#CR-news-page .CR-news-parent-terms a {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    color: var(--cl-black);
    padding: 0 2.125rem /* 34/16 */;
    border-radius: 0.3125rem /* 5/16 */;
    height: 2.875rem /* 46/16 */;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
}

#CR-news-page .CR-news-sidebar {
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    padding-left: 3.125rem /* 50/16 */;
}

#CR-news-page .CR-news-sidebar-terms {
    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 */;
}

#CR-news-page .CR-news-sidebar-terms ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#CR-news-page .CR-news-sidebar-terms ul li {
    padding: 0;
}

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

#CR-news-page .CR-news-sidebar-terms li.parent a,
#CR-news-page .CR-news-sidebar-terms .parent-list li a {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cl-main);
}

#CR-news-page .CR-news-sidebar-terms li.parent a:hover,
#CR-news-page .CR-news-sidebar-terms .parent-list li a:hover {
    color: var(--cl-light-main);
    background: var(--cl-main);
}

#CR-news-page .CR-news-sidebar-terms li a {
    display: block;
    padding: 1rem /* 16/16 */ 1.5rem /* 24/16 */;
}

#CR-news-page .CR-news-sidebar-terms li * {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    color: var(--cl-black);
}

#CR-news-page #CR-news-main .CR-load-more-wrap {
    margin: 0;
}

#CR-news-page #CR-news-main .CR-load-more-wrap .CR-load-more-btn {
    margin: 2.6875rem /* 43/16 */ 0 0;
    min-width: 12.1875rem /* 195/16 */;
}

#CR-news-page #CR-news-main .CR-news-list {
    margin: -0.625rem /* 10/16 */;
}

#CR-news-page .CR-news-sidebar-general {
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
    margin-top: 1.25rem /* 20/16 */;
}

#CR-news-page .CR-news-sidebar-general .main-title {
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    padding: 1.125rem /* 18/16 */ 1.25rem /* 20/16 */;
    color: var(--cl-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.CR-item-news {
    width: 100%;
    padding: 0.625rem /* 10/16 */;
}

.CR-item-news .wrap {
    position: relative;
    background: var(--cl-white);
    border-radius: 0.625rem /* 10/16 */;
    overflow: hidden;
    -webkit-box-shadow: -1px 4px 29px transparent;
    box-shadow: -1px 4px 29px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news .wrap:hover {
    -webkit-box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
    box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
}

.CR-item-news-general .view,
.CR-item-news .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.CR-item-news .thumb {
    position: relative;
    width: 45%;
    background: var(--cl-gray);
    border: 1px solid var(--cl-gray);
    border-radius: 0.625rem /* 10/16 */ 0 0 0.625rem /* 10/16 */;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.CR-item-news-general .thumb img,
.CR-item-news .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.CR-item-news .cont {
    width: 55%;
    padding: 1.25rem /* 20/16 */;
    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-item-news-general .wrap:hover .title,
.CR-item-news .wrap:hover .title {
    color: var(--cl-main) !important;
}

.CR-item-news .title {
    color: var(--cl-black);
    font-style: normal;
    font-weight: 700;
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.75rem /* 28/16 */;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.5rem /* 56/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin-top: 1.25rem /* 20/16 */;
}

.CR-item-news .des {
    font-size: 1rem /* 16/16 */;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.25rem /* 52/16 */;
    height: 3.25rem /* 52/16 */;
    margin-top: 0.625rem /* 10/16 */;
}

.CR-item-news .terms-date-box * {
    line-height: normal !important;
}

.CR-item-news .terms-date-box a,
.CR-item-news .terms-date-box p {
    font-weight: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    letter-spacing: .03em;
    color: #999999;
}

.CR-item-news .terms-date-box .terms {
    position: relative;
    z-index: 4;
}

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

.CR-item-news .terms-date-box .terms:before {
    content: '|';
    margin: 0 0.5rem;
    color: #999999;
}

.CR-item-news .view-btn {
    color: var(--cl-main);
    font-weight: 600;
    font-size: 0.9375rem /* 15/16 */;
    text-transform: uppercase;
    margin-top: 1.5rem /* 24/16 */;
}

.CR-item-news .view-btn svg {
    width: auto;
    height: 1.25rem /* 20/16 */;
    fill: var(--cl-main);
    margin-left: 0.625rem /* 10/16 */;
}

.CR-item-news-general {
    padding: 0.625rem /* 10/16 */ 1.25rem /* 20/16 */;
}

.CR-item-news-general:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.CR-item-news-general .wrap {
    position: relative;
    overflow: hidden;
}

.CR-item-news-general .thumb {
    position: relative;
    width: 7.5rem /* 120/16 */;
    background: var(--cl-gray);
    border: 1px solid var(--cl-gray);
    border-radius: 0.3125rem /* 5/16 */;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.CR-item-news-general .cont {
    flex: 1;
    padding: 0.625rem /* 10/16 */;
}

.CR-item-news-general .title {
    color: var(--cl-black);
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: 1.25rem /* 20/16 */;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem /* 40/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin-top: 0.3125rem /* 5/16 */;
}

.CR-item-news-general .date {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: #ABABAB;
}

/**================== NEWS DETAIL PAGE ==================**/
#CR-news-detail-page {
    padding: 0 0 6.25rem /* 100/16 */;
}

#CR-news-detail-page .main-box {
    background: var(--cl-white);
    box-shadow: 0 11px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0.3125rem /* 5/16 */;
}

#CR-news-detail-page .sub-box {
    padding: 3.125rem /* 50/16 */ 6.25rem /* 100/16 */ 2.5rem /* 40/16 */;
}

#CR-news-detail-page .CR-news-detail-banner {
    position: relative;
    margin-bottom: 0;
}

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

#CR-news-detail-page .main-title {
    font-weight: 700;
    font-size: 2rem /* 32/16 */;
    line-height: 3rem /* 48/16 */;
    margin-top: 0;
    margin-bottom: 2.5rem /* 40/16 */;
    color: var(--cl-black);
}

#CR-news-detail-page .sub-box .terms-date-box {
    border-color: rgba(102, 102, 102, 0.15) !important;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 1rem /* 16/16 */ 0;
    margin-bottom: 1.625rem /* 26/16 */;
}

#CR-news-detail-page .sub-box .terms-date-box * {
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: var(--cl-dark-gray);
    margin: 0;
}

#CR-news-detail-page .sub-box .terms-date-box .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-news-detail-page .sub-box .terms-date-box .terms:before {
    content: '|';
    margin: 0 0.85rem;
}

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

#CR-news-detail-page .sub-box .terms-date-box svg {
    width: auto;
    height: 0.875rem /* 14/16 */;
    margin-right: 0.875rem /* 14/16 */;
    fill: var(--cl-dark-gray);
}

#CR-news-detail-page .share-box span {
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
}

#CR-news-detail-page .share-box li {
    margin-left: 1.5625rem /* 25/16 */ !important;
}

#CR-news-detail-page .share-box a:hover i {
    color: var(--cl-main) !important;
}

#CR-news-detail-page .share-box a i {
    font-size: 1rem /* 16/16 */ !important;
    color: var(--cl-dark-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-news-detail-page .CR-style-default-content img {
    border-radius: 0.3125rem /* 5/16 */;
    border-style: none;
    vertical-align: middle;
    max-width: 100%;
    display: block;
    width: auto;
}

#CR-news-detail-page .CR-style-default-content a {
    color: var(--cl-main);
}

#CR-news-detail-page .CR-style-default-content blockquote {
    font-size: 1rem /* 16/16 */;
    background-color: var(--cl-light-main);
    padding: 1.5rem /* 24/16 */;
    border-radius: 1rem /* 16/16 */;
}

#CR-news-detail-page .CR-news-detail-main .view-more-box {
    border-color: rgba(102, 102, 102, 0.15) !important;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 1rem /* 16/16 */ 0;
    margin-top: 2.5rem /* 40/16 */;
}

#CR-news-detail-page .CR-news-detail-main .view-more-box a:hover {
    color: var(--cl-black);
}

#CR-news-detail-page .CR-news-detail-main .view-more-box a {
    color: var(--cl-main);
    font-weight: 700;
    position: relative;
    padding-right: 3.75rem /* 60/16 */;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 2.5rem /* 40/16 */;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#CR-news-detail-page .CR-news-detail-main .view-more-box a:after {
    content: '\f061';
    font-family: var(--font-aws);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: var(--cl-main);
}

#CR-news-detail-page .CR-news-detail-main .view-more-box * {
    font-weight: 400;
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
}

#CR-news-detail-page .CR-news-detail-main .view-more-box .head {
    padding: 0;
    margin-right: 0.5rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

#CR-news-detail-page .CR-news-detail-bottom {
    padding-top: 5rem /* 80/16 */;
}

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

#CR-news-detail-page .CR-news-detail-related .title-box .main-title {
    font-size: 2rem /* 32/16 */;
    font-weight: 700;
    line-height: normal;
    color: var(--cl-main);
    margin-bottom: 0;
}

#CR-news-detail-page .CR-news-detail-related .title-box a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem /* 20/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-dark-gray);
}

#CR-news-detail-page .CR-news-detail-related .title-box a svg {
    height: 1rem;
    width: auto;
    margin-left: 0.5rem;
    fill: var(--cl-dark-gray);
}

#CR-news-detail-page .CR-news-detail-related .list {
    margin: -0.625rem /* 10/16 */;
}

#CR-news-detail-page .CR-custom-arrow-full.right {
    right: -3.5rem;
}

#CR-news-detail-page .CR-custom-arrow-full.left {
    left: -3.5rem;
}

#CR-news-detail-page .CR-news-detail-related .CR-item-news {
    width: 33.33%;
    padding: 0.625rem /* 10/16 */;
}

#CR-news-detail-page .CR-news-detail-related .CR-item-news .title {
    height: 3.5rem /* 56/16 */;
}

#CR-news-detail-page .CR-news-detail-related .CR-item-news .wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-shadow: none !important;
}

#CR-news-detail-page .CR-news-detail-related .CR-item-news .wrap > div {
    width: 100%;
}

#CR-news-detail-page .CR-news-detail-related .CR-item-news .thumb {
    aspect-ratio: 16/9;
}

/**================== CUSTOM PRODUCTS PAGE ==================**/
#CR-custom-pds-page {
    padding-bottom: 6.25rem /* 100/16 */;
}

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

#CR-custom-pds-page .sub-banner-box {
    margin: -0.625rem /* 10/16 */;
}

#CR-custom-pds-page .sub-banner-box .item {
    width: 50%;
    padding: 0.625rem /* 10/16 */;
}

#CR-custom-pds-page .sub-banner-box .item .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem /* 10/16 */;
    aspect-ratio: 16/7;
}

#CR-custom-pds-page .sub-banner-box .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-custom-pds-page .sub-banner-box .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#CR-custom-pds-page .countdown-box {
    padding: 9.375rem /* 150/16 */ 0 2.5rem /* 40/16 */;
}

#CR-custom-pds-page .CR-countdown-date-time-main-box {
    margin: 0 auto;
    padding-right: 9.375rem /* 150/16 */;
}

#CR-custom-pds-page .CR-countdown-date-time-main-box .icon-box {
    position: absolute;
    pointer-events: none;
}

#CR-custom-pds-page .CR-countdown-date-time-main-box .icon-box img {
    width: auto;
    height: 100%;
}

#CR-custom-pds-page .CR-countdown-date-time-main-box .icon-before-box {
    right: 85%;
    bottom: -30%;
}

#CR-custom-pds-page .CR-countdown-date-time-main-box .icon-after-box {
    left: 85%;
    top: -90%;
}

#CR-custom-pds-page .filter-box {
    margin-top: 2.5rem /* 40/16 */;
}

#CR-custom-pds-page .filter-box ul {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

#CR-custom-pds-page .filter-box li:not(:last-child) {
    margin-right: 0.625rem /* 10/16 */;
}

#CR-custom-pds-page .filter-box li.active a {
    background: var(--cl-main);
    color: var(--cl-white);
}

#CR-custom-pds-page .filter-box a:hover {
    color: var(--cl-main);
}

#CR-custom-pds-page .filter-box a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    color: var(--cl-black);
    background: var(--cl-white);
    padding: 0 2.125rem /* 34/16 */;
    border-radius: 3.125rem /* 50/16 */;
    height: 2.875rem /* 46/16 */;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
}

#CR-custom-pds-page #CR-pds-load-list {
    margin-top: 2.5rem /* 40/16 */;
    background: var(--cl-white);
    border-radius: 0.9375rem /* 15/16 */;
}

#CR-custom-pds-page #CR-pds-load-list .CR-load-more-wrap {
    margin: 0 auto;
    padding: 3.125rem /* 50/16 */ 0 4.375rem /* 70/16 */;
}

#CR-custom-pds-page .brands-list--box {
    margin-top: 2.5rem /* 40/16 */;
}

#CR-custom-pds-page .brands-list--box .list-box {
    margin: -0.625rem /* 10/16 */;
}

#CR-custom-pds-page .brands-list--box .CR-item-brand .wrap {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 7%);
    padding: 0.5rem;
    background: var(--cl-white);
}


/**================== PRODUCTS PAGE ==================**/
#CR-products-page {
    padding-bottom: 4.375rem /* 70/16 */;
    border-radius: 0.9375rem /* 15/16 */;
    overflow: hidden;
}

#CR-products-page #CR-products-banner img {
    width: 100%;
    height: auto;
}

#CR-products-page .current-title-view {
    font-style: normal;
    font-weight: 700;
    font-size: 2.625rem /* 42/16 */;
    margin: 0;
}

#CR-products-page .CR-products-main-bottom {
    padding-top: 1.25rem /* 20/16 */;
}

#CR-products-page #CR-products-filter {
    padding-right: 1.875rem /* 30/16 */;
}

#CR-products-page #CR-pds-load-list {
    background: var(--cl-white);
}

#CR-products-page #CR-pds-load-list .CR-load-more-wrap {
    margin: 0 auto;
    padding: 3.125rem /* 50/16 */ 0 4.375rem /* 70/16 */;
}

#CR-products-page .CR-item-product .brand-box span {
    font-size: 0.625rem /* 10/16 */;
}

#CR-products-page .CR-sidebar-products .main-title {
    font-style: normal;
    color: var(--cl-main);
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-transform: uppercase;
    padding: 1.125rem /* 18/16 */ 0.9375rem /* 15/16 */;
    background: var(--cl-white);
    border-bottom: 1px solid var(--cl-main);
    border-radius: 0.5rem /* 8/16 */ 0.5rem /* 8/16 */ 0 0;
    margin-bottom: 0;
}

#CR-products-page .CR-sidebar-products .main-title svg {
    width: auto;
    height: 1rem /* 16/16 */;
    margin-right: 0.625rem /* 10/16 */;
    fill: var(--cl-main);
}

#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: 95%;
    margin: 0 auto;
}

#CR-products-page .CR-sidebar-products .item-box {
    background: var(--cl-white);
    padding: 1.25rem /* 20/16 */ 0.9375rem /* 15/16 */;
    border: 1px solid var(--cl-gray);
    border-radius: 0.5rem /* 8/16 */;
}

#CR-products-page .CR-sidebar-products .item-box:first-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

#CR-products-page .CR-sidebar-products .item-box:not(:first-child) {
    margin-top: 0.625rem /* 10/16 */;
}

#CR-products-page .CR-sidebar-products .item-box:nth-child(2) {
    margin-top: 0;
}

#CR-products-page .CR-sidebar-products .item-box .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-black);
    margin-bottom: 1rem /* 16/16 */;
}

#CR-products-page .CR-sidebar-products .item-box .list {
    max-height: 21.875rem /* 350/16 */;
    overflow-x: hidden;
    overflow-y: auto;
}

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

#CR-products-page .CR-sidebar-products .item-box .list::-webkit-scrollbar-track {
    border: 1px solid #cccccc;
    background-color: #cccccc;
}

#CR-products-page .CR-sidebar-products .item-box .list::-webkit-scrollbar-thumb {
    background-color: var(--cl-main);
    outline: 1px solid var(--cl-main);
}

#CR-products-page .CR-sidebar-products .terms-box li:first-child a {
    padding-top: 0;
}

#CR-products-page .CR-sidebar-products .terms-box li:last-child a {
    padding-bottom: 0;
}

#CR-products-page .CR-sidebar-products .terms-box a:hover,
#CR-products-page .CR-sidebar-products .terms-box .active a {
    color: var(--cl-main);
}

#CR-products-page .CR-sidebar-products .terms-box .active a {
    font-weight: 700;
}

#CR-products-page .CR-sidebar-products .terms-box a {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: var(--cl-black);
    display: block;
    padding: 0.5rem /* 8/16 */ 0;
}

#CR-products-page .CR-sidebar-products .item-checkbox li:not(:last-child) {
    margin-bottom: 1.25rem /* 20/16 */;
}

#CR-products-page .CR-pds-remove-sort-box {
    height: 100%;
}

#CR-products-page .CR-pds-remove-sort-box .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    text-transform: uppercase;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    margin-right: 0.625rem /* 10/16 */;
}

#CR-products-page .CR-pds-remove-sort-box .box {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

#CR-products-page .CR-pds-remove-sort-box a {
    background: var(--cl-white);
    border-radius: 3.125rem /* 50/16 */;
    padding: 0 1.125rem /* 18/16 */;
    height: 2.25rem /* 36/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    color: var(--cl-black);
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    position: relative;
}

#CR-products-page .CR-pds-remove-sort-box a:first-child {
    margin-left: 0;
}

#CR-products-page .CR-pds-remove-sort-box a:not(:first-child) {
    margin-left: 1.125rem /* 18/16 */;
}

#CR-products-page .CR-pds-remove-sort-box .filter-remove-box,
#CR-products-page .CR-pds-remove-sort-box .sort-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-products-page .CR-pds-remove-sort-box .filter-remove-box {
    max-width: 45%;
}

#CR-products-page .CR-pds-remove-sort-box .sort-box {

}

#CR-products-page .CR-pds-remove-sort-box .sort-box a.active {
    background: var(--cl-main);
    color: var(--cl-white);
}

#CR-products-page .CR-pds-remove-sort-box .filter-remove-box a:after {
    font-family: var(--font-aws);
    content: "\f057";
    position: absolute;
    top: 0;
    right: 0.2rem;
    font-size: 0.8125rem /* 13/16 */;
    color: var(--cl-main);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

#CR-products-page .CR-pds-remove-sort-box .filter-remove-box a:hover:after {
    opacity: 1;
}

#CR-products-page .CR-custom-filter-range {
    height: auto;
    border: none !important;
}

#CR-products-page .CR-custom-filter-range .slide-range {
    padding: 0;
}

#CR-products-page .CR-custom-filter-range .slide-range .slide-box {
    margin-top: 0.5rem;
}

#CR-products-page .CR-custom-filter-range .slide-range .view-box {
    margin: 0 -0.3125rem /* -5/16 */;
    padding-top: 0.75rem;
}

#CR-products-page .CR-custom-filter-range .slide-range .view-box .item-view-price {
    width: 50%;
    padding: 0 0.3125rem /* 5/16 */;
}

#CR-products-page .CR-custom-filter-range .slide-range .view-box b {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    margin-bottom: 0.75rem;
    display: block;
}

#CR-products-page .CR-custom-filter-range .slide-range .view-box b span {
    margin: 0;
    font-size: 0.75rem /* 12/16 */;
    background: transparent;
    color: var(--cl-main);
    font-weight: 700;
}

#CR-products-page .CR-custom-filter-range .slide-range .view-box input {
    width: 100%;
    background: var(--cl-gray);
    border-radius: 0.1875rem /* 3/16 */;
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem /* 12/16 */;
    line-height: normal;
    text-align: left;
    color: var(--cl-black);
    padding: 0 0.3125rem /* 5/16 */;
}

.CR-list-product {
    margin: -0.625rem /* -10/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.CR-list-product .CR-custom-arrow-full.left {
    left: -2.5rem;
}

.CR-list-product .CR-custom-arrow-full.right {
    right: -2.5rem;
}

.CR-item-product {
    width: 20%;
    padding: 0.3125rem /* 5/16 */;
}

.CR-item-product .wrap {
    position: relative;
    -webkit-box-shadow: -1px 2px 15px transparent;
    box-shadow: -1px 2px 15px transparent;
    -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 */;
    overflow: hidden;
    background: var(--cl-white);
    /*height: 100%;*/
    padding-top: 2rem;
}

.CR-item-product .thumb {
    position: relative;
    border-radius: 0.625rem /* 10/16 */;
    /*overflow: hidden;*/
    background: var(--cl-gray);
}

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

.CR-item-product .thumb:after {
    /*background: -webkit-gradient(linear,left top, left bottom,color-stop(22.05%, transparent),color-stop(82.54%, rgb(255 255 255 / 50%)),to(rgb(255 255 255 / 40%)));*/
    /*background: -o-linear-gradient(top,transparent 22.05%,rgb(255 255 255 / 50%) 82.54%,rgb(255 255 255 / 40%));*/
    /*background: linear-gradient(180deg,transparent 22.05%,rgb(255 255 255 / 50%) 82.54%,rgb(255 255 255 / 40%));*/
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    border-radius: 0.625rem /* 10/16 */;
}

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

.CR-item-product .reviews {
    position: absolute;
    top: 0.625rem;
    left: 0.75rem;
    z-index: 2;
}

.CR-item-product .reviews .reviews-rating {
    margin: 0 -0.1875rem /* -3/16 */;
    font-weight: 600;
}

.CR-item-product .reviews .star {
    margin: 0 0.1875rem /* 3/16 */;
}

.CR-item-product .reviews .star svg {
    width: auto;
    height: 0.625rem /* 10/16 */;
}

.CR-item-product .reviews .average,
.CR-item-product .reviews .number {
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    letter-spacing: .03em;
    color: var(--cl-main);
}

.CR-item-product .reviews .average {
    color: var(--cl-black) !important;
}

.CR-item-product .tags {
    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;
    position: absolute;
    top: -1.5rem;
    right: 0.35rem;
    z-index: 2;
}

.CR-item-product .tags li:not(:last-child) {
    margin-right: 0.5rem;
}

.CR-item-product .tag {
    font-size: .625rem;
    height: 1.375rem /* 22/16 */;
    padding: 0 0.625rem /* 10/16 */;
    border-radius: 3.75rem /* 60/16 */;
    font-weight: 600;
    color: var(--cl-white);
    background-color: var(--cl-main);
    text-transform: capitalize;
    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;
}

.CR-item-product .tag.new {
    background-color: var(--cl-orange);
    color: var(--cl-white);
}

.CR-item-product .tag.hot {
    background-color: var(--cl-yl);
    color: var(--cl-black);
}

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

.CR-item-product .tag.sale {
    background-color: var(--cl-light-red);
    color: var(--cl-white);
}

.CR-item-product li:last-child .tag {
    border-radius: 3.75rem /* 60/16 */ 0 0 3.75rem /* 60/16 */;
}

.CR-item-product .cont {
    padding: 0.625rem /* 10/16 */;
}

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

.CR-item-product .wrap:hover .card--line {
    opacity: 1;
}

.CR-item-product .title {
    font-size: 1rem /* 16/16 */;
    line-height: 1.25rem /* 20/16 */;
    font-weight: 400;
    color: var(--cl-black);
    margin-bottom: 0.625rem /* 10/16 */;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.5rem /* 40/16 */;
    max-height: 2.5rem /* 40/16 */;
}

.CR-item-product .brand-box {
    padding-bottom: 0.625rem /* 10/16 */;
    margin-bottom: 0.875rem /* 14/16 */;
    border-bottom: 1px solid var(--cl-gray);
}

.CR-item-product .brand-box a {
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem /* 14/16 */;
    line-height: 1.25rem /* 20/16 */;
    text-transform: uppercase;
    color: var(--cl-black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 1.25rem /* 20/16 */;;
    max-height: 1.25rem /* 20/16 */;
    max-width: 50%;
}

.CR-item-product .brand-box span:not(:last-child) {
    margin-right: 0.2rem;
}

.CR-item-product .brand-box span {
    color: var(--cl-orange);
    font-size: 0.8125rem /* 13/16 */;
}


/**================== PRODUCTS DETAIL PAGE ==================**/
#CR-single-product-page {
    padding-bottom: 8.125rem /* 130/16 */;
}

#CR-single-product-page .product-top-left {
    padding-right: 2.5rem /* 40/16 */;
}

#CR-single-product-page .product-top-right {
    padding-left: 2.5rem /* 40/16 */;
}

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

#CR-single-product-page .CR-single-product-top .main-title {
    font-style: normal;
    font-weight: 400;
    font-size: 2rem /* 32/16 */;
    line-height: 2.5rem /* 40/16 */;
    margin-bottom: 0;
}

#CR-single-product-page .CR-single-product-top .brand-box a {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    color: var(--cl-black);
    text-transform: uppercase;
}

#CR-single-product-page .CR-single-product-top .review-info-box {
    margin: 0.5rem 0 1rem;
}

#CR-single-product-page .CR-single-product-top .desc-box {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: 1.5rem /* 24/16 */;
    margin: 0 0 1rem;
}

#CR-single-product-page .CR-single-product-top .sku-box {
    position: relative;
    margin-right: 0.625rem /* 10/16 */;
    padding-right: 0.625rem /* 10/16 */;
    color: #999999;
}

#CR-single-product-page .CR-single-product-top .sku-box: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 .sku-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
}

#CR-single-product-page .CR-single-product-top .sub-title {
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    margin-right: 1.25rem /* 20/16 */;
}

#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-add-cart-pd-box .stock.out-of-stock {
    display: block;
    font-size: 1rem;
    line-height: normal;
    margin: 2rem 0 0;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cl-main);
}

#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;
    padding-top: 1.25rem /* 20/16 */;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#CR-single-product-page .CR-single-product-top .CR-custom-add-cart-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1.25rem /* 20/16 */;
}

#CR-single-product-page .CR-single-product-top .CR-btn.single_add_to_cart_button {
    background-color: var(--cl-main);
    color: var(--cl-white);
}

#CR-single-product-page .CR-single-product-top .CR-btn:hover,
#CR-single-product-page .CR-single-product-top .CR-btn.single_add_to_cart_button:hover {
    background-color: var(--cl-mega-menu);
    color: var(--cl-main);
}

#CR-single-product-page .CR-single-product-top .CR-btn {
    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;
    height: 2.5rem /* 40/16 */;
    border-radius: 3.125rem /* 50/16 */;
    border: 2px solid var(--cl-main);
    background-color: var(--cl-white);
    color: var(--cl-main);
    padding: 0 1.875rem /* 30/16 */;
    position: relative;
    width: 48.5%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.8125rem /* 13/16 */;
    font-weight: 700;
    line-height: normal;
    -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-top .CR-btn svg {
    width: auto;
    height: 1.125rem /* 18/16 */;
    margin-right: 0.5rem;
}

#CR-single-product-page .CR-single-product-top .CR-btn svg path {
    stroke: var(--cl-white);
    transition: 0.5s ease-in-out;
}

#CR-single-product-page .CR-single-product-top .CR-btn:hover svg path {
    stroke: var(--cl-black);
}

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

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

body.admin-bar .CR-add-cart-pd-box--scroll.active {
    top: 32px;
}

body .CR-add-cart-pd-box--scroll.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

body .CR-add-cart-pd-box--scroll {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9;
    background: var(--cl-white);
    border-bottom: 1px solid var(--cl-light-gray);
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    top: -100%;
    padding: 0 1rem /* 16/16 */;
    opacity: 0;
    visibility: hidden;
}

body .CR-add-cart-pd-box--scroll .CR-add-box--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 5.625rem /* 90/16 */;
}

body .CR-add-cart-pd-box--scroll .CR-intro--scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

body .CR-add-cart-pd-box--scroll .CR-intro--scroll .CR-thumb-pd-box {
    width: 3.75rem /* 60/16 */;
    position: relative;
    margin-right: 0.9375rem /* 15/16 */;
    display: block !important;
}

body .CR-add-cart-pd-box--scroll .CR-intro--scroll .CR-thumb-pd-box:before {
    content: "";
    display: block;
    padding-top: 100%;
    height: 0;
    width: 100%;
}

body .CR-add-cart-pd-box--scroll .CR-intro--scroll .CR-thumb-pd-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

body .CR-add-cart-pd-box--scroll .CR-add-cart-pd-box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

body .CR-add-cart-pd-box--scroll .CR-variations-box .variations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

body .CR-add-cart-pd-box--scroll .CR-variations-box .variations .detail-variation {
    padding: 0.5rem /* 8/16 */;
    border-left: 1px solid var(--cl-light-gray);
    min-height: 5.625rem /* 90/16 */;
}

body .CR-add-cart-pd-box--scroll .single-variation-wrap {
    padding-left: 0.5rem;
    border-left: 1px solid var(--cl-light-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

body .CR-add-cart-pd-box--scroll .CR-variations-box .hrSwatch {
    width: 4.375rem /* 70/16 */ !important;
}

body .CR-add-cart-pd-box--scroll .CR-variations-box .hrSwatch > span {
    height: 1.875rem /* 30/16 */ !important;
    border-radius: 0.75rem /* 12/16 */ !important;
}

body .CR-add-cart-pd-box--scroll .CR-all-btn-box {
    padding-top: 0 !important;
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    -ms-flex-direction: unset !important;
    flex-direction: unset !important;
}

body .CR-add-cart-pd-box--scroll .CR-custom-add-cart-box {
    min-width: 10.625rem /* 170/16 */;
    padding-left: 0.875rem /* 14/16 */;
    margin-top: 0 !important;
}

body .CR-add-cart-pd-box--scroll .CR-btn {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}

body .CR-add-cart-pd-box--scroll .review-info-box {
    margin-bottom: 0 !important;
}

body .CR-add-cart-pd-box--scroll .main-title,
body .CR-add-cart-pd-box--scroll .CR-coupons-box,
body .CR-add-cart-pd-box--scroll .brand-box,
body .CR-add-cart-pd-box--scroll .desc-box,
body .CR-add-cart-pd-box--scroll .CR-btn.single_add_to_cart_button,
body .CR-add-cart-pd-box--scroll .CR-all-btn-box .CR-custom-qty-box .sub-title,
body .CR-add-cart-pd-box--scroll .CR-variations-box .detail-variation .label--box a {
    display: none !important;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box {
    margin: 0.75rem 0;
}

#CR-single-product-page .CR-variations-box .detail-variation .label--box .label {
    color: var(--cl-black);
    font-size: 0.875rem /* 14/16 */;
    font-weight: 500;
    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: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    margin-right: 1.25rem /* 20/16 */;
}

#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: 16.66666667%;
}

#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: 2.5rem /* 40/16 */;
    border-radius: 1rem /* 16/16 */;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 0.3125rem /* 5/16 */;
    padding-right: 0.3125rem /* 5/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: 600;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    background-color: var(--cl-white);
    color: var(--cl-black);
    border: 1px solid var(--cl-gray);
    border-radius: 0.5rem /* 8/16 */;
}

#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 .hrSwatch.selected .hrDown {
    background-color: var(--cl-mega-menu);
    color: var(--cl-main);
    border-color: var(--cl-main);
}

#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 .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;
}

#CR-custom-meta-pd .CR-coupons-box {
    margin: 1.25rem /* 20/16 */ -0.3125rem /* 5/16 */ -0.3125rem /* 5/16 */;
}

#CR-custom-meta-pd .CR-coupons-box .coupon-item {
    padding: 0.3125rem /* 5/16 */;
}

#CR-custom-meta-pd .CR-coupons-box .coupon-item a:hover {
    color: #FFE6C9;
    background: #B67700;
}

#CR-custom-meta-pd .CR-coupons-box .coupon-item a {
    background: #FFE6C9;
    border-radius: 1.25rem /* 20/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 1.25rem /* 20/16 */;
    height: 1.875rem /* 30/16 */;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: #B67700;
    border: 1px solid #B67700;
}

#CR-custom-meta-pd .CR-gift-pd-box {
    background: var(--cl-light-main);
    border: 1px solid var(--cl-main);
    border-radius: 0.625rem /* 10/16 */;
    margin-top: 3.125rem /* 50/16 */;
    padding: 1.5625rem /* 25/16 */ 1.125rem /* 18/16 */ 0.625rem /* 10/16 */;
    position: relative;
}

#CR-custom-meta-pd .CR-gift-pd-box .head {
    background: var(--cl-light-main);
    border: 1px solid var(--cl-main);
    position: absolute;
    top: -0.9375rem /* -15/16 */;
    left: 1.125rem /* 18/16 */;
    height: 1.875rem /* 30/16 */;
    border-radius: 1.25rem /* 20/16 */;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    padding: 0 1rem;
}

#CR-custom-meta-pd .CR-gift-pd-box .head img {
    width: auto;
    height: 0.8125rem /* 13/16 */;
    margin-right: 0.3125rem /* 5/16 */;
}

.CR-item-gift-product:not(:last-child) {
    margin-bottom: 0.5rem;
}

.CR-item-gift-product {
    width: 100%;
}

.CR-item-gift-product .wrap {
    position: relative;
}

.CR-item-gift-product .cont {
    flex: 1;
    padding: 0 0.625rem /* 10/16 */;
}

.CR-item-gift-product .thumb {
    width: 2.875rem /* 46/16 */;
    height: 2.875rem /* 46/16 */;
    position: relative;
    border: 1px solid var(--cl-gray);
    border-radius: 0.25rem /* 4/16 */;
    overflow: hidden;
}

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

.CR-item-gift-product .title {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem /* 12/16 */;
    line-height: normal;
    margin-bottom: 0;
    color: var(--cl-black);
}

.CR-item-gift-product .CR-woo-prices * {
    font-size: 0.75rem /* 12/16 */ !important;
}

#CR-custom-meta-pd .CR-policy-pd-box {
    background: var(--cl-light-main);
    border-radius: 0.625rem /* 10/16 */;
    margin-top: 3.125rem /* 50/16 */;
}

#CR-custom-meta-pd .CR-policy-pd-box .list {
    padding: 0.875rem /* 14/16 */ 0;
}

#CR-custom-meta-pd .CR-policy-pd-box .item:not(:last-child) {
    border-right: 1px solid var(--cl-mega-menu);
}

#CR-custom-meta-pd .CR-policy-pd-box .item {
    width: 33.33%;
    padding: 0.625rem /* 10/16 */ 1.5625rem /* 25/16 */;
}

#CR-custom-meta-pd .CR-policy-pd-box .item .wrap {
    position: relative;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
}

#CR-custom-meta-pd .CR-policy-pd-box .item .icon {
    position: relative;
    width: 3.125rem /* 50/16 */;
    height: 3.125rem /* 50/16 */;
    margin-bottom: 0.625rem /* 10/16 */;
}

#CR-custom-meta-pd .CR-policy-pd-box .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-custom-meta-pd .CR-policy-pd-box .item .des {
    font-weight: 500;
    font-size: 0.75rem /* 12/16 */;
    line-height: normal;
    text-align: center;
    color: var(--cl-black);
}

#CR-custom-meta-pd .CR-attached-purchase-box {
    border: 1px solid #D1D1D1;
    border-radius: 0.3125rem /* 5/16 */;
    padding: 1rem /* 16/16 */ 1.25rem /* 20/16 */ 2.25rem /* 36/16 */;
    margin-top: 1.5rem /* 24/16 */;
    position: relative;
}

#CR-custom-meta-pd .CR-attached-purchase-box .CR-attached-purchase-action:hover {
    color: var(--cl-main);
    background: var(--cl-light-main);
}

#CR-custom-meta-pd .CR-attached-purchase-box .CR-attached-purchase-action {
    background: var(--cl-main);
    border-radius: 3.125rem /* 50/16 */;
    width: 16.875rem /* 270/16 */;
    padding: 0 1rem;
    border: 1px solid var(--cl-main);
    color: var(--cl-white);
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    position: absolute;
    bottom: -1.25rem /* -20/16 */;
    left: 1rem;
    height: 2.5rem /* 40/16 */;
}

#CR-custom-meta-pd .CR-attached-purchase-box .main-title {
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    margin-bottom: 1rem /* 16/16 */;
}

#CR-custom-meta-pd .CR-attached-purchase-box .total-view-purchase {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem /* 16/16 */;
    margin-top: 1.25rem /* 20/16 */;
}

#CR-custom-meta-pd .CR-attached-purchase-box .total-buy-box * {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
}

#CR-custom-meta-pd .CR-attached-purchase-box .total-buy-box .pd {
    margin: 0 0.2rem;
}

#CR-custom-meta-pd .CR-attached-purchase-box .total-buy-box b {
    font-weight: 700;
}

.CR-item-product-purchase:not(:last-child) {
    margin-bottom: 0.625rem /* 10/16 */;
}

.CR-item-product-purchase .cont,
.CR-item-product-purchase .CR-def-checkbox .wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-item-product-purchase .thumb {
    width: 2.875rem /* 46/16 */;
    height: 2.875rem /* 46/16 */;
    position: relative;
    border: 1px solid #EAEAEA;
    border-radius: 0.25rem /* 4/16 */;
    overflow: hidden;
}

.CR-item-product-purchase .thumb 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-purchase .cont {
    padding: 0 0.625rem /* 10/16 */;
}

.CR-item-product-purchase .title {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem /* 12/16 */;
    line-height: 1.125rem /* 18/16 */;
    color: var(--cl-black);
    margin-bottom: 0;
}

.CR-item-product-purchase .CR-woo-prices * {
    font-size: 0.75rem /* 12/16 */ !important;
}

#CR-custom-meta-pd .CR-gift-service-pd-box {
    border: 1px solid #D1D1D1;
    border-radius: 0.3125rem /* 5/16 */;
    padding: 1.25rem /* 20/16 */;
    margin-top: 1.5rem /* 24/16 */;
    position: relative;
}

#CR-custom-meta-pd .CR-gift-service-pd-box .head {
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    text-transform: uppercase;
    color: var(--cl-black);
    margin-bottom: 0.625rem /* 10/16 */;
}

#CR-custom-meta-pd .CR-gift-service-pd-box .head i {
    color: var(--cl-main);
    margin-right: 0.5rem;
}

#CR-custom-meta-pd .CR-gift-service-pd-box .cont {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    color: var(--cl-black);
}

#CR-custom-meta-pd .CR-gift-service-pd-box .gift-fee * {
    color: var(--cl-main);
}

.CR-reviews-box .reviews-heading {
    padding: 0;
}

.CR-reviews-box .reviews-heading .reviews--title {
    margin: 0 0 1.25rem /* 20/16 */;
}

.CR-reviews-box .reviews-heading .reviews--count {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    display: block;
}

.CR-reviews-box .reviews-heading .reviews--ratings svg {
    fill: var(--cl-blue);
    width: auto;
    height: 1.2rem;
    margin-left: 0.25rem;
}

.CR-reviews-box .reviews-form {
    padding: 0 1.25rem /* 20/16 */ 0 0;
}

.CR-reviews-box .reviews-form .reviews-form--title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem /* 24/16 */;
    line-height: normal;
    color: var(--cl-black);
    display: none;
}

.CR-reviews-box .reviews-form form {
    width: 25rem /* 400/16 */;
    margin: 0;
}

.CR-reviews-box .reviews-form .error-mes-form {
    height: 90%;
    border-radius: 0.625rem;
}

.CR-reviews-box .reviews-filter {
    height: 3.125rem /* 50/16 */;
    padding: 0 4.0625rem /* 65/16 */;
    border-bottom: 1px solid var(--cl-light-gray);
}

.CR-reviews-box .reviews-filter .item--filter {
    width: 10.625rem /* 170/16 */;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-single {
    border: none !important;
    font-weight: 700;
    padding: 0 !important;
    border-radius: 0;
    color: var(--cl-black);
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-single span {
    width: auto;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-single div {
    position: inherit;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-single div b {
    height: auto;
    width: auto;
    margin: 0.2rem 0 0 0.5rem;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-drop .chosen-search input.chosen-search-input {
    height: 2.5rem;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-drop .chosen-results li,
.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-single div b:before {
    font-size: 0.85rem;
}

.CR-reviews-box .reviews-filter .CR-chosen-item .chosen-drop {
    margin-top: 0;
}

.CR-reviews-box .reviews-listing {
    padding: 0;
    margin: 1.875rem /* 30/16 */ 0 0;
}

.CR-reviews-box .sub--box {
    background: var(--cl-gray);
    border-radius: 0.625rem /* 10/16 */;
    padding: 1.25rem /* 20/16 */;
}

.CR-reviews-box .right-sub--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-reviews-box .left-sub--box {
    width: 80%;
}

.CR-reviews-box .left-sub--box .info--box {
    margin-bottom: 1.875rem /* 30/16 */;
}

.CR-reviews-box .left-sub--box .info--box .reviews--average {
    font-weight: 400;
    font-size: 2.6875rem /* 43/16 */;
    color: var(--cl-dark-orange);
    line-height: normal;
    margin-right: 0.3125rem /* 5/16 */;
}

.CR-reviews-box .left-sub--box .info--box .fa {
    color: var(--cl-dark-orange);
}

.CR-reviews-box .left-sub--box .info--box .review--total {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    margin-left: 0.625rem /* 10/16 */;
}

.CR-reviews-box .progress-bar-box {
    background: var(--cl-light-gray);
    height: 0.875rem /* 14/16 */;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-reviews-box .view-percent--box li > .box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-reviews-box .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--cl-dark-orange);
}

.CR-reviews-box .view-percent--box li:not(:last-child) {
    margin-bottom: 0.625rem /* 10/16 */;
}

.CR-reviews-box .view-percent--box .label i {
    color: var(--cl-dark-orange);
}

.CR-reviews-box .view-percent--box .label span {
    display: inline-block;
    width: 1rem;
}

.CR-reviews-box .view-percent--box .label {
    margin: 0;
    min-width: 3.125rem /* 50/16 */;
    font-size: 1rem;
    line-height: normal;
}

.CR-reviews-box .view-percent--box .info-percent {
    width: 12.5rem /* 200/16 */;
    padding-left: 1.5rem /* 24/16 */;
}

.CR-reviews-box .view-percent--box .info-percent,
.CR-reviews-box .view-percent--box .info-percent b {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
}

.CR-reviews-box .view-percent--box .info-percent b:after {
    content: "|";
    position: absolute;
    right: 0.3125rem /* 5/16 */;
}

.CR-reviews-box .view-percent--box .info-percent b {
    position: relative;
    min-width: 3.4375rem /* 55/16 */;
    display: inline-block;
}

.CR-paging-arrow-num {
    padding: 1.25rem /* 20/16 */ 0;
    width: 100%;
}

.CR-paging-arrow-num .CR--paging {
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    text-align: center;
    color: var(--cl-black);
    font-weight: 600;
}

.CR-paging-arrow-num .disabled {
    opacity: 0.5;
    cursor: no-drop;
}

.CR-paging-arrow-num .disabled,
.CR-paging-arrow-num .action-paging {
    width: 1.25rem /* 20/16 */;
    height: 1.25rem /* 20/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-paging-arrow-num .disabled svg,
.CR-paging-arrow-num .action-paging svg {
    width: auto;
    height: 80%;
    fill: var(--cl-black);
}

.CR-item-review {
    width: 50%;
    border-bottom: 1px solid var(--cl-light-gray);
    padding: 0.5625rem /* 9/16 */ 0;
}

.CR-item-review .wrap {
    position: relative;
    padding: 0.5625rem /* 9/16 */ 0;
}

.CR-item-review .rating-box {
    width: 9.375rem /* 150/16 */;
}

.CR-item-review .review--rating {
    color: var(--cl-main);
}

.CR-item-review .content-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 0.5rem;
}

.CR-item-review .review--author {
    margin-bottom: 1.5625rem /* 25/16 */;
}

.CR-item-review .reviews-author--name {
    font-size: 0.875rem /* 14/16 */;
    color: var(--cl-black);
    line-height: normal;
    font-weight: 600;
}

.CR-item-review .review--description {
    font-size: 0.875rem /* 14/16 */;
    line-height: 1.125rem /* 18/16 */;
    letter-spacing: .03em;
    color: var(--cl-black);
    font-weight: 500;
    word-break: break-word;
}

.CR-item-review .review--feedback--box .review--feedback {
    padding: 0.875rem /* 14/16 */ 1.125rem /* 18/16 */;
    border-radius: 1rem /* 16/16 */;
    margin-top: 0.9375rem /* 15/16 */ !important;
    line-height: 1.5em;
    border: 1px solid var(--cl-light-gray);
    background-color: var(--cl-light-gray);
    width: 100%;
    color: var(--cl-black);
    font-size: 0.875rem /* 14/16 */;
    font-weight: 500;
    word-break: break-word;
}

.CR-item-review .review--date {
    font-size: 0.875rem /* 14/16 */;
    line-height: 1.125rem /* 18/16 */;
    letter-spacing: .03em;
    color: var(--cl-black);
    font-weight: 400;
    display: block;
    margin-top: 1.25rem /* 20/16 */;
    opacity: .5;
}

#CR-single-product-page .CR-single-product-bottom {
    margin-top: 3.125rem /* 50/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: none;
}

#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.active {
    color: var(--cl-main);
}

#CR-single-product-page .CR-tabs-pd-box .nav-tabs button {
    padding: 0 1.25rem /* 20/16 */;
    height: 2.8125rem /* 45/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
    border: none;
    background: var(--cl-white);
    font-size: 1rem;
    font-weight: 500;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.3125rem /* 5/16 */ 0.3125rem /* 5/16 */ 0 0;
}

#CR-single-product-page .CR-tabs-pd-box .tab-content {
    background: var(--cl-white);
    border-radius: 0.625rem /* 10/16 */;
    padding: 3.75rem /* 60/16 */ 7.5rem /* 120/16 */ 2.5rem /* 40/16 */;
}

#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-single-product-bottom .related-box .main-title {
    font-style: normal;
    font-weight: 800;
    font-size: 1.8125rem /* 29/16 */;
    line-height: normal;
    color: var(--cl-main);
    text-transform: capitalize;
}

#CR-single-product-page .CR-single-product-bottom .related-box .CR-item-product {
    width: 100%;
}

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

#CR-single-product-page .CR-single-product-reviews {
    margin-top: 3.125rem /* 50/16 */;
}

#CR-single-product-page .CR-single-product-reviews .CR-reviews-box {
    background: var(--cl-white);
    border-radius: 0.625rem /* 10/16 */;
    padding: 1.875rem /* 30/16 */ 3.125rem /* 50/16 */;
}

#CR-single-product-page .CR-single-product-slider-row {
    margin-top: 3.75rem /* 60/16 */;
}

#CR-single-product-page .CR-single-product-slider-row .box {
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
    padding: 1.5rem /* 24/16 */;
}

#CR-single-product-page .CR-single-product-slider-row .box .main-title {
    font-style: normal;
    font-weight: 800;
    font-size: 2rem /* 32/16 */;
    line-height: normal;
    margin-bottom: 1.25rem /* 20/16 */;
    color: var(--cl-main);
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow-full {
    opacity: 1;
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow-full.right {
    right: -6rem;
}

#CR-single-product-page .CR-single-product-slider-row .CR-custom-arrow-full.left {
    left: -6rem;
}

/**================== CONTACT PAGE ==================**/
#CR-contact-page {
    padding-bottom: 8.125rem /* 130/16 */;
}

#CR-contact-page .main-contact-box {
    background: var(--cl-white);
    padding: 4.6875rem /* 75/16 */ 6.25rem /* 100/16 */;
    border-radius: 0.3125rem /* 5/16 */;
}

#CR-contact-page .branch-box .item:not(:last-child),
#CR-contact-page .main-contact-box .box > div:not(:last-child) {
    margin-bottom: 1.25rem /* 20/16 */;
    padding-bottom: 1.25rem /* 20/16 */;
    border-bottom: 1px solid var(--cl-dark-gray);
}

#CR-contact-page .form-box {
    padding-right: 5.3125rem /* 85/16 */;
    border-right: 1px solid var(--cl-dark-gray);
}

#CR-contact-page .main-contact-box .box {
    padding-left: 3.75rem /* 60/16 */;
}

#CR-contact-page .wpcf7 .wpcf7-response-output::before {
    left: unset;
    right: 5%;
    -webkit-transform: rotate(180deg) translateX(0);
    -ms-transform: rotate(180deg) translateX(0);
    transform: rotate(180deg) translateX(0);
}

#CR-contact-page .form-box .CR-form-def .def-form-field:last-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#CR-contact-page .form-box .CR-form-def .gr-def-form-btn {
    margin-top: 1rem;
}

#CR-contact-page .form-box .CR-form-def .gr-def-form-btn,
#CR-contact-page .form-box .CR-form-def input[type=submit] {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#CR-contact-page .form-box .main-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.875rem /* 46/16 */;
    line-height: normal;
    margin-bottom: 1.875rem /* 30/16 */;
}

#CR-contact-page .logo-box img {
    width: auto;
    max-width: 100%;
    height: 3.75rem /* 60/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-contact-page .branch-box * {
    color: var(--cl-black);
}

#CR-contact-page .branch-box .main-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.375rem /* 22/16 */;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.625rem /* 10/16 */;
}

#CR-contact-page .branch-box li {
    margin: 0;
}

#CR-contact-page .branch-box svg {
    margin-right: 0.25rem;
    min-width: 0.8125rem /* 13/16 */;
    width: 0.8125rem /* 13/16 */;
    height: auto;
}

#CR-contact-page .branch-box p,
#CR-contact-page .branch-box a {
    font-weight: 400;
    font-size: 0.875rem /* 14/16 */;
    line-height: 1.5625rem /* 25/16 */;
}

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

#CR-contact-page .branch-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

#CR-contact-page .socials-box ul {
    margin: -0.3125rem /* -5/16 */;
}

#CR-contact-page .socials-box li {
    padding: 0.3125rem /* 5/16 */;
    margin: 0;
}

#CR-contact-page .socials-box img {
    height: 2.5rem /* 40/16 */;
    width: 2.5rem /* 40/16 */;
    object-fit: contain;
}

#CR-contact-page #CR-branch-map-view {
    background: var(--cl-gray);
    height: 42.4375rem /* 679/16 */;
    margin-bottom: 4.6875rem /* 75/16 */;
}

.CR-item-branch-map {
    width: 30rem /* 480/16 */;
}

.CR-item-branch-map .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}

.CR-item-branch-map .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.CR-item-branch-map .thumb {
    position: relative;
    width: 45%;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.CR-item-branch-map .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CR-item-branch-map .cont {
    width: 55%;
    padding: 0 0 0 1rem;
    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-item-branch-map .title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cl-black);
    line-height: 1.5625rem /* 25/16 */;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.125rem /* 50/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin: 0 0 0.25rem;
}

.CR-item-branch-map b {
    font-weight: 600;
    margin: 0 0 0.35rem;
    display: block;
}

.CR-item-branch-map .address {
    font-size: 1rem;
    line-height: 1.5625rem /* 25/16 */;
    color: var(--cl-black);
    margin: 0;
}

.CR-item-branch-map .view-map {
    color: var(--cl-main);
    font-style: normal;
    font-weight: 400;
    font-size: 0.9375rem /* 15/16 */;
    line-height: normal;
    letter-spacing: 0.05em;
    text-decoration-line: underline !important;
    text-underline-position: under;
    margin: 0.5rem 0 0;
}

.CR-custom-marker {
    position: relative;
    width: 3.125rem /* 50/16 */;
    height: 3.125rem /* 50/16 */;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.CR-custom-marker:before,
.CR-custom-marker:after {
    content: '';
    -webkit-animation: Ani 2s infinite;
    animation: Ani 2s infinite;
    opacity: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    will-change: transform, opacity;
}

.CR-custom-marker:before {
    width: 50%;
    height: 50%;
    border: 2px solid transparent;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px rgb(255 255 255);
    box-shadow: 0 0 15px rgb(255 255 255);
    position: absolute;
}

.CR-custom-marker:after {
    width: 80%;
    height: 80%;
    border: 2px solid transparent;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px rgb(255 255 255);
    box-shadow: 0 0 15px rgb(255 255 255);
    position: absolute;
}

@-webkit-keyframes Ani {
    0% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        background-color: rgb(192 35 64 / 10%);
    }
    70% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        background-color: rgb(192 35 64 / 25%);
    }
    100% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        background-color: rgb(192 35 64 / 50%);
    }
}

@keyframes Ani {
    0% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        background-color: rgb(192 35 64 / 10%);
    }
    70% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        background-color: rgb(192 35 64 / 25%);
    }
    100% {
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        background-color: rgb(192 35 64 / 50%);
    }
}

/**================== SUPPORT PAGE ==================**/
#CR-supprot-page {
    padding-bottom: 8.125rem /* 130/16 */;
}

#CR-supprot-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 */;
    position: sticky;
    top: 0;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

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

#CR-supprot-page .CR-sidebar-support ul li,
#CR-supprot-page .CR-sidebar-support .head-box {
    padding: 1.25rem /* 20/16 */ 1.6875rem /* 27/16 */;
}

#CR-supprot-page .CR-sidebar-support ul li:not(:last-child),
#CR-supprot-page .CR-sidebar-support .head-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

#CR-supprot-page .CR-support-editor {
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
}

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

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

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

#CR-supprot-page .CR-support-editor .cont-box .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem /* 30/16 */;
    line-height: normal;
    margin-bottom: 1.375rem /* 22/16 */;
    display: block;
}

#CR-supprot-page .CR-support-accordion .accordion-item {
    background: none;
    border: none;
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
}

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

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

#CR-supprot-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-supprot-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-supprot-page .CR-support-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

#CR-supprot-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-supprot-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-supprot-page .CR-support-accordion .CR-style-default-content p,
#CR-supprot-page .CR-support-accordion .CR-style-default-content li,
#CR-supprot-page .CR-support-accordion .CR-style-default-content strong,
#CR-supprot-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-supprot-page .CR-support-accordion .CR-style-default-content a {
    color: var(--cl-main);
    text-decoration: underline !important;
    font-weight: 500;
}

/**================== SEARCH PAGE ==================**/
.CR-search-products-page .main-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.625rem /* 42/16 */;
    margin: 0 0 1.875rem /* 30/16 */;
}

/**================== POPUP ALL PAGE ==================**/
#CR-popup-all-page .box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
    width: 80%;
    max-width: 27.5rem /* 440/16 */;
    max-height: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: unset;
    backdrop-filter: unset !important;
}

#CR-popup-all-page .box a {
    outline: none !important;
}

#CR-popup-all-page .CR-pop-all-page-img {
    display: block;
    width: 100%;
    overflow: hidden;
    height: auto;
}

#CR-popup-all-page .CR-close-popup-btn svg {
    width: auto;
    height: 50%;
}

#CR-popup-all-page .CR-close-popup-btn {
    border-radius: 50%;
    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: 1.875rem /* 30/16 */;
    height: 1.875rem /* 30/16 */;
    background: var(--cl-white);
    position: absolute;
    top: -0.9375rem /* -15/16 */;
    right: -0.9375rem /* -15/16 */;
    z-index: 2;
}

/**================== RESPONSIVE ==================**/
@media (min-width: 1025px) {
    html {
        font-size: 0.75rem;
    }
}

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

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

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

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1458px !important;
    }
}

@media only screen and (max-width: 1440px) {
    #CR-header .CR-main-header .CR-nav .main-menu > li > a {
        font-size: 0.75rem;
    }
}

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

@media only screen and (max-width: 1366px) {
    #CR-header .CR-main-header .CR-nav .main-menu > li > a {
        font-size: 0.8125rem /* 13/16 */;
    }

    #CR-header .CR-main-header .CR-mega-parent-item > .CR-sub-menu {
        width: calc(942px - 18rem) !important;
    }

    #CR-header .CR-main-header .CR-top-mega-menu-item > .CR-sub-menu {
        width: 18rem !important;
    }

    #CR-products-page .CR-sidebar-products .item-box .list {
        max-height: 20rem;
    }
}

@media only screen and (max-width: 1199px) {
    #CR-icons-home .item {
        width: 25%;
    }

    .CR-countdown-date-time-main-box .icon-box {
        display: none;
    }

    #CR-products-page .current-title-view {
        margin-bottom: 2rem;
    }

    #CR-products-page .CR-pds-remove-sort-box {
        height: auto;
    }

    #CR-products-page .CR-pds-remove-sort-box .filter-remove-box {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }

    #CR-products-page .CR-custom-filter-range .slide-range {
        padding: 0;
        width: 100%;
    }

    .CR-custom-filter-range .ui-widget.ui-widget-content:before, .CR-custom-filter-range .ui-widget.ui-widget-content:after {
        display: none;
    }

    #CR-products-page #CR-products-filter {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .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: 9999;
        transition: 0.5s ease-in-out;
        max-height: 100%;
        overflow-y: auto;
        padding-top: 4rem;
    }

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

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

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

    #CR-products-page .CR-sidebar-products .main-title {
        border: none;
        color: var(--cl-white);
        background: var(--cl-main);
        border-radius: 0.3125rem /* 5/16 */;
        cursor: pointer;
    }

    #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-sidebar-products.active .bg-filter-box {
        opacity: 1;
        pointer-events: auto;
    }

    .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: 3;
        cursor: pointer;
        backdrop-filter: blur(10px);
    }

    #CR-products-page .CR-sidebar-products a.CR-close-filter-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-transform: uppercase;
    }

    #CR-header .CR-main-header .CR-nav .icon {
        display: none !important;
    }
}

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

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

    #CR-brands-home .list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .CR-item-brand {
        width: 25%;
    }

    #CR-news-detail-page .CR-news-detail-related .title-box .main-title,
    #CR-home-page .home-default-title-box .title {
        font-size: 1.375rem /* 22/16 */;
    }

    #CR-news-detail-page .CR-news-detail-related .title-box,
    #CR-home-page .home-default-title-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-news-detail-page .CR-news-detail-related .title-box a,
    #CR-home-page .home-default-title-box a {
        font-size: 0.8125rem /* 13/16 */;
        width: 100%;
        height: 2.1875rem /* 35/16 */;
        background: var(--cl-main);
        border-radius: 0.3125rem /* 5/16 */;
        color: var(--cl-white);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 1rem;
    }

    #CR-news-detail-page .CR-news-detail-related .title-box a svg,
    #CR-home-page .home-default-title-box a i {
        display: none;
    }

    #CR-footer {
        overflow: hidden;
    }

    #CR-pds-terms-home .CR-pds-term-list .banner-term-box {
        display: none;
    }

    .CR-item-product {
        width: 33.33%;
    }

    #CR-custom-pds-page .countdown-box {
        padding: 3rem 0;
    }

    body .CR-add-cart-pd-box--scroll {
        display: none !important;
    }

    .CR-custom-checkout-page,
    .CR-custom-cart-page {
        padding-top: 0;
    }

    #CR-news-page .CR-news-main-slider .CR-item-news .title {
        font-size: 1.2rem;
        line-height: 1.625rem /* 26/16 */;
        max-height: 3rem /* 48/16 */;
    }

    #CR-supprot-page,
    #CR-contact-page,
    #CR-recruitment-detail-page,
    #CR-recruitment-page,
    #CR-news-page,
    #CR-single-product-page,
    #CR-home-page {
        padding-bottom: 4rem;
    }

    #CR-about-page .ecommerce-box {
        padding-top: 4rem;
    }
}

@media only screen and (max-width: 992px) {
    #CR-nav-pc {
        display: none;
    }

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

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

    #CR-header .CR-main-header .content {
        height: 3.125rem /* 50/16 */;
        position: relative;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    #CR-header .CR-action-head-box {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
    }

    #CR-header .CR-mobile-menu-head-box {
        display: block;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        z-index: 4;
    }

    #CR-header .CR-open-mobile-menu {
        width: 1.5rem;
        height: 1.5rem;
        background: var(--cl-main);
        border-radius: 0.3125rem /* 5/16 */;
    }

    #CR-header .CR-open-mobile-menu i {
        color: var(--cl-white) !important;
        font-size: 1rem !important;
    }

    .CR-img-mega-nav {
        display: none;
    }

    #CR-footer .menu-item-box {
        margin-bottom: 1.25rem /* 20/16 */ !important;
    }

    #CR-footer .main-title {
        font-size: 1.125rem /* 18/16 */ !important;
    }

    #CR-footer .logo-box {
        margin-bottom: 2rem;
    }

    #CR-footer .CR-main-footer,
    #CR-footer .CR-bottom-footer {
        padding: 1.5rem 0 !important;
    }

    #CR-footer .CR-bottom-footer .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #CR-footer .CR-bottom-footer .copyright-box,
    #CR-footer .CR-bottom-footer .logo-list-box {
        width: 100%;
    }

    #CR-footer .CR-bottom-footer .logo-list-box ul {
        -webkit-box-pack: initial !important;
        -ms-flex-pack: initial !important;
        justify-content: initial !important;
        margin: 10px 0 0;
    }

    #CR-footer .menu-item-box .main-title {
        position: relative;
        padding-right: 2.5rem /* 40/16 */;
    }

    #CR-footer .menu-item-box .main-title .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;
    }

    .menu-item-cont--mb {
        display: none;
    }

    #CR-nav-mb {
        display: block;
    }

    #CR-nav-mb ul {
        list-style-type: none;
        margin: 0;
    }

    #CR-nav-mb li {
        position: relative;
    }

    #CR-nav-mb #CR-nav-mb-box {
        z-index: 2;
        top: -100%;
        height: auto;
        background-color: var(--cl-white);
        position: fixed;
        left: 0;
        right: 0;
        visibility: hidden;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
        -webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
        box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    }

    #CR-nav-mb .CR-bg-nav {
        background-color: rgb(0 0 0 / 75%);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
        opacity: 0;
        cursor: pointer;
        backdrop-filter: blur(10px);
    }

    #CR-nav-mb.active .CR-bg-nav {
        pointer-events: auto;
        opacity: 1;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
    }

    #CR-nav-mb.active #CR-nav-mb-box {
        visibility: visible;
        top: 6.25rem /* 100/16 */;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
    }

    #CR-nav-mb ul.main-menu-mb {
        margin: 0;
        overflow-y: auto;
        max-height: 60vh;
        padding: 0 1rem;
        list-style-type: none;
        overflow-x: hidden;
    }

    #CR-nav-mb ul.main-menu-mb::-webkit-scrollbar {
        width: 3px;
        border-radius: 2px;
        background-color: var(--cl-white);
    }

    #CR-nav-mb ul.main-menu-mb::-webkit-scrollbar-track {
        border: 1px solid #cccccc;
        background-color: #cccccc;
    }

    #CR-nav-mb ul.main-menu-mb::-webkit-scrollbar-thumb {
        background-color: var(--cl-main);
        outline: 1px solid var(--cl-main);
    }

    #CR-nav-mb ul.main-menu-mb > .menu-item-has-children {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
    }

    #CR-nav-mb .arrow {
        position: absolute;
        top: 0.25rem /* 4/16 */;
        right: -1.5rem;
        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: 4.5rem /* 55/16 */;
        color: var(--cl-black);
        height: 3rem /* 35/16 */;
        margin: 0;
        z-index: 5;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
        cursor: pointer;
    }

    #CR-nav-mb .arrow i {
        background: transparent;
        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: 0.3125rem /* 5/16 */;
        width: 2rem /* 35/16 */;
        height: 2rem /* 35/16 */;
    }

    #CR-nav-mb .wrap ul li a {
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
        color: var(--cl-black);
        font-size: 0.9375rem /* 15/16 */;
        font-weight: 600;
        line-height: normal;
        text-transform: capitalize;
        position: relative;
        padding: 1.25rem 5rem 1.25rem 0;
        display: block;
        width: 100%;
        background-color: transparent;
    }

    #CR-nav-mb .wrap .sub-menu {
        display: none;
        width: 100% !important;
        padding-left: 2rem;
    }

    #CR-nav-mb .wrap .sub-menu a {
        padding-left: 0;
        position: relative;
        font-weight: 400;
    }

    #CR-nav-mb #CR-nav-mb-box .close-box {
        background: var(--cl-yl);
        padding: 0 1.25rem /* 20/16 */;
        border-top: 2px solid;
        height: 3.125rem /* 50/16 */;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--cl-black);
    }

    #CR-nav-mb #CR-nav-mb-box .close-box .CR-close-nav-btn {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--cl-black);
    }

    #CR-nav-mb .wrap .sub-menu li:first-child {
        border-top: 1px solid var(--cl-main);
    }

    #CR-nav-mb ul.main-menu-mb li:not(:last-child) {
        border-bottom: 1px solid var(--cl-light-gray);
    }

    #CR-nav-mb .wrap .sub-menu.child-wrap li:not(:last-child) {
        border-bottom: 1px dashed var(--cl-light-gray);
    }

    #CR-nav-mb .wrap .sub-menu.child-wrap li {
        border-top: none;
    }

    #CR-nav-mb .wrap .sub-menu.child-wrap {
        border-top: 1px solid var(--cl-light-gray);
    }

    #CR-icons-home .item {
        width: 50%;
    }

    #CR-brands-home .banner-box .item .wrap {
        aspect-ratio: 16/9;
    }

    #CR-home-page .home-default-box {
        padding: 1rem;
    }

    .CR-item-brand {
        width: 33.33%;
    }

    .CR-item-brand .logo {
        height: 3.125rem /* 50/16 */;
    }

    .CR-item-brand .title {
        margin-top: 1rem;
    }

    .CR-item-product-term .thumb {
        width: 6.25rem /* 100/16 */;
        height: 6.25rem /* 100/16 */;
    }

    #CR-search-home .item {
        width: 33.33%;
    }

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

    .CR-item-product .brand-box span {
        font-size: 0.625rem /* 10/16 */;
    }

    .CR-item-product .CR-woo-prices * {
        font-size: 0.6875rem /* 11/16 */;
    }

    #CR-single-product-page .CR-gallery-pd-box {
        margin-bottom: 2rem;
    }

    #CR-single-product-page .product-top-right {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    #CR-single-product-page .product-top-left {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    #CR-single-product-page .CR-tabs-pd-box {
        padding: 0 0 2rem !important;
    }

    #CR-single-product-page .CR-tabs-pd-box .tab-content {
        padding: 2.5rem;
    }

    #CR-single-product-page .CR-single-product-bottom .related-box .list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -0.3125rem /* 5/16 */;
    }

    #CR-single-product-page .CR-single-product-bottom .related-box .CR-item-product {
        width: 50%;
        margin: 0 !important;
    }

    #CR-single-product-page .CR-single-product-top .main-title {
        font-size: 1.4rem;
        line-height: normal;
    }

    #CR-news-page .CR-news-sidebar {
        padding: 3rem 0 0 !important;
    }

    #CR-news-page .CR-news-main-slider {
        margin-bottom: 3rem;
    }

    #CR-news-detail-page .sub-box {
        padding: 2rem;
    }

    #CR-news-detail-page .CR-news-detail-bottom {
        padding-top: 2rem;
    }

    .CR-item-recruitment .title-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;
    }

    .CR-item-recruitment .title {
        margin-right: 0;
    }

    .CR-item-recruitment .date {
        margin-top: 0.5rem;
    }

    .CR-item-recruitment .wrap {
        -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;
        padding: 2rem;
    }

    .CR-item-recruitment .info-box {
        width: 100%;
    }

    .CR-item-recruitment .view-box {
        width: 100%;
        margin-top: 2rem;
    }

    #CR-about-page .store-box .store-heading {
        font-size: 1.2rem;
    }

    #CR-products-page .current-title-view,
    #CR-contact-page .form-box .main-title,
    #CR-about-page .main-title,
    #CR-recruitment-detail-page .main-title,
    #CR-recruitment-page .main-title {
        font-size: 1.6rem;
    }

    #CR-recruitment-detail-page .welfare-box li,
    #CR-recruitment-detail-page .employment-box li {
        width: 100%;
    }

    #CR-supprot-page .CR-support-accordion .accordion-body,
    #CR-supprot-page .CR-support-editor .cont-box,
    #CR-contact-page .main-contact-box,
    #CR-recruitment-detail-page .recruitment-sidebar-box,
    #CR-recruitment-detail-page .info-box {
        padding: 2rem;
    }

    #CR-contact-page .form-box,
    #CR-about-page .intro-main-box {
        padding: 0 0 3rem !important;
    }

    #CR-about-page .commit-box .item {
        width: 50%;
    }

    #CR-contact-page .form-box {
        border: none !important;
    }

    #CR-contact-page .main-contact-box .box {
        padding: 0 !important;
    }

    #CR-contact-page #CR-branch-map-view {
        height: auto;
        margin-bottom: 2rem;
        aspect-ratio: 4/3;
    }

    #CR-contact-page .menu-item-cont--mb {
        display: block !important;
    }

    #CR-supprot-page .CR-sidebar-support {
        margin-bottom: 3rem;
    }

    #CR-supprot-page .CR-support-accordion .accordion-button {
        padding-right: 3.5rem;
        font-size: 0.875rem /* 14/16 */;
    }

    #CR-supprot-page .CR-support-accordion .accordion-button .num-head {
        font-size: 0.9375rem /* 15/16 */;
        margin-right: 1rem;
    }

    #CR-supprot-page .CR-support-accordion .accordion-body {
        font-size: 0.875rem /* 14/16 */;
    }

    #CR-products-page .CR-pds-remove-sort-box .filter-remove-box,
    #CR-products-page .CR-pds-remove-sort-box .sort-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-products-page .CR-pds-remove-sort-box .title {
        margin: 0 0 1rem !important;
    }

    #CR-products-page .CR-pds-remove-sort-box .box {
        overflow-y: auto;
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-products-page .CR-pds-remove-sort-box a {
        margin: 0 0.5rem 0.5rem 0 !important;
    }

    #CR-header .search-head-box,
    #CR-header .CR-action-head-box .intro-view-box {
        display: none;
    }

    #CR-header .CR-action-head-box .CR-show-mini-cart-btn {
        margin-left: 0;
    }

    #CR-header .CR-top-header .content {
        height: 3.125rem /* 50/16 */;
        position: relative;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    #CR-header .CR-top-header .logo-box img {
        width: auto;
        height: 2.5rem /* 40/16 */;
        -o-object-fit: contain;
        object-fit: contain;
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    #CR-header .CR-action-head-box .CR-hotline-head-btn svg,
    #CR-header .CR-action-head-box .CR-account-head-btn svg {
        width: 1.5rem;
        height: 1.5rem;
        max-width: 1.5rem;
    }

    #CR-header .CR-action-head-box .CR-show-mini-cart-btn {
        width: 1.5rem;
        height: 1.5rem;
    }

    #CR-single-product-page .CR-single-product-top .sku-box:after,
    #CR-header .CR-search-form-suggest .CR-search-featured-keywords,
    #CR-nav-mb li span.icon {
        display: none;
    }

    #CR-nav-mb .arrow {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    #CR-nav-mb .CR-nav-search-form-suggest {
        background: var(--cl-main);
    }

    #CR-nav-mb #CR-nav-mb-box {
        background-color: var(--cl-light-main);
    }

    .CR-top-mega-menu-item {
        background: var(--cl-light-main);
        padding: 0 !important;
    }

    #CR-header .CR-top-header {
        position: relative;
        z-index: 3;
    }

    #CR-single-product-page .CR-single-product-top .review-info-box {
        margin: 0.5rem 0 1rem;
        -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;
    }

    #CR-single-product-page .CR-tabs-pd-box .nav-tabs {
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        max-width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-behavior: smooth;
    }

    #CR-single-product-page .CR-tabs-pd-box .nav-tabs::-webkit-scrollbar {
        height: 0.25rem;
        width: 0.25rem;
        border-radius: 0.625rem;
        background-color: var(--cl-light-gray);
    }

    #CR-single-product-page .CR-tabs-pd-box .nav-tabs::-webkit-scrollbar-track {
        border: 0.031rem solid transparent;
    }

    #CR-single-product-page .CR-tabs-pd-box .nav-tabs::-webkit-scrollbar-thumb {
        background-color: var(--cl-main);
        outline: 0.188rem solid transparent;
        border-radius: 0;
    }

    .CR-reviews-box .view-percent--box .info-percent {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0.5rem !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .CR-reviews-box .view-percent--box li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .CR-reviews-box .view-percent--box li,
    .CR-reviews-box .sub--box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .CR-reviews-box .reviews-form form {
        margin-top: 2rem;
    }

    .CR-reviews-box .view-percent--box li > .box,
    .CR-reviews-box .reviews-form form,
    .CR-reviews-box .left-sub--box,
    .CR-reviews-box .right-sub--box {
        width: 100%;
    }

    .CR-item-review {
        padding: 0.25rem /* 4/16 */ 0;
        width: 100%;
    }

    .CR-item-review .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0.8125rem /* 13/16 */ 0;
    }

    .CR-item-review .rating-box {
        width: 100%;
        margin-bottom: 1.0625rem /* 17/16 */;
    }

    .CR-item-review .review--author {
        margin-bottom: 1.875rem /* 30/16 */;
    }

    .CR-reviews-box .view-percent--box .info-percent b:after,
    .CR-reviews-box .left-sub--box .info--box .review--total {
        display: none;
    }

    #CR-single-product-page .CR-single-product-reviews .CR-reviews-box {
        padding: 1rem;
    }

    .CR-reviews-box .reviews-form {
        padding: 0;
    }

    #CR-header .CR-topbar {
        display: none !important;
    }

    #CR-header.CRis_admin {
        top: 32px !important;
    }

    #CR-header {
        top: 0 !important;
    }

    #CR-header .CR-action-head-box li:nth-child(2) {
        margin-right: 1.25rem /* 20/16 */ !important;
    }

    .CR-slider-pds-home.CR-custom-dots .slick-dots {
        position: relative;
        bottom: 0;
    }

    #CR-single-product-page .CR-single-product-bottom .related-box .main-title,
    #CR-single-product-page .CR-single-product-slider-row .box .main-title {
        font-size: 1.25rem /* 20/16 */;
    }

    #CR-header .logo-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

}

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

    #CR-header.CRis_admin {
        top: 46px !important;
    }
}

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

    #CR-home-page .home-default-title-box .title {
        font-size: 1rem /* 16/16 */;
    }

    #CR-brands-home .banner-box {
        margin-top: 1.25rem /* 20/16 */ !important;
    }

    #CR-custom-pds-page .sub-banner-box,
    #CR-home-page .CR-home-scroll-horizontal {
        -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100%;
        margin: 0;
        padding-bottom: 0.5rem;
        -webkit-box-pack: unset !important;
        -ms-flex-pack: unset !important;
        justify-content: unset !important;
        scroll-behavior: smooth;
    }

    #CR-custom-pds-page .sub-banner-box::-webkit-scrollbar,
    #CR-home-page .CR-home-scroll-horizontal::-webkit-scrollbar {
        height: 0.25rem;
        width: 0.25rem;
        border-radius: 0.625rem;
        background-color: var(--cl-light-gray);
    }

    #CR-custom-pds-page .sub-banner-box::-webkit-scrollbar-track,
    #CR-home-page .CR-home-scroll-horizontal::-webkit-scrollbar-track {
        border: 0.031rem solid transparent;
    }

    #CR-custom-pds-page .sub-banner-box::-webkit-scrollbar-thumb,
    #CR-home-page .CR-home-scroll-horizontal::-webkit-scrollbar-thumb {
        background-color: var(--cl-main);
        outline: 0.188rem solid transparent;
        border-radius: 0;
    }

    #CR-custom-pds-page .sub-banner-box .item:not(:last-child),
    #CR-search-home .item:not(:last-child),
    #CR-brands-home .banner-box .item:not(:last-child),
    #CR-discover-home .banner-box .item:not(:last-child),
    #CR-suggest-home .banner-box .item:not(:last-child) {
        margin-right: 1rem;
    }

    #CR-custom-pds-page .sub-banner-box .item,
    #CR-search-home .item {
        width: 16.875rem /* 270/16 */;
        min-width: 16.875rem /* 270/16 */;
        padding: 0;
    }

    #CR-brands-home .banner-box .item,
    #CR-discover-home .banner-box .item,
    #CR-suggest-home .banner-box .item {
        width: 18.75rem /* 300/16 */;
        min-width: 18.75rem /* 300/16 */;
        padding: 0;
    }

    #CR-icons-home .item:not(:last-child) {
        margin-right: 1.5625rem /* 25/16 */;
    }

    #CR-icons-home .item {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
        padding: 0;
    }

    #CR-icons-home .item .icon {
        width: 5rem;
        height: 5rem;
    }

    #CR-icons-home .item .title {
        font-size: 0.875rem /* 14/16 */;
    }

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

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

    #CR-single-product-page .CR-single-product-top .CR-btn.single_add_to_cart_button {
        margin-bottom: 1rem;
    }

    #CR-single-product-page .CR-single-product-top .CR-btn {
        width: 100%;
    }

    .CR-item-news .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .CR-item-news .thumb {
        aspect-ratio: 16/9;
    }

    .CR-item-news .thumb,
    .CR-item-news .cont {
        width: 100%;
    }

    #CR-news-detail-page .main-title {
        font-size: 1.4rem;
        line-height: normal;
        margin-bottom: 1rem;
    }

    #CR-news-detail-page .sub-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;
    }

    #CR-news-detail-page .sub-box .terms-date-box .left-box {
        margin-bottom: 1rem;
    }

}

@media only screen and (max-width: 767px) {
    #CR-nav-mb .wrap ul li a {
        font-size: 0.75rem;
    }

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

    #CR-news-page .CR-news-main-slider .CR-item-news .cont {
        padding: 1rem;
    }
}

@media only screen and (max-width: 454px) {
    #CR-single-product-page .CR-tabs-pd-box .tab-content {
        padding: 1rem;
    }
}