@charset "utf-8";
/* CSS Document */
.floating_banner {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 10000;
}
@media screen and (max-width: 767.99px) {
    .floating_banner {
        bottom: 20px;
        right: 18px;
    }
}
.floating_banner.close {
    display: none;
}

.floating_banner a {
    width: 120px;
    height: 200px;
    display: block;
    position: relative;
}
@media screen and (max-width: 767.99px) {
    .floating_banner a {
        width: 120px;
        height: 200px;
    }
}
.floating_banner a img {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    background-color: #dddddd;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.floating_banner_close {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fff;
	z-index: 10;
	cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767.99px) {
    .floating_banner_close {
        top: -16px;
	    right: -16px;
        left: inherit;
        width: 28px;
	    height: 28px;
    }
}
.floating_banner_close:before, .floating_banner_close:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background-color: #c9a06d;
	margin: auto;
    width: 60%;
    height: 2px;
}
@media screen and (max-width: 767.99px) {
    .floating_banner_close:before, .floating_banner_close:after {
        width: 70%;
    }
}
.floating_banner_close:before {
    transform: rotate(45deg);
}
.floating_banner_close:after {
    transform: rotate(-45deg);
}

