
/* FORM INPUT CONTROLS */
    select, select:focus, input {
        position: relative;
        -webkit-appearance: none;
        appearance: none;
        outline: none;
        border: solid 0.1rem var(--colorFont);
        border-radius: 0;
        padding: 0 0.5rem;
        font-weight: normal;
        color: var(--colorFont);
        line-height: 2.2rem;
        background: transparent;
        outline: none;
        cursor: pointer;
        z-index: 1;
    }
    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px var(--colorBackground) inset;
    }
    select, select:focus {
        border: none;
    }
    .infoCtr select {
        border: 0.1rem solid var(--colorFade);
    }
    
/* SELECT ARROWS */
    .selectArrow {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5rem;
    }
    .selectArrow::after {
        position: absolute;
        right: 1rem;
        font-size: 0.6rem;
        content: "▼";
        z-index: 0;
    }
/* SCROLL ARROWS - APPEAR AFTER 768PX */
    .scrollArrows {
        display: none;
    }
    
/* BREADCRUMBS */
    .breadcrumbCtr {
        min-height: var(--lineHeight);
        justify-content: center;
    }
    .breadcrumbCtr > div {
        min-height: 0.5rem;
        width: 0.5rem;
        margin: 0 1.5rem;
        border-radius: 50%;
        background-color: var(--colorFade);
        cursor: pointer;
    }
    .breadcrumbCtr > div:hover {
        background-color: var(--colorFade);
    }
    .breadcrumbCtr > div.active {
        background-color: var(--colorFont);
    }
    
/* BUTTONS */
    button {
        border: 0;
        background-color: #ffffff00;
        height: var(--lineHeight);
        text-align: center;
        cursor: pointer;
    }
    .submit, .addToCart {
        height: 2.5rem;
        width: 100%;
        border: 0;
        color: var(--colorBackground);
        background-color: var(--colorFont);
    }
    .submit:hover, .addToCart:hover {
        background-color: var(--colorFade);
    }
    #applyBtn {
        width: 6rem;
        height: 2.5rem;
        border: 0.1rem solid var(--colorFont);
    }
    .favouriteBtn {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 3rem;
        border: 0;
        padding: 0.5rem;
        z-index: 1;
    }
    .favouriteBtn > img {
        height: 100%;
    }
    #rateBtn {
        height: 1.5rem;
        width: 1.5rem;
    }
    .cartItemRemoveBtn {
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        height: 12px;
        width: 12px;
    }
    
/* PAGEBAR */
    .pagebar {
        display: flex;
        width: 100%;
        padding: 0 var(--gutter);
        flex-direction: row;
        justify-content: space-between;
        }
    .pagebarPrev, .pagebarNext {
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        background-color: var(--colorBackground);
        line-height: 2rem;
        width: 70px;
        text-align: center;
    }
    
@media only screen and (min-width: 768px) {  /* MIGHT NOT NEED THIS MEDIA QUERY */

/* SCROLL ARROWS */
    .scrollArrows {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 100%;
        pointer-events: none;
        z-index: 1;
    }
    .scrollArrows button{
        position: relative;
        font-size: 2rem;
        width: 2rem;
        color: var(--colorFont);
        background: var(--colorBackground);
        pointer-events: all;
    }
    #productArrowLt, #similarArrowLt{
        left: -2rem;
    }
    #productArrowRt, #similarArrowRt{
        right: -2rem;
    }
    
    
    
}