﻿/* Sets the box-shadow for the nav menu. Done with the old gradient style because the nav element doesn't extend the entire width of the window and would have to be reformatted */
.BodyGradient {
    background: #ffffff -webkit-linear-gradient(top, #ffffff 100px, #d9d9d9 101px, #d9d9d9 102px, #ffffff 107px, #ffffff 100%) no-repeat;
    background: #ffffff -moz-linear-gradient(top, #ffffff 100px, #d9d9d9 101px, #d9d9d9 102px, #ffffff 107px, #ffffff 100%) no-repeat;
    background: #ffffff -o-linear-gradient(top, #ffffff 100px, #d9d9d9 101px, #d9d9d9 102px, #ffffff 107px, #ffffff 100%) no-repeat;
    background: #ffffff -ms-linear-gradient(top, #ffffff 100px, #d9d9d9 101px, #d9d9d9 102px, #ffffff 107px, #ffffff 100%) no-repeat;
}

.bodyGradientWithProductBanner {
    background: #ffffff -webkit-linear-gradient(top, #ffffff 142px, #d9d9d9 143px, #d9d9d9 144px, #ffffff 149px, #ffffff 100%) no-repeat;
    background: #ffffff -moz-linear-gradient(top, #ffffff 142px, #d9d9d9 143px, #d9d9d9 144px, #ffffff 149px, #ffffff 100%) no-repeat;
    background: #ffffff -o-linear-gradient(top, #ffffff 142px, #d9d9d9 143px, #d9d9d9 144px, #ffffff 149px, #ffffff 100%) no-repeat;
    background: #ffffff -ms-linear-gradient(top, #ffffff 142px, #d9d9d9 143px, #d9d9d9 144px, #ffffff 149px, #ffffff 100%) no-repeat;
}

/* background illustrations */
#background-container {
    position: absolute;
    width: 100vw;
    height: 75%;
    z-index: -2;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
}

.background-half {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

    .background-half img {
        width: 40%;
    }

#background-half-left {
    justify-content: flex-start;
}

    #background-half-left img {
        margin-left: 10%;
    }

#background-half-right {
    justify-content: flex-end;
}

    #background-half-right img {
        margin-right: 10%;
    }

@media only screen and (max-width: 1200px) {
    #background-container {
        display: none;
    }
}

/* end of background styling*/

.footer {
    border-top: none;
}

@media only screen and (min-width: 992px) {
    /* An absolutely positioned element that is used to make the 980 grid content appear smaller without having to touch all of the nested fixed width items*/
    #box-shadow-dupe {
        width: 710px;
        height: 100%;
        position: absolute;
        left: 12%;
        box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 10%);
        background: white;
        z-index: -1;
    }

    #login-box-content {
        position: relative;
        padding-top: 10px;
        padding-bottom: 60px;
    }

    .container_980px {
        box-shadow: none;
        background: none;
    }

    /* since the tooltip extends outside of the altered content box we need to give it a background */
    .tooltip-list {
        background: white;
    }

    .link-back {
        position: relative;
        left: 15%;
    }

    .login-errors {
        max-width: 710px;
        margin-left: 15%;
        margin-top: 2em;
    }
}