.vot-generator {
    background-color: white;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    border-radius: 10px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 700px;
}

.vot-generator .vot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom: 20px;
}

.vot-generator .vot-row.part-1 .emo {
    width: 50px;
    height: 50px;
}


.vot-generator .vot-row.part-2 .emo {
    width: 100px;
    height: 50px;
}


.vot-generator .vot-row.part-3 .emo {
    width: 90%;
    height: 50px;
}


.vot-generator .emo {
    background: initial;
    border-radius: 10px;
    font-size: 20px;
    margin: 6px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    cursor: pointer;
    /* flex: 1 1 10%; */
    box-sizing: border-box;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-align: center;
    text-wrap: nowrap;
    overflow-x: auto;
    position: relative;
}

.vot-generator .emo:hover {
    border-color: #ff486a;
}

.vot-generator h4 {
    text-align: center;
    padding-top: 2rem !important;
}

body>.tips {
    position: absolute;
    background-color: #00000061;
    color: #fff;
    padding: 0px 5px;
    border-radius: 3px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1000;
}