﻿.alert {
    padding: 12px 15px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    border-radius: 5px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: bold;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable,
.alert-dismissible {
    padding-right: 12px 15px 20px;
}

    .alert-dismissable .close,
    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    background-color: #44b872;
    border-color: #44b872;
    color:white;
}

    .alert-success hr {
        border-top-color: #3da566;
    }

    .alert-success .alert-link {
        color: #6ba839;
    }

.alert-info {
    background-color: #79ccf2;
    border-color: #79ccf2;
    color: #64aae1;
}

    .alert-info hr {
        border-top-color: #62c3f0;
    }

    .alert-info .alert-link {
        color: #3993d9;
    }

.alert-warning {
    background-color: #ffea00;
    border-color: #ffea00;
    color: #F3A43D;
}

    .alert-warning hr {
        border-top-color: #e6d300;
    }

    .alert-warning .alert-link {
        color: #ee8d0f;
    }

.alert-danger {
    background-color: #f54b0f;
    border-color: #f54b0f;
    color:white;
}

    .alert-danger hr {
        border-top-color: #e14209;
    }

    .alert-danger .alert-link {
        color: #b40808;
    }



.ellipse {
    border-radius:25px 25px;
}

::placeholder {
    color: darkgray;
    opacity: 1;
}

.margintop-30 {
    margin-top: 30px;
}


.margintop-15 {
    margin-top:15px;
}

.marginbottom-15 {
    margin-bottom: 15px;
}

.margintop-desktop {
    margin-top: 0;
}


.marginleft-15 {
    margin-left:15px;
}

.marginright-15 {
    margin-right: 15px;
}


.marginwrap {

    margin-left:15px;
    margin-right:15px;
    margin-top:15px;
    margin-bottom:15px;
}


.hundredpercent {
    width:100%;
}

.dropshadow {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}


.formlabel {
    margin-left:11px;
}


.multiline {
    height:350px;
}

.stretchy {
    resize: vertical; /* both | vertical | horizontal | none */
    overflow: auto;
}

.fontnormal {
    font-size:16pt;
}
.iconsmall {
    font-size:20px;
}

.fontarial {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}











.hd-pop-table tbody tr {
    transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

    /* Green / Grey bar striping */
    .hd-pop-table tbody tr:nth-of-type(odd) {
        background-color: #f8f9fa; /* light grey */
    }

    .hd-pop-table tbody tr:nth-of-type(even) {
        background-color: #e9f5ec; /* soft green */
    }

    /* Hover pop-out effect */
    .hd-pop-table tbody tr:hover {
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
        position: relative;
        z-index: 2;
    }

/* Optional: tighten borders so shadow looks clean */
.hd-pop-table td,
.hd-pop-table th {
    border-top: 1px solid #dee2e6;
}

/* Optional: cursor hint */
.hd-pop-table tbody tr {
    cursor: pointer;
}



.gridimage {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    align-self: center;
}

.gridimage16X9 {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.gridimage4X3 {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}


.gridimageportrait {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.image-box-new {
    width: 100%;
    height: 250px; /* FIXED. REQUIRED. */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    //background-color:lightgrey;
    vertical-align:middle;
    
}


/* Lightbox overlay */
.img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.15s ease-out;
}

    /* Full-size image */
    .img-lightbox img {
        max-width: 95%;
        max-height: 95%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border-radius: 4px;
        background: #fff;
    }
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}







.xmodal {
    position: fixed;
    z-index: 9998;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.xcenter {
    display: block;
    vertical-align: middle;
    z-index: 9999;
    margin: 0px auto;
    padding: 0px;
    width: 130px;
    height: 100%;
    //background-color: White;
    //border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

.xmodalentry {
    position: fixed;
    z-index: 9998;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=0);
    opacity: 1;
    -moz-opacity: 1;
}

.modalProgress {
    clear: both;
    float: none;
    margin: 0px;
    z-index: 999;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 50%;
    background-color: White;
    filter: alpha(opacity=100);
    opacity: .85;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    vertical-align: middle;
}

.modalBackground {
    clear: both;
    margin: 0px;
    margin-left: auto;
    margin-right auto;
    z-index: 999;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(50,50,50,.7);
    //filter:alpha(opacity=80);
    //opacity:.85;
    //-moz-opacity:.85;
    //-khtml-opacity: .85;
    text-align: center;
    vertical-align: middle;
}

.modalInput {
    clear: both;
    display: inline-block;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    position: relative;
    background-color: White;
    text-align: left;
    border: 5px;
    border-style: solid;
    border-color: #4b6c9e;
    //filter:alpha(opacity=0);
    //opacity:1;
    //-moz-opacity:1;
    //-khtml-opacity: 1;
}



.ImageInList {
    width:200px;
}




@media (min-width: 1000px) {
    .margintop-desktop {
        margin-top: 35px;
    }
}