/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

#loading-spin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ae1d20;
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.long-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 38ch;
    cursor: pointer;
    vertical-align: middle;
    line-height: normal;
}

@media screen and (min-width: 340px) {
    #weather img {
        height: 32px;
    }

    #weather small {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    #weather img {
        height: 32px;
        margin-left: 1px;
        margin-right: 1px;
    }

    #weather small {
        font-size: 14px;
    }

    .fas {
        font-size: 14px;
    }

    .navbar-expand .navbar-nav .nav-link {
        margin: 0px -5px;
    }
}

@media screen and (max-width: 768px) {
    #weather img {
        height: 32px;
        margin-left: 1px;
        margin-right: 1px;
    }

    #weather small {
        font-size: 14px;
    }

    .fas {
        font-size: 14px;
    }

    .navbar-expand .navbar-nav .nav-link {
        margin: 0px -5px;
    }
}

@media screen and (min-width: 576px) and (max-width: 1278px) {
    .custom-hide {
        display: none !important;
    }
}

/*
@media (max-width: 1330px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 1250px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 13px;
    }
}
@media (max-width: 1100px) {
    body {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 11px;
    }
}

@media (max-width: 850px) {
    body {
        font-size: 10px;
    }
}

@media (max-width: 800px) {
    body {
        font-size: 9px;
    }
}*/
