@charset "utf-8";

/* =========================================
   Popup Announcement Modal — Mobile
   ========================================= */

/* Dialog — full-width with side padding */
.popup-announce-dialog {
    max-width: 92vw;
    width: 92vw;
    margin: 30px auto;
}

/* Transparent, borderless card */
.popup-announce-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

/* Header — only contains the close button, no title */
.popup-announce-header {
    background: transparent;
    border-bottom: none;
    padding: 0 8px 0 0;
    display: flex;
    justify-content: flex-end;
    min-height: auto;
}

.popup-announce-header .close {
    color: #fff;
    opacity: 1;
    font-size: 28px;
    font-weight: 300;
    text-shadow: none;
    margin: 0;
    padding: 4px 8px;
    line-height: 1;
}

.popup-announce-header .close:active {
    color: #ccc;
}

/* Body — zero padding so image fills edge to edge */
.popup-announce-body {
    padding: 0;
}

/* Footer — "do not show again" row */
.popup-announce-footer {
    background: transparent;
    border-top: none;
    padding: 10px 0 4px;
    justify-content: center;
}

/* =========================================
   Popup Image Carousel (Bootstrap 3)
   ========================================= */

.announcementpopupimg img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Dot indicators */
#m-announcementpopup .carousel-indicators {
    bottom: -26px;
}

#m-announcementpopup .carousel-indicators li {
    border-color: #fff;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

#m-announcementpopup .carousel-indicators .active {
    background-color: #fff;
    width: 10px;
    height: 10px;
}

/* =========================================
   "Do Not Show Again" Checkbox
   ========================================= */

.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
}

.popup-round {
    position: relative;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.popup-round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    height: 18px;
    width: 18px;
    left: 0;
    top: 0;
    position: absolute;
    margin: 0;
}

.popup-round label::after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 7px;
    left: 2px;
    opacity: 0;
    position: absolute;
    top: 3px;
    transform: rotate(-45deg);
    width: 11px;
}

.popup-round input[type="checkbox"] {
    visibility: hidden;
    margin: 0;
}

.popup-round input[type="checkbox"]:checked + label {
    background-color: #2283f6;
    border-color: #2283f6;
}

.popup-round input[type="checkbox"]:checked + label::after {
    opacity: 1;
}
