
/* Status Box */


.status_box {
  border: 1px solid white;
  padding: 10px;
  margin-top: 30px;
  border-radius: 10px;
}

.somelink {
  color: hsl(220, 50%, 60%) !important;
}
.somelink:hover {text-decoration: underline; color: hsl(220, 50%, 60%) !important;}

/* Personal Information Box */

.personal_information_box {
  border-top: 1px solid hsl(0,0%,50%);
  border-radius: 0;
  margin-bottom: 50px;
  margin-top: 20px;
  padding: 10px;
}

.personal_information_box table {
  margin-top: 15px;
}

.personal_information_box table td {
  padding: 5px 10px;
}

.personal_information_box .gray_info {
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
  color: hsl(0,0%,60%);
}

.logout_box {
  text-align: right;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .personal_information_box table td {
    display: block;
  }
}

/* Status Messages */

.status_msg_red {
  color: hsla(0, 100%, 40%, 1);
  padding: 10px;
  padding-left: 0px;
  font-weight: bold;
}

.status_msg_green {
  color: hsla(120, 100%, 30%, 1);
  padding: 15px;
  padding-left: 0px;
  font-weight: bold;
}

.status_msg_yellow {
  color: hsl(60, 100%, 40%);
  padding: 15px;
  padding-left: 0px;
  font-weight: bold;
}

.status_msg_certificate {
  color: hsl(51, 100%, 50%);
  padding: 15px;
  padding-top: 20px;
  padding-bottom: 1px;
  padding-left: 0px;
  font-weight: bold;
}

.status_msg_certificate a {
  border: 1px solid hsla(51, 80%, 50%, 0.64);
  border-radius: 100px;
  padding: 0px 6px;
}

.status_msg_certificate a:hover {
  border: 1px solid hsla(51, 80%, 50%, 1);
  color: hsl(51, 100%, 60%);
}

.status_a_red {
  border: 1px solid red;
  border-radius: 100px;
  padding: 0px 6px;
  color: red;
  font-weight: bold;
}

.status_a_yellow {
  border: 1px solid yellow;
  border-radius: 100px;
  padding: 0px 6px;
  color: yellow !important;
  font-weight: bold;
}


.status_msg_info_yellow {
  color: hsl(60, 100%, 40%);
  background: hsla(60, 100%, 50%, 0.05);
  border-left: 3px solid hsl(60, 100%, 40%);
  padding: 8px;
  padding-left: 10px;
  margin: 15px;
  margin-top: 0;
  margin-left: 0;
}

.status_info_box a {
  color: hsl(220, 50%, 60%);
}

.status_info_box a:hover {
  text-decoration: underline;
}

.approval_yellow {
  color: hsl(60, 100%, 30%);
}

.approval_yellow_box {
  color: hsl(60, 100%, 40%);
  background: hsla(60, 100%, 50%, 0.05);
  padding: 2px 7px;
}

.approval_green_box, .verify_correct_box {
  color: hsla(120, 70%, 40%, 1);
  background: hsla(120, 100%, 50%, 0.05);
  padding: 2px 7px;
}

.verify_correct_box {
  border-left: 2px solid hsla(120, 70%, 40%, 1);
  padding: 7px 10px;
}

.verify_error_box {
  color: hsla(0, 100%, 45%, 1);
  background: hsla(0, 100%, 50%, 0.1);
  border-left: 2px solid hsla(0, 100%, 45%, 1);
  padding: 7px 10px;
}


/* Link Behaviour */

.personal_information_box a, .status_msg_info_yellow a, .status_msg_green a, .amb_activity a {
  color: hsl(220, 50%, 60%);
}

.personal_information_box a:hover, .status_msg_info_yellow a:hover, .status_msg_green a:hover, .amb_activity a:hover {
  text-decoration: underline;
}

/* Ambassador Page */

.add_activity {
  border: 1px solid white;
  background: #ffffff05;
  border-radius: 50px;
  padding: 2px 10px 1px 10px;
  cursor: pointer;
  display: inline-block;

  width: 105px;
  height: 23px;
  overflow: hidden;

  transition: width 0.2s, height 0.2s, border-radius 0.2s;
}

.add_activity:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.add_activity_expanded {
  width: 97%;
  height: auto;

  overflow: visible;
  border-radius: 4px;
  margin-bottom: 20px;
  padding-top: 10px;
  background: none;
}

@media only screen and (max-width: 1200px) {
  .add_activity {
    width: 120px;
  }
  .add_activity_expanded {
    width: 93%;
    height: auto;
   }
}

.add_activity_expanded:hover {
  background: none;
}

.add_activity h4 {
  font-size: 16px;
}

.add_activity input, .add_activity select {
  border: 1px dotted white;
}

.amb_participant, .amb_activity {
  margin-top: 15px;
  background: hsla(0, 0%, 100%, 0.03);
  padding: 7px 12px;
  border-radius: 50px;
  color: hsl(0, 0%, 90%);
}

.amb_activity {
  border-radius: 5px;
  color: hsl(0, 0%, 80%);
  font-size: 14px;
}

.amb_activity .activity_delete {
  color: gray;
}

.amb_participant i {
  padding-right: 3px;
}


.amb_activity i {
  padding-right: 5px;
}

.total_amb {
  background: hsla(0, 0%, 100%, 0.15);
  padding: 0 10px;
}


/* Ambassador Public Page */

.amb_image {
  width: 250px;
  filter: grayscale(100%);
  margin-bottom: 20px;
}


/* Teacher Page */

.teacher_student {
  margin-top: 15px;
  background: hsla(0, 0%, 100%, 0.03);
  padding: 7px 12px;
  border-radius: 10px;
  color: hsl(0, 0%, 90%);
}

.teacher_student .teacher_result_column {
  float: right;
  width: 70px;
}

.teacher_student .student_report {
  float: right;
  cursor: pointer;
  color: hsl(220, 50%, 60%);
  width: 15px;
}

.teacher_student .email_info {
  color: gray;
  margin-top: 3px;
  font-size: 12px;
}

.teacher_student .email_info a:hover {
  text-decoration: underline;
}

.teacher_student i {
  padding-right: 3px;
}

@media only screen and (max-width: 1200px) {
  .teacher_student span, .teacher_student .email_info {
    display: inline-block;
    width: 100%;
  }
}


/* Team Page */

.team_member {
  text-align: center;
  display: inline-block;
  margin: 25px;
  font-size: 11px;
  color: gray;
  line-height: 17px;
}

.team_member img {
  width: 150px;
  filter: grayscale(1.0);
  margin-bottom: 10px;
  padding: 2px;
}

.team_member img:hover {
  outline: 3px solid red;
  padding: 2px;
}


/* Verify Page */

.verify_form input[type='text'] {
  width: 87%;
}

.verify_form input[type='submit'] {
  width: 12%;
}

@media only screen and (max-width: 1200px) {
  .verify_form input[type='text'] {
    width: 90%;
  }

  .verify_form input[type='submit'] {
    width: 30%;
  }
}


/* Partners */

.partner {
  text-align: left;
  width: 100%;
  display: inline-block;
  margin-bottom: 30px;
}

.partner img {
  width: 100px;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
}

.partner div {
  float: left;
  color: hsl(0, 0%, 70%);
}

@media only screen and (max-width: 1200px) {
  .partner {
    text-align: center;
  }
  .partner div {
    width: 100%;
    float: none;
  }
  .partner img {
    margin-bottom: 20px;
    float: none;
  }
}


/* Gallery */

.gallery_pic {
  margin-bottom: 70px;
  margin-top: 40px;
  color: gray;
  font-size: 12px;
}

.gallery_pic img {
  width: 70%;
  /* border-right: 1px dotted white;
  border-left: 1px dotted white; */
  padding-left: 4px;
  padding-right: 4px;
}

@media only screen and (max-width: 1200px) {
  .gallery_pic img {
    width: 95%;
  }
}


/* Contact Us */

.contact_table td, .contact_table th {
  padding-top: 20px;
}

.contact_table a {
  color: hsl(220, 50%, 60%);
}

.contact_table th {
  padding-right: 10px;
}

.contact_table th i {
  display: inline-block;
  width: 20px;
}

.contact_table .table_sub_info {
  color: gray;
  padding-top: 0px;
  transform: translateY(-5px);
}

.email_td {
  letter-spacing: 0.5px;
}


/* Process and Rounds */

.deadline_box {
  text-align: center;
  border: 1px dotted white;
  margin: 20px 40px;
  padding: 3px;
}

.deadline_box b {
  color: #d52727;
}

/* Awards and Prizes */

.prizes_table th, .prizes_table td {
  padding-bottom: 20px;
  vertical-align: top;
}

.prizes_table th {
  padding-left: 30px;
  padding-right: 10px;
}

.prizes_table span {
  color: gray;
}

.gold_th {
  padding-left: 30px;
  padding-right: 10px;
  color: hsl(60, 94%, 39%);
}


/* Cheating Policy */

.cheating_not_allowed {
  color: #d52727;
}

.cheating_allowed {
  color: green;
}


/* Hall of Fame + Winner Interview*/

.prizes_table img {
  height: 13px;
  padding-right: 1px;
}

.winner_box {
  line-height: 25px;
  width: 550px;
}

.winner_name {
  font-size: 23px;
  font-weight: bold;
}

.winner_line img {
  height: 13px;
  padding-right: 1px;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  color: gray;
}

.winner_line {
  color: gray;
}

.gold {
  color: hsl(60, 94%, 39%);
}

.winner_question {
  margin-bottom: 20px;
  line-height: 21px;
}


/* Training and Resources */

.training_table th, .training_table td {
  padding-top: 10px;
  line-height: 30px;
}

.training_table span {
  padding-top: 5px;
  display: inline-block;
}

.prizes_table a, .resource a {
  color: hsl(220, 50%, 60%);
}

.prizes_table a i {
  padding-left: 2px;
  font-size: 14px;
}

.resource a:hover {
  text-decoration: underline;
}

.prizes_table span a {
  color: inherit;
}

.prizes_table a:hover {
  text-decoration: underline;
}

.resource i {
  padding-right: 3px;
}

.resource {
  line-height: 25px;
  margin-bottom: 25px;
  border: 1px dashed #ffffff45;
  padding: 10px;
}

.resource span {
  color: gray;
  line-height: 22px;
  display: inline-block;
}





/* Teacher Evaluation */

.eval_img {
  width: 100%;
}

.eval_table td {
  vertical-align: middle;
}

.eval_select {
  width: 80px;
  margin-left: 10px;
  margin-top: 8px;
}



/* Top Ambassadors */


.ambassador_orgabox {
  margin-left: 190px;
}

.ambassador_orgabox .orgatext {
  width: 400px;
}


@media only screen and (max-width: 1200px) {
  .ambassador_orgabox {
  margin-left: auto;
}

.ambassador_orgabox .orgatext {
  width: 75%;
}

}


/* Orga */

.orgaimg {
  float: left;
  width: 130px;
  filter: grayscale(1.0);
  margin-left: 50px;
}


.orgatext {
  display: inline-block;
  width: 650px;
  margin-left: 20px;
}

.orgatext img, .orgabox_small img {
  height: 12px;
  margin-left: 5px;
}

.orgarole {
  font-weight: 600;
}

.orgabox span {
  display: inline-block;
  font-size: 16px;
  color: #cbcbcb;
  font-style: italic;
}


.orgabox_small {
  margin-left: 50px;
  margin-bottom: 30px;
}

.orgaamb_wrapper {
  width: 850px;
  margin-left: 45px;
}

.orgaamb {
  filter: grayscale(1.0);
  width: 80px;
  margin: 5px;
}


@media only screen and (max-width: 1200px) {
  .orgaimg {
    width: 20%;
    margin: 0;
  }

  .orgatext {
    width: 74%;
    margin-left: 5%;
    font-size: 4vw;
  }

  .orgatext img, .orgabox_small img  {
    margin-left: 1.4vw;
    height: 2.7vw;
  }

  .orgaamb_wrapper {
    width: 100%;
    margin: 0;
  }

  .orgaamb {
    width: 14%;
    margin: 1%;
  }
}