/* added by Nabil for lms option  */
.theme-img[style] {
  width: 100% !important;
}
.theme-img .acf-radio-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.theme-img .acf-radio-list li {
  margin: 0 !important;
}
.theme-img .acf-radio-list li label {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  border: 1px solid #ebebeb;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.theme-img .acf-radio-list li label img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  display: block;
}
.theme-img .acf-radio-list li label input[type="radio"] {
  display: none;
}
.theme-img .acf-radio-list li label::before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
}
.theme-img .acf-radio-list li label p {
  margin: 0;
  text-align: center;
}
.theme-img .acf-radio-list li label.selected::before {
  content: "✓";
  background-color: #000;
  z-index: 10;
  opacity: 1;
}
.theme-img .acf-radio-list li label.selected img {
  transform: scale(0.9);
}
.theme-img .acf-radio-list li label.selected::after {
  content: "";
  display: block;
  background: #000;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.course-search-button{
  cursor: pointer;
}
body{
  margin: 0 !important;
}