@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --default: #231F20;
    --secondary: #6D6D6D;
    --hov-secondary: var(--hov-primary);
    --tertiary: #2d2d2d;
    --quaternary: #191617;
    --quinary: #232122;
    --black: black;
    --white: white;
    --error: #E61D34;
    --gray: #F4F4F4;
    --font-family: 'Roboto', sans-serif;
    --body-size: 14px;
    --success: #66BC42;
    --header-height: 68px;
    --fixed-header-height: 45px;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
html,
body {
    overflow-x: hidden;
}
body {
    color: var(--default);
    font-size: var(--body-size);
    line-height: 1.25;
    font-weight: 400;
    font-family: var(--font-family);
    position: relative;
}
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: 14em;
    vertical-align: text-bottom;
}
.grecaptcha-badge {
    display: none;
}
.btn {
    border-radius: 0;
    font-size: inherit;
}
.btn-b-width-2 {
    border-width: 2px;
}
.btn-circle {
    border-radius: 50%;
}
.btn-arrow {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    border-top: 1px solid;
    position: relative;
}
.btn-arrow::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    transform: rotate(45deg);
    right: 0;
    top: -4px;
}
.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;
}
.input-group-append .btn.loader::before,
.input-group-append .btn.loader::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.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;
}
.sk-main-wrapper {
    background-color: transparent;
    min-height: auto;
}
/*Pagination*/
.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 20px;
    min-height: 20px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 0 !important;
    color: rgba(0,0,0,0.3);
    background-color: transparent;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 0;
    position: relative;
}
.page-item:first-child .page-link:before,
.page-item:last-child .page-link:before {
    content: "";
    border-top: 1px solid;
    border-left: 1px solid;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.page-item:first-child .page-link:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.page-item:last-child .page-link:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
/*Modal*/
.modal .close {
    opacity: 0.6;
}
.modal .close svg {
    stroke: #000;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}
.modal-content {
    border-radius: 3px;
    -webkit-box-shadow: 1px 1px 30px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 30px 0px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 30px 0px rgba(0,0,0,0.3);
}
.modal-content .modal-body {
    max-height: calc(100vh - 40px);
}
.modal-backdrop {
    background-color: var(--white);
}
.modal-backdrop.show {
    opacity: .9;
}
/*Form*/
.form-group {
    position: relative;
}
.form-control,
.bootstrap-select .dropdown-toggle {
    padding: 10px;
    font-size: inherit;
    height: auto;
    border-radius: 0;
    border: 1px solid rgba(45,41,41,0.2);
    color: var(--default);
    background-color: transparent;
}
.form-control::-webkit-input-placeholder {
    color: var(--default);
}
.form-control:-ms-input-placeholder {
    color: var(--default);
}
.form-control::placeholder {
    color: var(--default);
}
.form-control-with-label {
    position: relative;
}
.form-control:focus {
    color: inherit;
    background-color: transparent;
}
.form-control:focus-visible {
    color: var(--default);
    text-shadow: none;
}
.form-control-with-label.flex-grow-1 {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
}
.form-control-with-label .form-control,
.form-control-with-label .bootstrap-select .dropdown-toggle {
    padding: 20px 10px 3px;
}
.form-group .form-control-with-label .bootstrap-select {
    padding: 0 !important;
}
.form-control-with-label label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3px 10px;
    font-size: 1em;
    color: var(--default);
    margin: 0;
    pointer-events: none;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 23px;
}
.form-control-with-label.focused label,
.form-control-with-label.always-focused label {
    opacity: 0.5;
    font-size: 12px;
}
.form-control-with-label:not(.always-focused):not(.focused) label {
    min-height: 100%;
}
.form-control-with-label.textarea-label:not(.always-focused):not(.focused) label {
    min-height: 50px;
}
.form-control-with-label .bootstrap-select > .dropdown-toggle::after {
    margin-top: -15px;
}
.input-group .form-control-with-label:first-child .form-control {
    border-right: 0;
}
.bootstrap-select.h-100 .dropdown-toggle {
    height: 100%;
}
.form-control.form-control-unstyled {
    padding: 0;
    font-size: 1em;
    height: auto;
    border: none;
    color: inherit;
}
.bootstrap-select.select-unstyled .dropdown-toggle {
    padding: 0;
    height: auto;
    border-radius: 0;
    border: none;
    color: inherit;
}
.bootstrap-select.select-unstyled .dropdown-menu .bs-searchbox .form-control {
    font-size: 1em;
    padding: 5px;
}
.bootstrap-select .dropdown-toggle::after {
    content: "";
    font-size: 1em;
    border-top: 4px solid;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
.form-control::-webkit-input-placeholder {
    color: rgba(0,0,0,0.5);
}
.form-control:-ms-input-placeholder {
    color: rgba(0,0,0,0.5);
}
.form-control::placeholder {
    color: rgba(0,0,0,0.5);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}
.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.15em;
}
.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;
}
.sk-square-check.square::after {
    width: auto;
    height: auto;
    border-width: 0;
    -webkit-transform: none;
    transform: none;
    background-color: var(--primary);
    left: 1px;
    bottom: 1px;
    right: 1px;
    top: 1px;
    margin: auto;
}
.sk-checkbox > input:checked ~ .sk-square-check.square,
.sk-radio > input:checked ~ .sk-square-check.square {
    border-color: var(--primary);
}
.input-group .form-control-with-label:first-child .form-control {
    border-right: 0;
}
.input-group-append .btn:not(.btn-primary) {
    background-color: transparent;
    border-top: 1px solid rgba(45,41,41,0.2);
    border-right: 1px solid rgba(45,41,41,0.2);
    border-bottom: 1px solid rgba(45,41,41,0.2);
    color: rgba(0,0,0,0.5);
}
.input-group-append .btn:not(.btn-primary)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    border-right: 1px solid rgba(45,41,41,0.2);
}
.input-group-append .btn:not(.btn-primary):hover {
    background-color: var(--primary);
    color: var(--white);
}
.input-group-append .btn:not(.btn-primary):hover::before {
    border-right-color: transparent;
}
/*Megaboxes*/
.sk-megabox .sk-megabox-elem {
    border: 1px solid rgba(45, 41, 41, 0.2);
}
.sk-megabox > input:checked ~ .sk-megabox-elem,
.sk-megabox > input:checked ~ .sk-megabox-elem {
    border-color: var(--default);
}
.sk-megabox .sk-megabox-elem .sk-square-check,
.sk-megabox .sk-megabox-elem .sk-rounded-check {
    border: 1px solid rgba(45, 41, 41, 0.2);
    height: 1em;
    width: 1em;
}
.sk-megabox > input:checked ~ .sk-megabox-elem .sk-square-check,
.sk-megabox > input:checked ~ .sk-megabox-elem .sk-rounded-check {
    border-color: var(--primary);
}
.megabox-price {
    border-left: 1px solid rgba(45, 41, 41, 0.2);
    padding-left: 10px;
    margin-left: 10px;
    line-height: 1.5;
}
.sk-megabox .sk-megabox-elem.megabox-layout {
    border-radius: 0;
    border: 0;
    opacity: 0.2;
}
.sk-megabox > input:not(:checked) ~ .sk-megabox-elem.megabox-layout:hover {
    opacity: 0.7;
}
.sk-megabox > input:checked ~ .sk-megabox-elem.megabox-layout,
.sk-megabox > input:checked ~ .sk-megabox-elem.megabox-layout {
    opacity: 1;
}
.sk-megabox.megabox-addresses .sk-megabox-elem {
    background-color: rgba(107,107,107,0.1);
    border-color: transparent !important;
}
.payment-option-item .sk-megabox > input:checked ~ .sk-megabox-elem .sk-square-check,
.payment-option-item .sk-megabox > input:checked ~ .sk-megabox-elem .sk-rounded-check {
    border-color: var(--default);
}
.payment-option-item .sk-megabox .sk-rounded-check::after {
    background: var(--default);
}
/*Dropdowns*/
.dropdown-menu.dropdown-menu-top-right {
    top: 5px !important;
    right: 100%;
    left: auto !important;
    transform: none !important;
}
.dropdown-menu {
    border: 0;
    padding: 0;
    border-radius: 0;
}
.dropdown-item {
    padding: 0.5rem;
    color: inherit;
}
.address-res-item .dropdown-menu {
    min-width: 4rem;
    max-width: none;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.address-res-item .dropdown-item {
    padding: 0.25rem 0.5rem;
    position: relative;
}
.address-res-item .dropdown-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.address-res-item .dropdown-item:not(:last-child):hover::after {
    opacity: 0;
}
/*Breadcrumb*/
.breadcrumb {
    background: none;
    padding: 0;
}
.breadcrumb-item.home svg {
    fill: rgba(35,31,32,0.5);
    position: relative;
    top: -0.2em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.breadcrumb-item.home a:hover svg {
    fill: var(--primary);
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: .25rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    padding-right: .25rem;
    color: inherit;
}
/*Carousels*/
.slick-track {
    margin-left: 0;
    margin-right: 0;
}
.sk-carousel .slick-arrow,
.swiper-button-next,
.swiper-button-prev {
    width: 20px;
    height: 20px;
    border-radius: 0;
    box-shadow: none;
    line-height: 20px;
    border: 1px solid rgba(0,0,0,0.3);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--black);
}
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after,
.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
    content: "";
}
.sk-carousel .slick-arrow i::before,
.swiper-button-next i::before,
.swiper-button-prev i::before {
    content: "";
    border-top: 2px solid;
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    position: relative;
}
.sk-carousel .slick-prev i::before,
.swiper-button-prev i::before {
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 0.1em;
}
.sk-carousel .slick-next i::before,
.swiper-button-next i::before {
    border-right: 2px solid;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0.1em;
}
.sk-carousel .slick-prev:hover,
.sk-carousel .slick-next:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
    box-shadow: none !important;
    background-color: var(--primary);
    color: var(--white);
    border-color: transparent;
}
.sk-carousel.top-outside-arrow .slick-arrow,
.swiper.top-outside-arrow .swiper-button-next,
.swiper.top-outside-arrow .swiper-button-prev {
    top: -45px;
    -webkit-transform: none;
    transform: none;
    margin-top: 0;
}
.sk-carousel.top-outside-arrow .slick-prev,
.swiper.top-outside-arrow .swiper-button-prev {
    left: auto;
    right: 25px;
}
.sk-carousel.top-outside-arrow .slick-next,
.swiper.top-outside-arrow .swiper-button-next {
    right: 0;
}
.sk-carousel.dots-inside-bottom .slick-dots {
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0;
    transform: none;
    -webkit-transform: none;
}
.sk-carousel .slick-dots button {
    height: 10px;
    width: 10px;
    border: 1px solid rgba(35,31,32,0.3);
    background: transparent;
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-carousel .slick-dots .slick-active button {
    background: rgba(35,31,32,0.3);
    border-color: transparent;
}
.sk-carousel .slick-dots :not(.slick-active) button:hover {
    background: var(--primary);
    border-color: transparent;
}
.swiper-horizontal > .swiper-scrollbar::after,
.swiper-scrollbar.swiper-scrollbar-horizontal::after,
.swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag::after,
.swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
}
.swiper-scrollbar {
    cursor: pointer;
}
.swiper-scrollbar-drag {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-scrollbar:hover .swiper-scrollbar-drag {
    background-color: var(--primary);
}
/*Side Popup*/
.side-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.side-popup.active {
    opacity: 1;
    pointer-events: all;
}
.side-popup-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.9);
}
.side-popup-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--white);
    width: 280px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.side-popup.active .side-popup-container {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.side-popup-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.side-popup-close {
    display: inline-block;
    cursor: pointer;
}
.side-popup-close svg {
    stroke: rgba(0,0,0,0.3);
    stroke-miterlimit: 10;
    stroke-width: 2px;
}
.side-popup-close:hover svg {
    stroke: var(--primary);
}
html.side-popup-opened,
body.side-popup-opened {
    overflow: hidden;
}
/*Header*/
.header-subtitles-container {
    position: relative;
}
.header-subtitles-container::before,
.header-subtitles-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
}
.header-subtitles-container::before {
    left: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
}
.header-subtitles-container::after {
    right: 0;
    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 );
}
.front-header-search .bootstrap-select::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    border-right: 1px solid rgba(0,0,0,0.25);
}
.front-header-search .bootstrap-select .dropdown-toggle {
    padding: 5px;
    border: 0;
    color: rgba(0,0,0,0.5);
}
.front-header-search .bootstrap-select .dropdown-toggle::after {
    content: "";
    border-top: 4px solid;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
.front-header-search .bootstrap-select .dropdown-toggle .filter-option {
    height: auto;
}
.header-link {
    display: inline-block;
}
.header-link .square {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    margin-right: 0.35em;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link .square svg {
    fill: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link .text {
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link:hover .square {
    background-color: var(--white);
}
.header-link:hover .square svg {
    fill: var(--primary);
    stroke: var(--primary);
}
.header-link:hover .text {
    border-bottom: 1px solid;
}
.fixed-header .header-link .square {
    border-color: rgba(35,31,32,0.5);
}
.fixed-header .header-link .square svg {
    fill: var(--default);
}
.cart-number {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.1;
    min-width: 1.1em;
    height: 1.1em;
    text-align: center;
    display: inline-block;
    position: absolute;
    padding: 0 2px;
    border-radius: 50%;
    top: -7px;
    right: -7px;
}
.fixed-header .cart-number {
    background-color: var(--default);
    color: var(--white);
}
.header-languages a {
    border-bottom: 1px solid transparent;
    color: rgba(255,255,255,0.5);
    position: relative;
}
.header-languages a:not(:last-child) {
    margin-right: 10px;
}
.header-languages a:not(:last-child)::after {
    content: "";
    border-right: 1px solid var(--white);
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: -5px;
}
.header-languages a:hover,
.header-languages a.active {
    color: var(--white);
}
.header-languages a.active {
    border-bottom: 1px solid;
}
.top-navbar .header-languages a {
    color: rgba(0,0,0,0.3);
}
.top-navbar .header-languages a:not(:last-child)::after {
    border-right: 1px solid var(--black);
}
.top-navbar .header-languages a:hover,
.top-navbar .header-languages a.active {
    color: var(--black);
}
.header-menu-category.offer > a {
    background-color: var(--white);
    color: var(--primary);
}
.header-menu-category > a {
    position: relative;
}
.header-menu-category-item:not(:first-child) .header-menu-category > a::before {
    content: "";
    border-right: 1px solid rgba(255,255,255,0.3);
    position: absolute;
    left: 0;
    top: 13px;
    bottom: 13px;
}
.header-menu-category.has-subcategories > a::after {
    content: "";
    border-top: 4px solid rgba(255,255,255,0.3);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-menu-category:hover > a {
    background-color: var(--gray);
    color: var(--default);
}
.header-menu-category:hover > a:after {
    border-top-color: var(--default);
}
.header-menu-category.offer:hover > a,
.fixed-header .header-menu-category.offer:hover > a {
    background-color: var(--primary);
    color: var(--white);
}
.header-menu-category-dropdown {
    min-height: 100px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.25);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
}
.header-menu-category.has-subcategories:hover .header-menu-category-dropdown {
    pointer-events: all;
    opacity: 1;
}
.header-menu-category-scroll {
    max-height: calc(100vh - 131px);
    overflow-x: hidden;
    overflow-y: auto;
}
.header-menu-category-dropdown .card-columns .card {
    background-color: transparent;
    border-radius: 0;
}
.header-menu-phone {
    position: absolute !important;
    top: var(--header-height);
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    max-height: calc(100vh - var(--header-height));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
}
.fixed-header .header-menu-phone {
    top: 100%;
    max-height: calc(100vh - var(--fixed-header-height));
}
body.menu-opened header .header-menu-phone,
body.menu-opened .fixed-header.header-down .header-menu-phone {
    pointer-events: all;
    opacity: 1;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.28);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.28);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.28);
}
.header-menu-category-title {
    position: relative;
    padding: 20px;
}
.header-menu-category-title.has-subcategories {
    padding-right: 60px;
}
.header-menu-category-title.offer {
    background-color: var(--white);
    color: var(--primary);
}
.header-menu-category-title a {
    display: inline-block;
}
.header-menu-category-title .toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
}
.header-menu-category-title .toggle::before {
    content: "";
    border-bottom: 2px solid;
    border-right: 2px solid;
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header-menu-phone-category-dropdown:not(.loaded) {
    min-height: 100px;
}
.header-menu-category-title:not(.active) + .header-menu-phone-category-dropdown,
.header-menu-phone-subcategory-title:not(.active) + .header-menu-phone-sub-dropdown {
    display: none;
}
.header-menu-phone-subcategory:not(:last-child) {
    margin-bottom: 20px;
}
.header-menu-phone-subcategory-title {
    position: relative;
    -webkit-box-shadow: inset 0px -1px 0px 0px rgba(35,31,32,0.5);
    -moz-box-shadow: inset 0px -1px 0px 0px rgba(35,31,32,0.5);
    box-shadow: inset 0px -1px 0px 0px rgba(35,31,32,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-menu-phone-subcategory-title.has-subcategories {
    padding-right: 35px;
}
.header-menu-phone-subcategory-title.active {
    -webkit-box-shadow: inset 0px -2px 0px 0px rgba(35,31,32,1);
    -moz-box-shadow: inset 0px -2px 0px 0px rgba(35,31,32,1);
    box-shadow: inset 0px -2px 0px 0px rgba(35,31,32,1);
}
.header-menu-phone-subcategory-title a {
    display: inline-block;
    padding-bottom: 4px;
}
.header-menu-phone-subcategory-title .toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
}
.header-menu-phone-subcategory-title .toggle:after {
    content: "+";
}
.header-menu-phone-subcategory-title.active .toggle:after {
    content: "-";
}
.header-menu-phone-sub-dropdown {
    margin-top: 10px;
}
.fixed-header {
    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;
    pointer-events: none;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.35);
}
.fixed-header.header-down {
    pointer-events: all;
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fixed-header .header-menu-category.offer > a {
    background-color: transparent;
}
.fixed-header .header-menu-category-scroll {
    max-height: calc(100vh - 46px);
}
.megamenu-toggle {
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--default);
}
.megamenu-toggle .icon {
    width: 25px;
    border-bottom: 2px solid var(--white);
    position: relative;
    border-top: 2px solid var(--white);
    height: 9px;
    -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(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top {
    top: -9px;
    -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: 12px;
    -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 .icon {
    border-color: transparent !important;
}
.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: -11px;
}
.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: 11px;
}
.menu-backdrop {
    background-color: rgba(255,255,255,0.9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
/*Homepage Slider*/
.homepage-slider-image {
    padding-top: 50%;
    position: relative;
}
/*Homepage Banners*/
.homepage-banner-image {
    position: relative;
    padding-top: 110%;
}
.homepage-banner-image.landscape {
    padding-top: 55%;
}
/*Featured Products*/
.featured-products-swiper,
.related-products-swiper,
.featured-products-phone-swiper {
    overflow: visible;
}
.featured-products-swiper .swiper-slide {
    height: auto;
}
.featured-products-swiper .swiper-slide > .product-res-item {
    height: 50%;
}
/*Featured Banners*/
.featured-banner-image {
    position: relative;
    padding-top: 156%;
}
/*Homepage Footer Banner*/
.home-footer-banner-image {
    padding-top: 53%;
}
/*About us*/
.about-image {
    position: relative;
    padding-top: 57%;
}
.mission-title > span {
    display: inline-block;
    border-bottom: 7px solid var(--primary);
    margin-bottom: -5px;
}
.history-box {
    background-color: var(--white);
    position: relative;
    z-index: 1;
}
.history-image {
    position: relative;
    padding-top: 70%;
}
/*Results*/
.results-filter-group-option:not(:last-child) {
    margin-bottom: 5px;
}
.noUi-horizontal {
    height: 12px;
}
.noUi-target {
    background: rgba(0,0,0,0.1);
    border-radius: 0;
    border: 0;
    box-shadow: none;
}
.noUi-handle {
    border: 3px solid var(--white);
    border-radius: 0;
    background: var(--primary);
    box-shadow: none;
}
.noUi-horizontal .noUi-handle {
    width: 25px;
    height: 25px;
    top: -6px;
    right: -3px;
}
.noUi-handle::after,
.noUi-handle::before {
    display: none;
}
.noUi-handle.noUi-handle-lower {
    left: 27px;
    right: auto;
}
.results-banner-image {
    position: relative;
    padding-top: 30%;
}
.products-res-wrap {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-res-wrap::before {
    content: "";
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-res-link {
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
}
.products-res-image {
    position: relative;
    padding-top: 100%;
}
.products-res-title {
    height: 2.4em;
}
.products-res-spec {
    height: 1.25em;
}
.products-res-price-delete {
    display: inline-block;
    position: relative;
}
.products-res-price-delete::after {
    content: "";
    height: 0;
    left: 0;
    right: 0;
    border-top: 1px solid;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg);
}
.products-res-cart-btn,
.products-res-energy-label.popup-image {
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.products-res-wrap.list-wrap:hover {
    border-color: transparent !important;
}
.products-res-wrap:hover::before {
    opacity: 1;
}
.product-square-btn {
    padding: 3px;
}
#load-more:not(:hover) {
    border-color: rgba(35,31,32,0.2);
}
/*Publish*/
.energy-image-popup {
    position: relative;
    padding-top: 210%;
}
.product-publish-image {
    position: relative;
    padding-top: 100%;
}
.product-publish-image-thumb {
    position: relative;
    padding-top: 100%;
    border-bottom: 2px solid transparent;
}
.slick-current .product-publish-image-thumb {
    border-bottom-color: rgba(0,0,0,0.3);
}
.product-publish-specifications-item p {
    margin-bottom: 5px;
    line-height: 1.1;
}
.product-publish-specifications-item ul {
    padding-left: 15px;
}
.products-publish-delivery-labels:not(:first-child) {
    border-top: 1px solid rgba(35,31,32,0.2);
}
.products-publish-delivery-labels svg {
    fill: rgba(35,31,32,0.5);
}
.sk-plus-minus .btn,
.sk-plus-minus .input-number {
    color: inherit;
}
.products-publish-energy-label.popup-image {
    cursor: pointer;
}
.products-publish-energy-title {
    border-bottom: 2px solid transparent;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-publish-energy-label img {
    display: block;
}
.products-publish-energy-label.popup-image:hover .products-publish-energy-title {
    border-bottom: 2px solid;
}
.product-publish-spec-toggle {
    position: relative;
    cursor: pointer;
    padding-right: 60px;
}
.product-publish-spec-toggle .toggle {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(35,31,32,0.3);
    top: 0.2em;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-publish-spec-toggle .toggle::after {
    content: "+";
    font-size: 0.8em;
}
.product-publish-spec-toggle.active .toggle::after {
    content: "-";
}
.product-publish-spec-toggle:hover .toggle {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}
.product-publish-spec-toggle:not(.active) + .product-publish-spec-dropdown {
    display: none;
}
.product-publish-spec-item {
    line-height: 1.2;
}
.product-publish-spec-item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(35,31,32,0.1);
}
.product-publish-spec-item p:not(:last-child) {
    margin-bottom: 5px;
}
/*Checkout*/
.checkout-step-item:not(:last-child) .checkout-step-box {
    border-right: 1px solid rgba(0,0,0,0.2);
}
.checkout-step-number {
    border: 1px solid;
    width: 2em;
    height: 2em;
    display: inline-block;
    line-height: 2;
}
.checkout-step-text {
    border-bottom: 1px solid transparent;
}
.checkout-step-box.active {
    color: var(--primary);
}
.checkout-step-box.active .checkout-step-text {
    border-bottom: 1px solid;
}
#addToCart .modal-content {
    border: none;
}
.cart-res-delete {
    color: rgba(35,31,32,0.3);
}
.cart-res-delete svg {
    fill: rgba(35,31,32,0.3);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cart-res-delete:hover {
    color: var(--primary);
}
.cart-res-delete:hover svg {
    fill: var(--primary);
}
.list-group-item {
    border-color: rgba(35,31,32,0.3);
}
/*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;
    max-height: none;
    border: 0;
    display: block;
}
.sk-side-nav-list .sk-side-nav-link {
    padding: 10px 15px;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
    border-left-width: 4px;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
    color: var(--default);
    font-weight: 400;
    font-size: 1em;
}
.sk-user-sidenav .sk-side-nav-link.active,
.sk-user-sidenav .sk-side-nav-link:hover {
    background-color: transparent;
    border-left-color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-link svg {
    height: 1.35em;
    margin-right: 1em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link svg {
    fill: var(--default);
}
.sk-side-nav-list .sk-side-nav-text .text {
    display: inline-block;
    border-bottom: 1px solid transparent;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link.active {
    color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link.active svg {
    fill: var(--primary);
}
.sk-side-nav-list .sk-side-nav-link.active .sk-side-nav-text .text {
    border-color: var(--primary);
}
.account-side-link svg {
    fill: var(--default);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.account-side-link:hover svg {
    fill: var(--primary);
}
/*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(35,31,32,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: 25px 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;
}
/*Contact*/
.contact-infos {
    position: relative;
}
.contact-res-info svg {
    fill: rgba(0,0,0,0.5);
    -webkit-fill-available: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.contact-res-info a:hover {
    color: var(--primary);
}
.contact-res-info a:hover svg {
    fill: var(--primary);
}
.contact-map {
    position: relative;
    padding-top: 58%;
    min-height: 165px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.contact-map iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/*Footer*/
footer .list-inline-item:not(:last-child) {
    margin-right: .25rem;
}
footer ul.social a {
    width: 25px;
    height: 25px;
    border-radius: 0;
    line-height: 1;
    font-size: 18px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
footer ul.social a:hover {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: none;
    transform: none;
}
/*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);
}
.installationFeesModal .modal-content {
    width: 433px;
    height: 569px;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
    font-family: Roboto, sans-serif;

}
.installationFeesModal .close svg {
    width: 14px;
}
.installation-fees-modal-header {
    font-size: 18pt;
    font-weight: 500;
    margin-bottom: 28px;
    margin-top: 10px;
}

.installation-fees-modal-line {
    width: 88.68px;
    height: 3px;
    background-color: #66B842;
    margin-bottom: 20px;
}

.installation-fees-modal-subtitle {
    font-size: 16px;
    color: #231F20;
    margin-bottom: 60px;
    max-width: 313.72px;
}

.installation-fees-modal-fees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #231F20;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 24px 10px 11px;
    border: 1px solid #ddd;
    max-width: 351.12px;
}

.fee-price {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: flex-end;
}

.install-fees-info-btn img {
    width: 14px;
}

.cart-summary-product {
    display: contents;
}
.cart-summary-product-name {
    width: 90%;
}
.cart-summary-product-qty {
    padding-left: 5px;
    min-width: 35px;
    text-align: right;
}
.cart-summary-product-qty-name {
    display: flex;
    justify-content: space-between;
}

.cart-summary-product-installation-row {
    display: flex;
    justify-content: space-between;
    padding-top: 2px;
}
/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    /*All*/
    :root {
        --header-height: 80px;
        --fixed-header-height: 55px;
    }
    /*Side Popup*/
    .side-popup-container {
        width: 350px;
    }
    /*Header*/
    .front-header-search .bootstrap-select::after {
        top: 10px;
        bottom: 10px;
    }
    .front-header-search .bootstrap-select .dropdown-toggle {
        padding: 10px;
    }
    .header-menu-category-dropdown .card-columns {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
    .header-menu-category-dropdown .card-columns .card {
        margin-bottom: 50px;
    }
    .megamenu-toggle {
        width: 55px;
        height: 55px;
    }
    .megamenu-toggle .icon {
        width: 35px;
        height: 10px;
    }
    .megamenu-toggle .icon .top {
        top: -10px;
    }
    .megamenu-toggle .icon .bottom {
        top: 14px;
    }
    .megamenu-toggle.open .icon .top {
        top: -14px;
    }
    .megamenu-toggle.open .icon .bottom {
        top: 15px;
    }
    /*Footer*/
    footer ul.social a {
        width: 30px;
        height: 30px;
    }
    footer .list-inline-item:not(:last-child) {
        margin-right: .5rem;
    }
}
/* md */
@media (min-width: 768px) {
    /*All*/
    :root {
        --body-size: 16px;
    }
    /*Pagination*/
    .pagination .page-link,
    .page-item.disabled .page-link {
        min-width: 30px;
        min-height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    /*Carousels*/
    .sk-carousel .slick-arrow,
    .swiper-button-next,
    .swiper-button-prev {
        width: 25px;
        height: 25px;
    }
    .sk-carousel.top-outside-arrow .slick-arrow,
    .swiper.top-outside-arrow .swiper-button-next,
    .swiper.top-outside-arrow .swiper-button-prev {
        top: -75px;
    }
    .sk-carousel.top-outside-arrow .slick-prev,
    .swiper.top-outside-arrow .swiper-button-prev {
        right: 35px;
    }
    /*Homepage Slider*/
    .homepage-slider-image {
        padding-top: 32%;
    }
    /*Homepage Footer Banner*/
    .home-footer-banner-image {
        padding-top: 42%;
    }
    /*Publish*/
    .product-publish-spec-toggle .toggle {
        width: 30px;
        height: 30px;
        top: 0.4em;
    }
    .product-publish-spec-item:not(:last-child) {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .product-publish-spec-item p:not(:last-child) {
        margin-bottom: 10px;
    }
    /*Account*/
    .sk-side-nav-list .sk-side-nav-link {
        padding: 15px 25px;
    }
    .sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
        border-left-width: 8px;
    }
}
/* lg */
@media (min-width: 992px) {
    /*Header*/
    .top-navbar {
        background-color: rgba(35,31,32,0.1);
    }
    /*Results*/
    .products-res-wrap::before {
        content: "";
        -webkit-box-shadow: 2px 3px 22px 0px rgba(0,0,0,0.15);
        -moz-box-shadow: 2px 3px 22px 0px rgba(0,0,0,0.15);
        box-shadow: 2px 3px 22px 0px rgba(0,0,0,0.15);
        position: absolute;
        top: -15px;
        bottom: -15px;
        right: -15px;
        left: -15px;
    }
    .products-res-link {
        top: -15px;
        bottom: -15px;
        right: -15px;
        left: -15px;
    }
    /*Contact*/
    .contact-infos::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: -53px;
        border-right: 5px solid var(--primary);
    }
}
/* xl */
@media (min-width: 1200px) {
    /*All*/
    :root {
        --body-size: 18px;
    }
    /*Header*/
    .header-menu-category-dropdown .card-columns {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
    /*Account*/
    .sk-user-sidenav-wrap {
        -ms-flex: 0 0 350px;
        flex: 0 0 350px;
        max-width: 350px;
    }
    .sk-user-panel {
        padding-left: 40px;
    }
}
/* xxl */
@media (min-width: 1500px) {
    /*About us*/
    .history-box {
        margin-right: -70px;
    }
    /*Contact*/
    .contact-infos::after {
        right: -93px;
    }
}
/* xxxl */
@media (min-width: 1750px) {
    /*Header*/
    .header-languages {
        position: absolute;
        right: 15px;
    }
}
/*Responsive - Desktop First*/
/* xl */
@media (max-width: 1499.98px) {

}
/* lg */
@media (max-width: 1199.98px) {
    /*Results*/
    .filter-groups-toggle {
        border-bottom: 2px solid rgba(35,31,32,0.1);
        position: relative;
        padding-bottom: 2px;
        padding-right: 30px;
        cursor: pointer;
    }
    .filter-groups-toggle::after {
        content: "";
        position: absolute;
        border-bottom: 2px solid;
        border-right: 2px solid;
        width: 0.4em;
        height: 0.4em;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .filter-groups-toggle:not(.active) + .results-filter-groups,
    .results-filter-group-title:not(.active) + .results-filter-group-options {
        display: none;
    }
    .results-filter-group-title {
        position: relative;
        padding-right: 30px;
        cursor: pointer;
    }
    .results-filter-group-title::after {
        content: "+";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1em;
        line-height: 1;
    }
    .results-filter-group-title.active::after {
        content: "-";
    }
}
/* md */
@media (max-width: 991.98px) {
    /*Header*/
    header {
        position: relative;
    }
    .front-header-search {
        border: 1px solid rgba(0,0,0,0.25);
    }
    .header-link .text {
        display: none;
    }
    .fixed-header {
        background-color: var(--white) !important;
    }
    .fixed-header-publish {
        background-color: rgba(0,0,0,0.1) !important;
    }
    html.menu-opened,
    body.menu-opened {
        overflow: hidden;
    }
    body.menu-opened .menu-backdrop {
        opacity: 1;
        pointer-events: all;
    }
}
/* sm */
@media (max-width: 767.98px) {
    /*Orders*/
    .order-res-item .btn-xs.btn-icon {
        padding: 0.1rem;
        width: calc(1.2rem + 2px);
        height: calc(1.2rem + 2px);
    }
}
/* xs */
@media (max-width: 575.98px) {
    /*Checkout*/
    .checkout-step-box:not(.active) .checkout-step-text {
        display: none;
    }
}

.border-back-50{
    border-color: rgba(0, 0, 0, 0.50)!important;
}

.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 {
    position: relative;
}
.low-out-stock-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
}

.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%);
}

.cart-res-image-label {
    font-size: 14px;
}

.products-res-price-delete.custom-delete::after {
    transform: rotate(8deg);
}

.shop-installation-box{
    border-top-left-radius: 20px;
}

.selected-installation-box{
    border: 2px solid var(--primary)!important;
    background-color: rgba(102, 188, 66, 0.1) !important;
}

.border-black-07{
    border: 2px solid transparent;
}

input[type="radio"].installation-by-shop {
    /*accent-color: var(--success)!important;*/
    /*border: 0.15em solid var(--success)!important;*/
    /*border-bottom-color: none!important;*/
    /*color: var(--success)!important;*/
    /*!*border: non;*!*/
    /*!*background-color: #fff;*!*/
    /*!*cursor: default;*!*/
    /*!*appearance: auto;*!*/
    /*!*box-sizing: border-box;*!*/
    /*!*margin: 3px 3px 0px 5px;*!*/
    /*!*padding: initial;*!*/
    /*!*border: 0.5em solid transparent;*!*/


    /*!*!* For a circular appearance we need a border-radius. *!*!*/
    /*!*border-radius: 50%;*!*/

    /*!*!* The background will be the radio dot's color. *!*!*/
    /*!*background: blue;*!*/

    /*!*!* The border will be the spacing between the dot and the outer circle *!*!*/
    /*!*border: none!important;*!*/

    /*!* And by creating a box-shadow with no offset and no blur, we have an outer circle *!*/
    /*!*box-shadow: 0 0 0 1px #FF5722;*!*/
}


input[type="radio"].installation-by-shop:checked {
    background: red;
}

.shop-installation-box input[type="radio"]{
    appearance: none!important;
    position: absolute;
    opacity: 0!important;
}

.shop-installation-box .radio-tuggle{

    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid transparent;

}

.shop-installation-box .radio-tuggle-2{

    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.07);
    border: 3px solid transparent;

}

.shop-installation-box input[type="radio"]:checked+.radio-tuggle,
.shop-installation-box input[type="radio"]:checked+.radio-tuggle-2{

    background-color: white!important;
    border: 4px solid var(--success);

}

.border-radious-20px{
    border-radius: 20px!important;
}

.border-shadow{
    -webkit-box-shadow: 1px 1px 5px 0.5px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 5px 0.5px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 5px 0.5px rgba(0,0,0,0.3);
}

.h-13px{
    height: 13px;
}

.submit_order_shipping_info,
.submit_order_shipping_products {
    width: 49%; /* Take approximately half the width */
}

.submit_order_separator {
    width: 5px;
    background-color: rgba(107, 107, 107, 0.1);
    height: auto;
    margin: 0 10px;
}

.submit_order_flex_container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* Responsive styling for smaller screens */
@media (max-width: 769px) {
    .submit_order_shipping_info,
    .submit_order_shipping_products {
        width: 100%; /* Make each section take full width */
    }

    .submit_order_separator {
        display: none; /* Hide the separator */
    }

    .submit_order_flex_container {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align items to the start */
    }
}
