.mcnotification {
    position: relative;
    width: 100%;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

.mcnotification.show {
    transform: translateY(0);
}

.mcnotification.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.mcnotification .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    line-height: 1em;
}

.mcnotification .container p {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

@media (max-width: 767px) {
    .mcnotification.show {
        transform: translateY(0);
    }
    .mcnotification{
        padding: 12px 20px !important;
    }
    .mcnotification .container {
        padding: 0 0px;
    }
}