.smiles_popup {
    position: fixed;
    height: 360px;
    width: 300px;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: rgb(0 0 0 / 70%) -10px 9px 36px 2px;
}

.smiles_container {
    display: flex;
    justify-content: center;
    margin-right: 20px;
}

.verygood {
    background-image: url("images/verygood.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    margin-left: 20px;
    cursor: pointer;
}

.good {
    background-image: url("images/good.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    margin-left: 20px;
    cursor: pointer;
}

.bad {
    background-image: url("images/bad.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    margin-left: 20px;
    cursor: pointer;
}

/*@media (min-width: 620px) and (max-width: 800px) {
    .smiles_popup {
        position: absolute;
        right: 10px;
        top: 100px;
        z-index: 1000 !important;
        width: 600px !important;
        cursor: pointer;
        border-radius: 5px;
        border: solid 1px lightgrey;
        margin-left: 20%;
    }
}*/

@media (min-width: 400px) {
    .smiles_popup {
        z-index: 1000 !important;
        border-radius: 5px;
        border: solid 2px white;
        position: fixed;
        height: 250px;
        width: 300px;
        border-radius: 10px;
        padding: 10px;
        box-shadow: rgb(0 0 0 / 70%) -10px 9px 36px 2px;
        background-color: white;
    }
}

@media (max-width: 420px) {
    .smiles_popup {
        z-index: 1000 !important;
        border-radius: 5px;
        border: solid 2px white;
        position: fixed;
        height: 250px;
        width: 300px;
        border-radius: 10px;
        padding: 10px;
        box-shadow: rgb(0 0 0 / 70%) -10px 9px 36px 2px;
        background-color: white;
    }
}



.thanks {
    font-size: 25px;
    font-weight: bold;
}

.popup-window-titlebar {
    text-align: center;
}

.popup-window-titlebar-text {
    color: black;
    font-size: 17px;
}

.choice_smile {
    display: inline-flex;
    text-align: center;
    font-size: 16px;
}

.popup-window-content {
    padding: 1px !important;
}

#popup-message_smiles {
    text-align: center;
    padding-top: 25px;
}

.smiles-close {
    align-self: end;
    cursor: pointer;
}

#smiles_popup .thanks {
    font-size: 14px;
    padding: 0 10px 0px 10px;
    margin-top: -10px;
    text-align: center;
}