body.loggedin #top-nav .navbar-toggler{
    border-color: #af1423;
}
.prod-btn:hover{
    box-shadow: 0 0 3px #af1423;
    background: #ffffff;
    color: #af1423;
    border-color: #af1423;
    font-weight:bold;
}
.slide-ul li{
    position:relative;
}
.slide-ul a{
  transition: all 0.2s ease-in-out;
  text-decoration:none;
}
.slide-ul a:after, .slide-ul a:before{
  content: "";
  position: absolute;
  bottom: 2px;
  width: 0px;
  height: 2px;
  margin: 2px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #af1423;
  left: 0;
}
.slide-ul li:hover{
  cursor: pointer;

}
.slide-ul li:hover a:after{
  width: 100%;
  opacity: 1;
}

.paging_link:hover{
    background: #FFF;
    color: #253275;
}
.paging_link.active:hover{
    background: #FFF;
    color: #af1423;
}

#cart_container.open{
    height: 95%;
    width: 270px;
    background: #fff;
}
#cart_contents{
    overflow-y: auto;
    max-height:95%;
}
#cart_container.open #cart_contents, #cart_container.open #cart_title{
    display: block;
    padding: 1em;
    padding-bottom: 0em;
    overflow-x: hidden;
}
#checkout_button{
    position: absolute;
    bottom: 3.5em;
    width: 100%;
    padding: 1em;
    background: #af1423;
    color: #fff;
    cursor: pointer;
    display:none;
}
#cart_container.open #checkout_button{
    display:block;
}
#cart_button{
    position: absolute;
    bottom: 0;
    width: 100%;
    height:3.5em;
    background: #af1423;
    color: #fff;
    padding: 1em 1em 3em 1.5em;
    cursor: pointer;
}
#cart_container.open #cart_button{
    background: #ccc;
    color: #000;
}
.cart_row {
    font-size: 0.9em;
    border-bottom: 1px solid #efefef;
    padding-bottom:0.2em;
    margin-bottom:0.2em;
}
.cart_row:last-child{
    margin-bottom:10em;
}
.cart_row .cart_qty{
    width: 3em;
}
#cart_close{
    display:none;
    float:right;
    padding:1em;
    padding-right:2em;
    cursor: pointer;
}
#cart_container.open #cart_close{
    display:block;
}
.remove_cart{
    float:right;
    color: #af1423;
}
.hide_cart{
    font-weight:bold;
}
#cart_button.alt .fa-chevron-circle-down:before{
    content: "\f078";
}

@media (min-width: 1000px) {
    h2.home-intro-title{
        font-size:1.5em;
    }
}
@media (max-width: 700px) {

    #cart_container.open{
        width: 100%;
    }
    .cart_row .remove_cart{
        font-size: 1.5em;
        margin-top: -0.5em;
    }
    #checkout_button, #cart_button{
        text-align:center;
    }
}

