.school-card {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
}

.school-card>img {
  width: 70px;
  margin-right: 20px;
}

.school-card.school-card-small {
  padding: 5px 10px;;
}
.school-card.school-card-small>img {
  width: 50px !important;
  margin-right: 5px;
}
.school-card.school-card-small h6 {
  font-size: 12px !important;
  font-weight: normal !important;
}
.school-card.school-card-small h5 {
  font-size: 14px !important;
}

.marker::before {
  position: relative;
  content: '';
  width: 0;
  height: 0;
  border-bottom: 18px solid #fff;
  border-left: 18px solid transparent;
  left: 0;
  display: block;
  margin-bottom: 18px;
}
.marker.marker-1::before {
  border-bottom-color: #68F6FF;
}
.marker.marker-2::before {
  border-bottom-color: #FF68BA;
}

.main-btn {
  line-height: 54px;
  border-radius: 30px;
  background: #17a2b8;
  font-size: 16px;
  color: #fff !important;
  border: 2px solid #24ffce !important;
}

.main-btn.main-btn-2 {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.teachers-carousel-wrapper {
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

.teachers-carousel {
  position: absolute;
  left: 0;
  display: flex;
  height: 100%;
  overflow-x: hidden;
}

.teacher-card {
  height: 100%;
  width: 250px;
  margin-right: 20px;
  background-color: gray;
  position: relative;
  flex-shrink: 0;
}
.teacher-card>.name-container {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, #00000080, #00000000);
}

#preferences-modal .modal-dialog {
  max-width: 900px;
}

.preference-card {
  text-align: center;
  margin-bottom: 15px;
}
.preference-card .img-wrapper {
  font-size: 24px;
  color: #FFF;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.preference-card .img-wrapper img {
  width: 100%;
}
.preference-card .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.preference-card .overlay.add {
  background-color: #2400FF80;
  display: none;
}
.preference-card.hover .overlay.add {
  display: flex;
}
.preference-card .overlay.select {
  background-color: #FF68BA80;
  display: none;
}
.preference-card.selected .overlay.select {
  display: flex;
}
.preference-card p {
  margin-top: 5px;
}
.preference-card .select-number {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF68BA;
  background-color: #FFF;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-weight: bold;
}

.btn-secondary {
  background-color: #FF68BA;
  border-color: #FF68BA;
}
.btn-secondary:hover {
  background-color: #dc5ba1;
  border-color: #dc5ba1;
}
.btn-secondary:active {
  background-color: #bb4e89 !important;
  border-color: #bb4e89 !important;
}

.card.shadow {
  box-shadow: 0px 8px 16px 0px rgb(146 184 255 / 20%) !important;
  border: none;
}

.rounded-big {
  border-radius: 15px;
}

#search-course-wrapper {
  position: relative;
}
#search-course-results {
  width: 100%;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0px 8px 16px 0px rgb(146 184 255 / 20%);
  position: absolute;
  margin-top: 5px;
  z-index: 100;
}