@charset "UTF-8";
:root {
  --star-size: 20px;
  --star-color: rgb(163, 163, 163);
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
  margin-top: 4px;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-rounded{
  border-radius : 25px;
}

.see-more a{
  color: #000000;
}

.card-footer__events {
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
}

@media only screen and (max-width: 991px) {
    .form-control{
        font-size:17px;
    }
}

select.form-control:not([size]):not([multiple]) {
  height: 45px !important;
}

@media (min-width: 901px){
    .mobile-cart{
      display: none;
    }
  }
  
@media (max-width: 900px){
    .mobile-cart{
      float: right;
      margin-top: 15px;
    }
    .mobile-cart a{
      font-size: 17px;
    }
  }


  .shadow{
    box-shadow: 0 4px 8px 0 rgba(49, 49, 49, 0.2);
  }
  h2.h4,p,a{
    font-weight: 600 !important;
  }
  .card:hover{
    box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.2);
  }
  .slick-next{
      right:0px !important;
  }
  
  
#mySidenav a {
  position: absolute; /* Position them relative to the browser window */
  right: 0px; /* Position them outside of the screen */
  transition: 0.3s; /* Add transition on hover */
  padding: 10px; /* 15px padding */
  width: 45px; /* Set a specific width */
  text-decoration: none; /* Remove underline */
  font-size: 20px; /* Increase font size */
  color: black; /* White text color */
  border-radius: 5px 0 0 5px; /* Rounded corners on the top right and bottom right side */
  margin-top: 400px;
  position: fixed;
  z-index: 1;
}

#mySidenav a:hover {
  right: 0; /* On mouse-over, make the elements appear as they should */
}
/* The about link: 20px from the top with a green background */
#mySidenav .wt,
.ph{
  margin-right: 15px;
  font-size: 30px;
}

#ph {
  top: 20px;
  background-color: #cbcbcb;
}
#wt {
  top: 80px;
  background-color: #cbcbcb;
}

@media only screen and (max-width: 450px) {
    #mySidenav a {
      margin-top: 550px;
    
    }

}