@charset "utf-8";
/* CSS Document */

.hht-wrap {
position: relative;
}
#fixedBanner {
position: fixed;
bottom: 130px;
left: 0;
right: 0;
z-index: 101;
width: 100%;
max-width: 1275px;
margin: 0 auto;
text-align: right;
pointer-events: none;
animation-name: fadeIn;
animation-delay: 1.5s;
animation-duration: 1.5s;
animation-timing-function: ease;
animation-fill-mode: backwards;
}
#fixedBanner .inner {
position: relative;
}
#fixedBanner a {
display: inline-block;
pointer-events: auto;
}
#fixedBanner .close {
position: absolute;
right: 0;
top: -30px;
width: 30px;
height: 30px;
cursor: pointer;
pointer-events: auto;
background: rgba(0,0,0,0.3) url('/assets/image/common/floating-banner/bn_float_close.png') center center no-repeat;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
}
}