body {
  height: 100vh;
  width: 100%;
  background: linear-gradient(168.44deg, #2e335a 1.62%, #1c1b33 95.72%);
  box-shadow: 40px 60px 150px 0px rgba(59, 38, 123, 0.7);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}
.header h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.36399999260902405px;
  text-align: left;
  color: #fff;
}

.main-show-wheather {
  position: relative;
}
.lodaing {
  position: absolute;
  top: 0;
  z-index: 999999999;
  background-color: rgba(235, 235, 245, 0.6);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}
.search {
  width: 90%;
  margin: 0 auto;
}
.search .search-input {
  display: flex;
  align-items: center;
  gap: 2;
  background: linear-gradient(
    168.44deg,
    rgba(46, 51, 90, 0.26) 1.62%,
    rgba(28, 27, 51, 0.26) 95.72%
  );
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  height: 36px;
  padding: 0 10px;
}

.search .search-input input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  height: 100%;
  padding-left: 10px;
  color: rgba(235, 235, 245, 0.6);
}
.whather-details-wrapper {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  padding: 0 0.5rem;
  margin-top: 2rem;
}
.whather-card {
  width: 342px;
  /* height: 184px; */

  padding: 2rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999999;
  margin-bottom: 10px;
  border: none;
  background: transparent;
}

.whather-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 53%, 100% 100%, 0% 100%);
  border-radius: 50px;
  background: linear-gradient(90deg, #5936b4 0%, #362a84 103.55%);
  z-index: -1;
}

.whather-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
}

.temp-h-l {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.38px;
  color: rgba(235, 235, 245, 0.6);
}
.temp {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 41px;

  letter-spacing: 0.374px;
  color: rgba(255, 255, 255, 1);
}

.temp-country {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;

  letter-spacing: -0.078px;
  color: #ffffff;
}

.details-image {
  height: 120px;
  width: 120px !important;
  margin-top: -50px;
}

.search-country-dropdown {
  display: none;
  /* min-height: 20rem; */
  height: 20rem;
  overflow: scroll;
}

._show-dropdown {
  display: block;
}

.search-country-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
}
.search-country-item img {
  width: 30px;
}

@media screen and (min-width: 768px) {
  .whather-details-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0 0.5rem;
    margin-top: 2rem;
  }
}
