html, body{
    background-color: white;
    font-size: 16px;
    line-height: 1.375rem;
}

.card{
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    border-radius: 5px;
}

.admin_panel{
    position: relative;
}

.admin_panel .close{
    color: white;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.admin_action{
    display: inline-block;
    width: fit-content;
    background-color: white;
    color: #187aed;
    padding: 10px 18px;
    border-radius: 4px;
    margin: 1rem 0.5rem;
    font-weight: 600;
}

.admin_action:hover{
    transform: translateY(-2px);
}

.event_cover_sqr{
    width: 100%;
    height: 400px;
    background-color: #e9e9e9;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    border-radius: 5px;
    margin-bottom: 2rem;
}

@media (max-width: 768px){
    .event_cover_sqr{
        height: 200px;
    }
}

.social_buts{
    display: block;
    padding: 1rem;
    padding-top: 0;
}
div.social_buts > * {
    /*float: left;*/
    vertical-align: bottom;
    margin: 4px 2px;
}
.event_title{
    margin: 0;
    color: #187aed;
}

.btn-event-ticket{
    color: #fff;
    display: block;
    border-radius: 1000px;
    font-size: 18px;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: none;
    background-color: #FB3B5B;
    padding: 1rem 2rem;
    -webkit-box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
    box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
}

.btn-event-ticket:hover{
    color: white;
}
.btn-event-ticket:visited{
    color: #fff;
}

.btn-event-ticket .material-icons{
    font-size: 24px;
    vertical-align: bottom;
    margin-bottom: -2px;
    margin-left: 0.5rem;
    margin-right: -6px;
    transition: all 0.35s ease;
}

.btn-event-ticket:hover .material-icons{
    transform: translateX(5px);
}

#event_map{
    height: 400px;
    background-color: #e9e9e9;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    border-radius: 5px;
    margin-bottom: 2rem;
}

@media (max-width: 768px){
    #event_map{
        height: 200px;
    }
}

.event_info_description{
    margin-top: 1rem;
    margin-border: 1rem;
    color: rgba(0,0,0,0.87);
}
.event_info{
    display: block;
    padding: 1rem;
    padding-top: 0;
    color: #187aed;
    margin: 0;
    margin-left: 2.5rem;
}

.event_info .material-icons{
    font-size: 24px;
    vertical-align: bottom;
    position: absolute;
    margin-right: 0.5rem;
    margin-bottom: -3px;
    margin-left: -2.5rem;
}

.event_message{
    color: rgba(0,0,0,0.54);
    padding: 1rem;
    width: 100%;
    font-size: 16px;
    margin-bottom: 2rem;
}

.event_message p{
    margin: 0;
}

.event_message .material-icons{
    vertical-align: bottom;
    margin-right: 0.5rem;
    font-size: 24px;
}

.event_message.event_message_cancelled{
    background-color: #fb3b5b;
    color: white;
    font-size: 18px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .event_message{
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

