html[lang="en"] .search-new__dropdown-button,
html[lang="en"] .search-new__option,
html[lang="en"] .search-new__input{
  font-weight: 400;
}

.search-new__container {
  position: relative;
  z-index: 201;
  padding: 0 12px;
}

.search-new__area {
  max-width: 1224px;
  margin: 0 auto;
  padding: 42px 20px 38px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-image: url(../images/search_new/search_new_bg.png);
  /* background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/search_new/search_new_group_background.png);
  border-radius: 40px;
  overflow: hidden; */
}

/* .search-new__area-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/search_new/search_new_group_web2.png);
} */

.search-new__container--home {
  padding-top: 30px;
}

.search-new__container--home .search-new__area {
  padding: 66px 20px 234px;
  border-radius: 20px;
  background-size: cover;
  /* background-image: url(../images/search_new/search_new_bg_home.png); */
  background-image: url(../images/search_new/search_new_bg_home_02.png);
}

.search-new__container--internship .search-new__area,
.search-new__container--exchange .search-new__area {
  padding: 50px 20px 48px;
}

.search-new__container--internship .search-new__area {
  background-image: url(../images/search_new/search_new_bg_internship.png);
}

.search-new__container--exchange .search-new__area {
  background-image: url(../images/search_new/search_new_bg_exchange.png);
}

.search-new__content {
  max-width: 1078px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body .mainContent h1.search-new__title {
  margin-bottom: 40px;
  color: #00545c;
  text-align: center;
}

.search-new__form {
  max-width: 100%;
  display: flex;
  gap: 10px;
}

.search-new__grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-new__field {
  position: relative;
  height: 64px;
  width: 100%;
}

.search-new__field--date {
  max-width: 23%;
}

.search-new__field--osip {
  max-width: 25%;
}

.search-new__field--type {
  max-width: calc(100% - 23% - 25% - 16% - 10px * 3);
}

.search-new__field--destination {
  max-width: 16%;
}

.search-new__field::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 8px;
  background-image: url(../images/search_new/search_new_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.search-new__field--disabled::after {
  display: none;
}

.search-new__input.search-new__input--date.active,
.search-new__input.search-new__input--display:has(+ .search-new__input--date.active),
.search-new__input.search-new__input--display:has(+ .search-new__dropdown.active) {
  outline: 2px solid #000000;
}

.search-new__input.search-new__input--date:focus,
.search-new__input.search-new__input--date.active,
.search-new__input.search-new__input--display:has(+ .search-new__dropdown.active) {
  padding: 10px 65px 10px 20px;
}

.search-new__input.search-new__input--date {
  visibility: hidden;
  position: absolute;
  top: 0;
}

.search-new__input--display:has(+ .search-new__input--date) span {
  text-wrap-mode: nowrap;
  overflow: auto;
  -ms-overflow-style: thin;
  scrollbar-width: thin;
  max-width: calc(100% - 60px);
}


.search-new__input--display:has(+ .search-new__input--date.active) span {
  max-width: calc(100% - 90px);
}

.search-new__input.search-new__input--display:has(+ .search-new__input--date) {}

.search-new__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 10px 35px 10px 20px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #3d3d3d;
  cursor: pointer;
}

.search-new__field--disabled .search-new__input {
  cursor: default;
}

.search-new__input::placeholder {
  color: inherit;
}

.search-new__input--display {
  display: flex;
  /* flex-direction: column;
  justify-content: center; */
  /* position: absolute; */

  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.search-new__input--display span {
  display: inline-block;
  position: absolute;
  width: auto;
  white-space: nowrap;
}

.search-new__dropdown {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.2); */
  box-shadow: 0 0 12px -4px #bbb;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 16px;
  max-height: 430px;
  overflow-y: auto;
}

.search-new__dropdown-button,
.search-new__option {
  border: none;
  border-radius: 5px;
  background: #fff;
  height: 44px;
  padding: 5px 16px;
  font-weight: 600;
  font-size: 1.3125rem;
  color: #3d3d3d;
  text-align: left;
}

.search-new__dropdown-button:hover,
.search-new__dropdown-button:focus,
.search-new__option:focus,
.search-new__option:hover {
  background-color: #edf1c8;
}

.search-new__dropdown-button.active {
  background-color: #e1e7a7;
}

.search-new__option {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding-left: 10px;
  white-space: nowrap;
}

.search-new__option input {
  display: none;
}

.search-new__option-label {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #1a6f74;
  border-radius: 50%;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.search-new__option-label:focus-visible {
  box-shadow: 0 0 0 2px #1a6f74;
  border-color: #fff;
}

.search-new__option-label:focus {
  outline: none;
}

.search-new__option-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.search-new__option input:checked+.search-new__option-label::after {
  background-color: #1a6f74;
}

.search-new__button.clear-filters {
  display: none;
}

.search-new__button {
  border: none;
  border-radius: 10px;
  background: #03575f;
  padding: 10px 40px;
  height: 64px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}


.search-new__advanced-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px 0;
}

.search-new__advanced {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none;
  border: none;
  background: none;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.search-new__advanced::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/search_new/search_new_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.tradition .top_banner.upcoming_activities {
  background-image: url(../images/search_new/banner.jpg);
  min-height: 240px;
}

.simplify .top_banner.upcoming_activities {
  background-image: url(../images/search_new/banner_sc.jpg) !important;
  min-height: 240px;
}

.englishVersion .top_banner.upcoming_activities {
  background-image: url(../images/search_new/banner_en.jpg) !important;
  min-height: 240px;
}
 

.search-new__dropdown.active+button.search-new__remove,
.search-new__input.active+button.search-new__remove {
  display: block !important;
}

.search-new__remove {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: block;
  background: #eee;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-new__remove:hover {
  opacity: 0.8;
}

.line-break {
  display: block;
}

.line-break.en {
  display: block;
}

@media screen and (max-width: 1170px) {
  .search-new__area {
    padding: 35px 17px 34px;
  }

  .search-new__container--home .search-new__area {
    background-image: url(../images/search_new/search_new_bg_home_tablet.png);
  }

  .search-new__container--internship .search-new__area,
  .search-new__container--exchange .search-new__area {
    padding: 35px 17px 34px;
  }

  .search-new__container--internship .search-new__area {
    background-image: url(../images/search_new/search_new_bg_internship_tablet.png);
  }

  .search-new__container--exchange .search-new__area {
    background-image: url(../images/search_new/search_new_bg_exchange_tablet.png);
  }

  body .mainContent h1.search-new__title {
    margin-bottom: 24px;
    font-size: 2rem !important;
  }

  .search-new__form {
    flex-direction: column;
    align-items: center;
    gap: 15px;

    /* gap: 8px; */
  }

  .search-new__grid {
    gap: 8px;
    width: 750px;
    max-width: 100%;
  }

  .search-new__field {
    max-width: calc((100% - 8px) / 2);
    height: 50px;
  }

  /* .search-new__field--date {
    max-width: 21%;
  }

  .search-new__field--osip {
    max-width: 27%;
  }

  .search-new__field--type {
    max-width: calc(100% - 21% - 27% - 15% - 8px * 3);
  }

  .search-new__field--destination {
    max-width: 15%;
  } */

  .search-new__field::after {
    right: 11px;
    width: 10px;
    height: 5px;
  }

  .search-new__input {
    border-radius: 8px;
    padding: 10px 25px 10px 16px;
  }

  .search-new__field--destination .search-new__dropdown {
    left: unset;
    right: 0;
  }

  .search-new__button--wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .search-new__button--wrapper .left,
  .search-new__button--wrapper .right {
    width: 100%;
    display: flex;
  }

  .search-new__button--wrapper .left .search-new__button {
    margin-left: auto;
  }

  .search-new__button--wrapper .right .search-new__button {
    margin-right: auto;
  }

  .search-new__button.clear-filters {
    display: block;
  }

  .search-new__button {
    border-radius: 8px;
    height: 50px;
    font-size: 1.3125rem;
  }

  .tradition .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_tablet.jpg);
    min-height: 200px;
  }
  
  .simplify .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_tablet_sc.jpg) !important;
    min-height: 200px;
  }
  
  .englishVersion .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_tablet_en.jpg) !important;
    min-height: 200px;
  }
  
  
  
  

  .search-new__advanced-wrapper {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .line-sm-break {
    display: block;
  }

  .search-new__area {
    padding: 40px 16px 38px;
    /* background-image: url(../images/search_new/search_new_bg_mob.png); */
    background-image: url(../images/search_new/search_new_group_background_mob.png);
  }

  .search-new__area-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/search_new/search_new_group_mob.png);
  }

  .search-new__container--home .search-new__area {
    padding: 58px 16px 230px;
    background-image: url(../images/search_new/search_new_bg_mob_02.png);
    /* background-image: url(../images/search_new/search_new_bg_home_mob.png); */
  }

  .search-new__container--internship .search-new__area,
  .search-new__container--exchange .search-new__area {
    padding: 40px 16px 38px;
  }

  .search-new__container--internship .search-new__area {
    /* background-image: url(../images/search_new/search_new_bg_internship_mob-2.png); */
    background-image: url(../images/search_new/search_new_bg_internship_mob-3.png);
  }

  .search-new__container--exchange .search-new__area {
    background-image: url(../images/search_new/search_new_bg_exchange_mob-3.png);
  }

  body .mainContent h1.search-new__title {
    margin-bottom: 20px;
  }

  .search-new__button--wrapper {
    /* flex-direction: column; */
    justify-content: center;
  }

  .search-new__button--wrapper .left,
  .search-new__button--wrapper .right {
    width: auto;
  }

  .search-new__button--wrapper .left .search-new__button {
    margin-left: auto;
    margin-right: auto;
  }

  .search-new__button--wrapper .right .search-new__button {
    margin-left: auto;
    margin-right: auto;
  }

  .search-new__form {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .search-new__field {
    /* max-width: calc((100% - 8px) / 2); */
    max-width: calc((100%));
    height: 66px;
  }

  .search-new__field::after {
    right: 16px;
    width: 14px;
    height: 8px;
  }

  .search-new__input {
    border-radius: 10px;
    padding: 10px 35px 10px 20px;
  }

  .search-new__button {
    border-radius: 5px;
  }

  .search-new__advanced-wrapper {
    justify-content: center;
  }

  .tradition .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_mob.jpg);
    min-height: auto;
    aspect-ratio: 572 / 220;
  }
  
  .simplify .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_mob_sc.jpg) !important;
    min-height: auto;
    aspect-ratio: 572 / 220;
  }
  
  .englishVersion .top_banner.upcoming_activities {
    background-image: url(../images/search_new/banner_mob_en.jpg) !important;
    min-height: auto;
    aspect-ratio: 572 / 220;
  }
  
  
  
  
}


@media screen and (max-width: 550px) {
  .search-new__container--home .search-new__area {
    padding: 58px 16px 164px;
    background-image: url(../images/search_new/search_new_bg_mob_02.png);
    /* background-image: url(../images/search_new/search_new_bg_home_mob_xs.png); */
    background-position: bottom;
  }
  
  .line-break.en {
	  display: unset;
	}
}

@media screen and (max-width: 450px) {
  .search-new__container--home .search-new__area {
    /* background-image: url(../images/search_new/search_new_bg_home_mob_xxs.png); */
    background-image: url(../images/search_new/search_new_bg_mob_02.png);
  }

  .search-new__button {
    padding: 8px 20px !important;
    font-size: 1.2125rem !important;
  }
}



.search-new__field--date.srh_div {
	max-width: 31% !important;
}

.search-new__field--destination.srh_div {
	max-width: 31% !important;
}

@media screen and (max-width: 1170px) { /* 767px */
	
	.search-new__field--date.srh_div {
		max-width: calc((100%)) !important;
	}
	
	.search-new__field--destination.srh_div {
		max-width: calc((100%)) !important;
	}
	
	.search-new__field--type.srh_div {
		max-width: calc((100%)) !important;
	}
}