html {
    width: 100%;
}

body {
    overflow-x: hidden !important;
}

    body.show-spinner > main {
        overflow: hidden !important;
    }

    /* Hide everything under body tag */
    body.show-spinner > * {
        opacity: 0;
    }

    /* Spinner */
    body.show-spinner::after {
        content: " ";
        display: inline-block;
        width: 30px;
        height: 30px;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        border-top-color: rgba(0, 0, 0, 0.3);
        animation: spin 1s ease-in-out infinite;
        -webkit-animation: spin 1s ease-in-out infinite;
        left: calc(50% - 15px);
        top: calc(50% - 15px);
        position: fixed;
        z-index: 1;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.footer-widget .title {
    color: #000;
    white-space: nowrap;
    margin-top: 15px;
    margin-bottom: 19px;
    font-weight:bold;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-widget .title {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget .title {
        margin-top: 0;
    }
}

.footer-widget img {
    margin-bottom: 18px;
}

.footer-widget p {
    color: #000;
    width: 270px;
    line-height: 23px;
}

@media only screen and (max-width: 767px) {
    .footer-widget p {
        width: auto;
    }
}

.footer-widget ul {
    padding-left: 5px;
}

    .footer-widget ul li {
        margin-bottom: 12px;
        list-style: none;
    }

        .footer-widget ul li:last-child {
            margin-bottom: 0;
        }

        .footer-widget ul li a {
            color: #000;
            white-space: nowrap;
            display: block;
            line-height: 23px;
        }

            .footer-widget ul li a:hover {
                color: #145388;
            }
