
.menu-burger{
    
    float: left;
    /* border: 1px solid black; */
    margin: 15px;
    padding: 5px;
    font-size: 25px;
    color: #454545;
    display: none;
}

.fa-stack[data-count]:after{
    position: absolute;
    left: 0%;
    bottom: 0%;
    content: attr(data-count);
    font-size: 40%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    text-align: center;
    min-width: 2em;
    font-weight: bold;
    background: #FDC600;
    border-style: solid;
  }
.menu-burger:hover{color: #FDC600;}


/* Carousel Styles */
.carousel-indicators .active {
    background-color: #FDC600;
}
.carousel-inner img {
    width: 100%;
    max-height: 630px;
    object-fit:cover;
}

.carousel-control {width: 0;}
.carousel {position: relative;}
.carousel-control.left,
.carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
}
.carousel-control.left:hover,
.carousel-control.right:hover {
	color:   #FDC600;
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #454545;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
}

.main-text
{
    position: absolute;
    top: 20%;
    width: 100%;
    color: #FFF;
}

/* Carousel Header Styles */
.header-text {
    position: absolute;
    top: 20%;
    left: 1.8%;
    right: auto;
    width: 96.66666666666666%;
    color: #454545;
}

.header-text h2 {font-size: 40px;}
.header-text h2 span {padding: 10px;}
.header-text h3 span {padding: 15px;}
.dropdown-menu{    
    width: 80%;
    margin: auto;
}
.directory-area{padding-bottom: 20px;margin-top: 20px;}
.directory-area ul {
    margin-top: 10px;
}
.directory-area ul li{
    display: inline;
}
.directory-area hr{
    margin: 0;
}
.directory-area .container-card{
    height: 390px;
    width: auto;
    overflow: hidden;
    padding: 10px;
}
.directory-area .container-card .box {
    white-space: nowrap;
    width: auto;
    height: 385px;
    overflow-x: scroll;
    overflow-y: hidden;
}
.directory-area .container-card .card {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    width: 258px;
    height: 368px;
    margin-right: .5%;
}
.directory-area .container-card .card .thumbnail {
    margin-bottom: 0px;
    border: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    height: 90px;
    background-color: #212121;
    display: inline;
    width: 129px;
    position: relative;
    float: left;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}
.directory-area .container-card .card .thumbnail img {
    width: 100%;
    height: 100%;
    margin: 0;
}
.directory-area .row{
    margin-bottom: 4%;
}
.yellow-area{
    background-color: #fad157;
    padding: 50px 0;
    color: white;
    font-weight: 800;
}
.yellow-area h2, h3{
    font-family: 'roboto-bold';
}
.yellow-area h2{text-align: center;}
.yellow-area .col-md-8{
    float:none;
    margin: auto;
    display: block;
}
.yellow-area h2 > button, .yellow-area h2 > button:hover{
    background-color: white;
    color:   #FDC600;
    border-radius: 1px;
    padding: 10px 20px;
    border: 1px solid #FDC600;
    border-color: #F0F0F0;
    font-weight: 600;
    font-size: 15px;
}
.yellow-area .search-btn, .toggle-btn {
    background-color: #FFF;
    color: #FDC600;
    opacity: 100;
    border: 0;
}
.box-long{
    background: #FFF none repeat scroll 0% 0%;
    border: 1px solid #E6E6E6;
    box-sizing: border-box;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 2%;
}
.item-entry .btn-default, .cart-total button{
    padding: 10px 30px;
    border: 0;
    border-radius: 5px;
    color: white;
}
.item-entry-desc img{ width: 100%;}
.item-entry h2 {
    font-weight: 600;
    color: #858585;
    position: relative;
    margin: 0;
    font-family: 'roboto-bold';
}
.yellow-area .form-inline .form-group {
    width: 235px;
    text-align: left;
    letter-spacing: 0.5px;
}
.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
    background: white;
}
.product-desc h4, .address h5{
    font-family: 'roboto-bold';
}
.address{margin-bottom: 15%;}
.address ul{list-style: outside none none;}
.address button{
    color: white;
    border: 0;
    border-radius: 5px;
}
@keyframes check {0% {height: 0;width: 0;}
25% {height: 0;width: 10px;}
50% {height: 20px;width: 10px;}
}
/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #FDC600;
    border-radius: 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ads {
    
    height: 368px;
    border: 1px solid;
    width: 258px;
    margin-bottom: 10px;
}
.cart-product{
    margin: 20px 0;
    border-bottom: 1px solid #eeeeee;
    padding: 20px 0;
}
.cart-total h5, .cart-total h4{
    font-family: 'roboto-medium';
    color: #858585;
    text-align: right;
}
.cart-total h4{color: #454545;}
.msgpage{
    height: 350px;
    width: 100%;
    padding-top: 5%;
}
.msgpage h3, .msgpage p{
    text-align: center;
}
.msgpage button{ width: 100%;}
.tabright{border-right: 1px solid #D5D5D5; padding-right: 0;}
.tabright ul{
    list-style: outside none none;
}
.tabright ul li{
    padding: 5px 10px;
}
.tabright ul li.active{background-color: #FDC600; color:white;}
.profile, .profile-info{padding:0 5%}
.frame{
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 2%;
}
.frame img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.profile-info h3, .profile-info p, .profile-info h4{ font-family:'roboto-bold';color:#454545; font-weight: 400;}
.profile-info span{color:#D5D5D5}

.order-tab, .order-tab-active {
    background-color: #F5F5F5;
    padding: 10px 0px 10px 0;
    cursor: pointer;
}
.order-tab-active{
    background-color: #FDC600;
    color: white;
}
.order-tab p{color:#FDC600;}
.order-tab-active p{color:white}
.order-tab p, .order-tab-active p{
    text-align: center;
    margin: 0;
    padding: 0;
}
.order-status{padding-top: 20%;}
.item-entry .yellow{color:#FDC600; text-align: right; ;}
.loginform h4,.msgpage h4, .loginform2 h4{
    font-family: 'roboto-bold';
}
.loginform{
    height: 550px;
    width: 100%;
    padding-top: 5%;
}


.loginform2{
    width: 100%;
    padding-top: 5%;
}

.loginform2 input[type="checkbox"] + .label-text:before{
    display: inline-block;
    
}

/* .input-group-btn .btn{height: 35px;}
.btn{padding: 5px 16px;} */



.input-group #quantity{
    height: 40px;
}
.m0{margin: 0;}
.f0{float: none;}

.form-inline .bootstrap-select .form-control {
    width: 94%;
}

.dropdown-menu2 {
    width: 0;
    margin: -20px 11% 0 0;
}

.tabright .active a{color:white;}
.tabright  a{color: #777;}
.dropdown-menu2 li{
    padding: 3px;
}
.dropdown-menu2 li i{
    margin-right: 7px;
}

.dropdown-menu2>li>a:focus, .dropdown-menu>li>a:hover {
    color: black;
    text-decoration: none;
    background-color: #f9c647;
}

.dropdown-menu2 hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #eee;
}

.append{
    /* border: 1px solid; */
    margin: auto;
    display: block;
    height: 19px;
    position: fixed;
    width: 50%;
    z-index: 1040;
    top: 0;
    left: 0;
    right: 0;
}

/*  */

ul.navigation li {
    padding: 10px;
    margin: 2px 0;
    display: inline-block;
    cursor: pointer;
    width: 25%;
    text-align: center;
}
ul.navigation li.active {
    background: #f9c647;
    color: #f6f6f6;
    display: inline-block;
    padding: 10px;
}
.highlightOne {
    background: orange;
    font-size: 125%;
    margin: 5px;
    padding: 5px;
}
.navigation {
    display: inline-block;
    margin: 10px;
    width: 100%;
}
p {
    margin: 10px 0 20px;
}
.carousel-inner {
    height: 400px;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #333333;
    font-size: 16px;
}

.bootstrap-select button.dropdown-toggle{
    border: #cecece 1px solid;
}

.bootstrap-select input[type=search]{
    height: 20px;
}

@media (min-width: 768px) {
    .navbar-nav.navbar-center2 {
      position: absolute;
      left: 50%;
      transform: translatex(-50%);
    }
    .menu-burger{display: inline-block;}
}

.yamm .dropdown-menu3 {
    width: 400px;
    margin: -20px 9% 0 0;
    padding: 0 20px 20px 20px;
    background-color: #FFF;
    border: 0.3px solid rgba(227, 227, 227, 0.22);
    border-radius: 0px;
    box-shadow: -3px -1px 6px 1px rgba(0, 0, 0, 0.176);
}

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{ color: #fff;  }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu3 { margin-top:-20px; }
}

.dropdown-menu3 p{
    margin: 0;
    padding: 0;
    margin-top: 10px;
}
.productItems img{
    margin-right: 10px;
}
.productItems p{
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis; 
    
}

.productdivscroll{
    max-height: 300px;
    overflow-y: scroll;

}


.category-box{
    /* border: 1px solid; */
    margin-top: 22%;
}

.proerty-th2{
    padding: 0;
}

.category-box ul{
    list-style: none;
    padding-left: 15px;
}

.category-box label {
    margin-bottom: 0px;
    margin-left: 7px;
}

.category-box h5{
    font-family: 'roboto-bold';
}

@media (max-width: 767px) {
    .carousel-inner, .carousel-inner>.item, .carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
        height: 50vh;
    }

    .navbar-brand > img {
        height: 100%;
        width: auto;
    }

    .navbar-brand {
        float: left;
        height: auto;
        padding: 0 0 0 15px;
        line-height: 0;
    }

    .navbar {
        margin-bottom: 0px;
        min-height: 0px;
    }

    .navbar-default .navbar-nav > li > a::after {
        display: none;
    }

    .search-form {
        background-color: #fff;
        border-radius: 5px;
        padding: 20px 0;
        border: 1px solid #E6E6E6;
        box-sizing: border-box;
        box-shadow: 0px 1px 3px rgb(0 0 0 / 10%);
        position: relative;
        z-index: 100;
        margin-top: -50px;
        width: 90%;
        margin-left: auto;
        display: block;
        margin-right: auto;
    }
    
}
