.event-view-wrapper{
    min-height: 100vh;
}
a,a:visited{
    color: inherit;
    text-decoration: none;
}
.app-header{
    position: relative;
    display: flex;
    max-width: 1200px;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin: 0 auto;
}
.app-logo{
    display: block;

}
.button-wrapper{
    border-radius: 3px;
    background-image: linear-gradient(90deg, #7BB572 0%, #5B8D58 100%);
    padding: 6px 12px;
}
.button-label{
    color: white;
    font-family: CocogooseSemiLight;
    cursor: pointer;
    margin: 0;
}
.event-invite{
    font-size: 25px;

    font-weight: 400;
    text-align: center;
}
.cover-wrapper{
    position:relative;
    width: 100%;
    height:  calc( min(90vw, 850px) / 2.3529);
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
}
.cover-wrapper>.cover{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
}
.cover-wrapper>.overlay{
    height: 100%;
    padding: 20px;
    align-items: flex-end;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(0,0,0,0.5), rgba(0,0,0,0.0));
    display: flex;
}
.overlay>.event-title{
    color: white;
    font-size: 34px;
    margin:0
}
.flex-aligner{
    display: flex;
    align-items: center;
}
.info-line{
    padding: 0 20px;
    margin: 20px 0;
}
.info-label{
    font-size: 15px;
    margin:0;
}
.info-value{
    font-weight:400;
    font-size: 25px;
    margin: 2px 0;
}
.maps-wrapper{
    overflow: hidden;
    position:relative;
}
.maps-wrapper>.maps-icon{
    margin-left: 20px;
    transition: all .3s;
    opacity: 1;
    width:70px;
    cursor: pointer;
}
.maps-wrapper>.maps-icon.hide{
    opacity: 0;
    margin-left: 0px;
    width:0px;
}
.maps-wrapper>.maps-canvas{
    transition: all .3s;
    height: 319px;
    opacity: 1;
    width: 100%;
    border-radius:10px;
}
.maps-wrapper>.maps-canvas.hide{
    height: 0px;
    opacity: 0;
}

.maps-close{
    position: absolute;
    top: 10px;
    right: 10px;
    background:white;
    padding:10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: library.$box-shadow;
}
.maps-close>img{
    display: block;
    width: 20px;
    height: 20px;
}
.event-view-wrapper > .aligner{
    margin:0 auto;
    width: 90%;
    max-width: 850px;
}
.qr-code-wrapper{
    background:#EDF4EC;
    margin: 40px 0;
    border-radius: 15px;
    padding: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.qr-code-desc{
    max-width: 476px;
}
.qr-code-desc>h3{
    font-size: 30px;
}
.qr-code-desc>p{
    font-size: 18px;
    line-height: 30px;
}
.qr-code-canvas{
    width: 212px;
    height: 212px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}
