@charset "UTF-8";

.floating-bnr {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
    display: none;
    position: fixed;
    width: 320px;
    max-width: 90vw;
    height: auto;
    z-index: 9999;
}
.floating-bnr a:hover {
    transition: 0.2s;
}

.floating-bnr.first-bottom-center {
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
}
@media screen and (max-width: 767px) {
    .floating-bnr.first-bottom-center {
        bottom: 30px;
    }
}

.bnr_close {
    background-color: #f8f8f8;
    border: none;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    color: #777;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 8px;
    position: absolute;
    right: -9px;
    top: -12px;
    z-index: 99999;
}
.fa-xmark:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
}
