/* ICON POPUP WRAPPER */
.km-popup-icon-wrapper {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); */
    /* background: white; */
    /* overflow: hidden; */
}
.km-popup-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.km-popup-close-btn {
    position: absolute;
    top: -10px;
    right: 0px;
    background: orangered !important;
    color: white !important;
    font-size: 18px;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
    font-weight: bold;
}

/* VỊ TRÍ */
.km-popup-icon-wrapper.top-left { top: 20px; left: 20px; }
.km-popup-icon-wrapper.middle-left { top: 50%; left: 20px; transform: translateY(-50%); }
.km-popup-icon-wrapper.bottom-left { bottom: 20px; left: 20px; }
.km-popup-icon-wrapper.top-right { top: 20px; right: 20px; }
.km-popup-icon-wrapper.middle-right { top: 50%; right: 20px; transform: translateY(-50%); }
.km-popup-icon-wrapper.bottom-right { bottom: 20px; right: 20px; }

/* POPUP OVERLAY */
.km-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}
.km-popup-overlay.active {
    display: flex;
}
.link{
    padding: 5px 10px;
}
.link a:hover {
    text-shadow: 2px 2px 5px blue;
}
/* POPUP BOX */
.km-popup-title {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #fff;
    font-size: 18px;
    filter: drop-shadow(0px 0px 9px orange);
}
.km-popup-box {
    width: 400px;
    height: 200px;
    background: white;
    border-radius: 12px;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
.km-popup-box-close {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 22px;
    font-weight: bold;
    color: orangered;
    background: #fff;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}

/* NỘI DUNG POPUP */
.km-popup-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    position: relative;
    border-radius: 10px;
    gap: 5px;
}

.km-content {
    text-align: center;
    color: #fff;
    /* background: rgba(0, 0, 0, 0.4); */
    /* padding: 15px; */
    border-radius: 10px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.km-content button.km-claim {
    background: #ffffff3d;
    color: #050aff;
    border: none;
    /* padding: 10px 20px; */
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.km-content button.km-claim:hover {
    background: #eab308;
}

.km-timer {
    /* margin-top: 10px; */
    font-size: 16px;
    font-weight: bold;
}

.km-code {
    margin-top: 10px;
    font-size: 18px;
    color: orangered;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px dotted blue;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hidden {
    display: none;
}
