.topbar {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background-color: #FF5733;
    z-index: 1000;
    padding: 16px 70px 16px 20px;
    transform: translateY(-100%);
    transition: all .4s ease;
}

.topbar.active {
    transform: translateY(0%);
}

.topbar .close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-align: center;
    color: #FFF;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #FFF;
}

.topbar .close i {
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
}

.topbar p {
    font: 400 16px/20px "Mst Regular";
    text-align: center;
    color: #FFF;
}

.topbar p a {
    color: #FFF;
    text-decoration: underline;
    transition: all .4s ease;
}

.topbar p a:hover {
    opacity: .75;
}

@media all and (max-width: 980px) {
    .topbar {
        top: auto;
        bottom: 0;
        transform: translateY(100%);
    }

    .topbar p {
        font-size: 12px;
        line-height: 14px;
    }
}

@media all and (max-width: 480px) {
    .topbar {
        padding: 10px 40px 10px 10px;
    }

    .topbar .close {
        width: 20px;
        height: 20px;
        right: 10px;
    }

    .topbar .close i {
        font-size: 12px;
        line-height: 14px;
    }
}