/* style.css */

@font-face {
    font-family: 'SF';
    src: url(SanFranciscoText-Regular.otf);
}

html, body {
    font: 15px "SF", sans-serif;
    line-height: 1.8;
    color: #000;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #F4F4F4;
}

.white-back {
    font: 15px "SF", sans-serif;
    line-height: 1.8;
    color: #000;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #FFF;
}

div.outer {
    background-color: #F4F4F4;
    padding-top: 10vh;
    padding-bottom: 10vh;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: -11px;
}

.card {
    background-color: #FFF;
    padding-top: 10vh;
    padding-bottom: 10vh;
    margin-left: 250px;
    margin-right: 250px;
    margin-bottom: -11px;
}

nav {
    color: #F4F4F4 !important;
    font-size: 14px;
    font-weight: 400;
    background-color: #333333 !important;
    height: 5.3vh;
    padding-left: 224px !important;
    opacity: 0.98;
}

.banner {
    padding-top: 5vh;
    margin-bottom: -2vh;
    background-image: url('./images/background.png');
    top: 0;
    height: 100%;
    margin-top: -30px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-position: top;
    position: static;
}

.jumbotron {
    background-color: #FFF;
}

.jumbostore {
    background-color: transparent;
    color: #000;
    padding-left: 0px;
    margin-top: -2vh;
    padding-top: 0vh;
    padding-bottom: 16.2vh;
}

a.link {
    color: black;
}

a.nav {
    color: #F4F4F4 !important;
    letter-spacing: 0.01em;
}

a.nav:hover {
    color: #898989 !important;
    transition: 0.15s;
}

a.nav:active {
    color: #898989 !important;
}

li {
    padding-left: 30px;
    padding-right: 30px;
}

.productImg {
    height: 45vh;
    margin-left: -40px;
}

a.learnMore {
    color: #0070C9 !important;
    font-size: 18px;
}

a.learnMore:hover {
    color: #0070C9 !important;
}

a.learnMore:active {
    color: #0070C9 !important;
}

.sortBtn {
    background-color: Transparent !important;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
    color: #0070C9 !important;
    font-size: 17px;
}

.sortBtn:hover {
    border: none;
    outline: none;
    color: #0070C9 !important;
}

.sortBtn:active {
    border: none;
    outline: none;
    color: #0070C9 !important;
}

.icon {
    font-size: 13px;
    font-weight: lighter;
    padding-left: 10px;
    color: #0070C9;
}

.empty_icon {
    font-size: 13px;
    font-weight: lighter;
    padding-left: 10px;
    color: #BBB;
}

.close {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    width: 12px;
}

footer{
    background-color: #F4F4F4;
    height: 46vh;
}


/* ******************************************************* */


.slideanim {
        visibility: hidden;
    }

    .slide {
        /* The name of the animation */
        animation-name: slide;
        -webkit-animation-name: slide;
        /* The duration of the animation */
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        /* Make the element visible */
        visibility: visible;
    }
    /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */

    @keyframes slide {
        0% {
            opacity: 0;
            transform: translateY(70%);
        }
        100% {
            opacity: 1;
            transform: translateY(0%);
        }
    }

    @-webkit-keyframes slide {
        0% {
            opacity: 0;
            -webkit-transform: translateY(70%);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0%);
        }
    }
