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

::-webkit-scrollbar-thumb {
  background-color: #37373f;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #9f9f9f;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}

.item-bg {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url(../images/pexels-bruno-de-oliveira-fernandes-11661623.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
}

.item-bg .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.item-bg .head .logo {
  font-weight: bold;
  font-size: 35px;
}
.item-bg .head #country {
  font-size: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  color: #fff;
  width: 70%;
  justify-content: space-between;
  position: absolute;
  bottom: 10%;
  left: 15%;
}

.content .temp {
  font-size: 120px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.content .location {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .location div:first-child {
  margin-right: 35px;
  width: 60%;
}

.content .location div:first-child p:first-of-type {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}
.content .location div:first-child p:last-of-type,
.content .location div:last-child span {
  font-weight: 500;
  margin: 0;
}
.content .location div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

/* .content .location div:last-child img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 10px;
} */

.content .location div:last-child span {
  margin-top: 16px;
}

.info {
  font-size: 18px;
  background: linear-gradient(
    to right,
    rgb(15, 32, 39),
    rgb(25, 45, 52),
    rgb(13, 56, 73)
  );
  overflow-y: auto;
  height: 100vh;
}

.info .item i {
  width: 30px;
}

input::placeholder {
  color: #dddddd !important;
}
input:focus {
  border-bottom-color: #939393 !important;
}

input {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
}

.inputSection span {
  left: 0px;
  top: 50%;
  font-size: 15px;
  color: #dddddd;
  transform: translateY(-50%);
}

.min-temp {
  color: #ccc;
}

@media (max-width: 1199px) {
  .content {
    flex-direction: column;
    align-items: center;
    width: 70%;
    left: 15%;
    gap: 20px;
  }
  .content .location {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .content .location div:first-child {
    margin: 0;
  }
  .content .location div:first-child p:first-of-type {
    text-align: center;
  }
  .content .temp {
    font-size: 60px;
  }

  .content .location div:first-child p:first-of-type {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .info {
    overflow-y: hidden;
    height: fit-content;
  }
}
