#loaderModal {
  padding: 0px;
}

#loaderModal > .modal-dialog {
  display: flex;
  justify-content: center;
  min-height: 90vh;
  align-items: center;
}

#loaderModal > .modal-dialog > h6 {
  color: white;
  margin: 0px;
  margin-left: 5px;
}

.btn-fullwidth {
  width: -webkit-fill-available;
  width: -moz-available;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.course-purchase .far{
  min-width: 22px;
  color: #ea5822;
}

.course-purchase.card-body > div {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.course-purchase.card-body > div > span:nth-child(2){
  color: #ea5822;
}

.event-hall-ticket {
  border: 3px solid #007bff;
  border-radius: 5px;
  margin: 15px 0px;
  padding: 5px
}

.event-hall-ticket > .event-hall-details {
  margin: 10px;
}

.navbar-brand > img {
  max-width: 130px;
}

.course-image {
  grid-area: video;
}

.course-details {
  grid-area: description;
}

.course-details-card {
  grid-area: buy;
}

.course {
  display: grid;
  grid-gap: 15px;
  grid-template-areas: 
    "video"
    "buy"
    "description";
}

@media only screen and (min-width: 769px) {
  .course {
    grid-template-columns: 8fr 4fr;
    grid-template-areas:
    "video buy"
    "description .";
  }
}

.max-width-300 {
  max-width: 400px;
}

body > div.container > div > div.card-body > form > ul {
  color: red;
  list-style: none;
}

.course-cards > .card:hover {
  box-shadow: 0px 0px 15px grey;
}

.course-cards > .modal > .modal-dialog {
  max-width: 700px;
}

.card-img {
  position: relative;
  cursor: pointer;
}

.card-img > i {
  position: absolute;
  color: red;
  font-size: 50px;
  left: calc( 50% - 28px) ;
  top: calc( 50% - 25px) ;
}

.custom-input-field > input {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.course-cards {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
      "ec";
}

.course-cards .card-body {
  padding: 10px;
}

@media only screen and (min-width: 576px) {
  .course-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  .course-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  .course-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.course-details > div > p {
  text-align: justify;
}

footer {
  background-color: #eaf4f7;
}

.social-media-icons {
  padding-top: 80px;
  padding-bottom: 10px;
}

.social-media-icons > a > i{
  font-size: 20px;
  margin: auto 5px;
}

.thank-you {
  padding: 25vh 0 30vh 0;
  min-height: calc(100vh - 210px);
}

.payment-failure {
  min-height: calc(100vh - 201px);
}

.payment-failure p:nth-child(1) {
  font-size: 4rem;
}

.payment-failure p:nth-child(2) {
  font-size: 4rem;
}

.login-wrapper {
  min-height: calc(100vh - 309px);
}

.login {
  margin-top: 10vh;
  margin-bottom: 15vh;
}

.signup-wrapper {
  min-height: calc(100vh - 249px);
}

.ticket-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);;
  grid-template-rows: repeat(1, 1fr); 
  grid-auto-flow: row;
}

@media only screen and (min-width: 769px) {
  .ticket-cards {
    grid-template-columns: repeat(3, 1fr);;
    grid-template-rows: repeat(3, 1fr); 
  }
}
