.switch__each {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    background: #fff;
    padding: 12px 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid transparent;
    width: 210px;
    height: 90px;
}


/* ==============================
-------- Media Queris --------
 ============================== */
@media (max-width: 767px) {
    .switch__each {
        flex-direction: column;
        padding: 10px;
        width: 85px;
        height: 107px;
        justify-content: space-between;
        border: 1px solid transparent;
        font-size: 12px;
        gap: 0;
        text-align: center;
        line-height: 15px
    }
}