@charset "utf-8";
/* CSS Document */

.modal {
    padding: 0 !important;
}

.modal-content {
    border: none !important;
    border-radius: 4px !important;
}

.modal-content>div {
    padding: 20px 24px !important;
}

/* Header Section */
.modal__header__title {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.modal__header__title h3 {
    margin: 0px;
    flex: 1 1 0%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Section */
.modal-footer button {
    background-color: #3E9EFF;
    border-radius: calc(.25rem * 1.5);
    border: none;
    color: white;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Submit Button */
.duration-200 {
    transition-duration: .2s;
}

.font-medium {
    font-weight: 500;
}

.gap-2 {
    gap: calc(0.25rem * 2);
}

.items-center {
    align-items: center;
}

.px-3 {
    padding-inline: calc(0.25rem * 3);
}

.py-2 {
    padding-block: calc(0.25rem * 2);
}

.text-sm {
    font-size: .875rem;
    line-height: 1.42857;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* Check In Mood */
.mood-emoji {
    font-size: 96px;
}

.mood-number {
    font-size: 1.2em;
    text-align: center;
}

.mood-scale {
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

.mood-scale>div {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selected .mood-number {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    background: rgb(224, 224, 228);
    color: rgb(134, 134, 140);
    border-radius: 50px;
    font-weight: bold;
}

#moodPopup .modal-dialog {
    margin: 40px auto;
    width: 100%;
    max-width: 700px;
    background: rgb(255, 255, 255);
    border-radius: 4px;
    overflow: hidden visible;
    border: 2px solid rgb(255, 255, 255);
    will-change: scroll-position;
    transform: translate3d(0px, 0px, 0px);
}

#submitMood[disabled] {
    display: inline-block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: default;
    text-decoration: none;
    outline: none;
    position: relative;
    background-color: rgb(229, 229, 229);
    text-align: center;
}

@media (max-width: 750px) {
    .mood-emoji {
        font-size: 43px;
    }

    #moodPopup .modal-dialog {
        max-width: 550px;
    }
}

@media (max-width: 600px) {
    #moodPopup .modal-dialog {
        max-width: 400px;
    }
}

/* List Feeling */
.react-tabs {
    border: 4px solid rgb(244, 244, 246);
    margin: 1em 0px;
    border-radius: 4px;
}

.mood-text {
    border-radius: 0px 0px 4px 4px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: space-evenly;
    -webkit-box-align: center;
    align-items: center;
    white-space: nowrap;
    padding: 1em 4px;
}

.mood-text > label {
    margin: 4px;
    width: calc(25% - 8px);
    cursor: pointer;
}

.mood-text > label div {
    text-align: center;
    padding: 0.3em 0.5em;
    transition: 100ms ease-out;
    color: rgb(123, 123, 145);
    opacity: 0.8;
    will-change: transform;
}

.mood-text > label.selected div {
    color: rgb(244, 135, 133);
    opacity: 1;
    transform: scale(1);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 95, 0.1) 0px 2px 15px 0px, rgba(0, 0, 0, 0.08) 0px 1px 4px 0px;
}

@media (max-width: 600px) {
    .mood-text > * {
        width: calc(50% - 8px);
    }
}

/* Loading */
.absolute {
    position: absolute;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.left-0 {
    left: 0;
}

.relative {
    position: relative;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.top-0 {
    top: 0;
}

#loadingPopup .modal-dialog {
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    margin: 0;
}

#loadingPopup .modal-content, #loadingPopup .modal-body>div {
    height: 100%;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* View User */
.user-img {
    width: 90px;
    height: 90px;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid black;
}

#userPopup .row>div.fw-bold
{
    white-space: nowrap;
    font-weight: 700 !important;
}

@media (min-width: 576px) {
    #userPopup .row>div:last-child, #userPopup .row>div:nth-last-child(2)
    {
        margin: 0 !important;
    }
}

@media (max-width: 575px) {
    #userPopup .row>div.fw-bold, #userPopup .row>div:last-child
    {
        margin: 0 !important;
    }
}