@font-face {
    font-family: 'ElegantIcons';
    src: url('../../../../system/admin/fonts/ElegantIcons.eot');
    src: url('../../../../system/admin/fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'), url('../../../../system/admin/fonts/ElegantIcons.woff') format('woff'), url('../../../../system/admin/fonts/ElegantIcons.ttf') format('truetype'), url('../../../../system/admin/fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

.shopButton {
    display: block;
    padding: 15px 40px;
    background: #8DC43F;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in all;
    border-radius: 3px;
}

.shopButton:hover {
    background: #77AC2C;
}

.emptyLoader:empty {
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.emptyLoader:empty:after {
    content: '';
    border: 2px solid #f3f3f3;
    border-top: 2px solid #071B3A;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: auto;
    animation: spin .5s linear infinite;
    flex: 0 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ----------------------- */


/* ----- SEARCH PAGE ----- */


/* ----------------------- */

.search_page {}

.search_page>div {
    padding: 0 10px;
    box-sizing: border-box;
}

.search_page.category_page .cat-hidden {
    display: none !important;
}

.search_page.product_page .prod-hidden {
    display: none !important;
}

.catHeader:not(.hidden) {
    border-bottom: 1px solid #E9E9E9;
}

.catHeader:not(.hidden),
.catFooter:not(.hidden) {
    padding: 20px 0;
}

.catHeader p,
.catFooter p {}


/* search header */

.search_header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: space-between;
    margin: 10px 0;
    box-sizing: border-box;
    position: relative;
}

h1.search_title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: #0C4C8D;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-transform: uppercase;
}

h1.search_title>span {
    font-size: 12px;
    color: #1C1B1B;
    font-weight: normal;
    text-transform: capitalize;
    flex-shrink: 0;
}

.search_order {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search_order span {
    font-size: 12px;
    color: #1C1B1B;
}

.sys_sortsearchby {
    height: 40px;
    border: 1px solid #E5E2E2;
    background-color: #fff;
    width: 280px;
    font-size: 12px;
    color: #1C1B1B;
    font-family: inherit;
    text-transform: capitalize;
    padding: 0 10px;
}


/* Search Results */

.search_results {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px 0 20px 0;
}


/* -- Product Block -- */

.product_block {
    width: 25%;
    margin-bottom: 20px;
    line-height: 30px;
}

.pb_box {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #E5E2E2;
}

.pb_image {
    position: relative;
    height: 270px;
    width: 100%;
}

.pb_image .pb_sale_sticker {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 40px;
    background: #BB002A;
    padding: 0 14px;
    z-index: 10;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.pb_image a:not(.block_fav) {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.pb_image .block_fav {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 25px;
    width: 25px;
    transition: ease-in-out all .3s;
    background: url(../images/fav_empty.svg) center no-repeat;
}

.pb_image .block_fav.added {
    background-image: url(../images/fav_fill.svg);
}

.pb_image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    width: auto;
    transition: ease-in-out all .5s;
}

.pb_info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #FCFCFC;
    border-top: 1px solid #DCDCDC;
}

.pb_title {
    height: 46px;
    overflow: hidden;
}

.pb_title a {
    color: #1C1B1B;
    font-size: 16px;
    line-height: 24px;
    height: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pb_price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    height: 45px;
    overflow: hidden;
}

.pb_price .mainprice {
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}

.pb_price .wasprice {
    font-size: 15px;
    color: #000000;
    text-decoration: line-through;
    line-height: 20px;
}

.pb_price .nowprice {
    color: #BB002A;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
}

.pb_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
}

.pb_buttons a {
    padding: 12px 0;
    background: #fff;
    color: #8DC43F;
    font-size: 18px;
    line-height: 25px;
    transition: ease-in-out all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #8DC43F;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}

.pb_box:hover .pb_buttons a {
    color: #fff;
    background: #8DC43F;
}


/*Category Block*/

.category_block {
    width: 25%;
    margin-bottom: 20px;
}

.category_block .cb_box {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

.cb_image {
    width: 100%;
    height: 220px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

.cb_title {
    background: rgba(0, 52, 119, .9);
    transition: ease-in-out all .3s;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.cb_title a {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    transition: ease-in-out all .3s;
    display: flex;
    gap: 5px;
    align-items: center;
    text-transform: uppercase;
    padding: 14px 20px;
    line-height: 22px;
}

.cb_title::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    height: 6px;
    width: 6px;
    transform: rotate(45deg) translateY(-50%);
    border: solid #fff;
    border-width: 2px 2px 0 0;
}

.category_block .cb_box:hover .cb_title {
    background: rgba(99, 181, 0, .9);
}


/* -- PAGER -- */

.search_pager {
    width: 100%;
    height: 74px;
    background: #F5F2F2;
    margin-bottom: 40px;
}

.pager_pages {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pager_link:not(.hidden) {
    height: 100%;
    display: flex;
    align-items: center;
}

.pager_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    height: 100%;
    width: 100%;
    font-size: 18px;
    color: #003477;
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: bold;
}

.pager_link.pager_prev_button {
    position: absolute;
    left: 0;
    top: 0;
}

.pager_link.pager_prev_button a {
    font-weight: bold;
    color: #003477;
    font-size: 14px;
    padding: 0 15px;
}

.pager_link.pager_prev_button a::before {
    content: "";
    height: 8px;
    width: 8px;
    border: solid #0C4C8D;
    border-width: 0 0 2px 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.pager_link.pager_prev_button.disable a {
    pointer-events: none;
}

.pager_link.pager_next_button {
    position: absolute;
    right: 0;
    top: 0;
}

.pager_link.pager_next_button a {
    font-size: 20px;
    font-weight: bold;
    color: #003477;
    padding: 0 15px;
}

.pager_link.pager_next_button a::after {
    content: "";
    height: 8px;
    width: 8px;
    border: solid #0C4C8D;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.pager_link.pager_next_button.disable a {
    pointer-events: none;
}

.pager_link.pager_current_page a {
    color: #00A4E4;
    text-decoration: underline;
}


/*Favourites Page*/

.favourites_page {
    margin: 20px 0;
}


/* ------------------- */


/* ----- MODULES ----- */


/* ------------------- */


/* -- Product Module -- */

.product_module {
    padding: 50px 0;
    box-sizing: border-box;
    position: relative;
    background: #fff;
}

.product_module>div {
    padding: 0 10px;
    position: relative;
    z-index: 100;
}

.product_module.bg_on {
    background: #f9f8f8;
}

.product_module.bg_on::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #f4f3f3;
    z-index: 1;
}

.product_module.bg_on::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: #efeeee;
    z-index: 2;
}

.product_module .pm_title_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.product_module .pm_title {}

.product_module .pm_title h1 {
    font-size: 28px;
    font-weight: bold;
    color: #2D4387;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.product_module .pm_title h1::after {
    content: "";
    height: 4px;
    width: 30px;
    background: #93BE1F;
}

.product_module .pm_gal {
    display: flex;
    flex-wrap: wrap;
}

.product_module .pm_gal.list .category_block {
    width: 25%;
}

.product_module .pm_gal.carousel .pb_box {
    margin: 0;
}

.product_module .pm_gal.list.swiper {
    all: initial;
}

.product_module .pm_gal.list .swiper-wrapper {
    all: initial;
    display: flex;
    flex-wrap: wrap;
}

.product_module.list .pm_gal_pagination {
    display: none;
}

.product_module .pm_gal_pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.product_module .pm_gal_pagination span {
    height: 18px;
    width: 18px;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid #8DC43F;
    transition: ease-in-out all .3s;
    opacity: 1;
    padding-left: 0;
    margin: 0 !important;
}

.product_module .pm_gal_pagination span.active {
    background: #8DC43F;
}


/* -- Category Module -- */

.category_module {
    padding: 50px 0;
    box-sizing: border-box;
    position: relative;
    background: #fff;
}

.category_module>div {
    padding: 0 10px;
    position: relative;
    z-index: 100;
}

.category_module.bg_on {
    background: #f9f8f8;
}

.category_module.bg_on::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #f4f3f3;
    z-index: 1;
}

.category_module.bg_on::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: #efeeee;
    z-index: 2;
}

.category_module .cm_title_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.category_module .cm_title {}

.category_module .cm_title h1 {
    font-size: 28px;
    font-weight: bold;
    color: #2D4387;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.category_module .cm_title h1::after {
    content: "";
    height: 4px;
    width: 30px;
    background: #93BE1F;
}

.category_module .cm_gal {
    display: flex;
    flex-wrap: wrap;
}

.category_module .cm_gal.list .category_block {
    width: 25%;
}

.category_module .cm_gal.carousel .cb_box {
    margin: 0;
}

.category_module .cm_gal.list.swiper {
    all: initial;
}

.category_module .cm_gal.list .swiper-wrapper {
    all: initial;
    display: flex;
    flex-wrap: wrap;
}

.category_module.list .cm_gal_pagination {
    display: none;
}

.category_module .cm_gal_pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.category_module .cm_gal_pagination span {
    height: 18px;
    width: 18px;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid #8DC43F;
    transition: ease-in-out all .3s;
    opacity: 1;
    padding-left: 0;
    margin: 0 !important;
}

.category_module .cm_gal_pagination span.active {
    background: #8DC43F;
}


/* ------------------------ */


/* ----- DETAILS PAGE ----- */


/* ------------------------ */

.details_page {}

.details_page>div.container_16 {
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.details_page_left {
    width: 50%;
    padding: 0 10px 0 0;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.details_page_right {
    width: 50%;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.details_page_right>div.product_details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    background: #FCFCFC;
    border: 1px solid #DCDCDC;
    padding: 15px 10px 10px 10px;
}


/*Product Category*/

.details_header_wrap:not(.hidden) {
    padding: 0 0 20px 0;
    width: 100%;
}

.product_category {
    display: flex;
    gap: 25px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.product_category a {
    font-size: 15px;
    line-height: 24px;
    color: #274E91;
    text-decoration: underline;
    transition: ease-in-out all .3s;
    text-transform: capitalize;
    display: flex;
    gap: 10px;
    align-items: center;
}

.product_category a:hover {
    color: #F35321;
}

.pi_overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 200;
    gap: 5px;
}

.product_sale_sticker:not(.hidden) {
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    padding: 18px 12px;
    font-size: 18px;
    box-sizing: border-box;
    z-index: 10;
    background: #BB002A;
}


/*Product Images*/

.product_images {
    border: 1px solid #E9E5E5;
    height: 580px;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.pi_items {
    height: 100%;
}

.pi_items .swiper-wrapper {
    align-items: center;
}

.pi_item img {
    max-width: 100%;
    max-height: 100%;
}

.pi_item a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi_nav_prev,
.pi_nav_next {
    height: 60px;
    width: 40px;
    background: #fff;
    border: 1px solid #DBDBDB;
    position: absolute;
    top: calc(50% - 30px);
    z-index: 10;
}

.pi_nav_prev {
    left: 0;
    border-left: 0;
}

.pi_nav_prev::after {
    content: "";
    height: 10px;
    width: 10px;
    border: solid #3A3A39;
    border-width: 0 0 2px 2px;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
}

.pi_nav_next {
    right: 0;
    border-right: 0;
}

.pi_nav_next::after {
    content: "";
    height: 10px;
    width: 10px;
    border: solid #3A3A39;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    position: absolute;
    left: 10px;
    top: calc(50% - 5px);
}

.pi_nav_disabled::after {
    border-color: #e1e1e1;
}


/*Thumbnail Images*/

.product_thumbnails:not(.hidden) {
    display: flex;
    width: 100%;
}

.pt_items {
    width: 100%;
    justify-content: center;
}

.pt_item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 137px !important;
    border: 1px solid #E9E5E5;
    transition: ease-in-out all .3s;
    box-sizing: border-box;
}

.pt_item.swiper-slide-thumb-active {
    border-color: #2D4387;
}

.pt_item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.pt_item.swiper-slide {
    height: 100px;
    width: 100px;
}

.product_title {}

.product_title h1 {
    font-size: 32px;
    color: #2D4387;
    font-weight: bold;
    line-height: 36px;
    text-transform: capitalize;
    padding: 0;
}

.product_sale_title {
    color: #BB002A;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    text-transform: capitalize;
    font-weight: bold;
}

.product_price_fav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product_price_fav .details_fav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product_price_fav .details_fav::before {
    content: "";
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    transition: ease-in-out all .3s;
    background: url(../images/fav_empty.svg) center no-repeat;
}

.product_price_fav .details_fav.added::before {
    background-image: url(../images/fav_fill.svg);
}

.product_price_fav .details_fav::after {
    content: "Save";
    font-size: 15px;
    color: #201F1F;
}

.product_price_fav .details_fav.added::after {
    content: "Saved";
}


/*Product Prices*/

.product_price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.mainPrice:not(.hidden) {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    color: #2D4387;
    font-weight: bold;
    line-height: 30px;
}

.mainPrice label {
    font-size: 16px;
    color: #B4B3B3;
    line-height: 24px;
    font-weight: normal;
}

.sale_price:not(.hidden) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wasPrice {
    font-size: 16px;
    color: #2D4387;
}

.wasPrice label {
    font-size: 12px;
    color: #B4B3B3;
}

.wasPrice span {
    text-decoration: line-through;
}

.nowPrice {
    color: #BB002A;
    font-size: 24px;
    font-weight: bold;
}

.nowPrice label {
    color: #BB002A;
    font-size: 16px;
    font-weight: normal;
}

.nowprice span span,
.mainprice span span {
    font-size: 10px;
}

.nowPrice span span:last-child,
.mainPrice span span:last-child {
    font-size: 18px;
}

.product_short_description p {
    font-size: 14px;
    color: #1D1D1D;
    line-height: 22px;
    padding: 0;
}


/*Product Delivery*/

.product_delivery:not(.hidden) {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 16px;
    color: #201F1F;
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #DCDCDC;
}

.product_delivery strong {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8DC43F;
    font-weight: bold;
}

.product_delivery strong::before {
    content: "";
    height: 30px;
    width: 30px;
    background: url(../images/delivery.svg) center no-repeat;
}


/*Product Download*/

.productDownloads {}

.downloadItems {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.downloadItem {}

.downloadItem a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #201F1F;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    background: #fff;
    border: 1px solid #E6E6E6;
}

.downloadItem a::before {
    content: "";
    height: 30px;
    width: 24px;
    background: url(../images/pdf.svg) center no-repeat;
}


/*Product Variations*/

.variations {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.variation_heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: #2D4387;
    padding: 10px;
}

.variation_title {
    font-size: 16px;
    color: #fff;
    line-height: 22px;
}

.variation_info_button:not(.hidden) {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}

.variation_info_button::before {
    content: "TECHNICAL INFO";
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    font-weight: bold;
}

.variation_info_button::after {
    content: "";
    height: 6px;
    width: 6px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    right: 3px;
    top: 5px;
    transition: ease-in-out all .3s;
}

.variation_info_button.active::after {
    transform: rotate(225deg);
    border-color: #F35321;
    top: 9px;
}

.variation_info:not(.hidden) {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
    padding: 10px;
    background: #2D4387;
}

.variation_info span {
    width: calc(50% - 3px);
    background: #fff;
    font-size: 12px;
    color: #201F1F;
    padding: 10px 8px;
}

.variation_item {}

.variation_controls {
    padding: 10px;
    border: solid #DCDCDC;
    gap: 10px;
    border-width: 0 1px 1px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variation_controls .vc_left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.variation_controls .vc_left label {
    font-size: 10px;
    color: #A7A4A4;
    line-height: 16px;
}

.variation_controls .vc_left span {
    font-size: 12px;
    color: #201F1F;
    line-height: 18px;
}

.variation_controls .vc_left .vc_price {
    color: #2D4387;
    font-size: 16px;
    line-height: 20px;
}

.variation_controls .vc_left .vc_price span,
.variation_controls .vc_left .vc_was span {
    font-size: 12px;
    color: inherit;
}

.variation_controls .vc_left .vc_was span {
    font-size: 10px;
    color: inherit;
}

.variation_controls .vc_left .vc_price label {
    color: #2D4387;
    font-size: 16px;
    line-height: 20px;
}

.variation_controls .vc_left.no_rrp .vc_price label {
    display: none;
}

.variation_controls .vc_left .vc_stock {
    color: #8DC43F;
    gap: 5px;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
}

.variation_controls .vc_left .vc_stock::before {
    content: "";
    height: 18px;
    width: 18px;
    background: url(../images/circle_green.svg) center no-repeat;
    margin-right: 2px;
}

.variation_controls .vc_right {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}


/*Quantity*/

.quantity {
    border: 1px solid #2D4387;
    overflow: hidden;
    flex-shrink: 0;
    height: 40px;
    display: flex;
}

.quantity input {
    width: 48px;
    border: 0;
    text-align: center;
    height: 100%;
    border: #2D4387 solid;
    border-width: 0 1px;
    padding: 0;
    flex-shrink: 0;
}

.quantity button {
    border: 0;
    width: 25px;
    height: 100%;
    background: #F5F5F5;
    cursor: pointer;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: ease-in-out all .3s;
}

.quantity button:hover {
    background: #f9f9f9;
}

.quantity button::before {
    content: "";
    height: 2px;
    width: 10px;
    background: #231F20;
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 1px);
}

.quantity button.plus::after {
    content: "";
    height: 10px;
    width: 2px;
    background: #231F20;
    position: absolute;
    left: calc(50% - 1px);
    top: calc(50% - 5px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/*Add to cart*/

.add_to_cart {}

.add_to_cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    border: 1px solid #F35321;
    color: #F35321;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 40px;
    gap: 7px;
}

.add_to_cart a::before {
    content: "";
    height: 20px;
    width: 20px;
    background: url(../images/cart_orange.svg) center no-repeat;
}

.add_to_cart.noStock a {
    color: #7a7a7a;
    border-color: #7a7a7a;
    pointer-events: none;
}

.add_to_cart.noStock a::before {
    background-image: url(../images/cart_grey.svg);
}

.product_details.withOutVariation .variation_controls {
    border-width: 1px 0 0 0;
}


/*Product Description*/

.product_description:not(.hidden) {
    width: 100%;
    margin-bottom: 40px
}

.product_description:not(.hidden)>div {
    padding: 0 10px;
}

.product_description:not(.hidden)>div>div {
    border: 1px solid #DCDCDC;
    background: #FCFCFC;
    padding: 20px;
}

.product_description>div>div>h6 {
    font-size: 24px;
    color: #2D4387;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0 0 20px 0;
    line-height: 30px;
}

.product_description>div>div>h6::after {
    content: "";
    height: 3px;
    width: 30px;
    background: #8DC43F;
}


/* Associations */

.associations_wrap {
    padding: 40px 0;
    position: relative;
    background: #FCFCFC;
    border-top: 1px solid #DCDCDC;
}

.associations_wrap>div.container_16 {
    padding: 0 10px;
    box-sizing: border-box;
}

.associations_wrap h2 {
    color: #2D4387;
    font-size: 24px;
    line-height: 30px;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.associations_wrap h2::after {
    content: "";
    height: 4px;
    width: 30px;
    background: #8DC43F;
}

.associations_wrap .associations_produtcs {
    display: flex;
    width: 100%;
}

.associations_wrap .associations_products .pb_box {
    margin: 0;
}

.associations_products_container {
    position: relative;
}

.assoc_pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.assoc_pagination span {
    height: 18px;
    width: 18px;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid #8DC43F;
    transition: ease-in-out all .3s;
    opacity: 1;
    padding-left: 0;
    margin: 0 !important;
}

.assoc_pagination span.active {
    background: #8DC43F;
}


/* Added to cart */

.addedtocart_inner {
    padding: 20px;
    position: relative;
    margin: -20px -20px -40px -20px;
    background: #fff;
}

.addedtocart_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.addedtocart_header h2 {
    font-size: 12px;
    color: #232222;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.addedtocart_header h2::before {
    content: "";
    height: 18px;
    width: 18px;
    background: url(../images/check_orange.svg) center no-repeat;
    flex-shrink: 0;
}

.addedtocart_header>a {
    height: 25px;
    width: 25px;
    background: url(../images/close.svg) center no-repeat;
}

.addedtocart_image {
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addedtocart_image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.addedtocart_product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.addedtocart_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addedtocart_info label {
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    color: #1E1E1E;
    font-weight: bold;
    text-transform: capitalize;
}

.addedtocart_info span {
    font-size: 14px;
    color: #1E1E1E;
}

.addedtocart_info p {
    padding: 0;
    font-size: 14px;
}

.addedtocart_description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.addedtocart_buttons {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.addedtocart_buttons>a {
    padding: 12px 30px;
    border: 1px solid;
    font-size: 16px;
    text-transform: capitalize;
    background: #fff;
    font-weight: bold;
    line-height: 20px;
    transition: ease-in-out all .3s;
}

.addedtocart_buttons .continueShopping {
    border-color: #24365A;
    color: #24365A;
}

.addedtocart_buttons .goCheckout {
    border-color: #F35321;
    color: #fff;
    background: #F35321;
}


/* ---------------------- */


/* ------ CHECKOUT ------ */


/* ---------------------- */


/*----- LARGE CART -----*/

.cart_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.cart_title span {
    font-size: 18px;
    color: #1A1818;
    font-weight: bold;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart_title span::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/cart.svg) no-repeat center;
    background-size: contain;
}

.cart_products {}

.cart_product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-sizing: border-box;
    margin: 5px 0;
    padding: 10px;
}

.cart_product_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.cart_product_image {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.cart_product_image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.cart_product_details {
    box-sizing: border-box;
    height: 100%;
}

.cart_product_title {}

.cart_product_title span {
    font-size: 14px;
    line-height: 18px;
    color: #1A1818;
    font-weight: bold;
}

.cart_product_variations {}

.cart_product_variations span {
    font-size: 10px;
    line-height: 16px;
    color: #1A1818;
}

.cart_product_variations span small {}

.cart_product_sku {}

.cart_product_sku span {
    font-size: 10px;
    line-height: 14px;
    color: #1A1818;
}

.cart_product_sku span small {}

.cart_product_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart_product_quantity_wrap {
    box-sizing: border-box;
}

.cart_product_quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 35px;
    background: #F2F2F2;
    border: 0;
}

.cart_product_quantity a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 60%;
    font-size: 20px;
    font-weight: bold;
    color: #1A1818;
}

.cart_product_quantity input {
    width: 40%;
    height: 100%;
    text-align: center;
    background: none;
    border: 0;
}

.cart_product_update {
    padding-top: 5px;
}

.cart_product_update a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart_product_update a span {
    font-size: 12px;
    color: #949597;
    text-decoration: underline;
    transition: ease-in-out all .3s;
}

.cart_product_update a span.active {
    color: #8DC43F;
}

.cart_product_price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    width: 110px;
}

.cart_product_price span {
    font-size: 14px;
    color: #1A1818;
    font-weight: bold;
}

.cart_product_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #F2F2F2;
}

.cart_product_remove a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: url(../images/trash-grey.svg) no-repeat center;
    background-size: 15px;
}

.cart_lines {
    padding: 20px 0;
}

.cart_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #E3E3E3;
}

.cart_line.total {
    border: 0;
}

.cart_line>div {
    font-size: 16px;
    color: #1A1818;
    text-transform: capitalize;
}

.cart_line.discount_line>div {
    color: #94BF1F;
}

.cart_line.total>div {
    font-weight: bold;
}


/*----- CHECKOUT -----*/

.site_body[data-page=checkout] .site_header,
.site_body[data-page=checkout] .site_footer {
    display: none;
}

.checkout_page {
    display: flex;
    min-height: 1000px;
}

.checkout_left {
    padding: 40px 10px 200px 20px;
    padding-left: calc((100vw - 1200px) / 2);
    width: 50%;
    box-sizing: border-box;
    background: #fff;
}

.checkout_right {
    padding: 130px 20px 200px 20px;
    padding-right: calc((100vw - 1200px) / 2);
    width: 50%;
    box-sizing: border-box;
    background: #F8F7F6;
}

.backtoshopping_wrap {}

.backtoshopping_wrap a {
    font-size: 12px;
    color: #AEAFAF;
    text-decoration: underline;
    font-weight: bold;
}

.checkout_logo {
    padding: 20px 0;
}

.checkout_logo img {
    max-width: 225px;
}

.checkoutButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 35px;
    width: 265px;
    background: #fff;
    border: 1px solid #74AF43;
    border-radius: 3px;
}

.checkoutButton span {
    font-size: 12px;
    color: #1A1818;
}

.checkoutButton.tick::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/tick-green.svg) no-repeat center;
    background-size: contain;
}

.checkout_logger {
    padding: 10px 0;
}

.checkout_logger_title {
    padding: 5px 0;
}

.checkout_logger_title span {
    font-size: 14px;
    line-height: 20px;
    color: #1A1818;
    font-weight: bold;
}

.checkout_logger_title span a {
    color: #94BF1F;
    font-weight: normal;
}


/* logger popup */

.login_popup {}

.login_popup_title {
    padding: 10px 0;
}

.login_popup_title span {
    font-size: 18px;
    color: #3B3B3D;
    font-weight: 600;
}

.login_popup .login_form {}

.login_popup .login_form_field {
    padding: 10px 0;
}

.login_popup .login_form_label {
    font-size: 14px;
    color: #3B3B3D;
    font-weight: 600;
    padding: 5px 0;
}

.login_popup .login_form_input {
    width: 60%;
}

.login_popup .login_form_input input {
    width: 100%;
    height: 35px;
    border: 1px solid #D8E1EB;
    padding: 0 10px;
    box-sizing: border-box;
}

.checkout_section_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.checkout_section_title span {
    font-size: 18px;
    line-height: 24px;
    color: #1A1818;
    font-weight: bold;
}

.checkout_card {
    background: #FFFCFC;
    border: 1px solid #EEEAEA;
    width: 100%;
    margin: 10px 0;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 3px;
}

.checkout_card_header {}

.checkout_card_title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout_card_title>h6 {
    padding: 0;
    font-size: 18px;
    color: #1A1818;
    font-weight: bold;
}

.checkout_card_title>span {
    font-size: 16px;
    color: #1A1818;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 100%;
}

.checkout_card_title>span>span {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkout_card_inner {
    padding: 10px 0;
    box-sizing: border-box;
}

.checkout_card_subtitle {}

.checkout_card_subtitle span {
    font-size: 16px;
    color: #3B3B3D;
}

.checkout_card_field {
    padding: 10px 0;
}

.checkout_card_input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.checkout_card_input span {
    font-size: 16px;
    line-height: 18px;
    color: #3B3B3D;
}

.checkout_card_input input {
    width: 100%;
    height: 45px;
    background: #fff;
    border: 1px solid #DBD8D8;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3B3B3D;
    transition: 0.2s ease-in-out all;
}

.checkout_card_input input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border-color: #000;
    border-radius: 2px;
    accent-color: #F35321;
}

.checkout_card_input.checkbox span {
    font-size: 14px;
    color: #1A1818;
}

.delivery_select_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.deliverySelector {
    width: 350px;
    height: 46px;
    background-color: #fff;
    border: 1px solid #DBD8D8;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #575756;
    border-radius: 5px;
}

.delivery_price {}

.delivery_price span {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

.delivery_price span:last-child {
    font-size: 10px;
}

.free_delivery_wrap {
    padding: 10px 0;
}

.checkout_card_inner_title span {
    line-height: 30px;
    font-size: 14px;
    color: #1A1818;
    margin-bottom: 10px;
    display: block;
}

.checkout_card.expandable .checkout_card_header {
    position: relative;
    cursor: pointer;
}

.checkout_card.expandable:not(.noarrow) .checkout_card_header::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid #1A1818;
    border-width: 0 2px 2px 0;
    transform: scale(1, 1) rotate(45deg);
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
    transition: 0.2s ease-in-out all;
}

.checkout_card.expandable .checkout_card_header.active::after {
    transform: scale(-1, -1) rotate(45deg);
}

.checkout_card.expandable .checkout_card_content {
    display: none;
}

.checkout_card[data-card=promo] {}

.checkout_card[data-card=promo] .checkout_card_content {
    padding-top: 10px;
    position: relative;
}

.checkout_card[data-card=promo] .checkout_card_subtitle span {
    font-size: 12px;
}

.checkout_card[data-card=details] {}

.checkout_card[data-card=details] .checkout_card_title {}

.checkout_card[data-card=details] .checkout_card_title span {
    font-size: 24px;
}

.checkout_card[data-card=details] .checkout_card_subtitle {
    padding: 10px 0;
}

.checkout_card[data-card=details] .checkout_card_subtitle span {
    font-size: 16px;
    color: #1A1818;
    font-weight: bold;
}

.checkout_form {
    padding: 10px 0;
}

.checkout_form_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.checkout_form_title span {
    font-size: 14px;
    color: #1A1818;
    font-weight: bold;
}

.checkout_form_field {
    padding: 10px 0;
    position: relative;
}

.checkout_form_label {
    font-size: 16px;
    color: #3B3B3D;
    padding: 5px 0;
}

.checkout_form_input {
    margin: 5px 0;
}

.checkout_form_input input {
    width: 100%;
    height: 45px;
    background: #fff;
    border: 1px solid #DBD8D8;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3B3B3D;
    transition: 0.2s ease-in-out all;
}

.checkout_form_input input.input_error {
    background: #fff3f3;
    border: 1px solid #721919;
}

.checkout_form_input input:focus {
    border-color: #F35321;
}

.checkout_form[data-form=billing] {
    display: none;
}

.checkout_card[data-card=tnc] {
    padding: 0 20px;
}

.checkout_card[data-card=tnc] .checkout_card_input span a {
    color: #00B9FF;
    text-decoration: underline;
}

.checkout_card[data-card=paymethods] {
    padding: 0px 20px 20px;
}

.checkout_card[data-card=paymethods] .checkout_card_subtitle {
    padding: 10px 0;
}

.checkout_card[data-card=paymethods] .checkout_card_subtitle span {
    font-size: 16px;
    color: #1A1818;
    font-weight: bold;
}

.paymentOptions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.paymentOption {
    border: 1px solid #EEEAEA;
    border-radius: 3px;
    height: 60px;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payopt_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payopt_row.payopt_image {}

.payopt_title {
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}

.payopt_radio {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid #000;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
}

.paymentOption.paymentOptionSelected .payopt_radio::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: inherit;
}

.paymentOption img {
    width: auto;
    max-height: 35px;
}

.continueButton {
    border-radius: 5px;
    padding: 19px 0;
}

.continueButton span {
    font-weight: bold;
    text-transform: uppercase;
}


/*Payment Page*/

.payment_header {
    padding: 0 10px;
    margin: 0 0 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.payment_header>div {
    display: flex;
    flex-wrap: wrap;
}

.payment_header h1 {
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 15px;
    padding: 0;
}

.payment_header>div>div {
    width: 30%;
    font-size: 12px;
    color: #000;
    line-height: 24px;
}

.payment_header>div>div:nth-child(3),
.payment_header>div>div:nth-child(6) {
    width: 50%;
}

.payment_header>div>div:first-child,
.payment_header>div>div:nth-child(4) {
    width: 20%;
}

.payment_content {
    padding: 0 10px;
    margin: 0 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.payment_content h3 {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
}

.payment_content .payment_order_summary {
    width: calc(33% - 10px);
    padding: 10px;
    box-sizing: border-box;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.payment_content .payment_delivery {
    width: calc(33% - 10px);
    padding: 10px;
    box-sizing: border-box;
    font-size: 12px;
    background: #f9f9f9;
}

.payment_content .payment_delivery p {
    font-size: 12px;
    color: #000;
    padding: 0 0 15px;
    line-height: 20px;
}

.payment_content .payment_order_summary span {
    font-weight: bold;
    font-size: 12px;
    line-height: 28px;
}

.payment_content .payment_order_summary .payment_cart_products>div {
    border-bottom: 1px solid #F2EFEF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment_content .payment_order_summary .payment_cart_products>div>div {
    line-height: 20px;
    padding: 5px 0;
    font-size: 12px;
    color: #000;
}

.payment_content .payment_cart_calculations {
    border-bottom: 1px solid #F2EFEF;
    padding: 5px 0;
}

.payment_content .payment_cart_calculations>div {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #000;
    line-height: 20px;
}

.payment_content .payment_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
}

.payment_content .payment_total>div {
    padding: 5px 0;
    font-size: 12px;
    color: #000;
    line-height: 20px;
    font-weight: bold;
}

.payment_pay {
    padding: 0 10px;
    box-sizing: border-box;
}

.payment_pay h1 {
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.payment_pay label {
    font-size: 16px;
    color: #000000;
    font-weight: normal;
}

.payment_pay .paymentButtonContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment_pay .paymentButtonContainer p {
    line-height: 24px;
    color: #000000;
    font-size: 16px;
    padding: 0;
}

.payment_pay .paymentButtonContainer img {
    margin: 10px 0 0;
}

.payment_pay .paymentButton {
    cursor: pointer;
    line-height: 40px;
    padding: 0 20px;
}

.payment_pay .paymentFields {
    margin-bottom: 25px;
}

.payment_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px 0 30px;
    box-sizing: border-box;
    background: #f9f9f9;
}

.payment_footer p {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    text-align: center;
    padding: 0;
}

.groupArea,
.iconGroupArea {
    border: 1px solid #aaa;
    margin: 5px 0;
    padding: 2px;
}


/* ------------------------ */


/* ------ MEMBERSHIP ------ */


/* ------------------------ */


/* ----- SIGNUP PAGE ----- */

.signup_page {
    padding: 50px 0;
}

.signup_tabs_wrap {}

.signup_tab_headers {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.signup_tab_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 55px;
    padding: 0 30px;
    color: #1A1818;
    background: #F3F1F1;
    border: solid #D2D1D1;
    border-width: 1px 1px 0;
    position: relative;
    z-index: 0;
    cursor: pointer;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.signup_tab_header.active {
    background: #FDFCFC;
    z-index: 2;
}

.signup_tab_header span {
    font-size: 18px;
    color: #2D4387;
    font-weight: bold;
}

.signup_tab_header.active span {
    color: #2D4387;
}

.signup_tab_content {
    border: 1px solid #D2D1D1;
    background: #FDFCFC;
    margin-top: -1px;
    z-index: 1;
    position: relative;
}

.signup_tab {
    display: none;
    padding: 20px;
}

.signup_tab.active {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.signup_tab_left {
    width: 50%;
    padding-right: 10px;
    box-sizing: border-box;
}

.signup_tab_right {
    width: 50%;
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.signup_tab_right>span {
    font-size: 18px;
    color: #2D4386;
    font-weight: bold;
    line-height: 24px;
}

.signup_tab_right>div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #1A1818;
}

.signup_tab_right>div::before {
    content: "";
    height: 15px;
    width: 15px;
    background: url(../images/check.svg) center no-repeat;
}

.signup_tab_right>div:last-child {
    font-size: 14px;
    padding-left: 25px;
}

.signup_tab_right>div:last-child::before {
    content: none;
}

.signup_tab_text {
    color: #1A1818;
    font-size: 14px;
    line-height: 26px;
}

.signup_tab_bottom {
    width: 100%;
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.signup_tab_bottom>a {
    font-weight: bold;
}

.signup_tab_bottom a {
    font-size: 14px;
    color: #1A1818 !important;
    text-decoration: underline !important;
}

.signup_tab_bottom>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup_tab_bottom span {
    color: #1A1818;
    font-weight: bold;
    font-size: 16px;
}

.signup_tab_bottom p {
    color: #231F20;
    font-size: 16px;
    padding: 0;
}

.signup_page .signup_form,
.signup_page .login_form {
    padding: 10px 0;
}

.signup_form_field {
    padding: 10px 0;
}

.signup_form_label {
    font-size: 15px;
    color: #2D4386;
    font-weight: bold;
    padding: 5px 0;
}

.signup_form_label span {
    color: #F35321;
    font-size: 12px;
}

.signup_form_input {
    width: 100%;
}

.signup_form_input input {
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3B3B3D;
    transition: 0.2s ease-in-out all;
}

.signup_form_input input:focus {
    box-shadow: 0px 0px 6px #6FAAE580;
}

.signup_page_button {
    margin: 10px 0;
}

.signup_button .loginButton,
.signup_button .signupButton {
    line-height: 50px;
    background: #2D4387;
    display: block;
    position: relative;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.signup_button a::after {
    content: "";
    height: 8px;
    width: 8px;
    border: solid #fff;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 5px);
}

.signup_button .loginButton:hover,
.signup_button .signupButton:hover {
    animation: shadow-pulse 1s;
}

.forgotButton {
    color: #255E99;
}

.login_error {
    text-align: center;
    font-size: 16px;
    color: #990000;
    line-height: 40px;
}

.login_form {
    margin-bottom: 20px;
}


/* forgot password popup */

.forgot_password.login_form {
    flex-direction: column;
    align-items: center;
}

.forgot_password.login_form span {
    display: block;
    font-size: 20px;
    color: #1C1B1B;
    margin: 0 0 10px;
    text-align: center;
}


/* ----- DASHBOARD ----- */

.user_dashboard {
    padding: 20px 0;
}

.dashboard_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
}

.dashboard_header span {
    display: block;
    font-size: 37px;
    color: #273E57;
    line-height: 26px;
}

.dash_tab {
    border: 1px solid #E0E0E0;
    background: #F5F5F5;
    margin: 10px 0;
    transition: 0.2s ease-in-out all;
}

.dash_tab.active {
    background: #fff;
}

.dash_tab_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
}

.dash_tab_header span {
    font-size: 21px;
    color: #273E57;
    line-height: 26px;
    font-weight: bold;
}

.dash_tab_header::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid #273E57;
    border-width: 0 2px 2px 0;
    transform: scale(1, 1) rotate(45deg);
    transition: 0.2s ease-in-out all;
}

.dash_tab.active .dash_tab_header::after {
    transform: scale(1, -1) rotate(45deg);
}

.dash_tab_content {
    display: none;
    border-top: 1px dashed #E0E0E0;
}

.dash_tab_inner {
    padding: 20px;
}

.dash_order_row_wrap {
    padding: 0 0 15px;
    border-bottom: 1px solid #DEDEDE;
}

.dash_order_row_wrap:last-child {
    padding: 0;
    border: 0;
}

.dash_order_row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
}

.dash_order_row>div {
    width: 19%;
}

.dash_order_row>div.view {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 5%;
}

.dash_order_row>div span {
    font-size: 16px;
    color: #808080;
    line-height: 22px;
}

.dash_order_info>div span {
    font-weight: bold;
    color: #535353;
}

.dash_order_info .view_invoice {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/invoice.svg) no-repeat center;
    background-size: contain;
}

.dash_forms_wrap {
    display: flex;
}

.dash_form {
    width: 50%;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.dash_form:nth-child(2n) {
    padding: 0 0 0 10px;
}

.dash_form_field {
    padding: 10px 0;
}

.dash_form_label {
    font-size: 16px;
    color: #3B3B3D;
    padding: 5px 0;
}

.dash_form_input {
    width: 100%;
}

.dash_form_input input,
.dash_form_input select {
    width: 100%;
    height: 35px;
    background-color: #fff;
    border: 1px solid #D8E1EB;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3B3B3D;
    transition: 0.2s ease-in-out all;
}

.dash_form_input input:focus {
    box-shadow: 0px 0px 6px #6FAAE580;
}

.dash_form_button_row {
    padding: 10px 0;
}


/* logged in addresses */

.member_addresses {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

:is(.billingAddress,
.deliveryAddress) {
    display: flex;
    width: calc((100% / 3) - 10px);
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    gap: 10px;
    min-height: 148px;
}

:is(.billingAddress,
.deliveryAddress) input {
    height: 20px;
    margin: 0 5px;
}

:is(.billingAddress,
.deliveryAddress) div {
    font-size: 14px;
    line-height: 18px;
    color: #1A1818;
}

:is(.billingAddress,
.deliveryAddress) div span {
    font-weight: bold;
    font-size: 16px;
    color: #1871B4;
}

.address_button_row {
    display: flex;
    width: 100%;
}

.address_button_row .addAddress {
    width: 280px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background: #255E99;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.pop_overlay {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    justify-content: center;
}

.pop_overlay>div {
    background: #fff;
    position: absolute;
    background: #fff;
    padding: 20px;
    margin: 10px;
    max-width: 100%;
    flex: 0 0 auto;
}


/* new address popup */

.add_address_popup {}

.add_address_popup h2 {
    color: #1871B4;
}

.editAddressBox {}

.editAddressBox :is(input,
select) {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #FBF9F5;
    border: 1px solid #ECEBEA;
    margin: 5px 0;
    color: #1A1818;
}

.addressForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.addressForm>div:first-child,
.addressForm>div:last-child {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

.addressForm>div:first-child>input:first-child {
    width: 100px;
    flex: 0 0 auto;
}

.addressForm>div>input {
    border: 1px solid #ccc;
    height: 40px;
    width: 100%;
    margin-bottom: 5px;
    font-family: inherit;
    flex: 1;
    padding: 0 5px;
}

.addressForm>div>input::placeholder {
    text-transform: capitalize;
}

.addressForm>div>select {
    border: 1px solid #ccc;
    height: 40px;
    width: 100%;
    margin-bottom: 5px;
    font-family: inherit;
    flex: 1;
}

.addressForm>div>textarea {
    border: 1px solid #ccc;
    height: 100px;
    width: 100%;
    margin-bottom: 5px;
    font-family: inherit;
    flex: 1;
    padding: 5px;
    resize: none;
    font-size: 14px;
}

.addressForm button {
    border: 0;
    background: #5EB229;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    padding: 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.addressForm button:nth-child(1) {
    margin-right: auto;
    background: #65707D;
}

.delivery_address,
.billing_address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.member_address {
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 5px;
    width: 160px;
    height: 240px;
    display: flex;
    flex-direction: column;
}

.checkout_card .member_address.chosen {
    border-color: #5EB229;
}

.checkout_card .member_address:not(.chosen) {
    cursor: pointer;
}

.member_address .addressButtons {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.editAddress {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-edit.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.deleteAddress {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-delete.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.useAddress {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-use.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.checkout_card .member_address.chosen {
    border-color: #5EB229;
}

.checkout_card .member_address:not(.chosen) {
    cursor: pointer;
}

.addAddress {
    width: 100%;
    border: 0;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none !important;
    margin: 10px 0;
}


/* --------------------------------------- */


/* -------- LARGE SCREEN >1200px --------- */


/* --------------------------------------- */

@media only screen and (min-width:1200px) {}


/* -------------------------------------------------------------------------------------------------------- LARGE DESKTOP END  */


/* --------------------------------------- */


/*-------------DESKTOP < 1199px------------*/


/* --------------------------------------- */

@media (min-width:960px) and (max-width:1199px) {
    /* -- Product Block -- */
    .pb_box {
        margin: 0 5px;
    }
    .pb_image {
        height: 220px;
    }
    .pb_info {
        padding: 15px 10px;
    }
    .pb_title a {
        font-size: 15px;
    }
    /* -- Category Block -- */
    .category_block .cb_box {
        margin: 0 5px;
    }
    .cb_image {
        height: 200px;
    }
    .cb_title a {
        font-size: 15px;
        padding: 14px 15px;
    }
    /* ----- DETAILS PAGE ---- */
    .product_images {
        height: 460px;
    }
    .pt_item {
        height: 107px !important;
    }
    /*Custom Variaitons*/
    .variation_info span {
        width: 100%;
    }
    /* ----- CHECKOUT ---- */
    .checkout_left {
        padding-right: 10px;
        padding-left: calc((100vw - 950px) / 2);
    }
    .checkout_right {
        padding-left: 10px;
        padding-right: calc((100vw - 950px) / 2);
    }
    .cart_product_quantity {
        width: 100px;
        height: 35px;
    }
}


/* -------------------------------------------------------------------------------------------------------- DESKTOP END  */


/* ------------------------------------------------- */


/* --------------TABLET & MOBILE ------------------- */


/* ------------------------------------------------- */

@media (max-width:959px) {
    /*Category Block*/
    .category_block .cb_box {
        margin: 0 3px;
    }
    .cb_title {
        justify-content: center;
        text-align: center;
    }
    .cb_title::after {
        content: none;
    }
    .cb_title a {
        font-size: 12px;
        padding: 10px;
    }
    .cb_image {
        height: 145px;
    }
    /* ----- DETAILS PAGE ---- */
    .details_page_left {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .details_page_right {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    /* associations */
    .associations_wrap h2 {
        text-align: center;
        align-items: center;
    }
    .associations_gal .product_block {}
    /* ----- CHECKOUT ---- */
    .checkout_page {
        flex-wrap: wrap;
    }
    .checkout_top {
        width: 100%;
        padding: 20px 20px 20px;
        order: 1;
    }
    .checkout_left {
        width: 100%;
        padding: 20px 20px 20px;
        order: 3;
    }
    .checkout_right {
        width: 100%;
        padding: 20px 20px 20px;
        order: 2
    }
}


/* -------------------------------------------------------------------------------------------------------- TABLET & MOBILE END  */


/* --------------------------------------- */


/* --------------TABLET------------------- */


/* --------------------------------------- */

@media (min-width:768px) and (max-width:959px) {
    /* ----- Search Page ----- */
    /* -- Product Block -- */
    .product_block {
        width: 33.33333333%;
    }
    .pb_box {
        margin: 0 3px;
    }
    .pb_image {
        height: 240px;
    }
    .pb_title a {
        font-size: 14px;
    }
    /*Details Page*/
    .details_page_left {
        justify-content: center;
        display: flex;
        align-items: flex-start;
    }
    .product_images {
        width: 620px;
        height: 620px;
    }
    /* ---------------------- */
    /* ----- MEMBERSHIP ----- */
    /* ---------------------- */
    /* ----- Dashboard ------ */
    .dash_order_row>div {
        width: 24%;
    }
}


/* -------------------------------------------------------------------------------------------------------- TABLET END  */


/* --------------------------------------- */


/* --------------MOBILE------------------- */


/* --------------------------------------- */

@media (max-width:767px) {
    .label {
        float: none;
        width: 100%;
    }
    .value {
        float: none;
        width: 100%;
    }
    /* ----- MODULES ----- */
    /* -- Product Module -- */
    .product_module {
        padding: 25px 0;
    }
    .product_module .pm_title h1 {
        font-size: 24px;
        line-height: 28px;
    }
    .product_module .pm_gal_pagination {
        gap: 10px;
    }
    .product_module.bg_on::after,
    .product_module.bg_on::before {
        content: none;
    }
    /* -- Category Module -- */
    .category_module {
        padding: 25px 0;
    }
    .category_module .cm_title h1 {
        font-size: 24px;
        line-height: 28px;
    }
    .category_module .cm_gal_pagination {
        gap: 10px;
    }
    .category_module.bg_on::after,
    .category_module.bg_on::before {
        content: none;
    }
    /* ----- Search Page ----- */
    /* search header */
    .search_header {
        height: initial;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .search_order,
    .sys_sortsearchby {
        width: 100%;
    }
    /*Product Block*/
    .product_block {
        width: 50%;
    }
    .pb_box {
        margin: 0 3px;
    }
    .pb_image {
        height: 142px;
    }
    .pb_image .pb_sale_sticker {
        font-size: 14px;
        line-height: 35px;
        padding: 0 10px;
    }
    .pb_info {
        padding: 10px 5px;
        gap: 10px;
    }
    .pb_title {
        height: 60px;
    }
    .pb_title a {
        font-size: 12px;
        line-height: 20px;
        -webkit-line-clamp: 3;
    }
    .pb_price .wasprice {
        font-size: 12px;
    }
    .pb_buttons a {
        font-size: 14px;
        padding: 7px 0;
    }
    /*Category Block*/
    .category_block {
        width: 50%;
    }
    /*Pager*/
    .pager_link.pager_prev_button a,
    .pager_link.pager_next_button a {
        width: 90px;
    }
    .pager_link:not(.pager_prev_button,
    .pager_current_page,
    .pager_next_button) {
        display: none;
    }
    /* ----- Details Page ---- */
    .product_sale_sticker:not(.hidden) {
        font-size: 14px;
        padding: 10px;
    }
    .product_images {
        height: 300px;
    }
    .pi_nav_prev,
    .pi_nav_next {
        width: 30px;
        height: 50px;
    }
    .pi_nav_next::after {
        left: 7px;
    }
    .pi_nav_prev::after {
        right: 7px;
    }
    .product_title h1 {
        font-size: 20px;
        line-height: 24px;
    }
    .product_sale_title {
        font-size: 20px;
        line-height: 22px;
    }
    .nowPrice,
    .mainPrice {
        font-size: 20px;
    }
    .wasPrice {
        font-size: 14px;
    }
    .nowPrice label {
        font-size: 12px;
    }
    .product_price_fav .details_fav::after {
        font-size: 14px;
    }
    .product_delivery {
        font-size: 14px;
    }
    .product_description:not(.hidden)>div>div {
        padding: 10px;
    }
    .product_description>div>div>h6 {
        font-size: 20px;
    }
    /*Custom Variations*/
    .variation_info span {
        width: 100%;
    }
    .variation_info_button::before {
        content: "";
        height: 20px;
        width: 20px;
        background: url(../images/info_icon.svg) center no-repeat;
    }
    /*Added to Cart*/
    .addedtocart_image {
        height: 60px;
        width: 60px;
    }
    .addedtocart_buttons>a {
        padding: 12px 8px;
        font-size: 14px;
    }
    /* ----- CHECKOUT ----- */
    .checkout_card {
        padding: 10px;
    }
    .checkout_card_title {
        padding: 10px 0;
    }
    .checkout_card_title>span {
        font-size: 14px;
    }
    .checkout_card[data-card="paymethods"] {
        padding: 10px;
    }
    .paymentOption {
        width: 100%;
    }
    .cart_product {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }
    .cart_product_left {
        width: 100%;
    }
    .cart_product_right {
        width: 100%;
        justify-content: space-between;
    }
    .cart_product_quantity {
        height: 30px;
        width: 90px;
    }
    .cart_product_remove {
        margin: 0;
    }
    .cart_product_remove a {
        width: 35px;
        height: 35px;
        border: 1px solid #BEBEBE;
        box-sizing: border-box;
    }
    .cart_line>div {
        font-size: 14px;
    }
    .paymentOption img {
        max-width: 70px;
    }
    .deliverySelector {
        width: 210px;
    }
    /*Payment Page*/
    .payment_header h1,
    .payment_pay h1 {
        font-size: 28px;
    }
    .payment_header>div>div {
        width: 100% !important;
    }
    .payment_content .payment_order_summary,
    .payment_content .payment_delivery {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .payment_pay .paymentButtonContainer {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .payment_pay .paymentButtonContainer p {
        font-size: 14px;
    }
    .payment_pay .paymentButton {
        margin-bottom: 10px;
    }
    .paymentFields .GooglePayButton-logo {
        position: static !important;
        background-size: contain;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    .paymentFields * {
        max-width: 320px;
    }
    .payment_order_summary>div,
    .payment_delivery>div {
        padding: 5px;
        box-sizing: border-box;
        display: none;
    }
    .payment_order_summary>h3,
    .payment_delivery>h3 {
        margin: 0;
        padding: 0 5px;
    }
    .payment_order_summary>h3>span,
    .payment_delivery>h3>span {
        height: 32px;
        width: 32px;
        background: #BEBABA;
        border-radius: 100%;
        position: absolute;
        right: 10px;
        top: calc(50% - 15px);
        cursor: pointer;
    }
     :is(.payment_order_summary,
    .payment_delivery)>h3>span:after {
        content: "";
        background: #fff;
        display: block;
        position: absolute;
        width: 10px;
        height: 2px;
        right: calc(50% - 5px);
        top: calc(50% - 1px);
    }
     :is(.payment_order_summary,
    .payment_delivery)>h3>span:before {
        content: "";
        background: #fff;
        display: block;
        position: absolute;
        width: 10px;
        height: 2px;
        right: calc(50% - 5px);
        top: calc(50% - 1px);
        transform: rotate(90deg);
        transition: opacity 0.3s ease-in-out 0s;
    }
     :is(.payment_order_summary.open,
    .payment_delivery.open)>h3>span:before {
        opacity: 0;
    }
    /****** MEMBERSHIP ******/
    /*Login Page*/
    .account_form .account_tab_select>div {
        background-image: none;
        padding: 20px 15px;
        font-size: 14px;
    }
    .signup_form,
    .login_form {
        flex-direction: column;
    }
    .signup_benefit span {
        font-size: 16px;
    }
    .signup_form .signup_form_left span,
    .login_form span {
        font-size: 14px;
    }
    .signup_tab_left,
    .signup_tab_right {
        width: 100%;
        padding: 0;
    }
    .signup_tab_headers {
        gap: 10px;
    }
    .signup_tab_header {
        padding: 0 10px;
    }
    .signup_tab_header span {
        font-size: 14px;
    }
    .signup_tab {
        padding: 20px 10px;
    }
    .signup_tab_right>span {
        font-size: 16px;
    }
    .signup_tab_right>div {
        font-size: 16px;
    }
    /* Dashboard */
    .dashboard_header span {
        font-size: 24px;
        line-height: 28px;
    }
    .dash_tab_inner {
        padding: 10px;
    }
    .dash_form {
        width: 100%;
    }
    .dash_order_row {
        flex-wrap: wrap;
    }
    .dash_order_row>div {
        width: 50%;
    }
    .dash_order_row>div span {
        font-size: 14px;
    }
    .dash_order_row>div.view {
        width: 100%;
    }
    .dash_order_row>div.amount {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .dash_order_row>div.payment {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .dash_order_info .view_invoice {
        background: none;
        width: auto;
        height: auto;
        padding: 5px 0;
    }
    .dash_order_info .view_invoice span {
        font-size: 14px;
        color: #002575;
        text-decoration: underline;
        font-weight: normal;
    }
    .dash_wishlist_row.info {
        flex-wrap: wrap;
        gap: 10px;
    }
    .dash_wishlist_row.info .dash_wishlist_title {
        width: 100%;
    }
    .dash_wishlist_row.info .dash_wishlist_row_buttons {
        width: 100%;
        justify-content: space-between;
    }
    .address_block.dashboard {
        width: 100%;
    }
    .address_block.dashboard .address_block_address {
        height: auto;
    }
    .member_address {
        width: 100%;
    }
}


/* -------------------------------------------------------------------------------------------------------- MOBILE END  */