/* teilnahmeliste */

html .hidden{
    visibility: hidden;
}

html #buttons-row{
    display: flex;
    flex-direction: row;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
}

html #triggerAddParticipant:hover, html #triggerRemoveParticipant:hover, html #printList:hover{
    cursor: pointer;
}

html .eventFormParticipant{
    flex-wrap: nowrap;
    margin: 0.5rem 0;
    background-color: #f8f8f8;
    padding: 1rem 2rem;
    border: 1px solid var( --e-global-color-5483801 );
    border-radius: 2px;    
    box-shadow: 0px 0px 10px 1px var( --e-global-color-5483801);
}

html .eventFormParticipant p{
    font-family: var( --e-global-typography-primary-font-family ), sans-serif !important;
    font-weight: normal;
    font-size: 85%;
}

html .eventFormParticipant input[type="email"]{
    font-size: 86%;
    padding: 0.35rem 0.5rem;
}

html .eventFormParticipant input[type="submit"]{
    font-weight: 600 !important;
    border: 0;
    margin-bottom: 0!important;
    font-size: 82%;
    padding: 0.5rem 1.25rem;
}

html .eventFormParticipant input[type="submit"]:hover{
    cursor: pointer;
}

html .alert{
    width: 100%;
    padding: 1rem 2rem;
    font-family: var( --e-global-typography-primary-font-family ), sans-serif !important;
    font-weight: normal;
    font-size: 85%;
    border-radius: 2px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

html .danger{
    color: rgb(88, 21, 28);
    border-color: rgb(88, 21, 28);
    background-color: rgb(248, 215, 218);
}

html .success{
    color: #155724;
    border-color: #155724;
    background-color: #d4edda;
}

html .alert{
    position: fixed;
    top: 50px;
    left: 12.5%;
    width: 75%!important;
    animation:showNotification 4000ms ease-in;
    z-index: 9999;
    opacity: 0;
}

@keyframes showNotification {
  from {opacity: 1;}
  to {opacity: 0;}
}

@media print {
    .no-print{
        display: none!important;
    }

    /* Teilnahmeliste */
    .page-id-32209 .entry-title, .page-id-32209 footer, .page-id-32209 header{
        display: none!important;
    }
    .page-id-32209{
        margin-top: -5rem;
    }

}    