body,
html {
    font-family: "Poppins", sans-serif;
}
label {
    padding-left: 2px;
}

p {
    font-weight: 300 !important;
}

select.form-select,
input.form-control {
    min-height: 54px;
}
input.form-control[type="file"] {
    min-height: auto;
}

textarea.form-control {
    resize: none;
}
textarea::placeholder,
input::placeholder {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    padding-left: 4px;
    color : #dedede
}

h2,h3,h4,h5,h6 {
    font-weight: 300 !important;
}
.text-para {
    color : #9e9e9e
}
.lx-1 {
    letter-spacing: 1px;
}

@media screen and (max-width:600px) {
    .centerOnMobile > div {
        width : 100%;
        margin : 6px auto;
    }
    .centerOnMobile {
        text-align: center;
    }
    .nav-tabs {
        flex-wrap: nowrap !important;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none;
        white-space: pre;
    }
}


.bulbGlowing {
    animation : glow 500ms infinite ease-in;
}

@keyframes glow {
    0%,100% { color : #676767 }
    30% { color : #eeb509 }
    60% { color : #eeb509 }
}

/* Bootstrap Overrides */
.form-control{
    box-shadow: none !important;
    outline:none;
}
button.nav-link {
    color : #b3b3b3;
    border-left : 1px solid #787878 !important;
    border-top : 1px solid #787878 !important;
    border-right : 1px solid #787878 !important;
    border-bottom : none !important;
    margin-right : 4px;
    
}
button.nav-link:hover {
    color : #fff;
    border-color : #fff !important;
}

.insetShadow {
    box-shadow :inset 0px 0px 28px rgba(79, 141, 179, 0.2)
}

table {
    border-collapse:separate;
    border:solid black 1px;
    border-radius: 6px;
    background: #fff;
}

.progress {
    height : 0.5em
}


.braining .shape {
    animation: fill-cycle 1s linear infinite;
}

.braining:hover .shape {
    fill: #ef4444;
}

@keyframes fill-cycle {
    0% {
        fill: #4f46e5;
    }

    /* indigo */
    33% {
        fill: #22c55e;
    }

    /* green  */
    66% {
        fill: #f59e0b;
    }

    /* amber  */
    100% {
        fill: #4f46e5;
    }

    /* back   */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .braining {
        animation: none;
    }
}

.galleryImage {
    width: 120px;
    height: 120px;
    border: 1px solid #848484;
    display: inline-block;
    padding: 20px;
    border-radius: 8px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.text-custom-warning {
    color : #d4941d
}