div.timezoner {
    display: flex;
    flex-wrap: wrap;
    /*white-space: pre;*/
    background: floralwhite;
    align-items: stretch;
    max-width: 100%;
}

.timezoner .timezoner-next {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: antiquewhite;
}
.timezoner .timezoner-next>span {
    padding: 0.4rem 0.8rem;
}

.timezoner .timezoner-eventData {
    display: flex;
    flex-direction: column;
    flex: 8 1 355px;
    max-width: 100%;
    justify-content: stretch;
    align-items: center;
    white-space: pre;
    padding: 0.5rem 0.8rem;
}

.timezoner .timezoner-eventDate {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

.timezoner select {
    font-family: inherit;
    margin-top: 0.3rem;
    text-align: center;
    font-size: 14px;
    letter-spacing: -0.03rem;
    /* color: #444; */
    line-height: 1.1;
    padding: 0.3rem 1rem 0.2rem 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: 0.5rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: inherit;
    /*background-position: right 0.7rem top 50%, 0 0;*/
    background-size: 0.65rem auto, 100%;
    white-space: normal;
    text-overflow: ellipsis;
}
.timezoner select::-ms-expand {
    display: none;
}
.timezoner select:hover {
    background-color: inherit;
    border-color: #888;
}
.timezoner select:focus {
    background-color: inherit;
    border-color: #aaa;
    box-shadow: 0 0 1px 1px var(--fc-event-selected-overlay-color);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    /* color: #222; */
    outline: none;
}

@media screen and (min-width: 900px) {
    div.timezoner{
        font-size: 1.0rem;
    }
    .timezoner select {
        font-size: 0.94rem;
    }
}
@media screen and (max-width: 899px) {
    div.timezoner {
        font-size: 0.96rem;
    }
    .timezoner select {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 770px) {
    div.timezoner {
        font-size: 0.92rem;
    }
    .timezoner select {
        font-size: 0.86rem;
    }
}
@media screen and (max-width: 690px){
    div.timezoner {
        font-size: 0.9rem;
    }
    .timezoner select {
        font-size: 0.84rem;
    }
}
@media screen and (max-width: 550px){
    div.timezoner {
        font-size: 0.84rem;
    }
    .timezoner select {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 480px){
    
    div.timezoner {
        font-size: 0.8rem;
    }
    .timezoner select {
        font-size: 0.76rem;
    }
}
@media screen and (max-width: 310px) {
    div.timezoner {
        font-size: 0.7rem;
    }
    .timezoner select {
        font-size: 0.67rem;
    }
}