@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(29, 80%, 58%);
    --first-color-light: hsl(29, 80%, 70%);
    --black-color: #fff;
    --text-color: hsl(29, 8%, 65%);
    --body-color: hsl(29, 100%, 99%);
  
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Poppins", sans-serif;
    --h3-font-size: 1.125rem;
    --smaller-font-size: 0.75rem;
  }
  * {
    margin: 0;
    padding: 0;
  }
  #discover_container {
    opacity: 0;
  }
  
.roles_container {
    display: flex;
}
.role_button {
    margin: 0 1rem;
    background-color: #d65471;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    max-width: 150px;
    text-align: center;
    font-family: var(--body-font);
}
.users_container {
  min-width: 100vw;
  /* min-height: 100vh; */
  background-color: #F4FCFF;
    text-align: center;
  }
  .users_container_header {
    padding-top: 6rem;
  }
  .users_profiles_container {
    display: flex;
    /* align-items: center; */
    /* justify-items: center; */
    margin-top: 2rem;
    justify-content: space-evenly;
   /* grid-template-columns: repeat(3,1fr); */
}
.card {
  cursor: pointer;
    margin: 1.5rem 0.5rem;
    position: relative;
    width: 55vw;
    background-color: var(--black-color);
    padding: 1.25rem 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 16px hsla(29, 75%, 8%, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .card__img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .card__border span,.card__border_profile span,.card__border_profile_self span,.card__border_profile2 span {
    font-size: 30px;
    color: var(--first-color);
  }
  .card__border2 span {
    text-align: center;
  }
  .card__border,.card__border_profile,.card__border_profile_self,.card__border_profile2 {
    width: 70px;
    height: 70px;
    border: 2px solid var(--first-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    /* margin: 0 auto 0.15rem; */
  }
  
  .card__border2 {
    width: 50px;
    height: 50px;
    border: 2px solid var(--first-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .card__border2 span {
    font-size: 30px;
    color: var(--first-color);
  }
  .card__border_profile2,.card__border_profile_self {
    margin: 0 auto 0.15rem;
  }
  
  .card__name {
    color: var(--first-color);
    font-size: 20px;
    font-weight: 500;
  }
  
  .card__profession {
    color: var(--text-color);
    font-size: var(--smaller-font-size);
    font-weight: 500;
  }


  .card__social-control {
    position: relative;
    transform-origin: 18px 18px;
    transition: transform 0.45s ease;
    transform: rotate(0);
  }
  
  .card__social-toggle {
    display: inline-flex;
    background-color: var(--black-color);
    color: var(--first-color);
    /* font-size: 1.25rem; */
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 10;
  }
  
  .card__social-text {
    font-size: 16px;
    display: block;
    color: var(--black-color);
    /* font-size: var(--smaller-font-size); */
    font-weight: 500;
  }
  
  .card__social-list {
    display: inline-flex;
    column-gap: 0.75rem;
    transform: rotate(135deg);
    transform-origin: 18px 17px;
  }
  
  .card__social-link {
    display: inline-flex;
    background-color: var(--first-color-light);
    color: var(--black-color);
    font-size: 1.25rem;
    padding: 6px;
    border-radius: 50%;
  }
  
  .card__social-text,
  .card__social-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 3.1rem;
  }
  
  .card__social-text {
    top: 0.5rem;
  }
  
  /* Rotate social */
  .animation .card__social-control {
    transform: rotate(-135deg);
  }
  
  /* Up animation */
  .card__social.animation {
    animation: up-animation 1s ease-in-out forwards;
  }
  
  @keyframes up-animation {
    0%,
    100% {
      transform: rotate(0);
    }
    50%,
    60% {
      transform: rotate(-3deg);
    }
    88% {
      transform: rotate(1deg);
    }
  }
  
  /* Down animation */
  .card__social.down-animation {
    animation: down-animation 1s ease-in-out forwards;
  }
  
  @keyframes down-animation {
    0%,
    100% {
      transform: rotate(0);
    }
    50%,
    60% {
      transform: rotate(6deg);
    }
    0%,
    88% {
      transform: rotate(-1deg);
    }
  }

  .Jam_header {
    background-color: #D6EAF8;
    padding: 7px 21px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.title h1 {
  padding: 0;
  font-family: "Nunito";
  font-weight: 600;
}
sup {
 margin: 0;
 padding: 0;
}
.select_role_page_container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.select_role_page_container label {
  margin-right: 10px;
}
.select_role_page_container select {
  width: 200px;
  padding: 5px 10px;
}
.user_profile_container_cover,.self_profile_container_cover,.changeLocation_container_cover,.roles_container_dialog,.goals_container_dialog,.changelookingFor_container,.lookingFor_section_cover,.addNewRequirement_container,.changeEducation_container_cover,.changeExperience_container_cover,.EditEducation_container_cover,.EditExperience_container_cover,.QnA_container_cover,.responses_list_container_cover,.response_container_cover {
   background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    top: 0;
    left: 0;
    position: fixed;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
}

.user_profile_container,.self_profile_container,.changelocation_container_inside,.changeroles_container,.changeGoals_container,.changelookingFor_div,.lookingForSection,.addNewRequirement_div,.changeEducation_container_inside,.changeExperience_container_inside,.EditEducation_container_inside,.EditExperience_container_inside,.QnA_container,.responses_list_container,.response_container {
  margin-top: 3rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  padding: 1rem 2rem;
  width: 50vw;
  /* height: 400px; */
}
.addNewRequirement_div,.responses_list_container,.response_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user_profile_container {
  height: 500px;
  overflow-y: scroll;
}
.QnA_container {
  height: 80vh;
  overflow-y: scroll;
}
.responses_list_container,.response_container {
  max-height: 80vh;
  overflow-y: scroll;
}
#profile_container_close_button,#selfprofile_container_close_button,#changeLocation_container_close_button,#changeRoles_container_close_button,#changeGoals_container_close_button,#changeLookingFor_container_close_button,#lookingForSection_close_button,#addNewRequirement_container_close_button,#requiredSkills_container_close_button,#changeEducation_container_close_button,#changeExperience_container_close_button,#EditEducation_container_close_button,#EditExperience_container_close_button,#QnA_container_close_button,#responseList_container_close_button,#response_container_close_button {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: white;
  font-size: 20px;
}
.userRoles_tag,.userRoles_tags_education {
  border-radius: 10px;
  background: #d65471;
  color: white;
  padding: 5px 10px;
}
.userRoles_tags_education,.userRoles_tags_experience {
  margin-right: 10px;
  cursor: pointer;
}
.user_profile_card hr {
  margin: 0.5rem 0;
}
.skills_container_cover h4 {
  margin-bottom: 10px;
}
.skills_container span,.goals_container span,.skills_container_self span,.goals_container_self span,.education_info span {
  margin-right: 10px;
}
.card__border_profile span,.card__border_profile_self span,.card__border_profile2 span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nice-select {
  display: none;
}
.userdpMain {
  border-radius: 50%;
  cursor: pointer;
}
.title_right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title_right a {
  color: #2F4B6E;
  font-size: 25px;
  margin-right: 30px;
  text-decoration: none;
  font-family: "Nunito";
  font-weight: 600;
}
.title_right a:hover {
  color: #d65471;
}
.sendRequest_dialog,.AddQnA_dialog {
  padding: 1rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.sendRequest_dialog p,.AddQnA_dialog p {
  font-size: 20px;
}
.sendRequest_dialog div,.AddQnA_dialog div {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   margin-top: 30px;
}
.sendRequest_dialog button,.AddQnA_dialog button {
  width: 70px;
  border: none;
  padding: 5px 10px;
  font-size: 18px;
  border-radius: 5px;
  margin-left: 20px;
  outline: none;
}
#reject_Sendrequest_btn,#reject_Questionnaire_btn {
  border: 1px solid #d65471;
  background: none;
  color: #d65471;
}
#accept_Sendrequest_btn,#accept_Questionnaire_btn {
  background: #d65471;
  color: #fff;
}
.user_details {
  width: 100%;
  text-align: center;
}
.user_profile_container h4,.self_profile_container h4 {
  text-transform: uppercase;
  font-size: 20px;
}
.skills_container,.goals_container {
  margin: 1rem 0;
  width: 100%;
}
.about_me_container p,.location_container p {
  margin: 0;
  padding: 0;
}
.user_details h3 {
  margin: 0;
}
.connect_profile_btn_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.connect_profile_btn_first,.saveUserDetails_profile_btn,.connect_profile_btn_second,#showResponses_btn,#Save_QnA_answers_btn {
  width: 200px;
  margin-top: 10px;
  text-align: center;
  height: 50px;
  border: none;
  background: #d65471;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
#editLocation_btn,#editskills_btn,#editgoals_btn,#editAbout_btn,#AddRequiredskills_btn,#editEducation_btn,#editExperience_btn,#changeRequirementTitle_btn {
  width: 20px;
  cursor: pointer;
}
#editAbout_btn img{
  cursor: pointer;
  width: 20px;
}
.self_profile_container input {
  border: none;
  outline: none;
}
.self_profile_container input::placeholder {
  color: black;
}

.self_header_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#changeCountry_btn,#save_roles_btn,#save_goals_btn,#changelookingFor_submit_btn,#addNewRequirement_submit_btn,#save_requiredSkills_btn,#Save_editedEducationDetails_btn,#Save_editedExperienceDetails_btn,#Save_changedEducationDetails_btn,#Save_changedExperienceDetails_btn,#select_skills_side_btn,#submit_QnA_btn {
  width: 200px;
  background-color: #d65471;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
  margin-top: 20px;
  cursor: pointer;
  outline: none;
}
#select_skills_side_btn {
  width: 130px;
}
#userNameInput_profile {
  width: 100%;
  text-align: center;
}
.user_profile_container_cover,.self_profile_container_cover,.changeLocation_container_cover,.roles_container_dialog,.goals_container_dialog,.changelookingFor_container,.addNewRequirement_container,.changeEducation_container_cover,.changeExperience_container_cover,.EditEducation_container_cover,.EditExperience_container_cover,.QnA_container_cover,.lookingFor_section_cover,.responses_list_container_cover,.response_container_cover {
  z-index: 10;
}
.skills_container_self {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.changeGoals_container,.changeroles_container,.changelocation_container_inside,.select_goals_div_change,.select_role_div_change {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.changelocation_container_inside div {
  margin: 1.5rem 0;
}
.changelocation_container_inside div label {
  margin: 15px 0;
}
.select_goals_div_change p,.select_role_div_change p {
  text-align: center;
}
.select_role_div_change div,.select_goals_div_change div {
  margin: 0.5rem 0;
}
.select_role_div_change label,.select_goals_div_change label {
 font-size: 18px;
 width: 300px;
}
#aboutMeContainer_profile {
  width: 95%;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
}
.changelocation_container_inside {
  height: 420px;
  width: 400px;
}
.changelocation_container_inside label {
  font-size: 18px;
}

.changelocation_container_inside div {
  width: 100%;
}
.changelocation_container_inside select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
}
.lookingforSelf_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#editLookingfor_btn {
  width: 30px;
  cursor: pointer;
}
.changelookingFor_container select,.addNewRequirement_div select {
  height: 50px;
  border-radius: 10px;
  width: 100%;
  margin-top: 1rem;
  padding: 0 10px;
}

.changelookingFor_container textarea,.addNewRequirement_div textarea,.Questionnaire_container textarea  {
  width: 100%;
  margin-top: 1rem;
  outline: none;
  padding: 10px 15px;
  border-radius: 10px;
}
.Questionnaire_container textarea,.QnA_answers {
  border: none;
  border-bottom: 1px solid black;
}
.QnA_answers {
  width: 100%;
  padding: 0 10px;
  border-radius: 10px;
  outline: none;
}
.addNewRequirement_title_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#addNewRequirement_title {
  width: 90%;
}
.addNewRequirementstartupWebsite_container {
  width: 100%;
}
.changestartupWebsite_container input,.addNewRequirementstartupWebsite_container input {
  width: 100%;
  padding: 5px 10px;
  margin: .5rem 0;
  border-radius: 10px;
  height: 40px;
  outline: none;
  border: 1px solid black;
}
.username,#lookingForTitle {
  margin: 0;
}
#addNewRequirement_btn {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 50px;
}
.lookingForSection h4 {
  text-transform: uppercase;
  font-size: 20px;
}
#lookingFor_username {
  cursor: pointer;
  font-size: 25px;
}
.self_profile_container,.user_profile_container,.lookingForSection,.changeGoals_container,.changeroles_container {
  height: 75vh;
  overflow-y: scroll;
}
.lookingForSection_header {
  font-size: 25px;
  text-align: center;
}
.skills_required_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
  padding: 10px;
  border-radius: 0.5rem;
  margin: 10px 0;
  width: 100%;
}
.skills_required_div h4 {
  margin: 0;
  font-size: 18px;
}
.userprofile_open_container_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.userprofile_open_container_div img {
  width: 30px;
}
.changeEducation_container_inside textarea,.changeExperience_container_inside textarea,.EditEducation_container_inside textarea,.EditExperience_container_inside textarea {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
  padding:10px;
  outline: none;
}
.select_goals_container_header {
  display: flex;
  /* justify-content: center;
  align-items: center; */
  margin: 1rem 2rem;
  width: 100%;
  overflow-x: auto;
}

.rest_goals_container {
  display: flex;
  flex-wrap: nowrap;
  /* overflow-x: auto;
  width: 100%; */
}

.goals_tags,.goals_tags_fetched {
  margin-right: 15px;
  background: #d65471;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}
.goals_tags_fetched,.goals_tags {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 15px;
  background: #d65471;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  /* min-width: 100px; */
}

.selected_goal_list {
  background: grey;
  color: white;
}
.userRole_tag {
  background: #d65471;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  padding: 10px;
  margin: 5px 0;
}
.userRoles_tags_container {
  display: flex;
  flex-direction: column;
}
.title_container {
  width: 50%;

}
.title_container p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.user_details_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 120px;
}
.user_details_container h3 {
  margin: 10px 0;
}
 .select_skills_side_container {
  max-width: 250px;
} 
.events_list_dialog {
  max-width: 250px;
} 
.select_skills_side_div {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20px;
}
.select_skills_side_div div {
  margin: 5px 0;
}
.select_skills_side_div input {
  margin-right: 10px;
}
#addMoreGoals_btn {
  width: 50px;
  height: 50px;
  background: #F4FCFF;
}
.QnA_container_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#AddMoreQuestions_btn {
  width: 30px;
  cursor: pointer;
}
.response_single_card {
  width: 100%;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
  padding: 15px;
  border-radius: 0.5rem;
  margin: 10px 0;
}
.responses_list_div,.response_single_div {
  margin-top: 20px;
  width: 100%;
}
.select_goals_checkbox {
  width: 50px;
  height: 20px;
}
.event_list_card {
  width: 100%;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
  padding: 15px;
  border-radius: 0.5rem;
  margin: 10px 0;
  cursor: pointer;
}
.event_list_card img {
  width: 100%;
  border-radius: 5px;
}
.event_list_card h4 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}


