
/* head menus */
#top_line_container {
	background-color: #fff;
    color: #000;
}

#top_line_container a {
    color: #000;
    text-decoration: none;
}

#top_line_container a:hover {
    text-decoration: none;
}

#top_line .vertical-bar {
    margin: 0 10px;
}

#top_line .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    color: #ff8500;
}

.navbar-toggler-icon {
    width: auto;
    height: auto;
    font-size: 24px;
    color: #ff8500;
    transform: rotate(90deg);
}

/* index home page */
#home-banner{
	height: 70vh;
	background-image: url('/assets/frontend/images/home-banner.png');
    background-repeat: no-repeat;
    background-color: #f8f8f8c4;
    width: 100%;
    background-size: cover;
    background-position: left;
}

#brands, #categories, #best-sellers {
    width: 100%;
}

#brands img, #categories img, #insta img {
    max-width: 100%;
    height: auto;
    padding: 10px;
}

#cat-items .card {
    border: 0;
}

.btn{
    background-color: #ff8500; 
    border-radius: 20px;
    color: #fff;
}

#footer {
	background-color: #000000;
    color: #fff;
}

.card-body {
    height: 120px;
}

#footer input {
    padding:10px;
    border-radius: 20px;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: block; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

#text{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }

/* Break Points */

 /* XX-Large devices (larger desktops, 1400px and down) */
@media (max-width:1400px) {
    #top_line_container {
        font-size: 13.5px;
    }
    #top_line_container .vertical-bar {
        margin: 0 7px;
    }
}

 /* X-Large devices (large desktops, 1200px and down) */
@media (max-width:1200px) {
    #top_line_container .navbar-collapse {
        position: absolute;
        top: 155px;
        left: 0px;
        z-index: 1;
        background: #fff repeat-x left top;
        width: 100%;
        border-top: 1px solid grey;
    }
    #top_line_container .navbar-nav {
        padding: 10px 0;
    }
    #top_line_container .vertical-bar {
        display: none;
    }
    #top_line_container .nav-item {
        padding: 5px 10px;
    }
}

 /* Large devices (desktops, 992px and down) */
@media (max-width: 992px) { 
    #top_line_container .navbar-collapse {
        top: 165px;
    }  
    #categories {
        display: none;
	}
    #home-banner {
        height: 24vh;
        background-image: url('/assets/frontend/images/home-banner.png');
        background-repeat: no-repeat;
        background-color: #f8f8f8c4;
        width: 100%;
        background-size: 100%;
        background-position: left;
    }
}

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

    #top_line_container .navbar-collapse {
        top: 145px;
    }

    
}

 /* Small devices (landscape phones, 576px and down) */
@media (max-width: 576px) { 
    #top_line_container .navbar-collapse {
        top: 137px;
    }
}