

#step_choose_time_popup .unsharpimage {
    position: relative;
    max-width: 700px;
    width: 100%;
    background-color: black;
    background-image: url('/images/bg-Light Gray.png');
    background-position: center;
    background-size: cover;
}

#step_choose_time_popup .content {
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
    /* height: 100%; */
}

#step_choose_time_popup .times_container {
    display: grid;
    grid-template-rows: 1fr repeat(7, 50px) 2fr;
    gap: 10px;
    position: relative;
    width: 100%;
    /* height: 100%; */
    padding: 40px;
    box-sizing: border-box;
}


#step_choose_time_popup .hour-row {
    display: grid; 
    grid-template-columns:  4fr 20px repeat(3, 2fr 20px) auto;
}

#step_choose_time_popup .time_entry {
    display: flex;
    align-items: center;
    font-weight: 500;
    background-color: #604F81;
    color: white;
    border: 1px solid gray;
}

#step_choose_time_popup .time_entry.disabled {
    background-color: #43375A;
    text-decoration: line-through;;
}

#step_choose_time_popup .now {
    height: 50px;
    border-radius: 10px;
    justify-content: center;    
 }

#step_choose_time_popup .hour-row .time_entry {
    grid-row-start: 1;
    border-radius: 5px 10px 10px 5px;
    justify-content: center;    
}

#step_choose_time_popup .time_entry.hour {
    grid-column-start: 1;
    grid-column-end: 3;
    z-index: 10;
}

@media (min-width: 464px)
{
    #step_choose_time_popup .time_entry.hour::after {
        content: "Uhr";
    }
}


#step_choose_time_popup .time_entry.minutes {
    padding-left: 20px;
}

#step_choose_time_popup .time_entry.minutes_15 {
    grid-column-start: 2;
    grid-column-end: 5;
    z-index: 9;
}
#step_choose_time_popup .time_entry.minutes_30 {
    grid-column-start: 4;
    grid-column-end: 7;
    z-index: 8;
}
#step_choose_time_popup .time_entry.minutes_45 {
    grid-column-start: 6;
    grid-column-end: 9;
    z-index: 7;
}



#step_choose_time_popup .now:first-child {
   align-self: end;
   margin-bottom: 10px;
}

#step_choose_time_popup .now:last-child {
    margin-top: 10px;
 }