.custom-schedule {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        background-color: #7fca3f;
        padding: 24px 48px;
        border-radius: 24px;
    }
    .custom-schedule p {
        font-size: 16px;
        color: #fff;
        margin: 0;
        text-align: center;
    }

    .custom-schedule .time {
        font-size: 24px;
        color: #fff;
        margin: 0;
        margin-bottom: 16px;
        text-align: center;
    }
    .time-block {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .flag {
        width: 54px;
        height: auto;
    }
    .arrow {
        width: 16px;
        height: auto;
    }

    @media screen and (max-width: 480px) {
        .custom-schedule {
            flex-direction: column;
			padding: 16px;
			margin: 0 16px;
			gap: 24px;
        }
        .custom-schedule .arrow {
            rotate: 90deg;
        }
    }