/* CSS to hide the scroll bar */
::-webkit-scrollbar {
    display: none;
}

/* CSS for the Content-wrapper div to scrollable */
.content-wrapper {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* CSS for description below the title */
.description {
    font-weight: 400;
    font-size: 16px;
    color: #00000080;
}

/* CSS for the title */
.title {
    color: #161617;
    font-size: 20px;
    font-weight: 600;
}

/* CSS for Submit button */
#btnFeedbackSubmit {
    height: 56px;
    width: 122px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}


@media (min-width: 480px) {
    #btnFeedbackSubmit:hover {
        background: #6941C6 !important;
    }
}
/* CSS for experience input fields */
.customBorderRadiusExperience {
    height: 200px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    resize: none;
    box-shadow: none;
}

/* CSS for experience input fields to set custom border radius on focus*/
.customBorderRadiusExperience:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* CSS to set the height of experience */
textarea.form-control {
    height: 154px;
}

.customBorderRadiusModel {
    border-radius: 8px;
}

.p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    color: #00000066;
}

#experience::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.feedback-container {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;

}

.emoji-option {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.emoji-option img {
    width: 40px;
    height: 40px;
}

.emoji-option.active img {
    width: 40px;
    height: 40px;
}

.emoji-option label {
    display: block;
    margin-top: 5px;
    color: #93969F !important;
    font-size: 12px !important;
    font-family: "Manrope", sans-serif !important;
    font-weight: 500 !important;
}

.emoji-option.active label {
    font-weight: 600 !important;
    font-size: 12px !important;
    font-family: "Manrope", sans-serif !important;
    color: #212121 !important;
}

@media (max-width: 398px) {
    .marign-top {
        margin-top: 20px !important;
    }

    .emoji-option img {
        width: 40px;
        height: 40px;
    }

    .emoji-option label {
        font-size: 12px;
    }
}

@media (max-width: 366px) {
    .marign-top {
        margin-top: 15px !important;
    }

    .emoji-option img {
        width: 30px;
        height: 30px;
    }

    .emoji-option label {
        font-size: 10px;
    }
}

@media (max-width: 318px) {
    .marign-top {
        margin-top: 10px !important;
    }

    .emoji-option img {
        width: 25px;
        height: 25px;
    }

    .emoji-option label {
        font-size: 8px;
    }
}

.custom-card {
    border-radius: 8px;

}

/* CSS to change background color on hover effect on the Close button in submission modal */


@media (min-width: 480px) {
    #btnClose:hover {
        background: #6941C6;
    }
}
