/** Custom Modal **/
.modal-custom {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-custom {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/** Alert boxes here **/
.error-wrapper-warning{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:50px;
    background: #fbd0d0 !important;
    border-radius: 5px;
    margin-top: 0px;
    margin-bottom: 5px;
}
.message-warning{
    color: #8d0d0d !important;
    font-size: 14px;
    text-align: center;
    padding: 15px;

}
.error-wrapper-success{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:50px;
    background: #d1e7dd;
    border-radius: 5px;
    margin-top: 0px;
    margin-bottom: 5px;
}
.message-success{
    color: #0f5132;
    font-size: 14px;
    text-align: center;
    padding: 15px;
}

.alert-danger {
  background: #fbd0d0 !important;
  padding: 0;
  margin-top: 0;
  color: #8d0d0d !important;
  margin-bottom: 5px;
}


  @media (min-width: 767px) {

  .bottom-tab{
    display: none;
  }
  }

  /** Sliding banners starts here**/
#slideshow {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}
.slide.active {
  display: block;
}
.dots {
  text-align: center;
  margin-top: 10px;
}
.dot {
  display: inline-block;
  width: 30px;
  height: 5px;
  border-radius: 0px;
  background-color: #fe8002;
  margin: 0 5px;
  cursor: pointer;
}
.dot.active {
  background-color: #000000;
}

  /* Bottom Tabs */
@media (max-width: 767px) {
    .bottom-tab {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      text-align: center;
      box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Add shadow effect */
      border-radius: 10px 10px 0px 0px;
    }
  .bottom-tabs-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;

  }
  .bottom-tabs-wrapper a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 11px;
  }
  .bottom-tabs-wrapper i{
    font-size: 22px;

  }
    .tab-link {
      display: inline-block;
      padding-top: 10px;
      padding-bottom: 3px;
      text-decoration: none;
      font-size: 25px;
    }
  
    .tab-link:hover {
      color:#e328af
    }
  
    .tab-link.active {    
        color:#e328af
    }

      
}

/** Home options Starts Here**/
.home-options-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
}

.home-option {
  width: 25% !important;
  height: 100px;
  margin-bottom: 10px;
}
.home-options-top{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 90%;
  margin-left: 5%;
}
.home-options-top h2{
  font-weight: 600;
  font-size: 20px;
  margin:0;
}
.home-option-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-option-icon-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f6eeff;
  border-radius: 10px;
  margin-bottom: 10px;
}
.home-option-icon-wrapper img{
  width:50px;
  padding:10px;
}
.home-option-wrapper span{
  color:#000000;
  font-weight: 500;
  text-align: center !important;
  font-size: 13px !important;
}
.hidden-home-options {
  width: 25% !important;

}
@media (max-width: 768px) {
  .home-option {
    width: 100%;
  }

  .hidden-home-options {
    display: none;
  }
  
}

.home-hidden-options-show-btn {
  display: none;
  background: none;
  border: none;
  color:#041e4f
}

.home-hidden-options-show-btn.showless::after {
  content: "Show less";
}

.home-hidden-options-show-btn::after {
  content: "Open all";
}
@media (max-width: 768px) {
  .home-hidden-options-show-btn {
    display: block;
  }
}  



  