*{
    margin: 0;
    padding: 0;
}

/* AVATAR */

.border-img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: fill;
    border: solid 2px #000;
}

.normal-img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: fill;
    
}

.avatar-text{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: cornflowerblue;
}

.text{
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    
}

.avatar-icon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 0, 0, 0.555);
}

.avatar-icon i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
}

/* ALERT */


.alert{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    margin: 10px 30px;
}

.error{
    background-color: rgb(254, 215, 215);
}

.alert p{
    font-weight: bold;
    color: rgba(0, 0, 0, 0.692);
    padding: 0 0 0 10px;
}

.error i{
    font-size: 1.5rem;
    color: rgb(229, 62, 62);
}

.success{
    background-color: #c6f6d5;
}

.success i{
    font-size: 1.5rem;
    color: #38a169;
}

.warning{
    background-color: #feebc8;
}

.warning i{
    font-size: 1.5rem;
    color: #dd6b20;
}

.info{
    background-color: #bee3f8;
}

.info i{
    font-size: 1.5rem;
    color: #3182ce;
}

/* BADGES */

.badge{
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    padding: 5px;
}

.bg-danger{
    background-color: #dc3545;
}

.bg-warning{
    background-color: #ffc107;
}

.bg-info{
    background-color: #3182ce;
}

.bg-dark{
    background-color: #000;
}

.bg-light{
    background-color: #fff;
    color: #000
}

.include-badge{
    position: relative;
}

.avt-bg-online{
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border: solid 1.6px #fff;
    border-radius: 50%;
    background-color: rgb(23, 241, 23);
}

.avt-bg-offline{
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border: solid 1.6px #fff;
    border-radius: 50%;
    background-color: rgb(241, 23, 59);
}

.icon-bg{
    font-size: 2.5rem;
    color: #3d41d7;
}

.avt-bg-num{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 0.6rem;
    font-weight: bold;
    background-color: red;
    border: solid 1.6px #fff;
    border-radius: 50%;

}


/* BUTTON */

.primary-btn{
    background: #3d41d7;
    border: none;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 4px;
    outline: none;
}

.primary-btn:hover{
    background: #090fb3ea;
}

.secondary-btn{
    border: solid 2px #3d41d7;
    font-size: 1rem;
    color: #3d41d7;
    font-weight: bold;
    padding: 8px 22px;
    border-radius: 4px;
    outline: none;
    background: #fff;
}

.secondary-btn:hover{
    background: rgba(175, 187, 209, 0.219);
}

.borderless-btn{
    border: none;
    font-size: 1rem;
    color: #3d41d7;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 4px;
    outline: none;
}

.borderless-btn:hover{
    background: rgba(175, 187, 209, 0.219);
}

.icon-btn{
    border: 0;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 50%;
    outline: none;
    color: #fff;
    background-color: #3d41d7;
}

.icon-btn:hover{
    background-color: #090fb3ea;
}

.text-icon-btn{
    color: #fff;
    border: 0;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 4px;
    outline: none;
    background-color: #3d41d7;
}

.text-icon-btn i{
    padding-right: 0.8rem;
}

.text-icon-btn:hover{
    background: #090fb3ea;
}

.float-btn{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    font-size: 1.2rem;
    border-radius: 50%;
    outline: none;
    color: #fff;
    background-color: #3d41d7;
}


/* Card */

.text-card{
    width: 18rem;
    background-color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem;
    color: #000;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(31 31 39 / 10%);
}

.card-bdg{
    flex-direction: column;
    position: relative;
    width: 15rem;
    background: #fff;
    box-shadow: 0 0 10px rgb(31 31 39 / 10%);
}

.card-img{
    width: 100%;
    height: 18rem;
}

.card-bdg .badge{
    position: absolute;
    top: 1rem;
}

.card-info{
    padding: 0.4rem 1rem;
}

.card-bdg .brand{
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.884);
}

.card-bdg small{
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.671);
}

.price-details{
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
}

.price-details .price{
    font-size: 0.9rem;
    font-weight: bold;
}

.price-details .og-price{
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.671);
    text-decoration: line-through ;
    padding: 0 0.4rem;
}

.price-details .offer{
    font-size: 0.8rem;
    color: #3d41d7;
}

.dismiss-btn{
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
    font-size: 1rem;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 0;
    color: rgba(0, 0, 0, 0.671);
    outline: none;
    background-color: rgba(255, 255, 255, 0.473) ;
}

.dismiss-btn:hover{
    background-color: #fff;
}

.text-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.603);
    color: rgba(0, 0, 0, 0.5);
    font-size: 4rem;
    font-weight: bold;
}

/* Image */

.responsive-img{
    width: 100%;
    max-width: 400px;
}

.round-img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: fill;

}

/* Input */

.text-input{
    padding: 0.5rem;
    font-size: 1rem;
    width: 18rem;
    outline: none;
    border: solid 2px rgba(0, 0, 0, 0.418);
    background: rgba(255, 255, 255, 0.555);
    border-radius: 0.3rem;
}

.text-input:focus{
    border: solid 2px #3d42d7a1;
    background: #fff;
}

/* Lists */

.nospaces-list{
    list-style: none;
    background: #fff;
}

.nospaces-list .list-item{
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem 6rem 1rem 1rem;
    border: solid 1px rgba(0,0,0,.125);
}

.spaces-list{
    list-style: none;
}

.spaces-list .list-item{
    padding: 1rem 6rem 1rem 1rem;
    margin: 1rem;
    border: solid 1px rgba(0, 0, 0, 0.39);
    background: #fff;
    border-radius: 0.2rem;
    font-weight: bold;
}

/* Navigation */

.navbar {
    color: rgb(255, 255, 255);
    background-color: #3d41d7;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 1px 5px #0000009c;
    padding: 20px;
  }
  
  .navbar p {
    font-weight: bold;
    padding: 0px;
    font-size: 1.5rem;
  }
  
  .navbar .hamburger {
    display: none;
  }
  .navbar-lists {
    display: flex;
    list-style: none;
  }
  
  .navbar-lists li {
    padding: 0 30px;
    font-weight: bold;
  }
  
  .navbar-lists li a {
    text-decoration: none;
    color: #fff;
  }

/* Modal */

.modal-container{
    display: none;
}

.modal-container-show{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    height: 100vh;
    background: rgba(126, 123, 123, 0.575);
    
}

.modal-box{
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 1.5rem;
    margin: 0 1rem;
    border-radius: 0.4rem;
}

.modal-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.829);
}

.close-cross-btn{
    padding: 0.2rem 0.4rem;
    font-size: 1.2rem;
    background: none;
    outline: none;
    border: 0;
    font-weight: bold;
}

.close-cross-btn:hover{
    background: rgba(175, 187, 209, 0.219);
}

.modal-content{
   padding: 1rem 0;
   font-size: 1.1rem;
   color: rgba(0, 0, 0, 0.849);
}

.modal-btns{
    padding: 0.5rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.modal-btns .primary-btn{
    margin: 0 1rem 0 0;
}




  @media screen and (max-width: 770px){
    .navbar .navbar-lists{ 
        display: none;
    }
  
    .navbar .hamburger{
      display: block;
    }
  
    .hamburger{
      cursor: pointer;
    }
  
    .hamburger > div{
      background-color: #fff;
      width: 30px;
      padding: 2px 0;
      border-radius: 50px;
      margin-bottom: 5px;
    }
  }

