#calendar {
    max-width: 1100px;
    margin: 0 auto;
}

.fc-toolbar-title {
    white-space: nowrap;
}

.fc-toolbar-title::first-letter{
    text-transform: uppercase;
}

.popup{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}



.popup .cerrarP{
    position: absolute;
    text-align: right;
    right: -9px;
    top: -9px;
}

.popup .cerrarP img{
    width: 33px;
}

.popup .cerrarP a{
    color: white;
}

.popup .central{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.popup .titulo{
    color: #622a67;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex: 1;
}


.popup .content{
    position: relative;
    background-color: #f7f7f7;
    width: 600px;
    height: auto;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.popup .texto{
    color: #959595;
    padding-bottom: 12px;
}

@media screen and (max-width: 992px) {
    .popup .central{
        padding-left: 12%;
        padding-right: 12%;
    }

    .popup .content{
        padding-left: 24px;
        padding-right: 24px;
    }
}
/* Movil  */
@media screen and (max-width: 576px) {
    .fc .fc-toolbar.fc-header-toolbar {
        display: block;
        text-align: center;
    }

    .fc .fc-toolbar-title {
        font-size: 1.55em;
    }

    .fc-header-toolbar .fc-toolbar-chunk {
        display: block;
    }

    .fc table {
        font-size: 0.75em;
        line-height: 0.8;
    }

    .fc .fc-daygrid-day-number{
        padding: 2px;
    }

    body{
        /* touch-action: none;*/
        /* -ms-touch-action: none;*/
        border: 0;
    }

    .popup .content{
        margin-top: 18px;
    }

    .popup .titulo{
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 1.2rem;
    }

    .popup .titulo .linea{
        border-bottom: 2px solid transparent;
    }

    .popup .texto p{
        font-size:small;
        margin-block-start: 3px;
        margin-block-end: 3px;
        touch-action: none;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }


    .popup .central{
        padding-left: 3%;
        padding-right: 3%;
        align-items: flex-start;
    }

    .popup .content{
        padding-left: 9px;
        padding-right: 9px;
    }
}