#weather-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    font-size: 18px;
    padding: 5px;
    text-align: left;

    div#weather-card-main {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    h1.weather-card-title {
        font-size: 36px;
        font-weight: bold;
        border-right: 1px solid antiquewhite;
        padding-right: 10px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    h1.weather-card-location-sub {
        font-size: 14px;
        color: darkgrey;
    }

    h1.weather-card-location-name {
        font-size: 20px;
        color: antiquewhite;
    }

    i {
        color: antiquewhite;
    }
}



.weather-card-details {
    padding: 10px 0;

    i {
        width: 24px;
    }
}

#weather-loader {
    position: relative;
    visibility: hidden;
}

#weather-loader::before {
    content: "";
    visibility: visible;
    position: absolute;
    left: 0;
    right: 0;
    animation: dots 1.5s steps(4) infinite;
}

@keyframes dots {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}