/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

.darkMode{
    --background-color:#24252a;
    --header:#ffffff;
    --color:#dddde8;
    --subcolor:#b6b6cb;

    --input:#2a3136;
    --input-border:#41494f;
    --input-disabled:#24272a;

    --lightblue:#F6F9FC;
    --darkblue:#004682;
    --red:#FF4D4D;
    --yellow:#FBBC75;
    --green:#71CB74;
    --black:#1F2026;
    --white:#D9D9DF;

    --lightblue-hover:#d1e9fe;
    --darkblue-hover:#0056a1;
    --red-hover:#ff6464;
    --yellow-hover:#ffc583;
    --green-hover:#7ada7e;
    --black-hover:#30323b;
    --white-hover:#e9e9f1;

    --secondary:#2a2e39;
}
:root{
    --background-color: #F7F8FD;
    --header:#000000;
    --color:#1e1e1f;
    --subcolor:#53535d;

    --input:#ffffff;
    --input-border:#e2e4e5;
    --input-disabled:#e9ecef;

    --lightblue:#f1eefa;
    --darkblue:#004682;
    --red:#FF4D4D;
    --yellow:#FBBC75;
    --green:#71CB74;
    --black:#1F2026;
    --white:#D9D9DF;

    --notify-Danger:rgb(138, 0, 0);
    --notify-Info:#eaf3fd;
    --notify-Success:green;
    --notify-Warn:red;

    --lightblue-hover:#d1e9fe;
    --darkblue-hover:#0056a1;
    --red-hover:#ff6464;
    --yellow-hover:#ffc583;
    --green-hover:#7ada7e;
    --black-hover:#30323b;
    --white-hover:#e9e9f1;

    --secondary:white;

    --border:4px;
    --border-block:10px;
    --border-xl:10px;
    --shadow:0px 0px 16px hsla(231, 9%, 28%, 0.1);
    --shadow-box:3px 4px 10px hsla(231, 9%, 28%, 0.226);
}
.dark-bg{
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 99998;
}
.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 100%;
    z-index: 99999;
    max-height: 80%;
    overflow-y: auto;
}
.block{
    margin-top: unset !important;
}
.block{
    margin-top:1em;
}
.dark-bg{
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 99998;
}
.block.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.error-txt{
    color: #e14646;
    display: none;
}
.block.mw{
    max-width: 500px;
    width: 100%;
}
.block .header{
    font-size:1.2em;
    font-weight:700;
    margin-bottom:10px;
}
@media only screen and (max-width: 750px){
    .block{
        overflow-x: auto;
    }
}