/*FEEDBACK*/

.before-submit {
    display: block;
}

.after-submit {
    display: none;
}

#feedback_button {
    position: fixed;
    z-index: 9;
    background-color: #DA1984;
    top: 50%;
    left: -0.3em;
    /* width: 45px; */
    /* height: 200px; */
    writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    text-orientation: mixed;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    padding: 0.8em 0.8em 0.8em 0.5em;
    transition: all 0.35s;
}

#feedback_button:hover {
    left: 0px !important;
}

@keyframes fade_and_show {
  from {opacity: 0;margin-top: -200px;}
  to {opacity: 1;margin-top: 75px;}
}

#feedback-form-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    overflow: auto;
    background-color: rgba(0,0,0, 0.7);
}

#feedback-form-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#feedback-form {
    opacity: 0;
    position: absolute;
    margin-top: 75px;
    margin-bottom: 75px;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    animation-name: fade_and_drop;
    animation-duration: 0.35s;
    animation-delay: 0.35s;
    animation-fill-mode: both;
}

#feedback-form-x {
    margin-right: 5px;
    color: #DA1984;
    position: absolute;
    right: 0px;
    cursor: pointer;
    z-index: 1;
}

#feedback-form-x-mobile {
    margin-right: 5px;
    color: #DA1984;
    position: absolute;
    right: 0px;
    cursor: pointer;
    z-index: 1;
}

.feedback-header {
    font-size: 26px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.feedback-bold {
    font-weight: bold;
}

.feedback-normal {
    font-weight: 400;
    margin-bottom: 25px;
}

.feedback-note {
    font-size: 15px;
    margin-top: 10px;
}

#feedback-textarea {
    margin-top: 15px;
}

#feedback-textarea-input {
    resize: vertical;
    width: 100%;
    height: 110px !important;
}

#feedback-submit {
    margin-top: 15px;
    margin-bottom: 25px;
}

#feedback-faces {
    margin-bottom: 10px;
    margin-top: 10px;
}

.feedback-faces {
    width: 80px;
    padding: 10px;
    cursor: pointer;
    border-radius: 40px;
}

.feedback-faces-active {
    border: 1px solid #DA1984;
}

.feedback-required {
    font-weight: bold;
    color: #DA1984;
}

.feedback-pink{
    color: #DA1984;
}

.feedback-purple{
    color: #813F98;
}

#email_tooltip{
    font-size: 10px;
    color: #813F98;
    left: 0;
    font-weight: bold;
    display: none;
}

.feedback_active{
    display: block !important;
}

.feedback-tooltip{
    cursor: pointer;
}

#feedback-error {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #DA1984;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

#feedback-thanks-container {
    margin-bottom: 100px;
    margin-top: 100px;
}

#feedback-check {
    color: #a0c416;
}

#feedback-thanks {
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

#feedback-email{
    margin-bottom: 10px;
    /*margin-top: 10px;*/
}

.feedback-email-input{
    text-align: center;
}

@media only screen and (max-width: 767px) {

    #feedback-form {
        animation: none;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        border-radius: 0px !important;
        opacity: 1;
    }

    .feedback-header {
        margin-top: calc(10%) !important;
    }

    #feedback_button {
        display: none;
        font-size: 13px !important;
        width: 41px !important;
        height: 117px !important;
    }

}

/*END FEEDBACK*/