:root {
  --appHeight: 100%;
  --header-height: 73px;
  --scroll-to-top-button-bottom: 1rem;
  --h-blue: #36f;
  --h-blue-mid: #7bc4ff;
  --h-blue-mid-transparent: rgba(51, 102, 255, 0.7);
  --h-blue-light: #fbfbff;
  --h-grey: #c4c4c4;
  --h-grey-light: #f5f5f5;
  --h-grey-1: #707070;
  --h-grey-2: #ccc;
  --h-grey-2-transparent: rgba(204, 204, 204, 0.2);
  --h-grey-3: #f7f7f7;
  --h-grey-dark: #333;
  --grey-overview: #daebf099;
  --h-red: #e05030;
  --h-red-light: rgba(238, 2, 2, 0.1);
  --h-green-dark: #327543;
  --h-green: #02e0c0;
  --h-green-transparent: rgba(0, 247, 140, 0.1);
  --h-green-light: rgba(0, 247, 140, 0.1);
  --h-yellow: #fcffaa;
  --h-white: #fff;
  --default-font: 'Lexend Deca';
  --elegant-font: 'Cormorant Garamond', serif;
  --robot-font: 'Roboto', sans-serif;
  --box-shadow-sketch-11: rgba(5, 3, 3, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  --base-border-radius: 28px;
  --system-font-stack: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
    helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

::-webkit-scrollbar-thumb {
  width: 6px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar {
  width: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: normal !important;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body,
#root {
  height: 100%;
}

.fullPage {
  height: calc(var(--appHeight) - var(--header-height));
}

.font-cormorant {
  font-family: var(--elegant-font);
}

* {
  box-sizing: border-box;
}

.nunito-black {
  font-weight: 900 !important;
}

.half_sec_transition {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.openDiv {
  position: absolute;
  opacity: 0;
}

.openDiv.active {
  position: static;
  opacity: 1;
  transition: opacity 0.7s linear;
}

.custom-shadow {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Font sizes */

.fs-0_6 {
  font-size: 0.6rem !important;
}

.fs-0_7 {
  font-size: 0.7rem !important;
}

.fs-0_8 {
  font-size: 0.8rem !important;
}

.fs-0_9 {
  font-size: 0.9rem !important;
}

.fs-1 {
  font-size: 1rem !important;
}

.fs-1_2 {
  font-size: 1.2rem !important;
}

.fs-1_3 {
  font-size: 1.3rem !important;
}

.fs-1_5 {
  font-size: 1.5rem !important;
}

.fs-1_9 {
  font-size: 1.9rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

/* Colors */

.color-grey-dark {
  color: var(--h-grey-dark);
}

.deep-blue {
  background-color: #2ea7f7;
}

.deep-blue-text {
  color: #2ea7f7;
}

.medium-blue {
  background-color: #54b8f9;
}

.light-blue {
  background-color: #82c5f2;
}

.bg-lightblue {
  background-color: #daebf04d;
}

.bg-h-blue-light {
  background-color: var(--h-blue-light) !important;
}

.bg-green-transparent {
  background-color: var(--h-green-transparent);
}

.bg-grey-light {
  background-color: var(--h-grey-light);
}

.bg-grey-overview {
  background-color: var(--grey-overview);
}

.bg-magenta {
  background-color: magenta !important;
}

.blue-gradient {
  background-image: linear-gradient(to bottom, white 0, #e6f3fc 100%);
}

.blue-gradient-reverse {
  background-image: linear-gradient(to bottom, #b1defc 0, white 100%);
}

.blue-text {
  color: #3366ff;
}

.white-text {
  color: white;
}

.red-text {
  color: var(--h-red);
}

.orange-text {
  color: orange;
}

.purple-text {
  color: purple;
}

.no-margin {
  margin: 0px;
}

.social-share {
  margin-right: 5px;
  cursor: pointer;
}

.text-justify {
  text-align: justify;
}

.full-width {
  width: 100%;
}

/* Hyperlink */
.link-no-style,
.link-no-style:hover,
.link-no-style:active {
  color: inherit;
  text-decoration: inherit;
}

/*a:link{
  text-decoration: none!important;
}*/

/*a {word-break: break-all;}*/

.text-bold {
  font-weight: bold;
}

.text-polygence {
  color: var(--h-blue);
}

.text-h-grey-1 {
  color: var(--h-grey-1);
}

.text-h-grey-dark {
  color: var(--h-grey-dark);
}

.underline {
  text-decoration: underline !important;
}

.pay-link:hover {
  color: #0734ba;
}

.greybg {
  background-color: grey;
}

.centerFlex {
  align-items: center;
  display: flex;
  justify-content: center;
}

.image-cropper {
  border-radius: 50%;
}

.parent {
  height: 150px;
  background: red;
  padding: 10px;
  display: flex;
}

.child {
  width: 100px;
  background: blue;
}

/*.navbar,
.navbar-dark {
  font-weight: bold !important;
}*/

.solid-nav-color {
  background-color: #f2f8fc;
}

@media (min-width: 0px) {
  .transparent-nav-color {
    background-color: rgba(242, 248, 252, 1);
  }
}

@media (min-width: 260px) {
  .transparent-nav-color {
    background-color: rgba(242, 248, 252, 0.75);
  }
}

.nav-icon-right {
  text-align: right !important;
  margin-right: 0px;
}

.logo-style {
  height: 30px !important;
  vertical-align: middle !important;
  margin-left: 10px;
}

.logo-style-ivygate {
  height: 30px !important;
  vertical-align: middle !important;
  margin-left: 10px;
}

.logo-style-college-coach {
  width: 80px;
}

/*.logo-style-collegewise {
  height: 80px !important;
  vertical-align: middle !important;
  margin-left: 10px;
}*/

.drop-style {
  height: 8px !important;
  padding-bottom: 2px;
  margin-left: 5px;
}

.drop-zone {
  border-radius: 5px;
  color: #007bff;
  border: 1px solid #007bff;
  height: 100px;
}

.my-datepicker-element {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #bec0c2;
  border-radius: 5px;
}

.full-width {
  width: 100%;
}

.log_buttons {
  background-color: transparent;
  margin: 5px 0px 0px 10px;
  padding: 5px 10px 3px 10px;
  border-radius: var(--base-border-radius);
  color: #3366ff;
  border: 1px solid #3366ff;
}

.log_buttons a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.log_buttons:hover {
  background-color: #0734ba;
  border: 1px solid #0734ba;
  color: white;
  text-decoration: none !important;
}

.dropdown_style {
  position: relative;
  z-index: 1000;
  font-size: 15px;
}

@media (min-width: 992px) {
  .dropdown_style {
    padding: 8px;
    position: absolute;
    right: 0px;
    background-color: #f2f8fc;
    border-radius: 5px;
    border: 1px solid #82c5f2;
  }
}

.drop_buttons {
  background-color: transparent;
  margin: 3px 25px 0px 0px;
  font-size: 14px;
}

.react-select-required {
  border: 1px solid var(--h-red);
  border-radius: 5px;
}

.slim_buttons {
  background-color: transparent;
  margin: 3px 25px 0px 0px;
  font-size: 14px;
}

.slim_color {
  color: #0734ba;
}

.slim_buttons a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.slim_buttons:hover {
  color: #0734ba;
  text-decoration: none !important;
}

.blue-log-button {
  color: #3366ff;
}

.white-log-button {
  color: white;
}

.welcome_text {
  background-color: transparent;
  margin: 3px 25px 0px 0px;
  font-size: 14px;
}

.black_button {
  padding: 5px 10px 3px 10px;
  margin: 3px 25px 0px 0px;
  border-radius: var(--base-border-radius);
  font-size: 15px;
  background-color: rgba(235, 239, 252, 0.5);
  color: rgba(51, 102, 255);
  text-decoration: none !important;
  white-space: nowrap;
}

.full_button {
  padding: 8px 13px 8px 13px;
  border-radius: var(--base-border-radius);
  font-size: 15px;
  background-color: #3366ff;
  border: 1px solid #3366ff;
  color: white;
  text-decoration: none !important;
  white-space: nowrap;
}

.full_button:hover {
  background-color: #0734ba;
  border: 1px solid #0734ba;
}

.full_button_giant {
  padding: 8px 13px 8px 13px;
  border-radius: var(--base-border-radius);
  font-size: 17px;
  background-color: #3366ff;
  border: 1px solid #3366ff;
  color: white;
  text-decoration: none !important;
  white-space: nowrap;
}

.full_button_giant:hover {
  background-color: #0734ba;
  border: 1px solid #0734ba;
  color: white;
}

.full_button_giant_green {
  background-color: #02e0c0;
  border: 1px solid #02e0c0;
  color: #0734ba;
}

.full_button_giant:focus {
  outline: none;
  box-shadow: none;
}

.roles_button {
  padding: 5px 12px 5px 12px;
  border-radius: var(--base-border-radius);
  font-size: 18px;
  border: 1px solid #3366ff;
  color: #3366ff;
  text-decoration: none !important;
  white-space: nowrap;
}

.roles_button:hover {
  background-color: #0734ba;
  color: white;
  border: 1px solid white;
}

.overlay_white_button {
  padding: 8px 13px 8px 13px;
  border-radius: var(--base-border-radius);
  font-size: 15px;
  border: 2px solid white;
  background-color: transparent;
  margin-top: 10px;
  color: white;
  text-decoration: none !important;
  white-space: nowrap;
}

.overlay_white_button:hover {
  background-color: #3366ff;
  border: 2px solid #3366ff;
}

.overlay_white_button:focus {
  outline: none;
  box-shadow: none;
}

.overlay_blue_button {
  padding: 5px 10px 5px 10px;
  border-radius: var(--base-border-radius);
  font-size: 15px;
  background-color: #3366ff;
  border: 1px solid #3366ff;
  color: white;
  text-decoration: none !important;
  white-space: nowrap;
}

.overlay_blue_button:hover {
  background-color: #0734ba;
  border: 1px solid #0734ba;
  color: white;
}

.landing-fonts {
  text-align: justify;
}

.landing-fonts h3 {
  color: #3366ff;
}

.blue-gradient li {
  margin-bottom: 8px;
}

@media (min-width: 0px) {
  .landing-fonts {
    font-size: 16px;
  }
  .overlay-font {
    font-size: 17px;
    max-width: 90vw;
  }
  .heading-font {
    font-size: 20px;
  }
  .large-overlay-font {
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }
  .iframe-style {
    width: 80vw;
    height: 45vw;
  }
  .timeline-style {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .landing-fonts {
    font-size: 18px;
  }
  .overlay-font {
    font-size: 20px;
    max-width: 53vw;
  }
  .heading-font {
    font-size: 30px;
  }
  .large-overlay-font {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  .iframe-style {
    width: 50vw;
    height: 28.125vw;
  }
}

@media (min-width: 992px) {
  .timeline-style {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .space-collapsed {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.article-style {
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.selector-style select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.selector-style select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.heading-highlight {
  padding: 5px;
  border-radius: 5px;
  background-color: #5bc0de;
  color: white;
}

.heading-highlight-container:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.section-incomplete {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid red;
}

.section-incomplete:after {
  content: 'Section incomplete';
  display: block;
  color: red;
  font-size: 12px;
}

/*/ Small 576px, Medium 768px, 992px, 1200px*/

.profile-home textarea {
  height: 250px;
}

.profile-home-student textarea {
  height: 180px !important;
}

.contact-form textarea {
  height: 150px;
}

.parent-interest-form textarea {
  height: 100px !important;
}

.side-bar textarea {
  height: 80px !important;
}

.long-survey textarea {
  height: 120px !important;
}

.project-prerequisites textarea {
  height: 38px;
}

.center-cropped {
  text-align: center;
}

.landing-image {
  height: 100vh;
  display: block;
  margin: auto;
}

div.outer {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
div.inner {
  position: relative;
  float: right;
  right: 50%;
}
div.inner img {
  position: relative;
  right: -50%;
  /*height: 102vh;*/
}

div.inner video {
  position: relative;
  right: -50%;
  min-height: 100vh;
  min-width: 100vw;
}

div.inner video[poster] {
  position: relative;
}

.info-div {
  /*background-color: #2ea7f7;*/
  border-radius: 5px;
  border: 1px solid black;
  color: black;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px;
}

.info-icon {
  margin-bottom: 10px;
}

.div-bubble {
  width: 175px;
  background-color: #54b8f9;
  border-radius: 10px;
  margin: 10px;
  color: white;
  padding: 15px;
}

:root {
  --radio-width: 80px;
}

.radio-group {
  min-width: 460px;
}

.radio-row {
  height: 60px;
}

.radio-left-shift {
  margin-left: 107px;
}

.radio-button-shift {
  margin-left: 27px;
}

.radio-buttons {
  width: var(--radio-width);
}

.radio-first-label {
  width: var(--radio-width);
}

.radio-label {
  width: var(--radio-width);
}

.radio-text {
  width: 110px;
}

/************************/
/* Modal general features*/
/************************/

.modal-overlay {
  position: absolute;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.session-overlay {
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 580px;
}

.session-overlay.wide {
  max-width: 80%;
}

.case-study-overlay {
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 90vw;
  max-width: 900px;
}

.policy-overlay {
  max-height: 90vh;
  overflow-y: auto;
  max-width: 750px;
}

.session-style {
  background: white;
  box-shadow: var(--shadow-card-2);
  border-radius: var(--base-border-radius);
}

.session-overlay-text {
  padding: 10px;
  color: black;
}

/************************/
/* blog features*/
/************************/

.blog-heading {
  background-color: #ededed;
  color: #474747;
  padding-top: 20px;
  padding-bottom: 20px;
}

.answers {
  font-style: italic;
  padding-left: 20px;
  padding-right: 20px;
}

.blog-contact-div {
  border-radius: 10px;
  padding: 10px;
  color: white;
}

.blog-overlay {
  width: 90%;
  max-width: 400px;
  background: #58bbfc;
  border-radius: 5px;
  border: 1px solid #9dd6fc;
}

.blog-overlay-text {
  padding: 10px;
  color: white;
}
.white-outline {
  border: 1px solid white;
  border-radius: 5px;
}
/************************/
/* user overlay features*/
/************************/

.ReactModal__Overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2000;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}

.ReactModal__Overlay--after-open {
  opacity: 1;
}

.ReactModal__Overlay--before-close {
  opacity: 0;
}

.user-overlay {
  width: 340px;
  background: white;
  border-radius: var(--base-border-radius);
}

.user-overlay-text {
  color: black;
  text-align: center;
  padding: 10px;
}

.small-login-button {
  background: #0734ba;
  border: 1px solid #0734ba;
  border-radius: 5px;
  padding: 1px;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
  cursor: pointer;
}

.small-login-button:hover {
  background: white;
  border: 1px solid #0734ba;
  color: #0734ba;
  cursor: pointer;
}

.extend-button {
  background-color: white;
}

.proposal-modal {
  z-index: 100;
}

.extend-button:hover {
  background-color: #0078ff;
  color: white;
}

/*button inside form needs to be explicitly centered*/
.submit-button {
  position: relative;
  margin: 8px 0 8px 0;
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  background: #0734ba;
  border: none;
  border-radius: var(--base-border-radius);
  padding: 10px;
  color: white;
  width: 85%;
  /*font-family: $main-font*/
  font-size: 18px;
  cursor: pointer;
}

.submit-button:disabled {
  background-color: var(--h-grey-1);
}

.enter-site-button {
  position: relative;
  margin: 15px 0 15px 0;
  background: #0734ba;
  border: none;
  border-radius: 5px;
  padding: 10px;
  color: white;
  width: 85%;
  /*font-family: $main-font*/
  font-size: 18px;
  cursor: pointer;
}

.Input {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  /*border-bottom: 1px solid #58a4b0;*/
  margin: 0 20px;
}

.input-field {
  border: 0;
  background: transparent;
  width: 100%;
  color: black;
  font-size: 18px;
  border-bottom: 1px solid grey;
}

.input-field:focus {
  opacity: 1;
  outline: none;
}

.form-validation-error {
  text-align: center;
  color: var(--danger);
}

.required-info p:before {
  color: var(--h-red);
  content: '* ';
  display: inline;
}

.required-info-after p:after {
  color: var(--h-red);
  content: ' *';
  display: inline;
}

.required:after {
  color: var(--h-red);
  content: ' *';
  display: inline;
}

.hidden {
  display: none;
  visibility: hidden;
}

.file-upload-buttons {
  margin: 5px 5px 5px 0px;
  cursor: pointer;
}

.dropzone:focus {
  outline: none;
}

.university-detail {
  font-weight: bold;
}

.dashboard-heading {
  font-size: 18px;
}

.cursor-auto {
  cursor: auto;
}

.clickable {
  cursor: pointer;
}

.greendot {
  height: 8px;
  width: 8px;
  margin-bottom: 1px;
  border-radius: 50%;
  background-color: #25c43f;
  display: inline-block;
}

.greydot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #a5acb7;
  display: inline-block;
}

.reddot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #bf0a0a;
  display: inline-block;
}

.blink_me {
  animation: blinker 3s linear infinite;
}

hr {
  padding: 0px !important;
  margin: 0px !important;
}

.grey-underline {
  /*border-bottom: 1px solid #d1d1d*/
  border-bottom: 1px solid #dedede;
}

.blue-underline {
  border-bottom: 1px solid var(--h-blue);
}

.connection-warning {
  color: #e00429;
}

.linkk:hover a {
  color: red !important;
  font-size: 40px;
}

/************************/
/*** messages page.   ***/
/************************/

.react-switch {
  vertical-align: middle;
  margin-bottom: 4px;
  margin-left: 5px;
}

.message_side_bar:hover {
  background-color: #ededf2;
}

.scrollable {
  overflow-y: auto;
}

.y-scroll {
  overflow-y: hidden;
}

.scroll-with-height {
  max-height: 90vh;
  overflow-y: auto;
}

.flex-fill {
  flex: 1 1 auto;
}

.chat-message {
  padding: 7px 10px;
  font-size: 14px;
  border-radius: var(--base-border-radius);
}

.chat-message p {
  margin-bottom: 0;
}

.stamp-shifts {
  padding-left: 40px;
}

a.chat-message {
  word-break: break-all;
}

.left-message {
  background-color: #f2f2f2;
  color: black;
  max-width: 70%;
}

.right-message {
  background-color: #0078ff;
  color: white;
  max-width: 70%;
}

.right-message a {
  color: white;
  text-decoration: underline;
}

.admin-message {
  /*border: 0.5px solid grey;*/
  color: black;
  max-width: 70%;
  text-align: left;
}

.message-div:focus {
  outline: none !important;
}

.zoom-button {
  padding: 3px 8px 3px 8px;
  border-radius: 5px;
  font-size: 18px;
  border: 0px;
  margin-left: 10px;
  text-decoration: none !important;
  white-space: nowrap;
}

.zoom-button:focus {
  outline: none;
  box-shadow: none;
}

/************************/
/*** from confessions ***/
/************************/

.ephID-stamp-style {
  line-height: 1 !important;
  margin-left: 10px;
  margin-bottom: 5px;
  margin-top: 5px;
  text-indent: 0em;
}

.confession-div {
  border: 1px solid #dedede;
  border-radius: 10px;
  padding-top: 5px;
  margin-bottom: 8px;
  background-color: white;
}

.confession-heading {
  /*padding-top: 5px;*/
  padding-bottom: none;
}

.stream-confession-text-style {
  white-space: pre-line;
  padding: 0px 10px;
  margin-top: 0px;
  /*font-size: 17px;*/
}

.time-stamp-style {
  font-size: 11px !important;
  padding: none;
  margin: none;
  color: grey;
}

/************************/
/******* user forms *****/
/************************/

/*center input value*/
.userroutes input {
  text-align: center;
}

/*Change background in autofill textbox*/
.userroutes input:-webkit-autofill,
.userroutes input:-webkit-autofill:hover,
.userroutes input:-webkit-autofill:focus,
.userroutes input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*no underscore on hover*/
.userroutes a:hover,
.userroutes a:visited,
.userroutes a:link,
.userroutes a:active {
  text-decoration: none;
}

/*Change text in autofill textbox*/
.userroutes input:-webkit-autofill {
  -webkit-text-fill-color: black !important;
}

/*center placeholder*/
.userroutes ::-webkit-input-placeholder {
  text-align: center;
}

.userroutes :-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

.userroutes ::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

.userroutes :-ms-input-placeholder {
  text-align: center;
}

:invalid {
  box-shadow: none;
}

:-moz-submit-invalid {
  box-shadow: none;
}

:-moz-ui-invalid {
  box-shadow: none;
}

.project-details-form {
  width: 500px;
}
.project-details-form textarea {
  min-height: 200px;
}

/* vertical alignment of icons*/

.h-frame {
  position: relative;
}
.h-frame img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.Dashboard-input,
.Showcasing-filter-input {
  display: none;
}

.Dashboard-label,
.Showcasing-filter-label {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.125);
  color: #6c757d;
  border-radius: 4px;
  padding: 5px 10px;
  margin: 2px;
}

.Dashboard-input:checked + label,
.Showcasing-filter-input:checked + label,
.Dashboard-label.selected {
  background: rgba(0, 0, 0, 0.03);
  color: #007bff;
}

.Dashboard-search-input input,
.Showcasing-search-input {
  background: url(../images/search-thin.svg) no-repeat 16px;
  background-position-y: center;
  padding-left: calc(16px + 24px + 16px) !important;
}

.mardown-image {
  max-width: 100%;
}

.mardown-border {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
}

.player-wrapper {
  position: relative;
  padding-top: 56.25%;
  margin-left: auto;
  margin-right: auto;
  /*max-width: 70vw;*/
}

.react-player {
  position: absolute;
  top: 0;
  left: 0;
}

.penultimate-modal {
  height: 90vh;
}

.embedded-field {
  border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  padding-right: 5px;
  padding-left: 5px;
}

.embedded-field-thin {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  padding-right: 5px;
  padding-left: 5px;
}

.embedded-field-round {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 20px;
}

.white-text {
  color: white;
  transition: color 0.7s linear;
}

.visible-text {
  transition: color 0.7s linear;
}

.hidden-element {
  opacity: 0;
  transition: opacity 0.7s linear;
}

.visible-element {
  opacity: 1;
  transition: opacity 0.7s linear;
}

.case-study-img img {
  object-fit: cover;
  width: 100%;
  max-width: 300px;
  max-width: 500px;
}

.referral-page td,
th {
  border: 1px solid #a5acb7;
  border-radius: 5px;
}

.referral-page table {
  border-collapse: separate;
  border: solid #a5acb7 1px;
  border-radius: 6px;
  -moz-border-radius: 6px;
}

.referral-page td,
th {
  border-left: solid #a5acb7 1px;
  border-top: solid #a5acb7 1px;
}

.referral-page th {
  background-color: #82c5f2;
}

.no-focus:focus {
  outline: none;
  box-shadow: none;
}

.read-only-div {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.black-text {
  color: black;
}

div.page-header {
  position: relative;
  display: inline-block;
}

div.page-header h1 {
  position: absolute;
  display: inline-block;
  text-align: center;
  color: white;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
}

div.page-header h1::before {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  content: '';
}

img.page-header {
  width: 100vw;
}

.blog-summaries a {
  color: #212529;
}

.email-bounce span {
  color: red;
}

.email-bounce p {
  font-size: smaller;
  color: #555;
}

.enter-site-container {
  text-align: center;
  margin-top: 10px;
}

.interest-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.interest-container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.register-form .user-type label {
  cursor: pointer;
}

.register-form .user-type input[type='radio']:checked + span {
  color: var(--primary);
  border-bottom: 4px solid var(--primary);
}

.register-form .user-type input[type='radio'] {
  display: none;
}

button.close {
  position: absolute;
  top: -5px;
  right: 5px;
  outline: none;
  border: none;
  font-size: 30px;
  z-index: 1;
  background-color: transparent;
}

@media (max-width: 320px) {
  button.close {
    right: 5px;
  }
}

ul.label-before:before {
  content: attr(aria-label);
  font-size: 120%;
  font-weight: bold;
  margin-left: -15px;
}

ul.uploaded-files {
  list-style-type: none;
}

.rotate {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.mentor-profile-card {
  font-size: 15px;
}

.mentor-selector h5 {
  font-size: 1.1rem;
}

.mentor-selector .mentor-profile-card {
  font-size: 12px;
}

.selected-mentors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

@media (max-width: 800px) {
  .selected-mentors {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mentor-pic {
  position: relative;
  display: inline-block;
}

.selected-mentor img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.mentor-remove {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #555;
  position: absolute;
  top: 5px;
  right: 0;
}

.mentor-selector .mentor-card-container {
  overflow-y: auto;
  max-height: 60vh;
}

.number-selector {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.number-selector button {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto;
}

.left .number-selector button {
  margin: 1em;
}

.pagination {
  margin: 5px;
}

.pagination button {
  margin: 5px;
}

.profile-card-description p {
  margin: 0.5rem 0 0;
}

.profile-card-description p:first-of-type {
  margin: 0;
}

.profile-card-description h2 {
  font-weight: 700;
  font-size: inherit;
  margin: 0;
  margin-top: 1rem;
}

.profile-card-description h6,
.profile-card-description h5 {
  font-weight: 400;
  font-size: 80%;
  margin: 0;
  line-height: 1.5;
}

.profile-card-description h5 {
  padding-top: 1rem;
}

.profile-card-description ul {
  list-style-type: none;
  padding-inline-start: 0;
}

.profile-card-description ul li {
  font-size: 80%;
}

.partner-greeting p {
  margin-bottom: 0;
}

.template-editor .blue {
  color: #0078ff;
}

.template-editor .lightblue {
  color: #54b8f9;
}

.can-fade-out {
  transition: opacity 1s 500ms ease-out;
}

.can-fade-out.start {
  opacity: 0;
}

.simple-list {
  list-style-type: none;
  padding-inline-start: 0;
}

.btn-xsmall {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem !important;
}

.text-small {
  font-size: 0.7rem;
}

.ApplicationProcess-Icon-title {
  font-size: 1rem;
}

.ApplicationProcess-row {
  padding-top: 2rem !important;
}

.admin-email-table {
  max-width: 700px;
}

.admin-email-table .row:hover {
  background-color: #d9f0ff;
}

.border-gray {
  border-color: #ced4da;
}

.border-h-grey-dark {
  border-color: var(--h-grey-dark) !important;
}

.border-h-grey-2 {
  border-color: var(--h-grey-2) !important;
}

.red-border {
  border-color: var(--h-red) !important;
}

.markdown-paragraph-m-0 p {
  margin: 0;
}

.profile-help {
  font-size: 1rem;
  color: var(--h-grey-dark);
}

.time-zone-selector {
  flex-grow: 1;
}

.time-zone-selector .selected-timezone {
  color: #6c757d;
  display: block;
}

.time-zone-selector .selected-timezone:hover {
  color: #3366ff;
}

.time-zone-selector .selected-timezone .edit-icon {
  margin-top: 5px;
  vertical-align: text-bottom;
}

.profile-side-information {
  margin-bottom: 1rem;
  padding: 2rem;
  font-weight: 600;
  background-color: var(--h-blue-light);
  border-radius: var(--base-border-radius);
  box-shadow: var(--shadow-card-1);
}

.profile-side-information p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.profile-side-information ul {
  padding-inline-start: 1rem;
}

.profile-side-information img {
  display: block;
  align-self: end;
  width: 165px;
  margin-top: 1.8rem;
}

.profile-side-information a {
  display: contents;
}

.headerContainer {
  border-bottom: 1px solid #36f;
  font-weight: bold !important;
}

.headerContainer .dropdown-menu {
  z-index: 1021;
}

.headerContainer .nav-pills .show > .nav-link {
  background: none;
}

.headerContainer .dropdown-item.active {
  background: none;
}

.headerContainer .navbar .nav-item.dropdown,
.headerContainer .navbar .nav-item .nav-link {
  margin-right: 10px;
}

.mentor-screen h1 {
  text-align: center;
  font-size: 2rem;
}

.mentor-screen .profile-home {
  margin-top: -3rem;
}

.navbar-brand {
  padding-left: 1rem;
  margin-right: 0 !important;
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: var(--primary) !important;
}

.partnership p {
  font-size: x-small;
  color: var(--primary-darker);
}
.partnership h6 {
  margin: 0;
  font-size: small;
  color: var(--primary-darker);
}

@media (max-width: 768px) {
  .mobileNavigation__wrapper > a > div {
    position: relative;
  }
  .partnership {
    position: absolute;
    bottom: -10px;
    right: -5px;
  }
  .partnership h6,
  .partnership p {
    display: inline;
  }
}

.chat-with-me {
  background-color: white;
  border: 5px solid #02e0c0;
  border-radius: var(--base-border-radius);
  color: #36f;
  padding: 1.5rem;
  text-align: center;
}

.text-new-primary {
  color: #36f;
}

.can-fade {
  opacity: 0;
  transition: opacity 200ms ease;
}

.can-fade.visible {
  opacity: 1;
}

.tile-dashboard .tile {
  border-radius: var(--base-border-radius);
  box-shadow: var(--shadow-card-1);
  height: 100%;
  position: relative;
  transition: box-shadow 0.4s ease;
}

.tile-dashboard .tile:not(.hermes-tile) {
  background: var(--grayscale-0);
}

.tile-dashboard .tile:hover {
  box-shadow: var(--shadow-card-2);
}

.tile a h4 {
  color: #36f;
  transition: color 250ms ease;
}

.tile h2,
.tile h2 a,
.tile .link {
  font-size: 1.7rem;
  bottom: 0;
  color: var(--grayscale-8);
  transition: color 250ms ease;
}

.tile-container:not(.profile-student) .tile:hover h2,
.tile-container:not(.profile-student) .tile:hover h2 a,
.tile a:hover,
.tile h4:hover,
.tile span.link:hover {
  color: #02e0c0;
}

.tile img:not(:is(.profile-pic, .scholarpage-tile-image, .hermes-tile-image)) {
  top: 0;
  right: 0;
  height: 100px;
  transition: height 250ms ease;
}

.tile-dashboard div:not(.profile) .tile div img:not(:is(.hermes-tile-image)) {
  height: 130px;
}

.tile:hover img:not(:is(.profile-pic, .scholarpage-tile-image, .hermes-tile-image)) {
  height: 110px;
}

.tile-dashboard div:not(.profile) .tile:hover div img:not(:is(.hermes-tile-image)) {
  height: 140px;
}

.profile-container {
  flex-grow: 1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.profile-pic {
  height: 200px;
  width: 150px;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.disabled-tile {
  cursor: not-allowed;
  opacity: 0.5;
}

.disabled {
  cursor: not-allowed;
}

.profile.not-completed h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile.not-completed h2::after {
  content: 'Not completed';
  font-size: 1rem;
  white-space: nowrap;
  color: white;
  background: #dc3545;
  padding: 10px 20px;
  border-radius: 10px;
}

.showcasing {
  border-radius: var(--base-border-radius);
  min-height: 200px;
}

.showcasing h2 {
  font-size: 1.25rem;
  color: #36f;
}

.showcasing-opportunity-item strong,
.showcasing-opportunity-item h1,
.showcasing-opportunity-item h6 {
  color: black;
}

.showcasing-opportunity-item .title {
  border-bottom: 1px solid var(--primary);
}

.showcasing-opportunity-item .links a {
  color: black;
}

.showcasing-opportunity-item .links a:hover {
  text-decoration: underline;
}

.showcasing-opportunity-item .questions p {
  display: flex;
  justify-content: space-between;
  max-width: 250px;
  margin: 0.5rem;
}

.separator {
  color: #aaa;
  display: flex;
  align-items: center;
  text-align: center;
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}
.separator::before {
  margin-right: 0.25em;
}
.separator::after {
  margin-left: 0.25em;
}

.application-process.completed {
  list-style-type: none;
}

.application-process.completed::before {
  content: '\2705';
  margin-left: -23px;
}

.mentorlead {
  border-bottom: 1px solid #ccc;
}

.mentorlead .lead-details {
  flex-grow: 1;
}

.mentorlead .lead-actions {
  white-space: nowrap;
}

.mentorlead:hover {
  background-color: rgb(226, 244, 255);
}

.lead-action-overlay {
  width: 800px;
  padding: 20px;
}

.tag-overview-table tr:hover:not(.subtags),
.tag-overview-table tr:hover:not(.subtags) td {
  background-color: #aedfff;
  border-color: #73b4ff;
}

.tag-overview-table tr.open,
.tag-overview-table tr.open td {
  background-color: #aeffc9;
  border-color: #327543;
}
.tag-overview-table tr.subtags > td {
  border-color: #327543;
}

.pulse {
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.enlarge {
  animation: enlarge 600s infinite;
  transform-origin: top left;
}

@keyframes enlarge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

.preformatted {
  overflow: hidden;
  word-wrap: break-word;
  white-space: break-spaces;
  font-size: 12px;
}

.floating-alert {
  position: fixed;
  left: 0;
  top: 1rem;
  margin: 0 2rem;
  width: calc(100% - 4rem);
  z-index: 1000;
}

.my-huge {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.polygence-blue {
  color: #36f;
}

.student-overview {
  font-size: 0.8rem;
  color: #333;
  background-color: var(--grey-overview);
}

.student-overview h2 {
  font-size: 20px;
}

.student-overview .profile-picture-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.student-overview .profile-picture-container .picture {
  border-radius: 50%;
  border: 2px #02e0c0 solid;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-overview .profile-picture-container.warning .picture {
  border-color: #e05030;
}

.student-overview .profile-picture-container .exclamation-mark {
  display: none;
}

.student-overview .profile-picture-container.warning .exclamation-mark {
  display: block;
  position: absolute;
  bottom: 0;
  right: 6px;
}

.student-overview .profile,
.student-overview .sessions,
.student-overview-application,
.student-overview-project,
.student-overview-mentor,
.student-overview-interviews {
  border-radius: var(--base-border-radius);
}

.student-overview .profile {
  text-align: center;
  background: #fff;
  border-radius: var(--base-border-radius);
}

.student-overview .profile .info {
  width: 95%;
  margin-left: 5%;
  text-align: left;
}

.student-overview .profile > section:not(:last-of-type),
.student-overview-section-border {
  border-bottom: 1px #ccc solid;
}

.student-overview .profile .full-name {
  font-size: 1.5rem;
}

.wrapper-ok {
  background-color: var(--h-green-light);
  color: var(--h-green-dark);
}

.wrapper-error {
  background-color: var(--h-red-light);
  color: var(--h-red);
}

.session-review-wrapper-ok {
  min-height: 40px;
  background-color: var(--h-green-light);
}

.session-review-wrapper-info {
  min-height: 40px;
  background-color: var(--h-grey-light);
}

.session-review-hyperlink {
  color: black;
  text-decoration: underline !important;
}

.session-review-sequence {
  width: 8ch;
}

.student-overview-application .timeline li > div {
  display: inline-block;
  width: 155px;
}

.student-overview-application .group-friends {
  padding-left: 30px;
}

.student-overview-project .project-status .active {
  color: #0078ff;
}

.student-overview-project .project-status .completed {
  color: #02e0c0;
}

.student-overview-mentor .mentor-profile-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-color: #cccccc;
}

.discrete-hyperlink {
  color: black;
  text-decoration: underline !important;
}

.admin {
  display: flex;
}

.admin .content {
  flex-grow: 1;
}

.admin aside {
  position: sticky;
  top: 0;
}

.admin .pro-sidebar .pro-menu .pro-menu-item.active {
  color: var(--grayscale-8);
  background-color: var(--primary);
}

.ticket-filters {
  display: flex;
}

.ticket-filters p,
.admin-messages .order {
  margin: 0 10px;
}

.ticket .created-at {
  display: flex;
}

.ticket .created-by {
  display: flex;
}

.ticket .created-by img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.ticket .created-by p {
  margin: 0;
}

.ticket.open {
  background-color: #e9f6ff;
}

.notion-app {
  isolation: isolate;
}

.notion-viewport {
  z-index: -1;
}

label.dv-star-rating-star {
  margin-bottom: 0;
  line-height: 1;
}

.disabled-input {
  background: #daebf033;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}

form.polygence input {
  background-color: var(--h-grey-light);
  color: var(--h-grey-dark);
  border: 0;
}

form.polygence label {
  color: var(--h-grey-dark);
}

@media (min-width: 768px) {
  .review-mentor-center-mentor-overview {
    margin: -3rem -8%;
  }

  .modal-center-mentor-overview {
    margin: -3rem -21%;
  }
}

.tags-filter-group {
  margin: 0;
  padding-top: 1rem;
  border: 1px dotted var(--h-grey-2);
  border-radius: 10px;
}

/* Animations */
.fade-in-2s {
  animation: fadeIn 2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-down-350ms {
  animation: slideDown 0.35s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Flag path override of intl-tel-input */
.iti__flag {
  background-image: url('path/to/flags.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url('path/to/flags@2x.png');
  }
}

.iti {
  width: 100%;
}

.w-20 {
  width: 20%;
}

.no-button-style {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.z-index-3 {
  z-index: 3;
}

.mentor-request-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(780px, 100%), 1fr));
  gap: 20px;
}

.message-box-footer {
  display: flex;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.showcases h2 {
  font-size: 1.4rem;
}

.pam-picture {
  object-fit: cover;
  object-position: 0 15%;
}

.project-start-warning {
  color: var(--grayscale-10);
}

.project-start-warning span {
  color: var(--success-dark);
  font-weight: var(--font-weight-bold);
}

.project-start-warning a {
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.react-datepicker {
  width: max-content;
}

.development-brand {
  position: relative;
}

.development-brand span {
  text-transform: uppercase;
  border: 1px solid;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .development-brand {
    position: relative;
  }

  .development-brand span {
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 8px;
  }
}

.base-border-radius {
  border-radius: var(--base-border-radius);
}

.dashed-gray-border {
  border: 1px dashed var(--grayscale-6);
}

.inherit-font-style {
  font-family: inherit;
  font-size: inherit;
}

@media print {
  @page {
    margin: 0;
  }

  .hide-in-print {
    display: none;
  }
}

.text-green {
  color: var(--h-green);
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.react-datepicker__day:hover {
  border-radius: 50% !important;
}

.react-datepicker__day--selected,
.react-datepicker__day--keyboard-selected {
  background-color: var(--primary) !important;
  border-radius: 50% !important;
  color: inherit !important;
}

.react-datepicker__time-list {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.react-datepicker__time-list-item {
  margin-left: 4px;
}

.react-datepicker__time-list-item--selected {
  background-color: var(--primary) !important;
  border-radius: 8px;
  color: inherit !important;
  font-weight: normal !important;
}

.react-datepicker__time-list-item:hover {
  border-radius: 8px;
}

.bg-grayscale-1 {
  background-color: var(--grayscale-1);
}

.bg-grayscale-2 {
  background-color: var(--grayscale-2);
}

.bg-grayscale-3 {
  background-color: var(--grayscale-3);
}

.polygence-rounded {
  border-radius: var(--base-border-radius);
}

.redacted-text {
  font-family: 'Redacted Script', cursive;
}

.text-danger-dark {
  color: var(--danger-dark) !important;
}

.unstyled-button {
  background: none;
  border: none;
  padding: 0;
}

/*** Tailwind utils ***/
/** Very missed tw util classes from Bootstrap which we can exchange later  **/

.blur-sm {
  filter: blur(4px);
}

.list-none {
  list-style-type: none;
}

.top-auto {
  top: auto !important;
}

.right-4 {
  right: 1rem !important;
}

.right-5 {
  right: 20px !important;
}

.rounded-2xl {
  border-radius: 1rem;
}

.top-5 {
  top: 20px !important;
}

.h-12 {
  height: 3rem;
}

.shadow-none {
  box-shadow: 0 0 #0000;
}

.w-12 {
  width: 3rem;
}

.w-33 {
  width: 33.333333%;
}

.w-66 {
  width: 66.666667%;
}

.w-52 {
  width: 13rem;
}

.text-nowrap {
  text-wrap: nowrap;
}

.text-xs {
  font-size: var(--font-size-small);
}

/*** END of Tailwind utils ***/

.all-unset {
  all: unset;
}

.text-wrap-pretty {
  text-wrap: pretty;
}
