.w-100{
    width: 100% !important;
}

.sc_attendance_custom{
    margin-bottom: 10rem;
    display:flex; 
    flex-direction:column; 
    width:100%;
    align-items: center;
}

.sc_attendance_custom .sc_events_item{
    width: 600px;
}

.modal{
    display: none;
    position: fixed;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* For Safari */
    /* background-color: rgba(0,0,0,0.4); */
    animation: fadein .5s ease-in-out;
}

.modal-card{
    padding: 20px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    background-color: #1e1e1e;
    width: 500px;
    min-height: 100px;
    animation: fadeinmodal .5s ease-in-out;

}

.modal-card > div{
    padding: 20px;
}

.modal-title{
    border-bottom: #f3f5f8 solid .5px;
    width: calc(100% - 40px);
    font-size: large;
    font-weight: 700;
}

.modal-item{
    display: flex;
}

.item-text{
    width: 100px;
}

@keyframes fadein{
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadeinmodal{
    from {
        opacity: 0;
        margin-top: -100px;
    }
    to {opacity: 1;}
}

@media (max-width: 425px) {
    .sc_attendance_custom .sc_events_item{
        width: 100%;
    }
}