.grid-container{
    position: relative;
    width: 100%;
    height: 80vh;
    border: 1px solid #F55E4F;
    overflow: scroll;
    background-color: white;
    padding: 2px;
}

.container-info{
    position: absolute;
    width: 2305px;
    height: 5956px;
    background-color: rgba(0,0,0,0.1);
}

.grid-info{
    /*position: relative;*/
    width: 2180px;
    height: 1515px;
    background-color: rgba(0,0,0,0.1);
}

.hours{
    position: absolute;
    top: 75px;
    left: 0px;
    width: 100px;
    height: 17280px;
    background-color: white;
    border-right: 2px solid #F55E4F;
    z-index: 100;
}

.hours.fixed{
    position: sticky;
}

.row-min-event{
    width: 100%;
    height: 180px;
    border-top: 1px solid #F55E4F;
    display: flex;
}

.col-time{
    width: 100px;
    height: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.col-time p{
    margin: 0px;
    padding: 0px;
    line-height: 30px;
}

.days{
    position: absolute;
    top: 0px;
    left: 100px;
    width: 2205px;
    height: 76px;
    background-color: white;
    border-bottom: 2px solid #F55E4F;
    z-index: 90;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.days.fixed{
    position: sticky;
}

.col-day{
    width: 300px;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.col-day .row-event{
    width: 299px;
    border-right: 1px solid #F55E4F;
    border-bottom: 1px solid #F55E4F;
    height: 180px;
    margin: 0px;
    padding: 0px;
}

.col-day .date{
    height: 75px;
    text-align: center;
    background-color: #2ea2cc;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-left: 2px solid #0A246A;
    border-right: 2px solid #0A246A;
}

.col-day .date h1{
    margin: 0px;
    padding: 0px;
    line-height: 50px;
    font-weight: bold;
}

.col-day .date p{
    margin: 0px;
    padding: 0px;
    line-height: 25px;
    font-weight: bold;
}

.empty{
    position: absolute;
    width: 100px;
    height: 73px;
    background-color: white;
}

.columns{
    position: absolute;
    top: 78px;
    left: 100px;
    min-width: 2205px;
    height: 17280px;
    display: flex;
    background-color: #FF6858;
    z-index: 70;
}

.column-day{
    position: relative;
    width: 316px;
    height: 17280px;
    border-right: 2px solid #0A246A;
}

.column-day .row-event{
    width: 100%;
    height: 180px;
    border-bottom: 1px solid #F55E4F;
}

.column-day .row-event p{
    margin: 0px;
    padding: 0px;
}

.grid-data{
    position: absolute;
    top: 75px;
    left: 100px;
    width: 100%;
    height: 5856px;
    z-index: 80;
}

.container-data{
    position: relative;
    width: 2212px;
    height: 5856px;
    display: flex;
}

.container-data .data-column{
    position: relative;
    width: 316px;
    height: 5856px;
}

.container-data .data-column .event{
    position: absolute;
    left: 0px;
    width: 314px;
    background-color: #88FA60;
    padding-left: 15px;
    padding-right: 15px;
    color: black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

.container-data .data-column .event .link{
    position: relative;
    width: 316px;
    min-height: 100%;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}

.container-data .data-column .event .title{
    position: relative;
    width: 281px;
    min-height: 100%;
    text-decoration: none;
}

.container-data .data-column .event a .event-content{
    position: relative;
    z-index: 300;
}

.container-data .data-column .event .time{
    height: 30px;
    width: 285px;
    display: flex;
    justify-content: space-evenly;
    color: #362306;
    font-size: 12px;
    line-height: 30px;
}

