@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.container-fluid {
    width: 90% !important;
}

.fab-container {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    z-index: 1000;
}

.fab {
    background-color: #E6EFF4;
    color: #FFF;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
}

.dropdown-toggle::after {
    display: none;
}

.actions {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

.keyboard-container {
    background-color: #8ea4af;
    color: #FFF;
    border-radius: 1.5rem;
    padding: 10px 20px 10px 20px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);

}

.wave {
    background-image: url('../static/images/Vector.png');
    min-height: 75vh;
    min-width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: absolute;
    z-index: -1;
}

.highlight {
    color: rgba(233, 118, 0, 0.80);
}

#profile-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #305F72
}

.select-subject {
    border-radius: 30rem !important;
    background: #FFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 20px 10px 20px;
}

.subject-menu {
    background-color: #305F72;
    color: #FFF;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #22424e;
    color: rgba(233, 118, 0, 0.80);
}

.search-container {
    border-radius: 30rem;
    background: #FFF;
    box-shadow: 4px 4px 40px 0px #E6EFF4 inset;
}

.query {
    background: transparent !important;
    border: 0px !important;
    margin: 1.5rem;
}

.query::placeholder {
    line-height: 40px;
}

.action-btn {
    height: 40px;
    width: 40px;
}

.btn-highlight {
    background-color: rgba(233, 118, 0, 0.80);
    color: #FFF;
    border-radius: 30rem;
    padding: 10px 20px 10px 20px;
    font-weight: bold;
}

.result {
    border-radius: 3.125rem;
    background: #F9FBFA!important;
    box-shadow: 0px 0px 70px -12px rgba(0, 0, 0, 0.25);
    min-height: 15rem;
}

.swiper-slide:nth-child(n) {
    background-color: #305F72;
    border-radius: 20px;
    color: #E6EFF4;
    padding: 30px;
}

.swiper-pagination-bullet-active {
    background-color: rgba(233, 118, 0, 0.80) !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: rgba(233, 118, 0, 0.80) !important;
}

.no-margin {
    margin-bottom: 0 !important;
}

/* Small Screens */
@media screen and (max-width: 600px) {
    .container-fluid {
        width: 100% !important;
    }

    .wave {
        min-height: 50vh;
    }

    .navbar-toggler-icon {
        background-image: url("../static/images/menu-line.svg") !important;
    }

    .search-container {
        border-radius: 3rem;
        background: #FFF;
        box-shadow: 4px 4px 40px 0px #E6EFF4 inset;
    }

    .action-btn {
        height: 20px;
        width: 20px;
    }

    textarea {
        background: transparent !important;
        border: 0px !important;
        margin: 0.5rem;
    }

    .result {
        border-radius: 1.125rem;
        background: #F9FBFA!important;
        box-shadow: 0px 0px 70px -12px rgba(0, 0, 0, 0.25);
        min-height: 15rem;
    }
}

.disable-save{
    opacity: 0.5;
    cursor:not-allowed;
}

.cursor-pointer{
    cursor: pointer;
}