body {
    font-family: "Lato", sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    height: 100vh;
    overflow: hidden;
}

h1, h2, h3, h4, h5, p {
    margin: 0;
    white-space: pre-line;
}

:before, *:after {
    box-sizing: border-box;
}

:focus {
    outline: none;
}

header {
    background: #000000;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
}

main {
    position: relative;
    width: 100%;
    height: calc(100vh - 59px);
}

.map-marker {
    position: absolute;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px 1px #cdcdcd;
    border-radius: 4px;
    z-index: 1;
    width: 310px;
    /* width: 100%;
    max-width: 310px; */
}

.marker-icon {
    position: absolute;
    bottom: -13%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 40px;
}

    .marker-icon img {
        height: auto;
        width: 100%;
    }

.pin {
    top: 75px;
    left: 40%;
}

.pin-detail .banner-img {
    height: 175px;
    width: 100%;
    position: relative;
    border-top-right-radius: 4px;
    background: #bdc3c7; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #2c3e50, #bdc3c7); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

    .pin-detail .banner-img img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        object-fit: contain;
        object-position: center;
    }

    .pin-detail .banner-img .popup-close {
        position: absolute;
        top: 5px;
        right: 10px;
        color: #ffffff;
        background: none;
        font-size: 16px;
        font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
        text-align: center;
        cursor: pointer;
        border: 0;
        padding: 0;
        text-shadow: 0px 0px 5px black;
    }

        .pin-detail .banner-img .popup-close:hover {
            color: #ffffff;
        }

.pin-detail .header {
    padding: 0.5rem 0.5rem 0 0.5rem;
}

    .pin-detail .header h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333333;
    }

    .pin-detail .header h5 {
        font-weight: 600;
        margin: 0.125rem 0;
        color: #474747;
        font-size: 0.85rem;
    }

.pin-detail hr {
    border-top: 1px solid #e8e8e8;
    border-bottom: none;
    margin: 5px 0;
}

/* .pin-detail .body .poster-info .variant {
    font-size: 0.85rem;
    font-weight: 400;
    color: #575757;
    line-height: 1.4;
} */

.pin-detail .body .poster-info .info {
    display: flex;
    justify-content: space-between;
}

.pin-detail .body .poster-info h5 {
    font-size: 1.3rem;
    font-weight: 300;
    color: #474747;
    margin: 0;
}

.pin-detail .body .poster-info .variant {
    margin-bottom: 0.5rem;
}

.pin-detail .body .poster-info h5 i {
    font-size: 0.675rem;
    color: #169BB2;
}

.pin-detail .body .poster-info .info-figures {
    display: flex;
    justify-content: start;
    text-align: left;
}

    .pin-detail .body .poster-info .info-figures h5, .pin-detail .body .poster-info h5, .pin-detail .header span {
        font-weight: 500;
        margin: 0;
        color: #868686;
    }

        .pin-detail .body .poster-info .info-figures h5 strong {
            color: #474747;
        }

    .pin-detail .body .poster-info .info-figures .face {
        width: 35%;
    }

    .pin-detail .body .poster-info .info-figures .setup {
        width: 65%;
    }

    .pin-detail .body .poster-info .info-figures p, .pin-detail .body .poster-info p, .pin-detail .header p {
        color: #474747;
        margin: 0;
        font-size: 1.3rem;
        font-weight: 400;
    }

.pin-detail .body .poster-info {
    display: flex;
    padding: 0rem 0.5rem 0 0.5rem;
    flex-direction: column;
    margin: 0.5rem 0;
}

.pin-detail .body .address {
    display: flex;
    align-items: flex-start;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

    .pin-detail .body .poster-info .icon, .pin-detail .body .address .icon {
        margin: 0.15rem 0.3rem 0 0;
    }

        .pin-detail .body .poster-info .icon i, .pin-detail .body .address .icon i {
            color: #169BB2;
        }

    .pin-detail .body .address p {
        font-size: 1.3rem;
        font-weight: 400;
        color: #474747;
        margin: 0;
        line-height: 1.4;
    }

.loader-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 55%;
    z-index: 1;
    margin: -75px 0 0 -75px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #169BB2;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .map-marker {
        position: relative;
        top: 0;
        left: 0;
        margin: 3.5rem 0.25rem 1.5rem 0.25rem;
    }
}


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.hideLoader {
    display: none;
}

.banner-img {
    margin-left: 10px;
}

#campignname {
    color: #000000 !important;
}

#postervariant_popup {
    margin-top: 5px;
}

#opsaetning {
    float: right;
}

#postersetupdate_popup {
    float: right;
    margin-left: 180px;
}

#address_popup {
    margin-top: 8px;
}

#address_popup2 {
}

#jcddiv {
    width: 100%;
    height: 10px;
    float: left;
    margin-left: 10px;
}

.info {
    height: 15px;
    float: left;
    width: 250px;
    margin-left: 10px;
    margin-top: 27px;
}

#wrapper2 {
    min-height: 20px;
}

#iconwrapper {
    float: left;
}

.setup {
    margin-right: 10px;
}

.centered-and-cropped {
    float: left;
    width: 16px;
    height: 23px;
    margin-top: 3px;
}

#icon2icon {
    float: left;
    width: 17px;
    height: 29px;
    margin-top: 5px;
}

#infowrapper {
    height: 410px;
    width: 300px;
}

.banner-img {
    width: 250px;
}

#statusbar {
    height: 382px;
    width: 10px;
    border-radius: 4px 0px 0px 4px;
    float: left;
}

.header {
    margin-left: 10px;
}

.address {
    margin-right: 20px;
}

.info {
    margin-bottom: 10px;
}

.wrapper {
    width: 290px;
}

hr {
    width: 285px !important;
    margin-left: 17px !important;
}

#jcdNumber_popup {
    margin-top: 3px;
}

LastUpdated {
    float: right !important;
}

.atlas-map .popup-close {
    color: #ffffff;
}

.atlas-map .popup-close:hover {
    color: #ffffff;
}