*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

.second{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card{
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.card span{
    position: absolute;
    top:0;
    width: 250px;
    height: 250px;
    display: block;
    background-color: #000;
    border-radius: 50%;
    transform-origin: 125px 0;
    transform: rotate(calc(90deg * var(--i)));
    filter: blur(90px);
    opacity: 0.70;
}

.card span:nth-child(1)
{
    background-color: #01b2fe;
}
.card span:nth-child(2)
{
    background-color: #ff008c;
}
.card span:nth-child(3)
{
    background-color: #ffcd00;
}
.card span:nth-child(4)
{
    background-color: #00c456;
}

.glass{
    position: absolute;
    width: 450px;
    height: 300px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 20px ;
    border: 1px solid #fff;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.glass::before{
    content:'';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .2);
    pointer-events: none;
    transform: skewX(345deg);

}

h2{
padding: 20px;
font-weight: 400;
width: 100%;
background-color: rgba(255, 255, 255, .2);
color: #333;
text-align: end;
}
i{
    font-weight: 300;
    font-size: 1rem;
    font-style: normal;
}


.section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #161623;
    overflow: hidden;
    }
    
    .section::before{
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: linear-gradient(#ffc107,#e91e63);
        border-radius: 50%;
        transform: translate(-250px,-150px);
    }
    
    .section::after{
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(#2196f3,#31ff38);
        border-radius: 50%;
        transform: translate(250px,150px);
    }
    
    .box{
        position: relative;
        z-index: 10000;
    }
    
    .container{
        position: relative;
        width: 400px;
        min-height: 400px;
        background-color: rgba(255, 255, 255, .1);
        box-shadow: 0 25px 45px rgba(0,0,0,.1);
        border: 1px solid rgba(255, 255, 255, .5);
        border-right: 1px solid rgba(255, 255, 255, .2);
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(25px);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #dycalendar{
        width:100%;
        padding: 20px;
    }
    
    #dycalendar table{
        width: 100%;
        margin-top: 40px;
        border-spacing: 5px;
    
    }
    
    #dycalendar table tr:nth-child(1) td{
        background-color: #fff;
        color: #111;
        border-radius: 4px;
        font-weight: 600px;
    }
    
    #dycalendar table td{
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    }
    #dycalendar table td:hover{
    
        background-color: #fff;
    color: #111 !important;
    }
    .dycalendar-month-container .dycalendar-today-date,
    .dycalendar-month-container .dycalendar-target-date{
    background-color: #fff;
    color: #111 !important;
    }
    .dycalendar-month-container .dycalendar-header .dycalendar-prev-next-btn.prev-btn{
        background-color: #fff;
        color: #111;
        width: 44px;
        height: 38px;
        left: 4px;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
    }
    .dycalendar-month-container .dycalendar-header .dycalendar-prev-next-btn.next-btn{
        background-color: #fff;
        color: #111;
        width: 44px;
        height: 38px;
        right: 4px;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
    }
    .dycalendar-month-container .dycalendar-span-month-year{
        color: #fff;
        font-size: 1.5rem;
        font-weight: 500;
    }
    