.c-menu{
    display: block;
}
.c-menu > button{
    font-size: 0.9375rem;
    outline: none;
    color: #131313;
    background-color: #FFF;
    height: auto;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    min-width: 200px
}

.category-modal{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    display: none;
}

.category-modal.active{
    display: block;
}

.category-modal-header{
    display: block;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    float: left;
}

.category-modal-header > div:nth-child(1){
    box-sizing: border-box;
    width: 70%;
    float: left;
}

.category-modal-header > div:nth-child(2){
    box-sizing: border-box;
    width: 30%;
    text-align: right;
    float: left;
}

.category-modal-close-btn{
    background-color: #fff;
    border: none;
    outline: none;
    font-size: 20px;
}

.category-modal-content{
    width: 600px;
    display: block;
    margin: 10% auto auto auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
}

@media only screen and (max-width: 768px) {
    .category-modal-content{
        width: 100%;
        height: 100%;
        height: 100vh;
        margin: 0 auto 0 auto;
        border-radius: 0;
        overflow-y: auto;
    }
    .category-btn{
        width: 100%;
    }
} 

.c-nav-icon{
    transform: rotate(90deg);
}

.c-ul > li.active > .c-link > .c-nav-icon{
    transform: rotate(-90deg);
}


.c-ul{
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: block;
}

.c-ul > li{
    display: block;
    border-bottom: 1px solid #eee;
}
.c-ul > li:last-child{
    border-bottom: none;
}


.c-ul > li > .c-ul{
    display: none;
    padding-left: 20px;
}

.c-ul > li.active > .c-ul{
    display: block;
}

.c-link{
    display: flex;
    width: 100%;
}
.c-link > span{
    padding: 5px 10px;
    text-align: center;
    cursor: pointer;
    flex-basis: 40px;
}

.c-link > a{
    padding: 8px 10px;
    flex-grow: 1;
}
.c-link:hover{
    background-color: rgb(248, 248, 248);
}

.c-link > a:hover{
    color: #2eabe5;
}

.c-ul > li.active > .c-link > a{
    color: #2eabe5;
}

/* product variant butns */
.variant-btn{
    border: 2px solid #ebebeb;
    background: #fff;
    color: #313a53;
    transition: .4s;
    padding: 0.2rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.variant-btn.active{
    border: 2px solid #313a53;
    background: #f5f5f5;
}

.variant-btn.disabled{
    background: #e2e2e2;
    cursor: default;
}

/* --------------------------- top loader ------------------------------ */
.top-loader{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: none;
}
.loader {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .top-loader.active{
      display: flex;
  }




@media only screen and (min-width: 992px) {
    .account-link:link,
    .account-link:active,
    .account-link:visited{
        color: #fff;
    }
    
    .account-link:hover{
        color: #797373;
    }
}

.list-table{
    border: 1px solid #ddd;
    width: 100%;
}

.list-table td,
.list-table th{
    border-bottom: 1px solid #ddd;
    padding: 4px 10px;
}
@media only screen and (max-width: 768px) {
    .list-table{
        overflow-x: auto;
    }
}


.featured-slider .owl-stage{
    display: flex !important;
}

.featured-slider  .item{
    flex-grow: 1;
}


.breadcrumbs-page .container  {
    background-color: rgba(255, 255, 255, 0.8) !important;
    padding-right: 20px;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .breadcrumbs-page .container{
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .breadcrumbs-page .breadcrumb-item {
        background-color: rgba(255, 255, 255, 0) !important;
    }
}