main #store-info {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

main #store-info .store-info-item {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background-color: #fff;
}

main #store-info .store-info-item i:not(.dropdown-icon) {
    font-size: 30px;
    margin-right: 10px;
}

main #store-info .store-info-item i.dropdown-icon {
    position: absolute;
    right: 15px;
    font-size: 10px;
}

main #store-info #open-schedule {
    flex-direction: column;
    position: relative;
}

main #store-info #open-schedule .shedule-item.is-current-day::after {
    margin: 0 10px;
    font-size: 10px;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    position: relative;
    top: -3px;
}

main #store-info #open-schedule .shedule-item.is-current-day::after {
    content: 'Fechado';
    background-color: var(--closed-schedule-color);
}

main #store-info #open-schedule .shedule-item.is-current-day.is-open::after {
    content: 'Aberto';
    background-color: var(--open-schedule-color);
}

main #store-info #payment-methods ul,
main #store-info #open-schedule ul {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    padding: 20px;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 9px 5px rgba(0, 0, 0, 0.1);
}

main #store-info #payment-methods ul li,
main #store-info #open-schedule ul li {
    line-height: 25px;
    font-size: 14px;
    text-align: center;
}

main #store-info #open-schedule ul li.is-current-day {
    background-color: var(--closed-schedule-color);
    color: #fff;
    padding: 0 10px;
    border-radius: 3px;
}

main #store-info #open-schedule ul li.is-current-day.is-open {
    background-color: var(--open-schedule-color);
}

main #store-info #payment-methods:not(.open) ul,
main #store-info #open-schedule:not(.open) ul {
    display: none;
}

main #store-info #open-schedule:not(.open) .shedule-item:not(.is-current-day) {
    display: none;
}

main #store-info #payment-methods {
    position: relative;
}

main #store-info #delivery-average-time .delivery-time {
    font-size: 12px;
}

main #store-info #delivery-average-time .delivery-time.no-time {
    font-size: 12px;
}

main #store-info #payment-methods:not(.open) .payment-methods-item {
    display: none;
}

@media only screen and (max-width: 900px) {
    main #store-info {
        flex-direction: column;
        padding: 10px 0;
        background-color: #fff;
    }
}

@media only screen and (max-width: 640px) {
    main #store-info .store-info-item.clickable {
        padding: 15px 0;
    }
    
    main #store-info #delivery-average-time {
        padding-top: 15px;
        padding-bottom: 0;
    }

    main #store-info .store-info-item.clickable::after {
        content: 'Toque aqui para ver mais';
        font-size: 10px;
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 0;
    }

    main #store-info .store-info-item i.dropdown-icon {
        display: none;
    }

    main #store-info #payment-methods ul,
    main #store-info #open-schedule ul {
        position: absolute;
        top: 52px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1;
        padding: 20px;
        border-radius: 0 0 3px 3px;
        box-shadow: 0 9px 5px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }
        
    main #store-info #payment-methods ul,
    main #store-info #open-schedule ul {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    main #store-info #payment-methods ul li,
    main #store-info #open-schedule ul li { 
        font-size: 20px;
    }

    main #store-info #payment-methods ul::after,
    main #store-info #open-schedule ul::after {
        position: absolute;
        content: 'Toque na tela novamente para fechar';
        bottom: 50px;
    }
}