/* here you can put your own css to customize and override the theme */

.datepicker.dropdown-menu {
    right: auto !important;
}

.typewriter h3 {
    text-align: center;
    margin-bottom:20px;
    font-size: 22px;
    font-family: monospace; /* Web-safe typewriter-like font */
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: typing 3.5s steps(30, end), blinking-cursor .5s step-end infinite;
    font-family: "JF-Flat-Regular",JF-Flat-Regular,Arial,sans-serif;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blinking-cursor {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}

@media (max-width:1025px) {
    .typewriter h3
    {
        white-space:normal;
    }

}

.mb-2 
{
    margin-bottom: 15px !important;
}