

#filter-container {
  height: fit-content;
  margin-left: 24px;
}

.mentorgpt-header {
  color: #000;

  /* H3 */
  font-family: Epilogue;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 67.2px */
  letter-spacing: -1.6px;
  margin-bottom: 32px;
}

.mentorgpt-subheader {
  color: #000;

  /* body ml */
  font-family: 'Poppins';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.909px; /* 172.724% */
  letter-spacing: -0.194px;
}

.mentorgpt-name {
  color: #111;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: none !important;
  /* 24px */
}

.mentorgpt-designation {
  color: rgba(17, 17, 17, 0.70);

  /* body S */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.15px;
  margin-bottom: none !important;
}

.mentorgpt-bio {
  color: #111;

  /* body S */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.15px;
  margin-bottom: none !important;
}
 
 

.mentorgpt-content {
  height: fit-content;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 10%;
}
 
.mentorgpt-lesson-image {
  min-height: 351px;
  max-height: 351px;
}

.mentorgpt-lesson-name-style {
  color: #010101;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 26px */
  letter-spacing: -0.243px;

  margin-top: 20px;
}

.mentorgpt-lesson-category-style {
  color: #767676;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.15px;
}
 




/* -------------- MentorGPT Popup Styling ------- */

.mentorgpt-bubble {
  position: sticky;
  top: 15%;
  right: 0px;
  z-index: 999;
  height: 5px;
}

 


.shrink {
  transform: scale(0.9);
  /* Spin effect */
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  /* Adjust the cubic-bezier values for a custom easing effect */
}

.grow {
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* CSS */
.grow-on-hover {
  transition: transform 0.3s ease-in-out;
}

.grow-on-hover:hover {
  transform: scale(1.2);
  /* Adjust the scale factor as needed */
}



.popup-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  /* bottom: 0; */
  /* left: 0; */
  top: 5vh;
  right: 1%;
  /* transform: translateX(-50%); */
  background-color: white;
  width: 45%;
  padding: 24px;
  max-height: 75vh;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  min-height: 30vh;
}
@media only screen and (max-width: 1024px){
.popup-box{
  width: 65%;
}
}
@media only screen and (max-width: 767px){

  .popup-box {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 25%;
    right: 0;
    /* transform: translateX(-50%); */
    background-color: white;
    width: 100%;
    height: 100vh;
    padding: 24px 15px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: 9999;
    max-height: 76vh;
  }
  .mentorgpt-searchbox {
    height: 45px;
  }
  .mentorgpt-submit-button button {
    height: 45px;
  }
}

.star-icon {
  margin-left: 10px;
  margin-right: 10px;
}

.mentorgpt-searchbox {
  width: 90%;
  height: 53px;
  font-size: 16px;

  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
  border: 1px solid #15143966;
}

.mentorgpt-searchbox input {
  height: 100%;
  background: transparent;
}

.mentorgpt-search {
  position: relative;
  margin-top: auto;
}

.mentorgpt-container-search {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.mentorgpt-submit {
  background-color: black;
  padding: 10px;
  border-radius: 10px;
  border: none;
}


.mentorgpt-submit-button {
  margin-left: 8px;
}
 
.mentorgpt-help-text {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  padding-left: 0;
  padding-right: 0;
}

.mentorgpt-examples {
  color: #111;

  /* Body M */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */

  border-radius: 20px;
  background: #F6F6F6;
  display: flex;
  padding: 4px 16px;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.s_more{
  margin-top:40px;
}