/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #f0a300; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f0a300; 
}
.base-color-bg{
    background-color: #e3f2fd;
    background-image: linear-gradient(130deg,#084595 30%,#2196f3 100%)!important;
    color: white !important;
  }
  .light-blue-bg{
    background-color: #e3f2fd;
  }
  .yellow-bg{
    background-color: #f0a300;
    background-image: linear-gradient(130deg,#f0a300 30%, #ffffff 100%)!important;
  }
  .btn-hover {
    min-width: 150px;
    font-size: 16px;
    padding: 8px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px !important;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
  color: #fff !important;
  background-position: 100% 0;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.btn {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.yello-border{
    border-top: 3px solid #f0a300;
}
.header-bg {
    background-image: linear-gradient(130deg, #ffffff 30%, #f0a300 100%) !important;
}
.cate-box{
  min-height: calc(100vh - 143px);
}
.cate-box a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
li.list-group-item.active a {
  color: #FFF !important;
}
/*------==== Quick Menu ====--------*/

.quick-menu-container{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    flex-direction: column;
    padding: 20px 0;
    align-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.5s;
    z-index: 9999;
}
#menuBox{
    left: -265px;
}
.quick-menu-container a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 30px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    transition: 0.8s;
}
.quick-menu-container a:hover{
    background-color: #000;
}
.quick-menu-container span{
    position: absolute;
    right: -15px;
    top: 50%;
}
.quick-menu-container span i{
    font-size: 28px;
    background-color: #ddd;
    border-radius: 50px;
    padding: 1px 3px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.quick-menu-container #closeArrow{
    display: none;
    right: -15px;
}

/*--------==== Quick Menu ====--------*/
