.vote-article {
    width: 50%;
    font-weight: 600;
    font-size: 1vw;
    color: var(--dark-font);
    position: relative;
    gap: 0.7vw;
    justify-content: start!important;
}

.vote-article .vote-system-cont {
    position: relative;
}

.vote-article .vote-system-cont ul.stars-cont {
    gap: 0.25vw;
    flex-direction: row-reverse;
    cursor: pointer;
}

.vote-article .vote-system-cont ul.stars-cont li i {
    color: var(--gold);
    font-size: 1.2vw;
}

.vote-article .vote-system-cont .voting-window {
    padding: 1vw;
    width: 30vw;
    height: 12vw;
    border-radius: 0.65vw;
    box-shadow: 0 0.15vw 0.5vw rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 150%;
    left: -10vw;
    z-index: 2;
    background-color: var(--light-bg);
    transition: all 0.25s ease-in-out;
    opacity: 0!important;
    visibility: hidden!important;
    gap: 1vw;
}

.vote-article .vote-system-cont .voting-window.active {
    opacity: 1!important;
    visibility: visible!important;
}

.vote-article .vote-system-cont .voting-window h3 {
    width: 100%;
    font-weight: 500;
    font-size: 0.95vw;
    text-align: center;
}

.vote-article .vote-system-cont .voting-window .vote-reactions-cont {
    width: 100%;
    gap: 1vw;
    position: relative;
}

.vote-article .vote-system-cont .voting-window .vote-reactions-cont > div {
    width: 4vw;
    cursor: pointer;
    gap: 0.6vw;
    font-size: 0.85vw;
    text-align: center;
    transition: all 0.25s ease-in-out;
}

.vote-article .vote-system-cont .voting-window .vote-reactions-cont > div .vote-svg-cont {
    width: 4vw;
    height: 4vw;
    padding: 0.75vw;
    border-radius: 1.5vw;
    border: 0.1vw solid #EDF1F6;
    position: relative;
    transition: all 0.25s ease-in-out;
}

.vote-article .vote-system-cont .voting-window .vote-reactions-cont > div .vote-svg-cont svg {
    width: 100%;
}

.vote-article .voting-window .vote-reactions-cont > div .vote-svg-cont svg path {
    transition: all 0.25s ease-in-out;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(1) .vote-svg-cont svg path {
    fill: #EF5C59;
    stroke: #EF5C59;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(1):hover {
    color: #EF5C59;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(1):hover .vote-svg-cont {
    background-color: #EF5C59;
    border-color: var(--light-bg);
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(1):hover .vote-svg-cont svg path {
    fill: white;
    stroke: white;
}



.vote-article .voting-window .vote-reactions-cont > div:nth-child(2) .vote-svg-cont svg path {
    fill: #FFB623;
    stroke: #FFB623;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(2):hover {
    color: #FFB623;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(2):hover .vote-svg-cont {
    background-color: #FFB623;
    border-color: var(--light-bg);
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(2):hover .vote-svg-cont svg path {
    fill: white;
    stroke: white;
}




.vote-article .voting-window .vote-reactions-cont > div:nth-child(3) .vote-svg-cont svg path {
    fill: #7DBF74;
    stroke: #7DBF74;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(3):hover {
    color: #7DBF74;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(3):hover .vote-svg-cont {
    background-color: #7DBF74;
    border-color: var(--light-bg);
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(3):hover .vote-svg-cont svg path {
    fill: white;
    stroke: white;
}



.vote-article .voting-window .vote-reactions-cont > div:nth-child(4) .vote-svg-cont svg path {
    fill: #1A6ED3;
    stroke: #1A6ED3;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(4):hover {
    color: #1A6ED3;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(4):hover .vote-svg-cont {
    background-color: #1A6ED3;
    border-color: var(--light-bg);
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(4):hover .vote-svg-cont svg path {
    fill: white;
    stroke: white;
}



.vote-article .voting-window .vote-reactions-cont > div:nth-child(5) .vote-svg-cont svg path {
    fill: #D31ACC;
    stroke: #D31ACC;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(5):hover {
    color: #D31ACC;
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(5):hover .vote-svg-cont {
    background-color: #D31ACC;
    border-color: var(--light-bg);
}

.vote-article .voting-window .vote-reactions-cont > div:nth-child(5):hover .vote-svg-cont svg path {
    fill: white;
    stroke: white;
}
