html,
body {
    margin: 0;
    padding: 0;
    background-color: rgb(255, 221, 0);
}

img {
    image-orientation: from-image;
}

a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gmnoprint div {
    background: none !important;
}

.gm-style iframe + div {
    border: none !important;
}

.gm-style .gm-style-iw-c {
    overflow: visible;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    opacity: 1;
    transform: translateZ(0px);
    visibility: visible;
    padding: 0 !important;
}

.gm-style-iw-chr {
    display: none;
}

.gm-style-iw-tc {
    display: none;
}

.gm-style .gm-style-iw-c {
    padding: 0 !important;
}

.gm-style .gm-style-iw-tc,
.gm-style .gm-style-iw-tc::before,
.gm-style .gm-style-iw-tc::after {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important; /* 클릭 막힘도 제거 */
}

.gm-style .gm-style-iw-t {
    background: transparent !important;
    box-shadow: none !important;
}

.gm-style .gm-style-iw-d {
    padding: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

@keyframes bubble-in-anim {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    60% {
        opacity: 1;
        transform: translateY(-3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bubble-in {
    animation: bubble-in-anim 240ms cubic-bezier(.22, .8, .28, 1);
    backface-visibility: hidden;
}

@keyframes bubble-out-anim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

.bubble-out {
    animation: bubble-out-anim 220ms ease forwards;
    pointer-events: none;
}


/* === COIN: shine(반짝) 컨테이너 === */
.shiny {
    margin: 30px auto;
    background-color: transparent;
    border-radius: 15px;
    width: 28px;
    height: 28px;
    overflow: hidden;
    --shine-delay: 0s;
    /* 필요 없으면 삭제 가능 (마스크로 둥글게 잘라냄) */
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.show-off {
    width: 40px;
    height: 40px;
    position: relative;
    top: -40px;
    left: -40px;
    transition: 4s;
    transform: rotate(30deg);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.7) 100%
    );

    -webkit-animation: shine 4s ease infinite;
    animation: shine 4s ease infinite;
    -webkit-animation-delay: var(--shine-delay);
    animation-delay: var(--shine-delay);
    animation-fill-mode: both;
}


.COIN_ICON {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: rotate3d 10s ease infinite;
    animation: rotate3d 10s ease infinite;
    -webkit-animation-delay: var(--shine-delay);
    animation-delay: var(--shine-delay);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }

    10% {
        transform: rotateY(180deg);
    }
    20% {
        transform: rotateY(0deg);
    }
}

@keyframes shine {
    0%,
    15% {
        transform: rotate(30deg);
        top: -40px;
        left: -40px;
    }
    50% {
        transform: rotate(0);
        left: 40px;
        top: -40px;
    }
    100% {
        transform: rotate(0);
        left: 40px;
        top: -40px;
    }
}

a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gmnoprint div {
    background: none !important;
}

.gm-style iframe + div {
    border: none !important;
}

h6 {
    text-transform: none;
    font-size: 0.75rem;
    font-weight: 500;
}
