@import url("./component.css"); /* Using a url */
body {
  background: #818181;
  padding: 50px;
}
.calendar-container {
  background-color: #fff;
}
.calendar-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 10px;
}

.bhwd-class-and-workshop {
  display: flex;
  margin-top: 10px;
}
.bhwd-class-and-workshop button {
  background-color: #fff;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 7px 10px;
  border: none;
  cursor: pointer;
  color: #000000;
}
.bhwd-class-and-workshop button.bhwd_active {
  border-bottom: 2px solid #6ec055;
  color: #6ec055;
  /* transition: .3s ; */
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.nav-btn {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  color: #000000;
}

.nav-btn:hover {
  background: #f0f0f0;
}

.week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  padding: 10px 10px;
  border-bottom: 1px solid #ddd;
}

.bhwd_calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 10px;
}

.bhwd_calendar-dates span {
  display: inline-block;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.bhwd_calendar-dates td {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bhwd_calendar-dates td a {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #d1d1d1;
  border-radius: 30px;
  color: #000000;
  background: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-decoration: none;
}
.bhwd_calendar-dates td.bhwd_selected a {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #6ec055;
  border-radius: 30px;
  color: #000000;
  background: #fff;
  transition: 0.4s;
}

.bhwd_calendar-dates td.bhwd_selected a:hover {
  background: #6ec055;
  color: #fff;
  border: none;
}

/* Weeks Slidble Style css  */
.bhwd_flex {
  display: flex;
  justify-content: space-between;
}
.bhwd_flex .nav-btn#prev-week {
  margin-right: 10px;
}
.bhwd_clender_table {
  width: 100%;
  border: none;
}
.bhwd_clender_table thead tr {
  border: none 0 2px 0 0;
}
.bhwd_clender_table thead tr td {
  border: none;
}
.bhwd_calendar-dates td {
  border: none;
}
.bhwd_calendar-dates td a {
  text-decoration: none !important;
}
.bhwd_week-days_style {
  font-weight: 400;
  font-size: 14px;
}

.bhwd_filter_conatiner {
  align-items: center;
}
.bhwd_button_conatiner {
  width: 40%;
  /* border-right: 1px solid #d2d2d2; */
  display: flex;
  justify-content: space-between;
}
.bhwd_select_conatainer {
  display: flex;
  width: 58%;
  justify-content: space-between;
  font-size: 14px;
}
.bhwd_button_conatiner .bhwd_filter_button {
  background: #fff;
  padding: 10px;
  /* margin-right: 6px ; */
  border-radius: 20px;
  width: 48%;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
}
.bhwd_border {
  border: 1px #f1f1f1 solid;
}

.bhwd_select_conatainer .bhwd_select_teacer_and_location {
  background: #fff;
  padding: 10px;
  /* margin-right: 6px ; */
  border-radius: 20px;
  /* border: 1px #000000 solid; */
  width: 48%;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.bhwd_filter_conatiner hyp {
  display: block;
  height: 100%;
  max-height: 100%;
  width: 2px;
  background: #efefef;
  color: #00000000;
}

.bhwd_class-card {
  background: white;
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  /* width: 100%; */
  padding: 20px;
  display: flex;
  max-width: 100%;
  gap: 15px;
  margin-top: 15px;
  border: 1px solid #efefef;
  justify-content: space-between;
}
.bhwd_class-card .bhwd_image {
  width: 20%;
}
.bhwd_class-card .bhwd_image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.bhwd_class-card .bhwd_product_info {
  width: 60%;
  text-align: left;
}
.bhwd_class-card .bhwd_product_info p {
  text-align: left;
  margin: 10px 0;
}
.bhwd_class-card .bhwd_product_info .bhwd_price {
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 0;
}
.bhwd_class-card .bhwd_product_info .bhwd_link {
  text-decoration: none;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}
.bhwd_class-card .bhwd_product_info .bhwd_author img {
  height: 35px;
  width: 35px;
  border-radius: 35px;
  object-fit: cover;
}
.bhwd_class-card .bhwd_product_info .bhwd_author_ {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bhwd_class-card .bhwd_product_info .bhwd_single_product_info {
  margin: 0;
  padding: 0;
}
.bhwd_class-card .bhwd_product_info .bhwd_single_product_info li {
  list-style: none;
}
.bhwd_product_action {
  column-gap: 16px;
  display: grid;
  justify-items: end;
  width: 20%;

  grid-template-rows: 1fr auto auto;
  grid-template-areas:
    "session-price      "
    "session-hybrid-info"
    "session-book       ";
}
.bhwd_product_action p {
  width: 100%;
  text-align: right;
}
.bhwd_class-card .cancelled,
.bhwd_add_to_cart.expaire {
  background: #ddd;
  color: #777;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: not-allowed;
  font-size: 0.9em;
  text-decoration: none;
}
.bhwd_add_to_cart {
  background: #6ec055;
  color: #fff;
  text-decoration: none !important;
  padding: 5px 10px;
  border-radius: 5px;
}
.datePicker[class-type="Workshop"].havePost a {
  border-color: #6ec05591;
}
.datePicker[class-type="Class"].havePost a {
  border-color: #6ec05591;
}
@media (max-width: 600px) {
  body {
    background: #ffffff;
    padding: 0px;
    margin: 0;
  }
  .calendar-container {
    width: 100%;
    max-width: 96%;
  }
  .bhwd_class-card {
    padding: 20px;
    display: block;
  }
  .bhwd_product_action {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .bhwd_product_action p {
    /* width: 100%; */
    text-align: left;
  }
  .bhwd_class-card .bhwd_image img {
    width: 100%;
    height: auto;
  }
  .bhwd_class-card .bhwd_product_info {
    margin-top: 10px;
  }
}
