@charset "UTF-8";

/* CSS Document */
@import url("/static/webfonts/SourceSansPro_Regular/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Semibold/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Light/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_bold/stylesheet.css");

html, body {
    height: 100%;
}


body {
    background-color: #FFFFFF !important;
}

main {
    min-height: 70%;
}

.container {
    max-width: 1400px !important;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #162d4f;
    text-decoration: none;
}

a:hover, a:active {
    color: #DDDDDD;
}

/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */
.blue {
    color: #3b57a6 !important;
}

.red {
    color: #b82b2b;
}

h1, h2, h3, h4, h5, h6 {
    color: #3b57a6;
    font-weight: 700;
    line-height: normal;
    font-family: "SourceSansPro Bold", sans-serif;
}

h1 {
    font-size: 2.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 2.2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    color: #8B8C8D;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.largeText {
    font-size: 1.4em;
}

.strike_thru_price p {
    color: #b82b2b !important;
    text-decoration: line-through;
    font-size: .95em;
}

.logo-container {
    max-width: 40%;
}

.logo-size {
    width: 75%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.top-bar {
    max-height: 104px;
    z-index: 4000;
}

#top_page .nav-item .nav-link:hover {
    color: #dddddd !important;
    background-color: #FFFFFF !important;
}

.content-margin-top {
    margin-top: 148px !important;
}

.bg-light {
    background-color: #f1f1f1 !important;
}

.navbar {
    min-height: 45px;
}

.nav-padding {
    padding-left: 1rem;
}

.navbar-toggler {
    margin-top: 15px;
    margin-bottom: 15px;
}

.navbar-nav.navbar-center {
    /*position: relative;*/
    /*left: 10%;*/
    /*transform: translatex(-50%);*/
}

.navbar-nav .nav-item {
    font-size: 1.2em;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: #2f5da0;
    color: #FFFFFF !important;
}

.navbar-nav .nav-link {
}

.bg-dark-green {
    background-color: #2f5da0;
}

.bg-top {
    background-color: rgba(255, 255, 255, 0.9);
}


.mini-basket-w {
    width: 320px;
    font-size: .9em;
}

.basket-qty {
    max-width: 60px;
}

.total {
    background-color: #FFFFFF !important;
}

.form-search {
    width: 75% !important;
}

.phone-number {
    font-size: 1.4em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.fa-2x {
    font-size: 1em;
}

.sociallinksBox {
    text-align: center;
}

.sociallinksBox img {
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 8px;
}

/* For FontAwesome icons */
.sociallinksBox a, .p7AMM.amm-responsive .sociallinksBox a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    width: 25px !important;
    height: 25px !important;
    padding: 5px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}


.sociallinksBox a:last-of-type {
    margin-right: 0px;
}

.sociallinksBox a:first-of-type {
    margin-left: 0px;
}

.sociallinksBox a:link, .sociallinksBox a:visited {
    background-color: #000000;
    color: #FFFFFF;
}

.sociallinksBox a:hover, .sociallinksBox a:active {
    background-color: #999999;
    color: #FFFFFF;
}

.topsociallinks {
}

.topsociallinks a {
    margin-top: 7px;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    width: 25px !important;
    height: 25px !important;
    padding: 3px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 20px !important;
}

.topsociallinks a:link, .topsociallinks a:visited {
    background-color: #dddddd;
    color: #FFFFFF;
}

.topsociallinks a:hover, .topsociallinks a:active {
    background-color: #8b8c8d;
    color: #FFFFFF;
}

/*Nav Stuff*/
.navbar {
    position: relative;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 1rem;
    z-index: 2000;
}

ul.list-inline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    justify-content: left;
    line-height: 2.5rem;
}

.tag-cloud li {
    padding: 3px;
    margin: 2px;
    border: 1px solid #162d4f;
}

/* Custom Button Colors */
/* Duplicate this set of styles to add a new "bootstrap" button */

/*Fix for link color*/
.btn-default:link, .btn-default:visited {
    color: #333;
}

.btn-info:link, .btn-primary:link, .btn-success:link, .btn-warning:link, .btn-danger:link {
    color: #FFF !important;
}

.btn-info:visited, .btn-primary:visited, .btn-success:visited, .btn-warning:visited, .btn-danger:visited {
    color: #FFF !important;
}

/*Master Button*/

.btn-primary:link, .btn-primary a:link {
    color: #FFF !important;
}

.btn-primary:visited, .btn-primary a:visited {
    color: #FFF !important;
}

.btn-primary {
    color: #FFFFFF;
    background-color: #2f5da0;
    border-color: #162d4f;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary a:hover,
.btn-primary a:focus,
.btn-primary a:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #FFFFFF;
    background-color: #222222;
    border-color: #222222;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #999999;
    border-color: #999999;
}

.btn-primary .badge {
    color: #ffffff;
    background-color: #333333;
}

.btn-secondary:link, .btn-secondary a:link {
    color: #FFF !important;
}

.btn-secondary:visited, .btn-secondary a:visited {
    color: #FFF !important;
}

.btn-secondary {
    color: #FFFFFF;
    background-color: #162d4f;
    border-color: #162d4f;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary a:hover,
.btn-secondary a:focus,
.btn-secondary a:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
    color: #FFFFFF;
    background-color: #595959;
    border-color: #595959;
}

.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
    background-image: none;
}

.btn-secondary.disabled,
.btn-secondary[disabled],
fieldset[disabled] .btn-secondary,
.btn-secondary.disabled:hover,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-secondary:hover,
.btn-secondary.disabled:focus,
.btn-secondary[disabled]:focus,
fieldset[disabled] .btn-secondary:focus,
.btn-secondary.disabled:active,
.btn-secondary[disabled]:active,
fieldset[disabled] .btn-secondary:active,
.btn-secondary.disabled.active,
.btn-secondary[disabled].active,
fieldset[disabled] .btn-secondary.active {
    background-color: #CCCCCC;
    border-color: #CCCCCC;
}

.btn-secondary .badge {
    color: #ffffff;
    background-color: #333333;
}

.btn-outline-primary {
    color: #3b57a6 !important;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1.5em;
    font-weight: bold;
}

.far .fa-chevron-right {
    color: #3b57a6 !important;
}

.btn-outline-primary:hover {
    background-color: #ffffff !important;
    color: #3b57a6 !important;
}

.slider-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    height: 340px;
}

.cart-icon {
    margin-top: 10px;
    font-size: 1.8em !important;
    color: #162d4f !important;
}

.carousel-caption {
    font-size: .8em;
    line-height: 1.2em;
    margin: 9px;
    padding: 11px;
    border-radius: 20px;
    right: 0%;
    left: 0%;
    background-color: rgba(59, 87, 166, 0.80);
    min-height: 231px;
}

.carousel-caption p {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.8em;
    line-height: 1.3em;
    padding-right: 60px;
    padding-left: 60px;
}


.carousel-control-prev {
    width: 70px !important;
}

.carousel-control-next {
    width: 70px !important;
}

.blurb-border {
    border: 2px solid #fff;
}

.border-2 {
    border-width: 2px !important;
}

.home-text {
    font-size: 1.2em;
}

.page-link {
    padding: 0.8rem 1rem !important;
}

footer {
    position: relative;
    margin-top: -150px; /* negative value of footer height */
    height: 150px;
    clear: both;
    padding-top: 20px;
}

footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #FFFFFF;
}

footer .list-group-item a {
    color: #FFFFFF;
}

footer .list-group-item a:hover {
    color: #5475a5;
}


.star-rating .yellowstar {
    color: #E6CE31 !important;
}

.sticky .top-bar {
    max-height: 92px;
    z-index: 4000;
}

.sticky .logo-size {
    width: 54%;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    font-size: 1em;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

#message-inner {
    display: inline-block;
    margin: 0 auto;
    width: 45%;
    padding-top: 30px;
}

/* Oscar Styles */

.navbar-text {
    padding-right: 2.5rem;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #2f5da0;
}

.star-rating {
    display: none;
}

.product_pod {
    border: 1px solid #E1E1E1;
    height: auto !important;
}

.product_pod .product_price {
    position: relative;
}

.image_container img {
    max-height: 165px;
}

.availability {
    display: none;
}

#write_review {
    display: none;
}

.btn-wishlist {
    display: none;
}

.prod-title {
    min-height: 30px;
}

#list-view-search .form-search {
    background-color: #eef9f3;
}

.checkout-options input[type=radio] {
    transform: scale(2);
    margin-right: 10px;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .topsociallinks a {
        margin-top: 3px;
        margin-right: 3px !important;
        margin-left: 3px !important;
        text-align: center !important;
        width: 35px !important;
        height: 35px !important;
        padding: 7px 0px 0px 0px !important;
        font-size: 20px !important;
        line-height: 20px !important;
    }

    .carousel-caption {
        font-size: .9em;
        line-height: 1.2em;
        margin: 15px;
        padding: 20px;
        border-radius: 20px;
        right: 5%;
        left: 5%;
        background-color: rgba(59, 87, 166, 0.80);
        min-height: 231px;
    }


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .slider-bg {
        background-size: cover;
        background-position-x: center;
        background-position-y: center;
        height: 470px;
    }

    .logo-container {
        max-width: 34%;
    }

    .carousel-caption {
        font-size: 1em;
        min-height: 271px;
    }

    .logo-size {
        width: 80%;
    }

    .content-margin-top {
        margin-top: 148px !important;
    }

    .sticky .logo-size {
        width: 50%;
    }

    .content-margin-top {
        margin-top: 140px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    .fa-2x {
        font-size: 2em;
    }

    .navbar-nav .nav-item {
        font-size: 1.1em;
    }

    .logo-container {
        max-width: 23%;
    }

    .carousel-caption {
        right: 10%;
        left: 10%;
        font-size: 1.2em;
        line-height: 1.2em;
        min-height: 320px;
    }

    .content-margin-top {
        margin-top: 173px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-padding {
        padding-left: 10rem;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        font-size: 1.4em;
        line-height: 1.4em;
    }

    .navbar-nav .nav-item {
        font-size: 1.2em;
        border-right: 2px solid #fff;
    }

    .navbar-nav .nav-link {
        padding-right: .8rem !important;
        padding-left: .8rem !important;
    }

    .logo-size {
        width: 80%;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .logo-size {
        width: 60%;
    }
}