:root {
    --primary-dark: #000;
    --primary-grey: #888888;
    --secondary-grey: #F3F4F6;
    --tertiary-grey: #ddd;

    --primary-yellow: #EFA94A;
    --secondary-yellow: #F5C579;
    --darker-yellow: #BF873B;
    --primary-blue: #51A6BD;
    --secondary-blue: #39B2C7;

    --URL-blue: #3480E0;

    --accent-font: 'Open Sans', sans-serif;
}

body {
    overflow-x: hidden;
}

h1 {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 38px;
    font-family: var(--accent-font);
    margin: 0;
    text-wrap: nowrap;
}

h2 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 38px;
    font-family: var(--accent-font);
    margin: 0;
    text-wrap: nowrap;
}

h3 {
    color: var(--primary-dark);
    font-size: 19px;
    font-weight: 600;
    line-height: 20px;
    margin:0;
    font-family: var(--accent-font);
}

h4 {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    margin:0;
    font-family: var(--accent-font);
}

h5 {
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    margin:0;
    font-family: var(--accent-font);
}

span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--accent-font);
    margin: 0;
}

p {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--accent-font);
    margin: 0;
}

b {
    font-weight: 600;
}

.spanbutton:hover {
    cursor: pointer;
    color: var(--primary-yellow);
}

.spanbuttonblue:hover {
    cursor: pointer;
    color: var(--primary-blue);
    text-decoration: underline;
}

.yellow {
    color: var(--primary-yellow);
}

.blue {
    color: var(--primary-blue);
}

@media (max-width: 767px) {
    h1 {
        font-size: 11px;
    }

    .topnavItem:nth-child(2) {
        display: flex;
    }

    .topnavItem:nth-child(3) {
        display: flex;
    }
}

@media (max-width: 724px) {
    .topnavItem:nth-child(3) {
        display: none;
    }
}

@media (max-width: 597px) {
    .topnavItem:nth-child(2) {
        display: none;
    }
}

@media (max-width: 992px) {
    .topnavItem:nth-child(3) {
        display: none;
    }


}

body {
    margin: 0;
}

#topnav {
    background-color: var(--secondary-grey);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--tertiary-grey);
}

#topnavItems {
    display: flex;
    place-content: center;
}

.topnavItem {
    padding-right: 15px;
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.uspItem {
    padding-right: 5px;
    font-size: 16px;
    color: var(--primary-yellow);
}

#kpHeader {
    box-shadow: 0 5px 5px -5px rgba(0,0,0,0.4);
    text-align: center;
    text-align: -webkit-center;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 999;
}

#logo {
    width: 210px;
    padding: 23px;
    padding-right: 45px;
    padding-top: 18px;
    padding-bottom: 18px;
}

@media (max-width: 767px) {
    #kpHeader {
        display: block;
    }

    #logo {
        padding-right: 0px;
        padding-left: 0px;
        width: 150px;
    }
}

.inputField {
    padding: 12px;
    border-radius: 7px;
    width: 650px;
    box-shadow: inset 0 0 0px 1px var(--tertiary-grey);
    color: var(--primary-grey);
    font-style: italic;
    font-size: 14px;
    font-family: var(--accent-font);
    border:none;
    max-width: 90%;
}

.inputFieldPopup {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: 4px 10px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: 1px solid #dedede;
    border-radius: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    box-shadow: 2px 2px 4px rgba(0,0,0,.12);
    box-sizing: border-box;
    font-size: 1.2em;
    height: 44px;
    margin: 0;
    max-width: 420px;
    padding: 0 8px;
    width: 100%;
    font-style: italic;
    font-size: 20px;
    font-family: var(--accent-font);
    font-weight: 300;
}

#searchButtonPopup {
    align-items: center;
    box-shadow: 2px 2px 4px rgba(0,0,0,.12);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    font-size: 1em;
    height: 44px;
    justify-content: center;
    margin-top: 0;
    padding: 0 16px;
    transition: background-color .3s ease-in-out,border-color .3s ease-in-out;
    background-color: #3d8fff;
    color: #fefefe;
    border-color: #3d8fff;
    border-style: solid;
}

.inputField:focus {
    box-shadow: inset 0 0 0px 2px var(--tertiary-grey);
    outline: none;
}

#searchButton {
    background-color: #00000000;
    border: none;
    font-size: 17px;
    margin-left: -40px;
    cursor: pointer;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

#cartAmount{
    height: 22px;
    width: 22px;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    color: white;
    border-radius: 100%;
    align-items: center;
    transform: translate(13px, -35px);
    font-family: var(--accent-font);
    font-size: 12px;
}

.spanBold {
    font-weight: bold;
    font-size: 15px;
}

#cartHolder{
    display: flex;
    align-items: center;
    column-gap: 15px;

    background-color: var(--secondary-grey);
    box-shadow: inset 0 0 0px 1px var(--tertiary-grey);
    height: 43px;
    width: 17%;
    border-radius: 7px;
    padding-left: 15px;
}

#cartHolder:hover{
    cursor: pointer;
    background-color: var(--tertiary-grey);
}

#categoriesListHeader{
    background-color: var(--secondary-grey);
    padding: 15px;
    padding-top:10px;
    padding-bottom:10px;
    border-bottom: 1px solid var(--tertiary-grey);
}

#categoriesList {
    max-width: 250px;
    min-width: 250px;
    border: 1px solid var(--tertiary-grey);
    max-height: 423px;
    transform: translateX(-5px);
}

@media (min-width: 9999px) {
    #categoriesList {
        display: none;
    }
}
@media (max-width: 1200px) {
    #categoriesList {
        display: none;
    }
}

#supportList {
    border: 1px solid var(--tertiary-grey);
    padding: 10px;
    transform: translateX(5px);
}

@media (max-width: 9999px) {
    #supportList {
        width: 240px;
        min-width: 240px;
        max-height: 404px;
    }
}
@media (max-width: 992px) {
    #supportList {
        width: 25%;
        min-width: 25%;
        height: 330px;
    }
}
@media (max-width: 762px) {
    #supportList {
        width: 95%;
        min-width: 95%;
        height: 230px;
        text-align: center;
        text-align: -webkit-center;
        transform: translateX(0px);
    }

    .reviewText{
        max-width: 95% !important;
    }
}

#supportIcons{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20%;
}

#categoriesListcategories {
    padding: 15px;
}

#categoriesListcategoriesMobile {
    display: none;
}
@media (max-width: 1200px) {
    #categoriesListcategoriesMobile {
        display: block;
    }
}

.pageContents {
    max-width: 85%;
    margin: 0 auto;
    margin-top:10px;
}

.pageContentsProductPage {
    width: 60%;
    margin: 0 auto;
    margin-top:10px;
    max-width: 1200px;
    min-width: 1200px;
}

@media (max-width: 762px) {
    .pageContentsProductPage {
        max-width: 95%;
        width: 95%;
    }
}

@media (min-width: 9999px) {
    .pageContents {
        max-width: 85%;
    }
}
@media (max-width: 992px) {
    .pageContents {
        max-width: 75%;
    }
}
@media (max-width: 762px) {
    .pageContents {
        max-width: 95%;
    }
}

.homeTopSection {
    display: flex;
    place-content: center;
}

@media (max-width: 762px) {
    .homeTopSection {
        display: block;
    }
}

#productPageProductInformation {
    display:flex;
}

@media (max-width: 762px) {
    #productPageProductInformation {
        display: block;
    }
}

.iconHolder{
    display: flex;
    column-gap: 10px;
    font-size: 24px;
    align-items: center;
    padding-top:10px;
    margin-bottom: 5px;
}

.reviewText{
    display: -webkit-box;
    max-width: 219px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    margin-bottom: 10px;
}

.productContainers{
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 99999px) {
    .productContainers {
        max-width: 99999px;
    }
}
@media (max-width: 1200px) {
    .productContainers {
        max-width: 1000px;
    }
}
@media (max-width: 992px) {
    .productContainers {
        max-width: 750px;
    }
}

.productItemContainer{
    max-width: 210px;
    padding: 30px 20px 50px 20px;
    margin-top: 20px;
}

.productItemContainer:hover{
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,.15), inset 0 0 0px 1px var(--tertiary-grey);
    z-index: 99;
}

@media (max-width: 762px) {
    .productItemContainer {
        max-width: 150px;
    }
}

.productRow{
    width: 1250px;
    margin: 0 auto;
    margin-top: 30px;
}

@media (max-width: 762px) {
    .productRow {
        width: 100%;
    }
}

.adBanner {
    min-width: 690px;
    width: 690px;
    max-width: 690px;
}

@media (max-width: 992px) {
    .adBanner {
        min-width: 570px;
        width: 570px;
        max-width: 570px;
    }
}
@media (max-width: 762px) {
    .adBanner {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }
}

.saleText{
    padding: 4px 14px 4px 14px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    background-color: var(--secondary-yellow);
}

.saleTag{
    transform: translate(10px, -20px);
}

.specTextBtn{
    padding: 6px 16px 6px 16px;
    border-radius: 0px 5px 5px 0px;
    font-weight: 500;
    font-size: 15px;
    color: white;
    background-color: var(--primary-yellow);
}

.specTextBtn:hover {
    background-color: var(--darker-yellow);
    cursor: pointer;
}

.specTag{
    transform: translate(10px, -20px);
}

#categoriesListRow {
    display: flex;
    border: none;
    column-gap: 20px;
    text-align: center;
}

.categoryItemContainer {
    box-shadow: inset 0 0 0px 1px var(--tertiary-grey);
    padding: 10px;
    width: 25%;
    max-height: 226px;
}

.blueWideButton {
    padding: 8px 12px 8px 12px;
    border-radius: 7px;
    border: none;
    background-color: var(--secondary-blue);
    color: white;
    font-family: var(--accent-font);
    font-size: 16px;
    width: 95%;
}

.blueWideButton:hover {
    cursor: pointer;
    background-color: #2C8E9F;
}

#categoryRowName {
    width:90%;
    display:inherit;
    color:white;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--accent-font);
}

#quantityInputField {
    width: 40px;
    height: 40px;
    float: left;
    padding: 4px 6px;
    text-align: center;
    margin-bottom: 0px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    box-shadow: inset 0 0 0px 1.3px var(--tertiary-grey);

    font-family: var(--accent-font);
    font-size: 14px;
    font-style: italic;
}

.caretInputQuantity{
    height: 20px;
    width: 20px;
    box-shadow: inset 0 0 0px 1.3px var(--tertiary-grey);
    text-align: center;
    padding: 2px;
    color: var(--primary-grey);
}

.addToCartButton{
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    width: 400px;
    background: #38b2c7;
    color: #fff;
    border: none;
    border-radius: 5px;
    height: 50px;
    margin-left: 15px;
}

.addToCartButton:hover {
    cursor: pointer;
    background-color: #2C8E9F;
}

.kiyohReviewWidget {
    width:85%;
    border:none;
    max-width:200px;
}

@media (max-width: 762px) {
    .kiyohReviewWidget {
        min-width: 60%;
    }
}

#frontpageCategoriesListContainer {
    display: block;
}

.strikethroughPrice {
    max-width:90%;
    font-weight: 400;
    font-size: 18px;
    text-decoration:line-through;
    color:#666;
}

.regularPrice {
    max-width:90%;
    font-weight: 600;
    font-size: 24px;
}

.productDescription h1 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--accent-font);
    text-transform: math-auto;
}

.productDescription p{
    font-size: 16px;
    margin-bottom: 20px;
}

.productDescription li {
    list-style-type: disc;
    font-size: 16px;
    font-family: var(--accent-font);
}

.iconButton {
    font-size: 30px;
    color: var(--primary-yellow);
    cursor: pointer;
}

#shareButtonsHomePage {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.smallTitle {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--accent-font);
    text-transform: math-auto;
}

.smallText14 {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--accent-font);
}

#SmallIndividualProductsSpawner {
    padding-right: 40px;
    margin-top: 15px;
}

.smallItalicGreyButton {
    font-size:14px;
    color: var(--primary-grey);
    font-style:italic;
}
.smallItalicGreyButton:hover {
    cursor: pointer;
    text-decoration: underline;
}

.productSpecificationListItem {
    width: 50%;
    transform: translateY(25%);
    margin-left: 10px;
}

.productSpecificationListContainer {
    display:flex;
    background-color: var(--secondary-grey);
    max-width:80%;
}

.closeableItemList {
    display: flex;
}

.white-bg {
    background-color: white !important;
}

.wideBlueButtonSpecs {
    margin: 0px;
    border: 3px solid var(--primary-blue);
    color: #fff;
    padding: 10px 30px;
    background: #38b2c7;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

#faqItem {
    background-color: #f27920;
    padding: 10px;
    color: white;
    margin-right: 10px;
}

.faqList span {
    font-size: 15px;
}

.faqList {
    margin-top:20px;
    max-width: 95%;
}

#faqButton {
    display:flex;
    align-items:center;
    cursor:pointer;
    margin-bottom: -10px;
}

.popupBg {
    box-shadow: 0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    position: absolute;
    background-color: white;
    width: 90%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1200px;

    overflow-y: scroll;
}

.popupBg::-webkit-scrollbar { 
    display: none;
}

#popupSection {
    display: none;
}

#searchBarPopupContainer {
    display: flex;
    place-content: center;
}

#exitBtn {
    border: none;
    background-color: #0000;
    padding: 0;
    margin: 0;
    font-size: 20px;
    transform: translate(-10px, -20px);
    color: var(--primary-grey);
}

.searchResult {
    box-shadow: -1px 1px 6px rgba(0,0,0,.12);
    margin: 4px 0 24px;
    padding: 20px;
    width: 15%;
    display:grid;
}

#searchResultsSpawner {
    padding: 36px;
    column-gap: 20px;
    flex-wrap: wrap;
}

#SliderImageTwo {
    margin-right: -690px;
}

#SliderImageOneImage {
    max-width: 100%
}

#SliderImageTwoImage {
    max-width: 100%
}

#slideshowImages {
    clip-path: inset(0px 0px 0px 0px);
}

#cartHolder {
    order: 2;
}

#topHeaderContainerLogoCart {
    display: contents;
}

#aboutUsInfo i {
    display: none;
}

#aboutUsInfo {
    padding: 40px 120px 50px 50px;
}

#aboutUsInfo a {
    text-decoration: none;
    color: #0004F6;
}

.faqAnswerSpan p {
    font-size:14px;
}

#contactUsHeader {
    margin-top: 30px;
    background-color: var(--secondary-grey);
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid var(--tertiary-grey);
    padding-left:20px;
    padding-right:0px;
}

#contactUsButton {
    display: inline-block;
    background-color: #F8F8F8;
    color: #333;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #CCC;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    float: right;
    cursor: pointer;
}

.avgButton {
    display: inline-block;
    background-color: #F8F8F8;
    color: #333;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #CCC;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    float: right;
    cursor: pointer;
}

.proceedButton {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #CCC;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    float: right;
    cursor: pointer;
}

#contactUsForm {
    padding: 20px;
    border: 1px solid var(--tertiary-grey);
    border-top: none;
    padding-bottom: 60px;
}

.inputSquare {
    width:100%;
    margin-bottom:10px;
    margin-top:10px;
    border-radius:0px;
    padding:10px;
    color: #333;
}

.visually-hidden-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 762px ) {
    .hideOnMobile {
        display: none;
    }


    #topHeaderContainerLogoCart {
        display: flex;
        width: 90%;
        column-gap: 50%;
    }

    #slideshowImages {
        clip-path: inset(0px -30px 0px 0px);
    }
    
    .searchResult {
        width: 100%
    }

    .searchResult img {
        width: 30%;
    }

    #SliderImageOneImage {
        max-width: 73%;
        height: 95%;
    }

    #SliderImageTwoImage {
        max-width: 73%;
        height: 95%;
    }


    #frontpageCategoriesListContainer {
        display: none;
    }

    h2 {
        font-size: 20px;
    }

    .strikethroughPrice {
        font-size: 10px;
    }

    .regularPrice {
        font-size: 14px;
    }

    #footerSubmenu {
        display: none;
    }

    #footerSubmenuTitle {
        cursor: pointer;
    }

    #kpHeader {
        display:flex;
        flex-direction:column;
    }

    #kpSearch {
        max-width: 100%;
        width: 90%;
        order: 2;
        display: flex;
        align-items: center;
    }

    #cartHolder {
        border: none;
        box-shadow: none;
        background-color: #0000;
        order: 1;
    }
}