.calendar-strip { position: relative; background-color: var(--color-yellow); box-sizing: border-box; width: 100%; display: flex; align-items: center; padding: 2rem var(--margin-body); border-top: var(--border); border-bottom: var(--border); } .calendar-strip__selector { flex-shrink: 0; display: flex; justify-content: space-between; width: 10rem; } .calendar-strip__days { display: flex; justify-content: space-evenly; width: 100%; } .calendar-strip__day { transition: opacity 0.2s ease-in-out; } .calendar-strip__calendar-btn { border: var(--border); padding: 0.2rem 0.5rem; } .calendar-strip__date { position: absolute; left: 0; top: 100%; width: 100%; height: 10rem; background-color: var(--color-yellow); z-index: -1; }