﻿@charset "utf-8";
/* CSS Document */
.sliderimage
{
    margin-top:0px!important;
}

/* Popup Overlay */
#imagePopup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
}

/* Popup Image Container */
#imagePopupContent {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

/* Popup Image */
#imagePopupContent img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
}

/* Close Button */
#popupClose {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    font-size: 25px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

#popupClose:hover {
    background: #e00000;
    color: #ffffff;
}



