* {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo-font {
    font-family: "Teko", sans-serif;
}

.clickable {
    cursor: pointer !important;
}

.remove-scrollbar::-webkit-scrollbar {
    width: 0; /* For Chrome, Safari, and Opera */
}
.background-color-theme {
    background-color: #001A6E;
}
.color-theme {
    color: #001A6E;
}



/* Alert */
#alert {
    position: fixed;
    top: 12px;
    max-width: 40%;
    width: auto;
    right: 0;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.35);
}


    #alert.active-alert {
        transform: translateX(-10px); /* or -0.5rem */
    }