/*******************************/
/********** CHECKBOX ***********/
/*******************************/

.check-full-open {
    position: relative;
    top: 9px;
    border: gray 1px solid;
}

.fulltime {
    border: gray 1px solid;
    left: 1085px;
    position: absolute;
}

/*******************************/
/********** CARD MAP ***********/
/*******************************/

.cardEstablishment {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
}

.cardMap {
    width: 45%;
}

.cardGraph {
    width: 45%;
}

.container-map {
    display: flex;
    justify-content: center;
}

#map {
    width: 100%;
    height: 25rem;
}

.marker-cluster-small {
    padding-top: 0.6rem;
    text-align: center;
    background-color: #fdaa51;
    border-color: #000;
    border-width: 1px;
    opacity: 0.8 !important;
    border-radius: 50%;
}

.marker-cluster-medium {
    padding-top: 0.6rem;
    text-align: center;
    background-color: #fdaa51;
    border-color: #000;
    border-width: 1px;
    opacity: 0.8 !important;
    border-radius: 50%;
}

.marker-cluster-large {
    padding-top: 0.6rem;
    text-align: center;
    background-color: #fdaa51;
    border-color: #000;
    border-width: 1px;
    opacity: 0.8 !important;
    border-radius: 50%;
}

/*****************************/
/********** AGENDA ***********/
/*****************************/

.fc-theme-standard .fc-scrollgrid ,.fc-theme-standard td, .fc-theme-standard th {
    border: 1px solid darkgray;
}

/******************************/
/********** CSS ALL ***********/
/******************************/

.card-title {
    font-size: 1.2rem;
}

/************************************/
/********** FILE DOWNLOAD ***********/
/************************************/

.download-file {
    text-align: center;
    margin: 1rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
}

.card-content {
    display: flex;
    justify-content: center;
}

.grid-card {
     display: grid;
     grid-template:
             "graph stats" auto
             "graph file" auto / 1fr 1fr
 }

 .grid-card-graph {
     grid-area: graph;
     height: 100%;
 }

 .grid-card-graph .card {
     height: inherit;
 }

 .grid-card-stats {
     grid-area: stats;
 }

 .card-stats {
     height: 100%;
 }

 .grid-card-file {
     grid-area: file;
 }

 .card-file {
     height: 100%;
 }