:root {
    /*Main Colours*/
    --green-color-600: #294235;
    --blue-color-900: #2f3234;
    --yellow-color-200: #DC9E34;
    --white-color-100: #F9F9F9;
    --white-color-200: #F5F5F5;
    --grey-color-100: #F7FCF8;
    --grey-color-200: #F9F9F9;
    --grey-color-300: #9C9C9C;
    --grey-color-400: #D0D0D0;
    --grey-color-500: #D9D9D9;
    --grey-color-700: #858585;
    --black-color-200: #252424;
    --red-color: #F53838;

    /*Fonts*/
    --primaryFont: "Outfit", sans-serif;
}

body {
    font-family:var(--primaryFont);
    overflow-x:hidden;
}

.primaryFont {
    font-family: var(--primaryFont);
}


.outfit-font {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;
}

.font-thin {
    font-weight: 100;
    font-style: normal;
}

.font-extralight {
    font-weight: 200;
    font-style: normal;
}

.font-light {
    font-weight: 300;
    font-style: normal;
}

.font-regular {
    font-weight: 400;
    font-style: normal;
}

.font-medium {
    font-weight: 500;
    font-style: normal;
}

.font-semibold {
    font-weight: 600;
    font-style: normal;
}

.font-bold {
    font-weight: 700;
    font-style: normal;
}

.font-extrabold {
    font-weight: 800;
    font-style: normal;
}

.font-black {
    font-weight: 900;
    font-style: normal;
}


.fontSize09rem {
    font-size: 0.9rem;
}

.fontSize1rem {
    font-size:1rem;
}

.fontSize12rem {
    font-size: 1.2rem;
}

.fontSize15rem {
    font-size: 1.5rem;
}

.fontSize18rem {
    font-size: 1.8rem;
}

.fontSize2rem {
    font-size: 2rem;
}

.fontSize3rem {
    font-size: 2rem;
}


.colorGreen600 {
    color: var( --green-color-600);
}

.colorBlue900 {
    color: var( --blue-color-900);
}

.colorGrey300 {
    color:var(--grey-color-300);
}


.colorGrey700 {
    color: var(--grey-color-700);
}

.colorBlack200 {
    color: var(--black-color-200);
}

.color--red {
    color: var(--red-color);
}

.background-colorYellow200 {
    background-color: var( --yellow-color-200);
}

.background-colorGreen600 {
    background-color: var(--green-color-600)
}


.background-colorBlue900 {
    background-color: var(--blue-color-900)
}

.background-colorGrey500 
{
    background-color: var(--grey-color-500);
}

.background-colorGrey200 {
    background-color: var( --grey-color-200);
}

.borderRadius2px {
    border-radius:2px;
}


.form-control:focus {
    border-color: var(--green-color-600) !important;
    box-shadow: 0 0 0 .25rem rgba(0, 124, 176, .25) !important;

}

.cursorPointer {
    cursor:pointer; 
}



.minHeight70vh {
    min-height:70vh;
}


.minWidth180px {
    min-width: 180px;
}

.maxWidth250px {
    max-width:250px;
}

.mainContainerPadding {
    padding: 2rem;
}
.noMarginHomeBanner {
    margin: -2rem;
}


.mainContainer {
    max-width: 1400px;
    margin-right:auto;
    margin-left:auto;
}

#elasticSearchListPartial a{
    color:inherit;
}

.pLengthClamp2 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.buttonTemplate {
    background-color: var(--green-color-600);
    outline: none;
    border: none;
    color: white;
    min-height: 40px;
    min-width: 200px;
    border-radius: 2px;
    font-family: var(--primaryFont);
    text-align: center;
}

body {
    background-color:var(--white-color-100);
}

header {
    background-color:white;
}

.form-select:focus {
    border-color: var(--green-color-600) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 124, 176, .25) !important;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: initial !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.dropdown-menu {
    min-width: 200px;
}

.searchIconContainer {
    max-width: 500px;
    position:relative;
}

#searchIcon {
    position: absolute;
    top: 13px;
    right: 23px;
    z-index: 9999;
}

#q {
   
    max-height: 45px;
    padding: 10px 20px;
    border-radius: 100px;
    outline: none;
    border: solid var(--grey-color-400) 1px;
    position: relative;
    z-index: 15;
}

#q::placeholder {
    color:var(--grey-color-300);
    font-size:1em;
}

#resultsPartial *::-webkit-scrollbar {
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2) inset;
    border-radius: 10px;
    background-color: var(--green-color-600);
    width: 6px;
    height: 3px;
}

#resultsPartial *::-webkit-scrollbar-track {
    background-color: var(--grey-color-500);
}

#resultsPartial *::-webkit-scrollbar-thumb {
    background-color: var(--green-color-600 );
    border-radius: 50px;
}

#extendedNavigationContainer a:hover {
    text-decoration: underline;
    font-weight: 500;
}


#desktopMenuAppliances {
    z-index: 900;
    max-height: 0;
    opacity: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden; /* Ensure content doesn't show when height is 0 */
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out; /* Smooth transition */
    color: var(--black-color-200);
    pointer-events: none; /* Disable interactions */
    visibility: hidden; /* Make it hidden */
}

#desktopMenuAppliances.active {
    max-height: 6000px; /* A value that is high enough to contain the full height */
    opacity: 1;
    pointer-events: auto; 
    visibility: visible;
}

#desktopMenuAppliances a {
    text-decoration:none;
    color:inherit;
}

#nextDateAvailble {
    height: 30px;
    width: 100%;
    background-color: var(--yellow-color-200);
    color: white;
}

#desktopMenuHomeOutdoor {
    z-index: 900;
    max-height: 0;
    opacity: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden; /* Ensure content doesn't show when height is 0 */
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out; /* Smooth transition */
    color: var(--black-color-200);
    pointer-events: none; /* Disable interactions */
    visibility: hidden; /* Make it hidden */
}

#desktopMenuHomeOutdoor.active {
    max-height: 6000px; /* A value that is high enough to contain the full height */
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

#desktopMenuHomeOutdoor a {
    text-decoration: none;
    color: inherit;
}

.navigationMobile {
    display: none;
}

.navigationMobile img {
    max-width: 150px;
    width: 100%;
}


#resultsPartial ul {
    max-width: 600px;
    max-height: 50svh;
    overflow-x: hidden;
    overflow-y: auto
}


.resultsMobilePartial ul {
    overflow-x: hidden;
    overflow-y: auto
}

.navigationDesktop {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1em 2em;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left:15px;
    padding-right:15px;
}

.navigationDesktop img {
    width: 135px;
    height:auto;
}

.logoImage {
    max-width: 130px;
    width: 100%;
}

.navigationSearchContainer {
    grid-column: span 5;
}

.navigationButtonsContainer {
    grid-column: span 2;
    display: flex;
    justify-content:end;
}

.mobileMenuNavigationDrawer {
    background-color: #f7f7f7;
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    transition: left 0.4s;
    overflow: scroll;
}

.categoryLinkMobile {
    border-bottom: solid #e9e9e9 2px;
    padding-bottom: 10px;
}

.mobileSearchContainer {
    display: none;
}

.mobileSearchContainer i {
    right:30px;
}

.mobileSearch {
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px;
    position: relative;
}


.mobileSearch::placeholder {
    color: var(--grey-color-300);
}

.navigationDrawerActive {
    left: 0;
}

.navigationDrawerClose {
    left: -130%;
}

.mobileMenuNavigationDrawer ul li {
    padding:25px  0px; 
}

.mobileMenuNavigationDrawer img {
    max-width:120px;
}

.mobileShopDrawer {
    background-color: #f7f7f7;
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    transition: left 0.4s;
    overflow: scroll;
}

.mobileShopDrawerClose {
    left: -130%;
}

.mobileShopDrawerActive {
    left: 0;
}

#categoriesList li {
    padding-right: 4rem;
    font-family: var(--primaryFont);
    font-weight: 500;
    font-style: normal;
    color: var(--blue-color-900);
}

#categoriesList li a:hover {
    border-bottom: solid var(--green-color-600) 2px;

}

#resultsPartial {
    z-index: 15;
    width: 100%;
    max-width: 500px;
    position: absolute;
    background-color: white;
    margin-top: 10px;
    border-radius: 4px;
}

#blackout {
    background-color: #213038;
    opacity: .75;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 3;
}

#loadingScreen {
    width: 100%;
    height: 100vh;
    background-color: #f6ffff;
    position: relative;
    display:none;
}

.loadScreenContainer {
    width: 200px;
    height: 200px;
    position: absolute;
    transform: translate(-50%, -50%);
    margin: auto;
    filter: url(#goo);
    animation: rotate-move 2s ease-in-out infinite;
    top: 50%;
    left: 50%;
}

.dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.dot-3 {
    background-color: var(--green-color-600);
    animation: dot-3-move 2s ease infinite, index 6s ease infinite;
}

.dot-2 {
    background-color: #35b4e9;
    animation: dot-2-move 2s ease infinite, index 6s -4s ease infinite;
}

.dot-1 {
    background-color: #66c3df;
    animation: dot-1-move 2s ease infinite, index 6s -2s ease infinite;
}



/* Validation Messages*/

/* Step 1: Common Duotone positioning properties: All required to make icons render reliably */
.icon-duotone {
    position: relative;
    padding-left: 1.25em; /* make space for the width of the absolutely positioned icon */
}

/* Step 2: Set the font styles for Duotone */
.icon-duotone::before,
.icon-duotone::after {
    font: var(--fa-font-duotone);
    /* include the basic Font Awesome font style settings if you haven't already */
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    /* position both layers of the icon to the left, set our fixed-width width, horizontally center layers, and then vertically align them so they flex with different line heights */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25em;
    text-align: center;
    box-sizing: inherit;
}

/* Step 3: Set the default opacity levels and colors for each layer */
.icon-duotone::before {
    color: var(--fa-primary-color, inherit);
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1.0);
}

.icon-duotone::after {
    color: var(--fa-secondary-color, inherit);
    opacity: var(--fa-secondary-opacity, 0.4);
}

.field-validation-error {
    padding-left: 2rem;
    display: inline-block;
}

.field-validation-error::before {
    font: var(--fa-font-duotone);
    content: '\f057';
    font-size: 1.3rem;
}

.field-validation-error::after {
    font: var(--fa-font-duotone);
    content: '\f057\f057';
    font-size: 1.3rem;
}

.field-validation-valid-custom {
    padding-left: 2rem;
    display: inline-block;
}

.field-validation-valid-custom::before {
    font: var(--fa-font-duotone);
    content: '\f058';
    font-size: 1.3rem;
}

.field-validation-valid-custom::after {
    font: var(--fa-font-duotone);
    content: '\f058\f058';
    font-size: 1.3rem;
}


/* Recent Product */

.recentSwipper .productDetails {
    background-color: white;
    padding: 25px 20px;
}

.recentSwipper .productDetails img {
    max-width: 200px;
    display: flex;
    margin: auto;
}

.recentSwipper .productDetails .textContainer {
    height: 120px;
}

.recentSwipper .textContainer p {
    height: 60px;
}

.recentSwipper .swiper-slide {
    padding-right: 15px;
}

.recentSwipper .productDetails a div {
    height: 45px;
    line-height: 45px;
    background-color: var(--green-color-600);
    text-align: center;
    color: white;
}

.recentSwipper .swiper-button-next, .recentSwipper .swiper-button-prev {
    color: black;
}

@media(max-width:995px) {
    .navigationDesktop {
        display:none;

    }

    .navigationMobile {
        display: flex;
        justify-content: space-between;
        padding: 1.2rem 2.1rem;
    }

    .mobileSearchContainer {
        display: flex;
    }

    .mainContainerPadding {
        padding: 1.5rem;
    }
    .noPaddingHomeBanner {
        margin: -1.5rem;
    }

}

@media(max-width:500px) {
    .mainContainerPadding {
        padding:1rem;
    }

    .noPaddingHomeBanner {
        margin: -1rem;
    }


    .navigationMobile {
        padding: 1.2rem 1rem;
    }

    .navigationMobile img {
        max-width:100px;
    }
}


/*Scrollbar*/
@supports (-moz-appearance:none) {

    * {
        scrollbar-base-color: var(--bg-primary);
        scrollbar-width: thin;
        scrollbar-color: var(--scroll-thumb) var(--scroll-bg);
    }
}



@keyframes dot-3-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translateY(-18px) scale(.45)
    }

    60% {
        transform: translateY(-90px) scale(.45)
    }

    80% {
        transform: translateY(-90px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes dot-2-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translate(-16px, 12px) scale(.45)
    }

    60% {
        transform: translate(-80px, 60px) scale(.45)
    }

    80% {
        transform: translate(-80px, 60px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes dot-1-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translate(16px, 12px) scale(.45)
    }

    60% {
        transform: translate(80px, 60px) scale(.45)
    }

    80% {
        transform: translate(80px, 60px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes rotate-move {
    55% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    80% {
        transform: translate(-50%, -50%) rotate(360deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes index {
    0%, 100% {
        z-index: 3
    }

    33.3% {
        z-index: 2
    }

    66.6% {
        z-index: 1
    }
}