Untitled

 avatar
unknown
plain_text
a year ago
1.6 kB
2
Indexable
html body .eg-bottom-banner {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 4;
    background-color: #007DD4;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 25px;
}

html body .eg-bottom-banner p {
    font-size: 20px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

html body .eg-bottom-banner a {
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    background-color: #FFFFFF;
    padding: 10px 40px 10px;
    font-weight: 700;
    border-radius: 48px !important;
    line-height: 1.2;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
}

.b-video__modal__close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    border-bottom: 2px solid #fff;
}

html .closeSticky .eg-bottom-banner {
    display: none;
}

html body .eg-close {
    top: 0px !important;
    position: relative !important;
    margin-left: 25px !important;
}


@media screen and (max-width: 767px) {
    html body .eg-bottom-banner {
        flex-direction: column;
        text-align: center;
        padding: 10px 50px 10px 20px;
        grid-gap: 15px !important;
    }

    html body .eg-close {
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        margin-left: 25px !important;
    }

    html body .eg-bottom-banner p {
        font-size: 16px !important;
    }
}
Leave a Comment