@font-face {
    font-family: 'DINRegular';
    src: url('../fonts/DIN-Regular.woff2') format('woff2'),
    url('../fonts/DIN-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ITC Officina Sans';
    src: url('../fonts/OfficinaSansStd-Bold.woff2') format('woff2'),
        url('../fonts/OfficinaSansStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}



html, body {
    font-family: DINRegular, Arial;
    text-transform: uppercase;
    height: 100%;
    margin: 0;
    padding: 0;

}

.content {
    min-height: 100%;
    width: 100%;
}

.header {
    height: 100px;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}


.header.header--vivo-guru,
.header.header--vivo-homefix
{
    background-color: #650199;
}

.header.header--vivo-guru h1,
.header.header--vivo-homefix h1
{
    font-size: 1.5rem;
    line-height: 2rem;
    margin-left: auto;
    margin-right: auto;
    color: white;
    margin: 10px;
}

.header img {
    margin: 0 auto;
    max-height: 60%;
}

.header.header--cdf img {
    margin: 0 auto;
    max-height: 100%;
}

.header .refresh {
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    color: #e25239;
}

.header.header--vivo-guru .refresh,
.header.header--vivo-homefix .refresh {
    color: #fff;
}

.header.header--cdf .refresh,
.header.header--vivo-homefix .refresh {
    margin: 30px 20px;
}

.header .refresh span {
    display: none;
    font-size: 2em;
}

#map {
    min-height: calc(100vh - 140px);
}

#map.map--cdf {
    min-height: calc(100vh - 140px);
}

#map .closed {
    text-align: center;
    margin-top: 50px;
    line-height: 2rem;
}

.footer {
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: 0;
    background-color: #650199;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer--cdf {
    background-color: #e25239;
}

.footer p {
    margin: 0 0 0 20px;
    font-size: 15px;
    line-height: 120%;
    color: #fff;
    font-family: 'ITC Officina Sans', sans-serif;+
    text-align: left;
}

.footer__image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.imagePhoto {
    display: block;
    width: 100%;
}

@media(min-width: 769px) {
    .header {
        height: 70px;
        flex-direction: row;
    }

    .header.header--cdf img {
        max-height: 100%;
    }

    .header.header--vivo-homefix img,
    .header.header--vivo-guru img {
        position: absolute;
    }
    .header.header--vivo-homefix h1,
    .header.header--vivo-guru h1 {
        margin: 15px auto;
    }


    .header .refresh {
        margin: 20px;
    }

    #map {
        min-height: calc(100vh - 140px);
    }
}

.modal-alert{
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 7px 1px rgb(0 0 0 / 30%);
    z-index: 9999;
    display: none;
}

.modal-alert.open{
    display: block;
}

.modal-content{
    font: Roboto, Arial, sans-serif;
    padding: 12px 0;
    font-weight: 300;
    font-size: 13px;
    color: #515151;

}

.modal-close{
    background: none; display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; top: -6px; right: -6px; width: 30px; height: 30px;
    opacity: .6;
}

.modal-close:hover{
    opacity: 1;
}

.modal-close img{
    pointer-events: none; display: block; width: 14px; height: 14px; margin: 8px;
}