body {
  width: 100%;
  background-color: #e6e7ee;
}
.App_weather {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* form select location */
.form_place {
  box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff;
  display: flex;
  justify-content: center;
  direction: rtl;
  backdrop-filter: blur(5px);
  height: 80px;
  width: 260px;
  border-radius: 15px;
  margin: 30px 0;
}
.form_place .input-group {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
}
.form_place .input-group label {
  margin: 0;
  flex: 1;
}
.form_place button,
.form_place input {
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px;
  background-color: #ebecf0;
  text-shadow: 1px 1px 0 #fff;
  color: gray;
}

.form_place input {
  margin-right: 5px;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #fff;
  width: 95%;
  height: 10%;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}
.form_place input:focus {
  box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #fff;
}
.form_place button {
  color: mediumspringgreen;
  font-weight: bold;
  box-shadow: -2px -2px 10px #fff, 2px 2px 10px #babecc;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 600;
}
.form_place button:hover {
  box-shadow: -2px -2px 5px #fff, 2px 2px 5px #babecc;
}
.form_place button:active {
  box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #fff;
}

.form_place button.unit {
  border-radius: 8px;
  line-height: 0;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  font-size: 15px;
}
/* form select location */
/* cart information weather */
.weather_cart {
  width: 260px;
  height: 350px;
  margin: 20px 0 ;
}
.card {
  position: relative;
  min-height: 320px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #e6e7ee;
  background-clip: border-box;
  border: 0.0625rem solid rgba(243, 247, 250, 0.05);
  border-radius: 0.55rem;
}
.shadow-inset {
  box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #ffffff !important;
}
.shadow-soft {
  box-shadow: -3px -3px 6px #ffffff, 2px 2px 5px #b8b9be !important;
}

.border-light {
  border-color: #d1d9e6 !important;
}
/* cart information weather */

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 70%;
  overflow: hidden;
}
.weather_visual {
  width: 90%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.weather_information {
  width: 90%;
  height: 60%;
  line-height: 1.8;
  direction: rtl;
  margin: 10px 0;
}
.weather_information .location_cart {
  position: relative;
  font-size: 0.9em;
  display: flex;
  margin: 0 3% 0 10px;
}
.weather_information .location_cart h1 {
  text-shadow: -2px -2px #ffffff, 1px 1px #b8b9be;
  white-space: nowrap;

}
.weather_information .location_cart img{
  position: absolute;
  right: -15px;
}
.weather_information .description {
  font-size: 0.8em;
  color: rgb(87, 87, 87);
  margin: 0 4% 10px 0;
}
.weather_information .data_cart {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}
.weather_information .data_cart span {
  box-shadow: -3px -3px 7px #ffffff, 2px 2px 5px #b8b9be !important;
  direction: ltr;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.weather_information .data_cart span h3 {
  font-size: 0.9em;
}
.weather_information .data_cart span i {
  position: absolute;
  color: tomato;
  top: 5px;
  left: 5px;
  font-size: 1em;
}
