/*HAPMENTOR COMPONENTS STRUCTURE*/
/*Components*/
/*Cards container general styles*/
.card-page .card-container {
  width: 25%;
  padding: 10px 15px !important;
  padding: 0;
  justify-content: center;
}

.card a {
  text-decoration: none !important;
}
.card a h5 {
  color: var(--HapmentorBlack);
}
.card a:hover {
  transform: scale(1.01);
  transition: 0.3s;
  filter: blur(0px);
  animation: ease-in-out;
}

/*---MEDIA QUERIES---*/
@media only screen and (max-width: 1500px) {
  .card-page .card-container {
    width: 33%;
    padding: 5px 10px !important;
  }
}
@media only screen and (max-width: 1060px) {
  .card-page .card-container {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .card-page .card-container {
    width: 100vw;
  }
}
/*GENERAL SETTINGS*/
.edit-button {
  text-decoration: none;
}
.edit-button span {
  justify-content: flex-end !important;
  color: var(--HapmentorBlue) !important;
  font-size: 20px !important;
}

.edit-button:hover span {
  color: var(--HapmentorGreen) !important;
}

/* GENERAL Cards styles*/
.course-card {
  max-width: 400px;
}
.course-card .card-img-top {
  padding: 2px !important;
  width: 100% !important;
  height: 30vh !important;
  object-fit: cover !important;
  max-height: 300px;
}

@media only screen and (max-width: 1060px) {
  .course-card .card-img-top {
    max-height: 200px;
  }
}
.card {
  width: 25vw;
  border: solid 2px;
  border-radius: 0;
}
.card .card-img-top {
  padding: 1%;
  border-radius: 0;
  position: relative;
  text-align: center;
  color: white;
}
.card .card-img-top .bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 0.8rem !important;
  font-weight: 300;
}
.card .card-body {
  padding: 3% !important;
  /* Invalid draft*/
  /* Valid draft*/
  /* Unpublished*/
  /* Published*/
}
.card .card-body h5 {
  margin-bottom: auto !important;
}
.card .card-body .status {
  width: fit-content;
  height: fit-content;
  margin: 2px;
  padding: 5px;
  font-size: 1rem;
}
.card .card-body .in-draft {
  color: var(--HapmentorGrey);
  border: dashed 2px var(--HapmentorGrey);
}
.card .card-body .val-draft {
  color: var(--HapmentorBlue);
  border: dashed 2px var(--HapmentorBlue);
}
.card .card-body .unpublished {
  color: var(--HapmentorGreen);
  border: dashed 2px var(--HapmentorGreen);
}
.card .card-body .published {
  color: white !important;
  border: solid 2px var(--HapmentorGreen);
  background-color: var(--HapmentorGreen);
}
.card p {
  color: var(--HapmentorGrey) !important;
  font-weight: 500;
  font-size: 0.8rem !important;
}
.card p a {
  color: var(--HapmentorGrey) !important;
  text-decoration: none !important;
}
.card span {
  font-weight: 300;
  font-size: 0.8rem;
}
.card .cattag {
  font-size: 0.5rem !important;
  padding: 0.2vw !important;
  max-width: fit-content !important;
  width: 100px !important;
}
.card .card-info {
  display: flex !important;
  justify-content: flex-end;
}
.card .card-info a {
  margin-right: 0px !important;
  background-color: var(--HapmentorBlue) !important;
  display: flex !important;
  justify-content: space-around;
}
.card .card-info a:hover {
  background-color: var(--HapmentorGreen) !important;
}

@media only screen and (max-width: 1100px) {
  .card {
    width: 45vw;
  }
}
@media only screen and (max-width: 600px) {
  .course-card {
    width: 70vw;
  }
  .course-card .card-mentors p, .course-card a {
    font-size: 0.5rem !important;
  }
  .course-card h5 {
    font-size: 0.9rem !important;
  }
  .course-card .card-body .more {
    width: 40px;
    height: 40px;
  }
  .course-card .card-body .see-more {
    display: none;
  }
}
@media only screen and (min-width: 500px) {
  .course-card .card-body .plus {
    display: none;
  }
}
/*Channel cards */
.channel-card {
  min-width: 250px;
  max-width: 400px;
}
.channel-card .card-img-top {
  padding: 0 !important;
  max-height: 160px;
  overflow: hidden;
  object-fit: cover;
}
.channel-card .avatar {
  height: auto;
  width: 40%;
  max-width: 120px;
  left: 5px;
  bottom: 70px;
  position: absolute;
}
.channel-card .img-thumbnail {
  padding: 0;
  border: solid 1px var(--HapmentorBlack);
}
.channel-card .card-body {
  align-items: center !important;
}
.channel-card .card-body a {
  text-decoration: none;
  color: var(--HapmentorBlack);
  font-size: 1.25rem;
}
.channel-card .card-body .card-tittle {
  width: 80%;
}

.channel-card:hover {
  transform: scale(1.01);
  transition: 0.3s;
  filter: blur(0px);
  animation: ease-in-out;
}

/*Collection cards */
.collection-card {
  min-width: 250px;
  max-width: 400px;
}
.collection-card .card-img-top {
  max-height: 200px;
  overflow: hidden;
  object-fit: cover;
}
.collection-card .card-body div {
  align-items: center !important;
}
.collection-card .card-body div a {
  text-decoration: none;
  color: var(--HapmentorBlack);
  font-size: 1.25rem;
}
.collection-card .card-body div .card-tittle {
  width: 80%;
}
.collection-card .card-body p {
  margin: 0;
  color: var(--HapmentorBlue) !important;
}

.collection-card:hover {
  transform: scale(1.01);
  transition: 0.3s;
  filter: blur(0px);
  animation: ease-in-out;
}

/*Long cards */
#long-card-pad {
  padding: 0 !important;
}

.long-card {
  width: 100% !important;
  height: 250px;
  flex-wrap: wrap;
  padding: 0 !important;
  flex-direction: row;
  max-width: 1400px;
}
.long-card a {
  width: 350px;
  object-fit: cover;
}
.long-card .card-body {
  flex-wrap: wrap !important;
  width: 50%;
  padding: 1% !important;
}
.long-card .card-body .card-information {
  width: 85%;
}
.long-card .card-body .card-information .mentorcolor {
  color: var(--HapmentorGrey) !important;
}
.long-card .card-body .card-tittle {
  text-decoration: none;
  font-size: 1.25rem !important;
  padding: 0;
  color: var(--HapmentorBlack) !important;
}
.long-card .card-body .card-price {
  width: 15%;
}
.long-card .card-body .card-price p {
  width: 100%;
  font-size: 2rem !important;
  color: var(--HapmentorBlue) !important;
}
.long-card .card-body .card-price span {
  font-size: 1.8rem;
}
.long-card .card-body .card-price .price {
  text-align-last: end;
}
.long-card .card-body .card-price .smore {
  height: 40px;
  background-color: var(--HapmentorBlue);
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.long-card .card-body .card-price .smore:hover {
  background-color: var(--HapmentorGreen);
}
.long-card .card-body .add-cart a {
  border: solid 1px var(--HapmentorBlue);
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
}
.long-card .card-body .add-cart a:hover {
  cursor: pointer !important;
  background-color: var(--HapmentorBlue);
  color: white;
}
.long-card .card-body .card-channel-p {
  color: var(--HapmentorGreen) !important;
  font-size: 1rem;
}
.long-card .card-body .card-channel-p a {
  color: var(--HapmentorGreen) !important;
  font-size: 1rem;
}
.long-card .card-body p {
  margin: 0;
  color: var(--HapmentorBlack) !important;
}
.long-card .card-body .stars {
  color: var(--HapmentorGreen);
  font-size: 1rem;
}
.long-card .card-body .stars span {
  font-family: var(--HapmentorFont);
}

/*Detailed cards */
.detailed-card {
  max-width: 450px;
}
.detailed-card .card-tittle {
  text-decoration: none;
  font-size: 1.25rem !important;
  padding: 0;
  color: var(--HapmentorBlack) !important;
}
.detailed-card .card-body {
  padding: 1% !important;
}
.detailed-card .card-body p {
  margin: 0;
  color: var(--HapmentorBlack) !important;
}
.detailed-card .card-body .mentorcolor {
  color: var(--HapmentorGrey) !important;
}
.detailed-card .card-body .card-channel-p {
  color: var(--HapmentorGreen) !important;
  font-size: 1rem;
}
.detailed-card .card-body .card-channel-p a {
  color: var(--HapmentorGreen) !important;
  font-size: 1rem;
}
.detailed-card .card-body .stars {
  color: var(--HapmentorGreen);
  font-size: 1rem;
}
.detailed-card .card-body .stars span {
  font-family: var(--HapmentorFont);
}
.detailed-card .card-body .card-information {
  width: 75%;
}
.detailed-card .card-body .card-information .price {
  text-align-last: end;
}
.detailed-card .card-body .add-cart a {
  border: solid 1px var(--HapmentorBlue);
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
}
.detailed-card .card-body .add-cart a:hover {
  cursor: pointer !important;
  background-color: var(--HapmentorBlue);
  color: white;
}
.detailed-card .card-body .card-price {
  width: 25%;
  justify-content: space-between;
}
.detailed-card .card-body .card-price span {
  font-size: 1.3rem !important;
}
.detailed-card .card-body .card-price p {
  width: 100%;
  font-size: 1.4rem !important;
  color: var(--HapmentorBlue) !important;
  text-align-last: end;
}

/*Card teacher*/
@media only screen and (min-width: 2160px) {
  .card-teacher {
    max-width: 700px !important;
  }
}
.card-teacher {
  max-height: 80px;
  max-width: 300px !important;
  min-width: 100px;
  padding: 0;
  border: solid var(--HapmentorBlue) 3px;
  margin-top: 10px;
  margin-right: 10px;
  text-decoration: none;
}
.card-teacher img {
  height: 100%;
  width: auto;
  border-right: solid var(--HapmentorBlue) 3px;
}
.card-teacher div {
  padding: 2% 0 0 3%;
}
.card-teacher h5, .card-teacher p {
  padding: 0 !important;
  margin: 0 !important;
  color: var(--HapmentorBlue);
  font-size: 0.8rem;
}
.card-teacher h5 {
  font-size: 1rem !important;
}
@media only screen and (max-width: 880px) {
  .card-teacher .card-teacher {
    width: 100% !important;
  }
  .card-teacher h5 {
    font-size: 1rem !important;
  }
  .card-teacher p {
    font-size: 0.6rem !important;
  }
}

.card-teacher:hover {
  transform: scale(1.01);
  transition: 0.3s;
  filter: blur(0px);
  animation: ease-in-out;
}

/* INVITATION Cards styles*/
.card .card-img-top .invitation-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--HapmentorGreen);
  padding: 5px 8px;
}
.card .invitation h6 {
  font-weight: 400;
  font-size: 0.9rem;
}
.card .invitation h6 span {
  color: var(--HapmentorGreen);
  font-size: 0.9rem;
  font-weight: 500;
}
.card .invitation p {
  font-weight: 400;
}
.card .invitation .invitation-hap {
  color: var(--HapmentorBlue);
  margin-bottom: 10px !important;
}
.card .invitation .greenbttn {
  margin-right: 15px;
}

/* INVITATION HISTORY Cards styles*/
.card .invitation {
  /*if accepted*/
  /*if declined*/
}
.card .invitation .history {
  width: 100%;
  color: white !important;
  padding: 8px 10px;
  margin: 0;
}
.card .invitation .accepted {
  background-color: var(--HapmentorGreen);
  opacity: 40%;
}
.card .invitation .declined {
  background-color: var(--HapmentorBlue);
  opacity: 40%;
}

#card-modules {
  color: white !important;
  position: absolute;
  bottom: 1px;
  left: 9px;
  background-color: var(--HapmentorGreen);
  padding: 3px 4px !important;
}

/*Cards container for saved and owned haps on dashboard page*/
#saved-cards {
  /*---MEDIA QUERIES---*/
}
#saved-cards .card-page .card-container {
  width: 30%;
  margin-right: 15px;
  padding: 0 !important;
  justify-content: start;
}
@media only screen and (max-width: 1500px) {
  #saved-cards .card-page .card-container {
    width: 33%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 1200px) {
  #saved-cards .card-page .card-container {
    width: 50%;
  }
}
@media only screen and (max-width: 650px) {
  #saved-cards .card-page .card-container {
    width: 100vw;
  }
}

/*channel editor card*/
#channel-editor-card .card-img-top .edit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: var(--HapmentorBlue) !important;
  position: absolute !important;
  width: 40px;
  height: 40px;
  position: relative;
  top: 20px;
  right: 20px;
  z-index: 99;
}
#channel-editor-card .card-img-top .edit-button span {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  color: white !important;
  width: 30px;
}
#channel-editor-card .card-img-top .edit-button:hover {
  cursor: pointer;
}

/* Cards style components */
/*Terms and conditions modal*/
#termsAndConditions .modal-dialog {
  max-width: 700px !important;
}
#termsAndConditions .modal-header {
  border-bottom: 0;
}
#termsAndConditions .modal-header .modal-tittle img {
  width: 30px;
  height: 30px;
}
#termsAndConditions .modal-content {
  border: solid 2px var(--HapmentorBlue);
  border-radius: 0;
  max-width: 1000px;
}
#termsAndConditions .language a {
  text-decoration: none;
  font-weight: 500;
}
#termsAndConditions .language a:active, #termsAndConditions .language a:hover {
  font-weight: 700;
  color: var(--HapmentorBlue);
}
#termsAndConditions .modal-body {
  padding: 1.7rem !important;
}
#termsAndConditions .modal-body #terms-content {
  max-height: 40vh !important;
  overflow: scroll !important;
}
#termsAndConditions .modal-body label {
  font-size: 0.7rem;
}
#termsAndConditions .terms-confirm .form-check-input {
  min-width: 15px;
  min-height: 15px;
}
@media only screen and (max-width: 670px) {
  #termsAndConditions .terms-buttons {
    width: 100%;
    margin-top: 10px;
  }
  #termsAndConditions .terms-confirm {
    flex-direction: column;
  }
  #termsAndConditions .modal-tittle h5 {
    font-size: 1rem !important;
  }
  #termsAndConditions .language {
    font-size: 0.8rem !important;
  }
  #termsAndConditions .language a {
    font-size: 0.8rem !important;
  }
}

.image-cropper .modal-content {
  border: solid 2px var(--HapmentorBlue);
  border-radius: 0;
  height: 500px;
  width: 500px;
}
.image-cropper .modal-content .modal-header, .image-cropper .modal-content .modal-footer {
  border: 0;
}
.image-cropper .modal-content .modal-footer .bluebttn {
  margin-top: 40px !important;
}
@media only screen and (max-width: 950px) {
  .image-cropper .modal-content {
    width: 90vw !important;
  }
}

.cr-slider-wrap .cr-slider {
  border: 0 !important;
  margin-bottom: 30px !important;
}

.croppie-container .cr-viewport {
  width: 300px !important;
  height: 250px !important;
}

/*# sourceMappingURL=app.css.map */
