/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");*/

:root {
    --vs-primaryNotice: 29 92 255;
}

/*Dialog Styles*/


dialog {
    padding: 1rem 3rem;
    background: white;
    width: 40%;
    /*	max-width: 400px;*/
    padding-top: 2rem;
    border-radius: 20px;
    border: 0;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    animation: fadeIn 1s ease both;
    &::backdrop

{
    animation: fadeIn 1s ease both;
    background: rgb(255 255 255 / 40%);
    z-index: 2;
    backdrop-filter: blur(20px);
}



.xbtn {
    filter: grayscale(1);
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
    &:hover

{
    filter: grayscale(0);
    transform: scale(1.1);
}

}

/*h2 {
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.5rem 0;
    
}*/
/*
{
    &:visited*/

{
    color: rgb(var(--vs-primaryNotice));
}

}
/*}
}*/

/*General Styles*/
/*body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, sans-serif;*/
/*    background: url(https://images.unsplash.com/photo-1574169208507-84376144848b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=879&q=80) no-repeat center center;*/
/*background-size: cover;
}*/

button.primaryNotice {
    display: inline-block;
    font-size: 0.8rem;
    color: #fff !important;
    background: rgb(146 1 1);
    padding: 13px 25px;
    border-radius: 17px;
    transition: background-color 0.1s ease;
    box-sizing: border-box;
    transition: all 0.25s ease;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 20px -10px rgb(255 29 29 / 50%);
    &:hover

{
    box-shadow: 0 25px 20px -10px rgb(255 29 29 / 50%);
    transform: translateY(-5px);
}

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.admlogo {
    text-align: center;
}


    /*.scllo:hover {*/
    .admlogo figure {
        position: relative;
    }

        .admlogo figure::before {
            position: absolute;
            top: 0;
            left: -75%;
            z-index: 2;
            display: block;
            content: '';
            width: 50%;
            height: 100%;
            background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
            -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
        }

        .admlogo figure:hover::before {
            -webkit-animation: shine .75s;
            animation: shine .75s;
        }

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
/*}*/



/* Container Style */
.date-picker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*	height: 100vh;*/
    /*	background-color: #f0f0f0;*/
}

/* Date Picker Input Field Style */
.date-picker {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    outline: none;
}

    /* Hover and Focus Styles */
    .date-picker:hover, .date-picker:focus {
        border-color: #007BFF;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
