#hodnoceni-box,
#hodnoceni-box-text {
    position: absolute;
    top: 2%;
    left: -450px;
    width: 310px;
    min-height: 120px;
    background: #c21d2e;
    z-index: 999;
    box-shadow: 0 0 12px rgba(0,0,0, .4);
    transition: all ease-in-out .5s;
    display: none;
    justify-content: center;
    align-items: center;
}
.hodnoceni-box-div {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: flex;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#btnHodnoceniNezobrazovat {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}
#btnHodnoceniNezobrazovat:hover {
    color: #000000;
    background: #ffffff;
}
#hodnoceni-box h5 {
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}
#hodnoceni-box form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse; /* aby 5 hvězdiček bylo zleva doprava */
}
#hodnoceni-box input {
    display: none;
}
#hodnoceni-box label {
    cursor: pointer;
    font-size: 2rem;
    color: lightgray;
    transition: color 0.2s;
}
#hodnoceni-box label i {
    margin: 0 5px;
}
#hodnoceni-box input:checked ~ label {
    color: goldenrod;
}

#hodnoceni-box label:hover {
    color: goldenrod;
}

.fa-face-grin-hearts {
    font-size: 2.2rem !important;
}
.fa-face-grin-hearts:hover {
    color: rgb(12, 145, 0);
}
/*
#hodnoceni-box label:hover,
#hodnoceni-box label:hover ~ label {
    color: goldenrod;
}
*/

/* textové hodnocení pokud je hodnocení 3 a méně */
#hodnoceni-box-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: -450px;
    width: 310px;
    min-height: 120px;
    background: #c21d2e;
    z-index: 999;
    box-shadow: 0 0 12px rgba(0,0,0, .4);
    transition: all ease-in-out .5s;
    display: none;
    justify-content: center;
    align-items: center;
}
#hodnoceni-box-text #textHodnoceni {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px;
}
#popisHodnoceni {
    min-width: 275px;
    width: 275px;
    max-width: 275px;
    min-height: 75px;
    height: 75px;
    max-height: 75px;
    padding: 2.5px;
    margin-bottom: 5px;
    border: none;
}
#odeslatTextHodnoceni {
    padding: 2.5px 5px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

