body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

@media screen and (min-width: 993px) {
    .nav-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 993px) {
    #toast-container {
        top: auto !important;
        left: 7%;
        bottom: 2% !important;
        max-width: 86%
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    #toast-container {
        min-width: 90%;
    }
}

strong {
    font-weight: bold !important;
}

.logo {
    display: inline-block;
    height: 60px !important;
    padding: 6px 0px;
}

@media only screen and (max-width: 600px) {
    .logo {
        display: inline-block;
        height: 56px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

.logo>img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.page-footer a {
    color: #ffffff;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}