html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Notification Scroll Section
--------------------------------------------------------------*/
.notification-container {
    overflow: hidden;
    white-space: nowrap;
}

.notification-text {
    animation: slideIn 15s linear infinite;
    font-size: 0.9rem;
}

    .notification-text:hover {
        animation-play-state: paused;
    }

.notification-link {
    font-weight: 700;
    text-decoration: none;
}

    .notification-link:hover {
        text-decoration: underline;
    }

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-40%);
    }
}

@media (min-width: 567px) {
    .notification-text {
        animation: slideIn 15s linear infinite;
    }

    @keyframes slideIn {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

@media (min-width: 768px) {
    @keyframes slideIn {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-70%);
        }
    }
}

@media (min-width: 992px) {
    .notification-text {
        animation: slideIn 15s linear infinite;
    }

    @keyframes slideIn {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-90%);
        }
    }
}