* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
h2 {
    font-size: 2.5rem;
}

.bt {
    background-color: #2061b6 !important;
    color: #fff;
}
.bt:hover {
    background-color: #09427d !important;
    color: #fff;
}
a.btn.bt {
    background: #2061b6 !important;
    color: #fff;
}
a.btn.bt:hover {
    background: #09427d !important;
    color: #fff;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
hr {
    width: 7%;
    border: 2px solid #000;
    background-color: #000;
    color: #000;
}
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
    background-color: none;
    box-shadow: none;
}

/* Banner  */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: #000;
    background-color: #000;
    border-radius: 2rem;
    padding: 10px;
}

/* Card  */

#list-card {
    display: none;
}

/* #list-hide{
  display: none;
}

#grid-hide{
  display: none;
} */

#toggleButton2 {
    display: none;
}

/* Counter */

.counter {
    background-image: url("../images/countet.png");
}
.count h2 {
    font-size: 3.5rem;
}

/* Back to top */
.backtotop {
    width: 50px;
    height: 50px;

    right: 50px;
    text-align: center;
    background-color: #2061b6;
}

/* Product Dasboard  */

.app-header {
    box-shadow: rgba(223, 234, 255, 0.12) 0px 1px 3px,
        rgba(79, 155, 254, 0.24) 0px 1px 2px;
}

.body-wrapper .cat {
    margin-top: -80px;
}
.body-wrapper .sort {
    margin-top: -80px;
}

/* Edit Profile  */

.edit {
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
.navbar-nav .top-disclaimer h3 {
    text-align: center;
    text-transform: uppercase;
    color: #6c00d8;
    font-weight: 700;
    padding-top: 2%;
    margin-bottom: 0;
}
.navbar-nav .top-disclaimer small {
    color: red;
}

/* Media Queries  */

@media (max-width: 1250px) {
    .desktop {
        display: none;
    }
    h2 {
        font-size: 2rem;
    }
    hr {
        width: 20%;
        border: 2px solid #000;
        background-color: #000;
        color: #000;
    }
    .logo {
        width: 100px;
    }
    footer {
      position: fixed;
      bottom: 0;
      left: 0 !important;
      width: 100%;
      background-color: #ededed;
      padding: 10px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
  }
}

@media (min-width: 1250px) {
    .mobile {
        display: none;
    }
}

.bi-list::before {
    margin-top: 5px;
}
#list {
    color: #fff;
}

.UpDownBtn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 999999999999999;
    transition: transform 0.3s ease-in-out;
    width: 50px;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.UpDownBtn img {
    width: 28px;
    height: 28px;
}

/* Add rotation class */
.rotate-up {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #6776f4;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  