*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary: #7f4cdd;
    /* --sec: #416fe4; */
    /* --primary: #6200ff; */
    /* --sec: #0d2050; */
    /* --primary: #2800bb; */
    --sec: #4a00ff;
    /* --primary: #a724d2; */
    /* --sec: #00b689; */
    /* --primary: rgb(132, 0, 255); */
    /* --sec: #d7fe44 */

    --err: #d81939;
    --valid: #00cf29;
    
    --err: #ec0b43;
    --valid: #00c985;
}
body{
    font-family: 'Nunito', sans-serif;
    /* filter: invert(100%); */
    background: #eee;
}
body.darkmode{
    background: #000;
    color: white;
    
}
header.header1{
    /* box-sizing: unset; */
    position: fixed;
    top: 0;
    width: 100%;
    padding: 50px 10px;
    background: linear-gradient(to right, var(--primary), var(--sec)) ;

    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 45px;
    line-height: 100%;
    transition: 0.3s;
    height: 50px;
    z-index: 100;
    box-shadow: black 0 0 2px;
    /* white-space:nowrap */
}
header.header1 .right{
    display: flex;
    align-items: center;
}
header.header1 .logo{
    text-decoration: none;
    color: inherit;
    vertical-align: center;
    height: fit-content;
}
header.header1 .right .close-x{
    display: none;
}
header.header1 .right  .btn {
    background: none;
    font-size: 0.5em;
    display: none;
}
header.header1 .togle-right  {
    display: none;
    cursor: pointer;
}
header.header1.logged-in .logged-in{
    display: unset;
}
header.header1.logged-in .logged-out{
    display: none;
}
header.header1.logged-out .logged-in{
    display: none;
}
header.header1.logged-out .logged-out{
    display:unset;
}
header.header1.logged-none .logged-out,
header.header1.logged-none .logged-in{
    display: none;
}

@media only screen and (max-width: 420px){
    header.header1.logged-out *{
        font-size: 0.7em;
    }
    header.header1.logged-out .right{
        font-size: 0.9em;
    }
    header.header1.logged-out .right *{
        padding: 0.5em;
    }

    
    

}
@media only screen and (max-width: 360px){
    header.header1.logged-out .right{
        display: none;
    }
    header.header1.logged-out .togle-right  {
        display: block;
    }
    header.header1.logged-out .right.open{
        position: fixed;
        display: none;
        flex-direction: column;
        top: 00px;
        left: 0;
        width: 100vw;
        background: #416fe4;
    }
    header.header1.logged-out .right.open .close-x{
        z-index: 100;
        display: block;
        position: fixed;
        top: 5px;
        right: 5px;
        cursor: pointer;
    }

    header.header1.logged-out .right.open{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    header.header1.logged-out .right.open *{
        display: inline-block;
    }
    header.header1.logged-out .right.open .logged-in{
        display: none;
    }

    

}
.btn{
    display: inline-block;
    /* background: var(--primary); */
    background: #4a00ff;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px 20px;
    color: #ffffff;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: none;
    outline: none;

}
.btn:hover{
    /* background: var(--sec); */
    background: #430ed6;
    transition: background 0.4s;

}
.btn.btn-large{
    font-size: 30px;
    padding: 20px;
    box-shadow: #00000054 0px 0px 8px 3px;

}
.btn.btn-large:hover{
    box-shadow: #00000054 0px 0px 10px 6px ;

}
/* scrol bar */

.scroll-style-1::-webkit-scrollbar-track
{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.darkmode .scroll-style-1::-webkit-scrollbar-track{
	background-color: #111111;

}


.scroll-style-1::-webkit-scrollbar
{
	width: 12px;
	background-color: transparent;
}


.scroll-style-1::-webkit-scrollbar-thumb
{
	border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}