@import url('//fonts.googleapis.com/css?family=Dancing+Script|Roboto|Montserrat|Roboto&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-size: cover;
    /* outline: 1px solid #f00 !important; */
}
.bg-cols{
    color: #ff4e13;
}
.bg-col-grey{
    color: rgba(0,0,0,.5);
}
ul{
    list-style-type: none;
}

li a:hover{
    color: tomato;
}
/*------------Nav Section-------------*/
.navbar-brand{
    font-weight: bold;
    padding-left: 5%;
}
.navbar{
    /*padding: 2%;*/
}
.nav-item{
    padding-right: 22px;
    font-weight: 600;
    font-size: 1.1rem;
    
}
.nav-center {
    text-align: center;
}
a{
    color: rgba(0,0,0,.5);
}
.nav-link:hover, .bg-col-grey:hover {
	color: tomato !important;
}

.nav-item.active a {
	color: tomato !important;
}
.cart_count {
    position: relative;
    top: -3px;
    left: -5px;
    font-size: 11px;
    background-color: tomato;
    border-radius: 50px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    min-width: 16px;
    text-align: center;
    padding: 0 5px;
    display: inline-block;
    vertical-align: top;
}

.cartitems{
    position: fixed;
    top: 103px;
    right: 0px;
    width: 25%;
    height:100vh;
    background: white;
    opacity: 0;
    transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    z-index: 9999;
}



/* .cart__items   {display: flex;
        align-items: center;
        color: whitesmoke;
        padding: 22px;
        text-decoration: none;
        font-weight: 300;
        border-bottom: 3px solid #f3eee4;
        } */



.cart__items:active {color: #fedc3d}

.cartitems--open {right:0; opacity: 1;}

/*------------Footer Section-------------*/
.footer{
    background-color: #575454;
    padding: 3%;
    color: #fff;
}
.white-hr{
    border-color: #fff;
    width: 20%;
    margin: 2% auto;
}
.footer-icon {
    color: #fff;
    margin: 0 2%;
}