@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Roboto:wght@400;900&display=swap');
.widget {
     min-height: 300px;
     padding: 20px;
     margin: 25px 0px;
     border-radius: 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}
.widget-infos {
    padding: 20px;
    margin: 25px 0px;
}
.widget-infos .now-info .col-md-6{
    margin: 15px 0px;
}
.widget-infos .now-info p{
    font-size: 20px;
}
.widget-infos .now-info p i{
    font-size: 32px;
}
.temp {
     font-family: 'Roboto', sans-serif;
     font-size: 88px;
     font-weight: 900;
     margin-left: 0px;
     display: flex;
     align-items: center;
}
.city {
     font-family: 'Poppins', sans-serif;
     font-size: 115%;
     font-weight: 500;
     margin-left: -10px;
     text-align: center;
}

.source p{
     font-size: 14px !important;
}

@media only screen and (max-width: 768px) {
    .source{
        position: absolute;
        /* right: 20px; */
        /* bottom: -30px; */
    }
}

.source #last-update{
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.loader {
     width: 48px;
     height: 48px;
     border: 5px solid #000;
     border-bottom-color: transparent;
     border-radius: 50%;
     display: inline-block;
     box-sizing: border-box;
     animation: rotation 1s linear infinite;
}
 @keyframes rotation {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
.toggle {
     display: none;
     cursor: pointer;
     -webkit-tap-highlight-color: transparent;
     margin: -25px 0px 25px 0px;
}
.toggle i {
     position: relative;
     display: flex;
     margin-right: .5rem;
     width: 57.5px;
     height: 32.5px;
     border-radius: 23px;
     vertical-align: text-bottom;
     transition: all 0.3s linear;
     z-index: 1;
     font-family: 'Poppins', sans-serif;
     font-style: normal;
     font-size: 12px;
     justify-content: space-around;
     align-items: center;
}
.toggle i p {
     display: inherit;
     margin: 7px 0 0 0;
     font-size: 15px;
     line-height: normal;
     margin: 0;
}
.toggle i::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 52.5px;
     height: 32.5px;
     border-radius: 11px;
     transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
     transition: all 0.25s linear;
}
.toggle i::after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 27.5px;
     height: 27.5px;
     border-radius: 13.75px;
     box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
     transform: translate3d(2px, 2px, 0);
     transition: all 0.2s ease-in-out;
     z-index: -1;
}
.toggle:active i::after {
     width: 35px;
     transform: translate3d(2.5px, 2.5px, 0);
}
.toggle:active input:checked + i::after {
     transform: translate3d(20px, 2.5px, 0);
}
.toggle input {
     display: none;
}
.toggle input:checked + i::before {
     transform: translate3d(22.5px, 2.5px, 0) scale3d(0, 0, 0);
}
.toggle input:checked + i::after {
     transform: translate3d(27.5px, 2.5px, 0);
}
 