.weather-card {
    width: 42%;
    max-width: 600px;
    height: 22%;
    padding: .75rem 3rem;
    visibility: hidden;
    position: absolute;
    bottom: 5vh;
    border-radius: 15px 15px 0 0;
    min-width: 540px;
}
  
.temperatures-card {
    color: #fff;
    align-items: center;
    display: flex;
    width: 50%;
    height: 50%;
}
  
.weather-info .nova {
    font-size: 34px;
}

.temperature-card {
    font-size: 3.5rem;
    margin: 0 32px 0 16px;
}
  
.weather-info-card {
    line-height: 150%;
  }
  
.weather-status {
    font-size: 1.75rem;
    font-weight: 600;
    text-wrap: nowrap;
}
  
.sensacion {
    text-wrap: nowrap;
    color: #e0e3e6;
}
  
.img {
    width: 70%;
    height: 70%;
}
  
 
.weather-item {
    position: relative;
}
  
.weather-item::after {
    content: '\E738';
    font-family: 'Trickster';
    display: inline-flex;
    font-size: 15px;
    height: 15px;
    width: 15px;
    margin-left: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
  
.weather-item:hover::before {
    content: attr(data-description);
    position: absolute;
    border-radius: 10px;
    bottom: 1.5rem;
    background-color: #5b5656;
    color: #fff;
    padding: 2px 6px;
    text-wrap: nowrap;
    font-size: 12px;
}
  
 
.advanced-weather-info {
    margin-top: 1.2rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: auto;
    position: relative;
}
  
.weather-item {
    margin: 0;
    font-size: .9rem;
    font-weight: normal;
    line-height: 16px;
    opacity: 0.8;
    color: #e0e3e6;
}
  
.weather-text {
    color: #e0e3e6;
}
  
.text-hover::after {
    content: attr(data-description);
    display: none;
    position: absolute;
    bottom: 3rem;
    background-color: var(--date-bg);
    color: var(--text-color);
    padding: 5px;
    text-wrap: nowrap;
    right: 10px;  
}

.text-hover:hover::after {
    display: block;
}

.show-weather {
    display: block;
    position: absolute;
    bottom: 5vh;
}   