@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
:root {
    --default: #4D4D4F;
    --secondary: rgba(232,232,232,0.3);
    --hov-secondary: #E8E8E8;
    --tertiary: #CDCAC5;
    --darker: #3F3F3F;
    --black: black;
    --white: white;
    --error: #E61D34;
    --gray: #f8f8f8;
    --font-family: 'Manrope', sans-serif;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
html,
body {
    overflow-x: hidden;
}
body {
    color: var(--default);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    font-family: var(--font-family);
}
.grecaptcha-badge {
    display: none;
}
a,
a:hover {
    color: inherit;
}
a.text-primary:focus,
a.text-primary:hover,
a.text-primary.hov-text-hov-primary:focus,
a.text-primary.hov-text-hov-primary:hover {
    color: var(--hov-primary) !important;
}
p:last-child {
    margin-bottom: 0;
}
.text-email {
    width: 11.5em;
    vertical-align: bottom;
}
.text-email-bold {
    width: 12.5em;
    vertical-align: bottom;
}
.btn-b-width-2 {
    border-width: 2px;
}
.btn-circle {
    border-radius: 50%;
}
.visibility-hidden {
    visibility: hidden;
}
.invalid-feedback.absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    margin: 0 !important;
}
.alert-grey {
    background-color: var(--gray);
    color: var(--default);
}
.loader {
    position: relative;
    pointer-events: none;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
.btn.btn-b-width-2.loader:before,
.btn.btn-b-width-2.loader:after {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
}
.loader:before {
    content: "";
    background-color: rgba(255,255,255,0.7);
}
.loader:after {
    content: "";
    -webkit-animation:la-spin 2s infinite linear;
    animation:la-spin 2s infinite linear;
    color: var(--primary);
    width: 30px;
    height: 30px;
    margin: auto;
    background-image: url('/public/assets/img/icons/loader.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.font-times {
    font-family: 'Times New Roman', serif;
}
.sk-main-wrapper {
    background-color: transparent;
    min-height: auto;
}
/*Breadcrumb*/
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: .25rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: inherit;
    padding-right: .25rem;
}
.breadcrumb-item a {
    position: relative;
}
.breadcrumb-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.breadcrumb-item a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
/*Pagination*/
.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 25px;
    min-height: 25px;
    line-height: 25px;
    padding: 0;
    border: 1px solid transparent;
    font-size: 1em;
    border-radius: 5px !important;
    color: var(--default);
    background-color: transparent;
}
.pagination-circles .pagination .page-link,
.pagination-circles .page-item.disabled .page-link,
.pagination-squares .pagination .page-link,
.pagination-squares .page-item.disabled .page-link {
    color: rgba(0,0,0,0.3);
}
.pagination-circles .pagination .page-link,
.pagination-circles .page-item.disabled .page-link {
    border-radius: 50% !important;
}
.page-item .page-link {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:first-child .page-link,
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:last-child .page-link {
    font-size: 0;
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:first-child .page-link::after,
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:last-child .page-link::after {
    content: "";
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    position: absolute;
    font-size: 5px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:first-child .page-link::after {
    border-right: 1em solid var(--primary);
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:last-child .page-link::after {
    border-left: 1em solid var(--primary);
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:first-child .page-link:hover::after {
    border-right-color: var(--white);
}
.sk-pagination:not(.pagination-circles):not(.pagination-squares) .pagination .page-item:last-child .page-link:hover::after {
    border-left-color: var(--white);
}
.pagination-circles .pagination .page-item:first-child .page-link,
.pagination-circles .pagination .page-item:last-child .page-link,
.pagination-squares .pagination .page-item:first-child .page-link,
.pagination-squares .pagination .page-item:last-child .page-link {
    font-size: 27px;
    line-height: 0.65;
}
.pagination-squares .pagination .page-link,
.pagination-squares .page-item.disabled .page-link {
    border-radius: 0 !important;
    line-height: 1.2;
}
.pagination-squares .pagination .page-item:first-child .page-link,
.pagination-squares .pagination .page-item:last-child .page-link {
    color: var(--primary);
    border: 1px solid;
}
.pagination-squares .page-item.disabled .page-link {
    color: rgba(0,0,0,0.2) !important;
}
.page-item.active .page-link,
.pagination-circles .pagination .page-item:not(.active) .page-link:hover {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primary);
}
.pagination-squares .pagination .page-item:not(.active) .page-link:hover {
    color: var(--primary);
    background-color: transparent;
}
.pagination-squares .page-item.active .page-link {
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}
.pagination-circles .page-item.active .page-link,
.sk-pagination.pagination-squares .pagination .page-item:not(.disabled):first-child .page-link:hover,
.sk-pagination.pagination-squares .pagination .page-item:not(.disabled):last-child .page-link:hover {
    background-color: var(--primary);
    color: var(--white);
}
.pagination .active .page-link {
    background-color: transparent;
}
/*Modal*/
.modal-backdrop {
    background-color: var(--white);
}
.modal-backdrop.show {
    opacity: .9;
}
.modal-content {
    border: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    border-radius: 0;
}
.modal-content .modal-body {
    max-height: calc(100vh - 50px);
}
.modal .close {
    color: #808080;
    text-shadow: none;
}
.modal .close:not(:disabled):not(.disabled):focus,
.modal .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    color: var(--primary);
}
.modal .close svg {
    stroke: gray;
    stroke-miterlimit: 10;
    stroke-width: 0.095rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.modal .close:hover svg {
    stroke: var(--primary);
}
/*Form*/
.form-control,
.bootstrap-select .dropdown-toggle {
    border-radius: 0;
    color: var(--default);
    background-color: var(--white);
    font-size: 1em;
    height: auto;
    font-weight: inherit;
    border-color: rgba(45,41,41,0.2);
}
.form-control-with-label {
    position: relative;
}
.form-control-with-label.textarea label {
    max-height: 45px;
}
.form-control-with-label .form-control,
.form-control-with-label .bootstrap-select .dropdown-toggle {
    padding: 20px 10px 5px;
}
.form-group .form-control-with-label .bootstrap-select {
    padding: 0;
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}
.form-control-with-label label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3px 10px;
    font-size: 11px;
    color: rgba(39,39,43,0.5);
    margin: 0;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.form-control-with-label.large label {
    font-size: 14px;
}
.form-control-with-label.animate:not(.focused) label {
    font-size: 1em;
    height: 100%;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: var(--white);
}
.form-control:focus {
    background-color: var(--white);
    color: var(--default);
}
.form-control::-webkit-input-placeholder {
    color: var(--default);
}
.form-control:-ms-input-placeholder {
    color: var(--default);
}
.form-control::placeholder {
    color: var(--default);
}
.sk-checkbox,
.sk-radio {
    padding-left: 0;
    font-size: inherit;
}
.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
    position: relative;
    display: inline-block;
    top: 0;
    margin-right: 0.25em;
}
.checkbox-secondary .sk-square-check:after {
    border: solid var(--secondary);
}
.sk-square-check,
.sk-rounded-check {
    border: 1px solid;
    height: 0.8em;
    width: 0.8em;
}
.sk-square-check {
    border-radius: 0;
}
.sk-rounded-check::after {
    margin-left: 0;
    margin-top: 0;
    width: auto;
    height: auto;
    border-radius: 50%;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-radius: 0;
}
/*Megabox*/
.sk-megabox .sk-megabox-elem {
    border-color: rgba(205,202,197,0.5);
    border-radius: 0;
    color: rgba(77,77,79,0.5);
}
.sk-megabox .sk-megabox-elem.grey-border {
    border-color: rgba(45,41,41,0.2) !important;
    color: var(--default);
}
.sk-megabox .sk-megabox-elem.grey-border .sk-square-check,
.sk-megabox .sk-megabox-elem.grey-border .sk-rounded-check {
    border-color: rgba(45,41,41,0.2);
}
.sk-megabox > input:checked ~ .sk-megabox-elem,
.sk-megabox > input:checked ~ .sk-megabox-elem.grey-border {
    border-color: var(--primary) !important;
    color: var(--primary);
}
.sk-megabox > input:checked ~ .sk-megabox-elem.grey-border .sk-square-check,
.sk-megabox > input:checked ~ .sk-megabox-elem.grey-border .sk-rounded-check {
    border-color: var(--primary);
}
.sk-megabox.megabox-elem-color > input:not(:checked) ~ .sk-megabox-elem {
    border-color: transparent !important;
}
.sk-megabox-elem .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    transform: none !important;
    border: 0;
    box-shadow: none;
}
.sk-megabox-elem .dropdown-menu > li {
    border-bottom: 1px solid rgba(205,202,197,0.5);
}
.megabox-addresses .sk-megabox-elem,
.sk-megabox.megabox-addresses > input:checked ~ .sk-megabox-elem {
    background-color: rgba(107,107,107,0.1);
    color: rgba(0,0,0,0.5);
    border-color: transparent !important;
}
.sk-megabox.megabox-addresses > input:checked ~ .sk-megabox-elem .sk-rounded-check {
    border-color: var(--primary);
}
/*Carousel*/
.sk-carousel .slick-arrow {
    width: 20px;
    height: 20px;
    box-shadow: none;
    font-size: 15px;
    line-height: 15px;
    border: 2px solid rgba(77,77,79,0.6);
    color: rgba(77,77,79,0.6);
    border-radius: 0;
    background-color: var(--white);
}
.sk-carousel .slick-prev:hover,
.sk-carousel .slick-next:hover {
    box-shadow: none;
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.sk-carousel .slick-prev {
    left: 0;
}
.sk-carousel .slick-next {
    right: 0;
}
.gutters-10.half-outside-arrow .slick-prev,
.gutters-10.arrows-on-top .slick-prev,
.gutters-10.arrows-on-top-right .slick-prev {
    left: 0;
}
.gutters-10.half-outside-arrow .slick-next,
.gutters-10.arrows-on-top .slick-next,
.gutters-10.arrows-on-top-right .slick-next {
    right: 0;
}
.gutters-15.half-outside-arrow .slick-prev,
.gutters-15.arrows-on-top .slick-prev,
.gutters-15.arrows-on-top-right .slick-prev {
    left: 5px;
}
.gutters-15.half-outside-arrow .slick-next,
.gutters-15.arrows-on-top .slick-next,
.gutters-15.arrows-on-top-right .slick-next {
    right: 5px;
}
/*Header*/
.header-icon-link {
    display: block;
    cursor: pointer;
    position: relative;
}
.header-icon-link svg {
    fill: var(--default);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-icon-link:hover svg {
    fill: var(--primary);
}
.header-icon-number {
    position: absolute;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 10px;
    min-width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    text-align: center;
    line-height: 1.5;
    top: -5px;
    right: -5px;
}
.front-header-search .form-control,
.front-header-search-megamenu .form-control {
    border-color: var(--default);
    padding: 5px 25px 5px 5px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.front-header-search.active .form-control,
.front-header-search-megamenu.active .form-control {
    opacity: 1;
    pointer-events: all;
}
.front-header-search .header-icon-link,
.front-header-search-megamenu .header-icon-link {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.megamenu-toggle {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.megamenu-toggle .icon {
    width: 18px;
    border-bottom: 2px solid var(--primary);
    position: relative;
    border-top: 2px solid var(--primary);
    height: 7px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top,
.megamenu-toggle .icon .bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top {
    top: -7px;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}
.megamenu-toggle .icon .bottom {
    top: 8px;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
}
.megamenu-toggle.open  {
    border-color: rgba(77,77,79,0.2);
}
.megamenu-toggle.open .icon {
    border-color: transparent !important;
}
.megamenu-toggle.open .icon .top,
.megamenu-toggle.open .icon .bottom {
    background-color: rgba(77,77,79,0.2);
}
.megamenu-toggle.open .icon .top {
    -webkit-transform: rotate(-45deg) translate(-5px, 0px);
    -moz-transform: rotate(-45deg) translate(-5px, 0px);
    -ms-transform: rotate(-45deg) translate(-5px, 0px);
    -o-transform: rotate(-45deg) translate(-5px, 0px);
    transform: rotate(-45deg) translate(-5px, 0px);
    top: -9px;
}
.megamenu-toggle.open .icon .bottom {
    -webkit-transform: rotate(45deg) translate(-4px, 2px);
    -moz-transform: rotate(45deg) translate(-4px, 2px);
    -ms-transform: rotate(45deg) translate(-4px, 2px);
    -o-transform: rotate(45deg) translate(-4px, 2px);
    transform: rotate(45deg) translate(-4px, 2px);
    top: 8px;
}
.language-menu {
    display: flex;
    line-height: 1;
}
.language-menu a {
    display: block;
    color: rgba(77,77,79,0.5);
}
.language-menu a.active {
    color: var(--default);
    font-weight: 700;
}
.language-menu a:not(:last-child) {
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px solid rgba(77,77,79,0.5);
}
.language-menu a:not(.active):hover {
    color: var(--primary);
}
.header-menu-item > a {
    padding: 10px;
    display: block;
}
.header-menu-item.offer > a {
    background-color: var(--soft-primary);
    color: var(--primary);
}
.header-menu-item > a span {
    display: inline-block;
    position: relative;
}
.header-menu-item > a span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-menu-item {
    position: static;
}
.header-menu-item:hover > a {
    color: var(--primary);
}
.header-menu-item.offer:hover > a {
    color: var(--white);
    background-color: var(--primary);
}
.header-menu-item:hover > a span:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.header-subcategories-dropdown {
    -webkit-box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.35);
    box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}
.header-menu-item.has-subcategories:hover .header-subcategories-dropdown {
    display: block;
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}
.header-subcategories-dropdown-scroll {
    max-height: calc(100vh - 211px);
    overflow-x: hidden;
    overflow-y: auto;
}
.header-subcategories {
    min-height: 100%;
    max-height: calc(100vh - 211px);
    overflow-x: hidden;
    overflow-y: auto;
}
.header-subsubsubcategories {
    min-height: 100%;
    color: rgba(77,77,79,0.5);
}
.header-subcategories.sub {
    margin-left: -15px;
}
.header-subcategories.sub-sub:not(.active),
.header-subcategories.sub-sub-sub:not(.active),
.header-subsubsubcategories:not(.active) {
    display: none;
}
.header-subcategories.sub .header-sub-item a:hover,
.header-subcategories.sub .header-sub-item a.active {
    background-color: var(--primary);
    color: var(--white);
}
.header-subcategories.sub-sub .header-sub-item a:hover,
.header-subcategories.sub-sub .header-sub-item a.active {
    background-color: var(--secondary);
}
.menu-category-banner {
    position: relative;
    padding-top: 100%;
}
.fixed-header {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(calc(-100% - 30px));
    -moz-transform: translateY(calc(-100% - 30px));
    -ms-transform: translateY(calc(-100% - 30px));
    -o-transform: translateY(calc(-100% - 30px));
    transform: translateY(calc(-100% - 30px));
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.fixed-header.header-down {
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
/*Megamenu*/
#megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#megamenu.active {
    opacity: 2;
    pointer-events: all;
    z-index: 10000;
}
.megamenu-scroll {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.megamenu-link-item:not(:last-child) {
    margin-bottom: 10px;
}
.megamenu-link-item a {
    display: inline-block;
    position: relative;
}
.megamenu-link-item a::after {
    content: "";
    display: block;
    border-bottom: 2px solid;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.megamenu-link-item a:hover {
    color: var(--primary);
}
.megamenu-link-item a:hover::after {
    width: 100%;
}
.megamenu-link-cat-item:not(:last-child) {
    margin-bottom: 5px;
}
.megamenu-link-cat-toggle {
    position: relative;
    padding-right: 30px;
}
.megamenu-link-cat-toggle a {
    display: block;
}
.megamenu-link-cat-toggle .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    text-align: right;
    cursor: pointer;
}
.megamenu-link-cat-toggle .toggle::after {
    content: "+";
}
.megamenu-link-cat-toggle.active .toggle::after {
    content: "-";
}
.megamenu-link-cat-dropdown {
    margin-top: 5px;
    padding: 5px 0 5px 10px;
    position: relative;
    z-index: 1;
}
.megamenu-link-cat-toggle:not(.active) + .megamenu-link-cat-dropdown {
    display: none;
}
.megamenu-link-cat-item:last-child .megamenu-link-cat-dropdown {
    margin-bottom: -5px;
}
.megamenu-link-cat-dropdown::before {
    content: "";
    background-color: rgba(0,0,0,0.05);
    z-index: -1;
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    bottom: 0;
}
/*Curvy Header*/
.curvy-header {
    background-color: var(--gray);
}
.curvy-header.with-back-image {
    position: relative;
}
.curvy-header .background {
    display: none;
}
.curvy-header:not(.with-back-image) .curvy-header-left {
    background-color: var(--white);
}
.curvy-header-left-wrap {
    background-color: var(--gray);
    position: relative;
    z-index: 1;
}
.curvy-header-right-wrap {
    background-color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.curvy-header.with-back-image .curvy-header-right-wrap {
    min-height: 115vw;
}
.curvy-header-right-wrap .back-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.curvy-header.reverse {
    background-color: var(--white);
}
.curvy-header.reverse:not(.with-back-image) .curvy-header-left {
    background-color: var(--gray);
}
.curvy-header.reverse .curvy-header-left-wrap {
    background-color: var(--white);
}
.curvy-header.reverse .curvy-header-right-wrap {
    background-color: var(--gray);
}
/*Home Header*/
.front-header-search-home .input-group-prepend .btn {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.front-header-search-home .form-control {
    border-radius: 40px;
    height: auto;
}
.front-header-search-home .form-control,
.front-header-search-home .form-control:focus {
    border: 0;
    z-index: 3;
}
.front-header-search-home .input-group > .custom-select:not(:first-child),
.front-header-search-home .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.front-header-search-home.open-dropdown .input-group-prepend .btn {
    border-bottom-left-radius: 0 !important;
}
.front-header-search-home.open-dropdown .form-control {
    border-bottom-right-radius: 0 !important;
}
.check-list-item {
    position: relative;
    padding-left: 1.5em;
}
.check-list-item::before {
    content: "";
    position: absolute;
    left: 0.2em;
    border-bottom: 0.2em solid var(--primary);
    border-right: 0.2em solid var(--primary);
    width: 0.55em;
    height: 0.9em;
    top: 0.1em;
    transform: rotate(45deg);
}
/*Home Carousel*/
.home-carousel-image {
    position: relative;
    padding-top: 90%;
}
.home-carousel-image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.05);
}
.sk-carousel.home-carousel .slick-arrow {
    top: auto;
    bottom: -40px;
    transform: none;
    -webkit-transform: none;
    box-shadow: none;
    background-color: transparent;
    color: rgba(77,77,79,0.3);
    border: 2px solid;
    border-radius: 0;
    width: 35px;
    height: 35px;
    font-size: 25px;
}
.sk-carousel.home-carousel .slick-next {
    right: 15px;
}
.sk-carousel.home-carousel .slick-prev {
    left: auto;
    right: 55px;
}
.sk-carousel.home-carousel .slick-prev:hover,
.sk-carousel.home-carousel .slick-next:hover {
    color: var(--default) !important;
    border-color: var(--default) !important;
}
/*Feature Categories - Products*/
.feature-categories-tab-item {
    padding-bottom: 10px;
    position: relative;
}
.feature-categories-tab-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    height: 10px;
}
.feature-categories-tabs {
    background-color: var(--gray);
    text-align: center;
    color: rgba(0,0,0,0.6);
}
.feature-categories-tab-wrap {
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 100%;
}
.feature-categories-tab-wrap::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--gray);
    width: 0;
    margin: auto;
    opacity: 0;
}
.slick-active .feature-categories-tab-item .feature-categories-tab-wrap::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 10px;
    bottom: 10px;
    border-right: 1px solid rgba(77,77,79,0.3);
}
.feature-categories-tab-wrap img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: 0.6;
    margin-right: 0.25em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.feature-categories-tab-wrap:hover,
.feature-categories-tab-wrap.active {
    color: var(--primary);
}
.feature-categories-tab-wrap.active::before {
    opacity: 1;
}
.feature-categories-tab-wrap:hover img,
.feature-categories-tab-wrap.active img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}
.feature-categories-dropdowns {
    position: relative;
}
.feature-categories-dropdown {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.feature-categories-dropdown:not(:first-child) {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.feature-categories-dropdown:not(.active) {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}
/*Home Category Banners*/
.home-cat-banner {
    min-height: 35vw;
}
.home-cat-banner-image {
    position: relative;
    height: 45vw;
}
.home-cat-banner-image .crosses {
    position: absolute;
    bottom: -15px;
    left: 60px;
}
.home-cat-banner-wrap {
    position: relative;
    z-index: 1;
}
.home-cat-banner-wrap.one::before {
    content: "";
    position: absolute;
    height: 15vw;
    background-color: var(--white);
    width: 30vw;
    top: 0;
    right: 0;
    z-index: -1;
    border-bottom-left-radius: 13vw;
}
.home-cat-banner-wrap-rounded-back {
    background-color: var(--white);
    border-bottom-right-radius: 13vw;
}
/*Popular Categories*/
.popular-categories-container {
    position: relative;
    overflow: hidden;
}
.popular-categories-container .crosses {
    position: absolute;
    top: -20px;
    left: 15px;
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    -o-transform: translateX(-40%);
    transform: translateX(-40%);
}
.popular-carousel-res-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}
.popular-carousel-res-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.popular-carousel-res-over {
    background-color: rgba(0,0,0,0.05);
    color: var(--white);
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.popular-carousel-res-title {
    position: relative;
    padding-bottom: 10px;
}
.popular-carousel-res-title::after {
    content: "";
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
}
.popular-carousel-res-subcategory {
    height: 1.25em;
}
.popular-carousel-res-subcategory:not(:last-child) {
    margin-bottom: 5px;
}
.popular-carousel-res-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.popular-carousel-res-image:hover .popular-carousel-res-over {
    background-color: rgba(0, 0, 0, 0.2);
}
/*About Us*/
.about-captions {
    position: relative;
}
.about-captions::before,
.about-captions::after {
    font-size: 145px;
    font-family: 'Times New Roman', serif;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
    position: absolute;
    z-index: 1;
}
.about-captions::before {
    content: open-quote;
    top: -0.65em;
}
.about-captions::after {
    content: close-quote;
    opacity: 0.2;
    right: 0;
    top: 100%;
}
.about-banner {
    position: relative;
    padding-top: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*Mission - Vision*/
.mission-text {
    position: relative;
}
.mission-text::before {
    content: "";
    display: block;
    border-top: 2px solid var(--primary);
    width: 60px;
    margin-bottom: 20px;
}
/*Our Team*/
.team-res-image {
    position: relative;
    padding-top: 100%;
}
/*Results*/
.results-banner {
    position: relative;
    padding-top: 56.5%;
}
.results-banner-over {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: var(--white);
    background-color: rgba(0,0,0,0.05);
}
.category-filter-toggle {
    position: relative;
    padding-right: 35px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.category-filter-toggle .toggle {
    width: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.category-filter-toggle .toggle::after {
    content: "+";
}
.category-filter-item a {
    display: block;
    padding: 10px 0;
}
.category-filter-toggle.has-subcategories a {
    padding-right: 40px;
}
.category-filters > .category-filter-item > .category-filter-toggle {
    border-bottom: 1px solid rgba(77,77,79,0.3);
    font-weight: 600;
}
.category-filters > .category-filter-item.active > .category-filter-toggle {
    color: var(--primary);
}
.category-filters > .category-filter-item > .category-filter-dropdown {
    font-size: calc(1em + 1px);
}
.category-filter-item:not(.active) > .category-filter-dropdown {
    display: none;
}
.category-filter-item .category-filter-dropdown .category-filter-dropdown {
    color: rgba(77,77,79,0.5);
}
.category-filter-item.active > .category-filter-toggle .toggle::after {
    content: "-";
}
.category-filters .category-filter-dropdown .category-filter-item > .category-filter-toggle {
    border-bottom: 2px solid transparent;
}
.category-filters .category-filter-dropdown .category-filter-item.active > .category-filter-toggle {
    border-color: var(--primary);
}
.category-filters .category-filter-dropdown .category-filter-dropdown .category-filter-item.active a {
    color: var(--primary);
}
.category-filter-item a:hover,
.category-filter-toggle .toggle:hover {
    color: var(--primary);
}
.product-res-wrap {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--white);
}
.product-res-offer {
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    z-index: 1;
    padding: 0 5px;
    line-height: 1.25;
}
.product-res-image {
    position: relative;
    padding-top: 100%;
}
.product-res-text del {
    font-size: calc(1em - 2px);
}
.product-res-title {
    height: 2.5em;
}
.product-res-wrap:hover {
    -webkit-box-shadow: inset 0px -3px 0px 0px var(--primary);
    -moz-box-shadow: inset 0px -3px 0px 0px var(--primary);
    box-shadow: inset 0px -3px 0px 0px var(--primary);
}
/*Publish*/
.product-gallery-wrap {
    padding-top: 100%;
    position: relative;
}
.product-res-offer.publish-offer {
    top: 15px;
    left: 15px;
}
.add-to-cart {
    min-height: 100%;
}
.publish-info {
    position: relative;
    display: inline-block;
}
.publish-info-popup {
    position: absolute;
    display: block;
    white-space: nowrap;
    top: 50%;
    right: 0;
    color: rgba(0,0,0,0.5);
    background-color: var(--white);
    -webkit-transform: translate(calc(100% + 15px), -50%);
    -moz-transform: translate(calc(100% + 15px), -50%);
    -ms-transform: translate(calc(100% + 15px), -50%);
    -o-transform: translate(calc(100% + 15px), -50%);
    transform: translate(calc(100% + 15px), -50%);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.35);
    padding: 10px;
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
}
.publish-info-popup::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--white);
    -webkit-box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
    box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -5px;
}
.publish-info-popup.left {
    left: 0;
    right: auto;
    -webkit-transform: translate(calc(-100% - 15px), -50%);
    -moz-transform: translate(calc(-100% - 15px), -50%);
    -ms-transform: translate(calc(-100% - 15px), -50%);
    -o-transform: translate(calc(-100% - 15px), -50%);
    transform: translate(calc(-100% - 15px), -50%);
}
.publish-info-popup.left::before {
    right: -5px;
    left: auto;
    -webkit-box-shadow: 1px -1px 2px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px -1px 2px 0px rgba(0,0,0,0.2);
    box-shadow: 1px -1px 2px 0px rgba(0,0,0,0.2);
}
.publish-info.active .publish-info-popup {
    opacity: 1;
    pointer-events: all;
}
.publish-nav-tabs {
    position: relative;
}
.publish-nav-tabs:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    background: -moz-linear-gradient(left,  rgba(248,248,248,0) 0%, rgba(248,248,248,1) 100%);
    background: -webkit-linear-gradient(left,  rgba(248,248,248,0) 0%,rgba(248,248,248,1) 100%);
    background: linear-gradient(to right,  rgba(248,248,248,0) 0%,rgba(248,248,248,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f8f8f8', endColorstr='#f8f8f8',GradientType=1 );
}
.publish-nav-tabs,
.sk-nav-tabs a {
    margin-bottom: -2px;
}
.sk-nav-tabs a,
.publish-nav-tab {
    color: rgba(77,77,79,0.5);
    cursor: pointer;
}
.sk-nav-tabs a:hover,
.sk-nav-tabs a.active,
.publish-nav-tab:hover,
.publish-nav-tab.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}
.publish-tab-panel:not(.active) {
    display: none;
}
.publish-tab-description ul {
    list-style: none;
    padding-left: 0;
}
.publish-tab-description ul li {
    position: relative;
    padding-left: 1.25em;
}
.publish-tab-description ul li::before {
    content: "";
    position: absolute;
    width: 0.5em;
    height: 0.9em;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    left: 0.2em;
    top: 0.4em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*Added Modal*/
.added-to-cart-image {
    position: relative;
    padding-top: 100%;
}
/*Checkout*/
.checkout-step-box {
    border: 1px solid transparent;
    background-color: rgba(107,107,107,0.3);
    color: var(--white);
}
.checkout-step-box.active {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}
.payment-method-item .sk-megabox .sk-megabox-elem {
    border-color: #cdcac5;
}
.payment-method-controls {
    position: absolute;
    top: 1px;
    bottom: 1px;
    right: 1px;
}
.payment-method-price {
    border-left: 1px solid #cdcac5;
    position: relative;
    padding-left: 30px;
}
.payment-method-price input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    padding-left: 30px;
    z-index: 1;
}
.payment-method-price .currency {
    position: absolute;
    left: 8px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,0.9);
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}
.payment-method-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20px;
    border-left: 1px solid #cdcac5;
    text-align: center;
    display: flex;
    flex-flow: column;
}
.payment-method-control {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    color: rgba(0,0,0,0.9);
    font-size: 20px;
    font-weight: 600;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.payment-method-control:not(:last-child) {
    border-bottom: 1px solid #cdcac5;
}
.cart-summary-title {
    height: 2.4em;
}
/*My Cart*/
.list-group-flush > .list-group-item {
    border-top: 0;
    border-bottom: 1px solid rgba(107,107,107,0.3) !important;
}
.cart-row-line {
    border-bottom: 1px solid rgba(107,107,107,0.3);
}
.cart-link-delete svg {
    width: 1em;
    vertical-align: baseline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    fill: rgba(77,77,79,0.7);
}
.cart-link-delete:hover {
    color: var(--primary);
}
.cart-link-delete:hover svg {
    fill: var(--primary)
}
/*My Account*/
.sk-user-sidenav-wrap {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    display: block;
}
.sk-user-sidenav {
    border: 1px solid rgba(29,33,30,0.2);
}
.sk-user-sidenav-toggle {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    cursor: pointer;
}
.sk-user-sidenav-toggle::after {
    content: "+";
}
.sk-user-sidenav-toggle.active::after {
    content: "-";
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
    color: var(--default);
    font-weight: 400;
    font-size: 16px;
    border-left: 2px solid transparent;
    padding: 5px 10px;
}
.sk-user-sidenav .sk-side-nav-link.active,
.sk-user-sidenav .sk-side-nav-link:hover {
    background-color: transparent;
    color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-link.active {
    border-left-color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link svg {
    width: 1.75em;
    margin-right: 10px;
    fill: var(--default);
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link.active svg,
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link:hover svg {
    fill: var(--primary);
}
.account-side-link svg {
    fill: rgba(77,77,79,0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.account-side-link:hover svg {
    fill: var(--primary);
}
.address-res-item .dropdown .btn {
    color: inherit;
}
.address-res-item .dropdown-menu {
    min-width: 11.5rem;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(35,31,32,0.29);
    -moz-box-shadow: 0px 0px 6px 0px rgba(35,31,32,0.29);
    box-shadow: 0px 0px 6px 0px rgba(35,31,32,0.29);
    font-size: 14px;
    padding: 0 10px;
}
.address-res-item .dropdown-item {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.5);
}
.address-res-item .dropdown-item:last-child {
    border-bottom: none;
}
.address-res-item .dropdown-item.active,
.address-res-item .dropdown-item:hover,
.address-res-item .dropdown-item:active {
    color: var(--primary) !important;
    background-color: transparent;
}
/*Orders*/
.sk-table.order-table th:first-child,
.sk-table.order-table td:first-child {
    padding-left: 0;
}
.sk-table.order-table th:last-child,
.sk-table.order-table td:last-child {
    padding-right: 0;
}
.sk-table.order-table thead th {
    border-bottom: 1px solid rgba(0,0,0,0.5);
}
.sk-table.order-table tbody {
    color: rgba(77,77,79,0.5);
}
.sk-table.order-table tbody td {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    vertical-align: middle;
}
.sk-table th {
    padding: 15px 10px;
}
.sk-table td {
    padding: 20px 10px;
}
/*Order Popup*/
.card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    border-radius: 0;
}
.card.card-white .card-header {
    border-bottom: 2px solid rgba(77,77,79,0.5);
}
.order-step-item {
    color: rgba(77,77,79,0.4);
}
.order-step-item .title {
    border-bottom: 2px solid;
    padding-bottom: 3px;
    position: relative;
}
.order-step-item.text-primary .title::before {
    content: "";
    border-bottom: 2px solid;
    border-right: 2px solid;
    display: inline-block;
    width: 0.5em;
    height: 0.85em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    left: 0.25em;
    margin-right: 1em;
}
/*Reward Points*/
.reward-table-tabs {
    border-bottom: 3px solid #dddde1;
}
.reward-table-tab {
    color: rgba(34,31,31,0.5);
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.reward-table-tab:hover,
.reward-table-tab.active {
    color: var(--primary);
    background-color: #dddde1;
}
.reward-table-dropdown:not(.active) {
    display: none;
}
/*News Results*/
.news-header {
    position: relative;
    padding-top: 35%;
}
.news-header-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.7);
}
.news-res-image {
    position: relative;
    padding-top: 50%;
    overflow: hidden;
}
.news-res-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.news-res-title {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.news-res-more {
    border-bottom: 2px solid rgba(77,77,79,0.1);
    padding-bottom: 5px;
    color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.news-res-wrap:hover .news-res-image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.news-res-wrap:hover .news-res-title {
    color: var(--primary);
}
.news-res-wrap:hover .news-res-more {
    border-color: var(--primary);
}
/*News Publish*/
.new-publish-image {
    padding-top: 50%;
    position: relative;
}
.new-publish-description h1,
.new-publish-description h2,
.new-publish-description h3,
.new-publish-description h4,
.new-publish-description h5,
.new-publish-description h6 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Times New Roman', serif;
    color: var(--default);
}
/*Contact*/
.contact-crosses {
    position: absolute;
    width: 115px;
    top: 0;
    left: 0;
}
.contact-map {
    min-height: 235px;
    position: relative;
    height: 28.5vw;
}
.contact-map iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
/*Footer*/
footer .crosses {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 40px;
}
.footer-top-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 35px;
    z-index: 2;
}
.footer-bottom-line {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    z-index: 2;
}
ul.social .list-inline-item:not(:last-child) {
    margin-right: .25rem;
}
ul.social a {
    width: 17px;
    height: 17px;
    border-radius: 2px;
    line-height: 15px;
    font-size: 15px;
    background-color: var(--default);
    color: var(--white);
}
.bg-default ul.social a {
    background-color: var(--white);
    color: var(--default);
}
ul.social i {
    color: inherit;
}
ul.social a:hover {
    -webkit-transform: none;
    transform: none;
    background-color: var(--primary);
}
.footer-phone-line {
    margin-right: -15px;
}
/*Terms Pages*/
.terms-res-item {
    margin-bottom: 35px;
}
.terms-res-item:last-child {
    margin-bottom: 0;
}
.terms-res-item a {
    color: inherit;
    display: flex;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}
.terms-res-item a::after {
    content: "";
    flex: 1;
    border-bottom: 2px dotted;
}
.terms-res-item a:hover {
    color: var(--primary);
}

/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    /*Modal*/
    .modal .close svg {
        stroke-width: 3px;
    }
    /*Carousel*/
    .sk-carousel .slick-prev {
        left: -15px;
    }
    .sk-carousel .slick-next {
        right: -15px;
    }
    /*Header*/
    .header-subcategories.sub {
        margin-left: -30px;
    }
    /*Curvy Header*/
    .curvy-header.with-back-image .curvy-header-right-wrap {
        min-height: 45vw;
    }
    /*Home Carousel*/
    .home-carousel-image {
        padding-top: 37%;
    }
    /*Home Category Banners*/
    .home-cat-banner-image {
        height: 35vw;
    }
    /*Popular Categories*/
    .popular-categories-container .crosses {
        left: 30px;
    }
    /*Results*/
    .product-res-offer {
        padding: 0 10px;
        top: 15px;
        left: 15px;
    }
    /*My Account*/
    .sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
        padding: 13px 25px;
    }
    .sk-user-sidenav .sk-side-nav-list .sk-side-nav-link svg {
        margin-right: 15px;
    }
    /*Footer*/
    .footer-phone-line {
        margin-right: -30px;
    }
}
/* md */
@media (min-width: 768px) {
    /*All*/
    body {
        font-size: 16px;
    }
    /*Header*/
    .header-subcategories.sub {
        margin-left: calc((-100vw + 700px) /2);
    }
    /*Home Carousel*/
    .sk-carousel.home-carousel .slick-arrow {
        bottom: 40px;
        color: var(--white);
    }
    .sk-carousel.home-carousel .slick-prev {
        right: 85px;
    }
    .sk-carousel.home-carousel .slick-next {
        right: 40px;
    }
    /*Feature Categories - Products*/
    .feature-categories-tab-item {
        padding-bottom: 25px;
    }
    .feature-categories-tab-item::before {
        height: 25px;
    }
    .feature-categories-tab-wrap::before {
        bottom: -25px;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 25px solid var(--gray);
    }
    .slick-active .feature-categories-tab-item .feature-categories-tab-wrap:after {
        top: 20px;
        bottom: 20px;
    }
    /*Popular Categories*/
    .popular-categories-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 72%;
        background-color: var(--secondary);
        z-index: -1;
    }
    .popular-categories-container .crosses {
        left: calc((100vw - 700px) / 2);
    }
    .popular-carousel-res-subcategory:not(:last-child) {
        margin-bottom: 10px;
    }
    /*About Us*/
    .about-captions::before,
    .about-captions::after {
        font-size: 172px;
    }
    .about-banner {
        padding-top: 31%;
    }
    /*Mission - Vision*/
    .mission-text::before {
        width: 75px;
        margin-bottom: 50px;
    }
    /*Results*/
    .results-banner {
        padding-top: 23.5%;
    }
    /*Footer*/
    ul.social a {
        width: 25px;
        height: 25px;
        border-radius: 5px;
        line-height: 25px;
        font-size: 22px;
    }
    .footer-phone-line {
        margin-right: calc((-100vw + 700px) /2);
    }
}
/* lg */
@media (min-width: 992px) {
    /*Carousel*/
    .sk-carousel .slick-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
        line-height: 25px;
    }
    .gutters-15.half-outside-arrow .slick-prev {
        left: -2px;
    }
    .gutters-15.half-outside-arrow .slick-next {
        right: -2px;
    }
    .sk-carousel.arrows-on-top .slick-arrow,
    .sk-carousel.arrows-on-top-right .slick-arrow {
        top: -55px;
        transform: none;
    }
    .sk-carousel.arrows-on-top .slick-next {
        right: auto;
    }
    .sk-carousel.gutters-10.arrows-on-top .slick-prev {
        left: 10px;
    }
    .sk-carousel.gutters-10.arrows-on-top .slick-next {
        left: 55px;
    }
    .sk-carousel.gutters-15.arrows-on-top .slick-prev {
        left: 15px;
    }
    .sk-carousel.gutters-15.arrows-on-top .slick-next {
        left: 60px;
    }
    .sk-carousel.gutters-20.arrows-on-top .slick-prev {
        left: 20px;
    }
    .sk-carousel.gutters-20.arrows-on-top .slick-next {
        left: 65px;
    }
    .sk-carousel.arrows-on-top-right .slick-prev {
        left: auto;
    }
    .sk-carousel.gutters-10.arrows-on-top-right .slick-prev {
        right: 55px;
    }
    .sk-carousel.gutters-10.arrows-on-top-right .slick-next {
        right: 10px;
    }
    .sk-carousel.gutters-15.arrows-on-top-right .slick-prev {
        right: 60px;
    }
    .sk-carousel.gutters-15.arrows-on-top-right .slick-next {
        right: 15px;
    }
    .sk-carousel.gutters-20.arrows-on-top-right .slick-prev {
        right: 65px;
    }
    .sk-carousel.gutters-20.arrows-on-top-right .slick-next {
        right: 20px;
    }
    /*Header*/
    .header-icon-number {
        font-size: 13px;
    }
    .front-header-search .form-control,
    .front-header-search-megamenu .form-control {
        padding: 10px 45px 10px 15px;
        border-radius: 7px;
    }
    .megamenu-toggle:not(.small) {
        width: 65px;
        height: 65px;
        border-radius: 7px;
    }
    .megamenu-toggle:not(.small) .icon {
        width: 35px;
        border-bottom: 3px solid var(--primary);
        border-top: 3px solid var(--primary);
        height: 11px;
    }
    .megamenu-toggle:not(.small) .icon .top,
    .megamenu-toggle:not(.small) .icon .bottom {
        height: 3px;
    }
    .megamenu-toggle:not(.small) .icon .top {
        top: -11px;
    }
    .megamenu-toggle:not(.small) .icon .bottom {
        top: 13px;
    }
    .megamenu-toggle:not(.small).open .icon .top {
        -webkit-transform: rotate(-45deg) translate(-3px, -6px);
        -moz-transform: rotate(-45deg) translate(-3px, -6px);
        -ms-transform: rotate(-45deg) translate(-3px, -6px);
        -o-transform: rotate(-45deg) translate(-3px, -6px);
        transform: rotate(-45deg) translate(-3px, -6px);
        top: -9px;
    }
    .megamenu-toggle:not(.small).open .icon .bottom {
        -webkit-transform: rotate(45deg) translate(-3px, 5px);
        -moz-transform: rotate(45deg) translate(-3px, 5px);
        -ms-transform: rotate(45deg) translate(-3px, 5px);
        -o-transform: rotate(45deg) translate(-3px, 5px);
        transform: rotate(45deg) translate(-3px, 5px);
        top: 11px;
    }
    .header-subcategories.sub {
        margin-left: calc((-100vw + 920px) /2);
    }
    /*Curvy Header*/
    .curvy-header .background {
        display: block;
        position: absolute;
        top: 0;
        bottom: -140px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100% + 140px);
        object-fit: cover;
    }
    .curvy-header.with-back-image::before {
        content: '';
        position: absolute;
        height: calc(39% + 140px);
        left: 0;
        right: 0;
        bottom: -140px;
        background-color: var(--gray);
        z-index: 1;
    }
    .curvy-header.with-back-image::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -140px;
        height: 140px;
        background-color: var(--white);
        z-index: 1;
    }
    .curvy-header-left-wrap {
        border-top-right-radius: 23vw;
    }
    .curvy-header-right-wrap {
        border-bottom-left-radius: 18.332vw;
        margin-bottom: -140px;
        min-height: calc(100% + 140px);
    }
    .curvy-header.with-back-image .curvy-header-right-wrap {
        min-height: calc(100% + 140px);
    }
    .curvy-header-right-wrap .back-image {
        left: -122.2222222222%;
        width: 222.222222222%;
    }
    /*Home Carousel*/
    .sk-carousel.home-carousel .slick-arrow {
        border: 3px solid;
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    .sk-carousel.home-carousel .slick-prev {
        right: 115px;
    }
    /*Home Category Banners*/
    .home-cat-banner-image {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
    }
    /*Popular Categories*/
    .popular-categories-container .crosses {
        left: calc((100vw - 920px) / 2);
    }
    /*News Results*/
    .news-header {
        padding-top: 16.5%;
    }
    /*My Cart*/
    .cart-link-delete {
        position: absolute;
        bottom: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}
/* xl */
@media (min-width: 1200px) {
    /*Carousel*/
    .sk-carousel .slick-prev {
        left: -25px;
    }
    .sk-carousel .slick-next {
        right: -25px;
    }
    .sk-carousel.xl-gutters-20.arrows-on-top .slick-prev {
        left: 20px;
    }
    .sk-carousel.xl-gutters-20.arrows-on-top .slick-next {
        left: 65px;
    }
    .sk-carousel.xl-gutters-20.arrows-on-top-right .slick-prev {
        right: 65px;
    }
    .sk-carousel.xl-gutters-20.arrows-on-top-right .slick-next {
        right: 20px;
    }
    /*Header*/
    .header-subcategories.sub {
        margin-left: calc((-100vw + 1100px) /2);
    }
    /*Megamenu*/
    .megamenu-container {
        min-height: calc(100vh - 123px);
    }
    .megamenu-link-item:not(:last-child) {
        margin-bottom: 15px;
    }
    /*Popular Categories*/
    .popular-categories-container .crosses {
        left: calc((100vw - 1100px) / 2);
    }
    /*About Us*/
    .about-captions::before,
    .about-captions::after {
        font-size: 200px;
    }
    /*My Account*/
    .sk-user-sidenav-wrap {
        -ms-flex: 0 0 350px;
        flex: 0 0 350px;
        max-width: 350px;
    }
    .sk-user-sidenav-toggle {
        display: none;
    }
    /*News Publish*/
    .new-publish-description h1,
    .new-publish-description h2,
    .new-publish-description h3,
    .new-publish-description h4,
    .new-publish-description h5,
    .new-publish-description h6 {
        font-size: 25px;
    }
}
/* xxl */
@media (min-width: 1500px) {
    /*All*/
    body {
        font-size: 18px;
    }
    /*Carousel*/
    .sk-carousel .slick-prev {
        left: -30px;
    }
    .sk-carousel .slick-next {
        right: -30px;
    }
    .xxl-gutters-40.half-outside-arrow .slick-prev {
        left: 22px;
    }
    .xxl-gutters-40.half-outside-arrow .slick-next {
        right: 22px;
    }
    /*Header*/
    .header-subcategories-dropdown-scroll {
        max-height: calc(100vh - 213px);
    }
    .header-subcategories {
        max-height: calc(100vh - 213px);
    }
    .header-subcategories.sub {
        margin-left: calc((-100vw + 1300px) /2);
    }
    /*Megamenu*/
    .megamenu-link-item:not(:last-child) {
        margin-bottom: 25px;
    }
    /*Popular Categories*/
    .popular-categories-container .crosses {
        left: calc((100vw - 1300px) / 2);
    }
    /*Contact*/
    .contact-crosses {
        position: absolute;
        width: 250px;
        top: 70px;
        left: 5px;
    }
}
/* xxxl */
@media (min-width: 1750px) {
    /*Header*/
    .header-subcategories.sub {
        margin-left: calc((-100vw + 1500px) /2);
    }
    /*Popular Categories*/
    .popular-categories-container .crosses {
        left: calc((100vw - 1500px) / 2);
    }
}
/*Responsive - Desktop First*/
/* lg */
@media (max-width: 1199.98px) {
    /*Megamenu*/
    .megamenu-column-toggle {
        cursor: pointer;
    }
    .megamenu-column-toggle h2 {
        padding-right: 1.5em;
        position: relative;
    }
    .megamenu-column-toggle h2::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
    }
    .megamenu-column-toggle.active h2::after {
        content: "-";
    }
    .megamenu-column-dropdown:not(.active) {
        display: none;
    }
    .megamenu-column-dropdown {
        position: relative;
        z-index: 1;
    }
    .megamenu-column-dropdown::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: -1000px;
        left: -1000px;
        z-index: -1;
        border-top: 1px solid rgba(77,77,79,0.3);
        border-bottom: 1px solid rgba(77,77,79,0.3);
    }
    /*My Account*/
    .sk-user-sidenav .sidemnenu:not(.active) {
        display: none;
    }
}
/* md */
@media (max-width: 991.98px) {
    /*Curvy Header*/
    .curvy-header-home-image {
        text-align: right;
    }
    .curvy-header-home-image img {
        width: 85%;
    }
    /*Feature Categories - Products*/
    .feature-categories-tabs {
        position: relative;
    }
    .feature-categories-tabs:not(.no-carousel)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
        pointer-events: none;
    }
    /*Results*/
    .category-filters-toggle {
        position: relative;
        padding-right: 1.25em;
        cursor: pointer;
    }
    .category-filters-toggle:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0.2em;
        width: 0.65em;
        height: 0.65em;
        border-left: 2px solid;
        border-bottom: 2px solid;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .category-filters-toggle.active:after {
        -webkit-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
        -o-transform: rotate(-225deg);
        transform: rotate(-225deg);
    }
    .category-filters-toggle:not(.active) + .category-filters {
        display: none;
    }
    /*My Cart*/
    .cart-phone-rows {
        color: inherit !important;
        margin-bottom: 10px;
    }
}
/* sm */
@media (max-width: 767.98px) {
    /*Publish*/
    .add-to-cart {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .buy-now {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    /*Payment*/
    .cart-summery .publish-info {
        position: absolute;
        right: 5px;
        top: 0;
        bottom: 0;
        height: 20px;
        margin: auto;
    }
    /*Footer*/
    .footer-tab-link {
        position: relative;
        padding-right: 1.25em;
        cursor: pointer;
    }
    .footer-tab-link:after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
    }
    .footer-tab-link.active:after {
        content: "-";
    }
    .footer-tab-link:not(.active) + .footer-tab-dropdown {
        display: none;
    }
}
/* xs */
@media (max-width: 575.98px) {
    /*Header*/
    .front-header-search,
    .front-header-search-megamenu {
        max-width: 150px;
    }
}

.cart-res-box {
    display: inline-block;
    font-size: 10px;
    color: rgba(45,41,41,0.6);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
    padding: 2px;
    text-align: center;
}
.cart-res-box span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 700;
}
.cart-res-out-of-stock .card-inactive-on-out-of-stock {
    opacity: 0.2;
    pointer-events: none;
}

.cart-res-image-label {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--white);
    font-size: 10px;
    text-align: center;
    z-index: 1;
    color: rgba(0,0,0,0.5);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.low-out-stock-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
}

.plus_min{
    position: absolute;
    right: 17px;
}


