@font-face {
  font-family: "InterTight Bold";
  src: url(../assets/font/Inter_Tight/static/InterTight-Bold.ttf) format("woff2");
}
@font-face {
  font-family: "InterTight Medium";
  src: url(../assets/font/Inter_Tight/static/InterTight-Medium.ttf) format("woff2");
}
@font-face {
  font-family: "InterTight Thin";
  src: url(../assets/font/Inter_Tight/static/InterTight-Thin.ttf) format("woff2");
}
.content_wrapper header {
  margin: 50px auto;
  width: 90%;
  max-width: 1920px;
}

.content_wrapper header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.content_wrapper header .mode_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  gap: 10px;
  right: 0px;
}
.content_wrapper header .mode_container .mode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  position: relative;
}
.content_wrapper header .mode_container .mode img {
  width: 20px;
  height: 20px;
}
.content_wrapper header .mode_container .mode .handle_mode_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 25px;
  background-image: linear-gradient(to right, rgb(251, 146, 60), rgb(250, 204, 21), rgb(252, 211, 77));
  border-radius: 30px;
  box-shadow: 0px 2px 50px 1px rgba(0, 0, 0, 0.358);
  cursor: pointer;
}
body.darkmode .content_wrapper header .mode_container .mode .handle_mode_cont {
  background-image: linear-gradient(to right, rgb(79, 70, 229), rgb(147, 51, 234), rgb(37, 99, 235));
}
.content_wrapper header .mode_container .mode #handle_cont .mode_boolet {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.content_wrapper header .mode_container .mode #handle_cont .mode_boolet .sun {
  position: absolute;
  visibility: visible;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.content_wrapper header .mode_container .mode #handle_cont .mode_boolet .moon {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotate(110deg);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
body.darkmode .content_wrapper header .mode_container .mode #handle_cont .mode_boolet {
  transform: translateX(22px) rotate(210deg);
}
body.darkmode .content_wrapper header .mode_container .mode #handle_cont .mode_boolet .sun {
  opacity: 0;
  visibility: hidden;
}
body.darkmode .content_wrapper header .mode_container .mode #handle_cont .mode_boolet .moon {
  opacity: 1;
  visibility: visible;
}
.content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet .celsius {
  position: absolute;
  visibility: visible;
  width: 120%;
  height: 120%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet .fa {
  position: absolute;
  visibility: hidden;
  width: 120%;
  height: 120%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
body.fahrenheit .content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet {
  transform: translateX(22px);
}
body.fahrenheit .content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet .celsius {
  opacity: 0;
  visibility: hidden;
}
body.fahrenheit .content_wrapper header .mode_container .mode #temp_handle_cont .mode_boolet .fa {
  opacity: 1;
  visibility: visible;
}
.content_wrapper header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin: 50px auto;
  font-family: "InterTight Bold";
  font-size: clamp(40px, 6.6vw, 50px);
}
.content_wrapper header h1 span {
  width: clamp(40px, 6.6vw, 50px);
  height: clamp(40px, 6.6vw, 50px);
}
.content_wrapper header h1 span img {
  width: 100%;
}
.content_wrapper header p {
  margin-bottom: 20px;
}
.content_wrapper header .search_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 70%;
  height: 50px;
}
.content_wrapper header .search_container input {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #ffffff;
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.1058823529);
  color: #ffffff;
}
.content_wrapper header .search_container input.error {
  border: 1px solid #d10000;
}
.content_wrapper header .search_container input::-moz-placeholder {
  color: #ffffff;
}
.content_wrapper header .search_container input::placeholder {
  color: #ffffff;
}
.content_wrapper header .search_container i {
  position: absolute;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.content_wrapper header .search_container #error_message {
  position: absolute;
  display: none;
  top: 55px;
  left: 10px;
  font-size: 18px;
  color: #d10000;
}
.content_wrapper header .search_container #error_message.error {
  display: block;
}

@media screen and (max-width: 768px) {
  .content_wrapper header .search_container {
    width: 100%;
  }
}/*# sourceMappingURL=header.css.map */