.ranking-draggable {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 280px;
    background: transparent;
}


.ranking-option-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.ranking-divider {
    grid-area: 2 / 1 / 3 / 5;
}

.ranking-drag1{
    display: flex;
}

.ranking-title{
    width: 60%;
    text-align: center;
}

.ranking-drop {
    display: flex;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    }
    

.ranking-option,
.ranking-option-drop,
.ranking-option-drag {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.ranking-inner-circle {
    width: 9vh;
    height: 9vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(110 110 110 / 50%);
}

.ranking-inner-circle-down {
    width: 9vh;
    height: 9vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(206 206 206 / 45%);
}
.drag-icon {
    height: 28px;
}

.ranking-number {
    flex: 0.2;
    margin-bottom: 0.5em;
}


.ranking-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.drag-icons {
    height: 2px;
    width: 2px;
}

.ranking-arrow-up {
    width: 25px;
    display: flex;
    margin-bottom: 0.8em;
    justify-content: space-around;
    flex-direction: row;
}
.drag_start {
    opacity: 0.5;
}

.drag-dot {
    height: 9px;
    width: 9px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: inline-block;
    align-items: center;
}

.invisible {
    display: none;
}

@media (orientation: landscape) {
    .ranking-outer-circle {     
        margin: 1em 0em;
    }
}

@media only screen and (max-width: 576px){
    .ranking-draggable {
        height: auto;
        grid-row-gap: 35px;
    }

    .ranking-divider{
        margin-bottom: 1.5em;
    }

    .ranking-question-default {
        width: 80%;
        line-height: 1.6; 
    }

    .ranking-arrow-up {
        width: 1.5em;
        height: 1.5em;
        display: flex;
        margin-bottom: 0.8em;
        justify-content: space-around;
        flex-direction: row;
    }
    .ranking-number {
        margin-bottom: 0.5em;
    }

    .ranking-title{
        width: 100%;
    }
}
