.calendarMonth {
    padding: 20px;
    background-color: #a91b44;
    border-radius: 12px;
    color: white;
}

.calendarMonth table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 5px;
}

.calendarMonth table td, 
.calendarMonth table th {
    text-align: center;
    width: calc(100% / 7);
    position: relative;
    color: white;
}

.calendarMonth table td::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.calendarMonth table td.open {
    background-color: #91b64f;
    border-radius: 100%;
    cursor: pointer;
}

.calendarMonth table td.closed{
    background-color: #cb442d;
    border-radius: 100%;
    cursor: pointer;
}

.calendarMonth table td.gray{
    background-color: #888888;
    border-radius: 100%;
}

.calendarMonth table td span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-swiperOpeningstijden { width: auto !important; }

.paginationCalendar {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paginationCalendar button {
    background-color: #a91b44;
    width: 50px; height: 50px;
    border-radius: 100%;
    color: white;
    transition: 0.2s ease;
    outline: 0;
    border: none;
}

.paginationCalendar button:hover {
    transform: scale(1.03);
    background-color: #be204d;
    cursor: pointer;
}

.calendarOpenText {
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 9px;
}

.loader {
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#000 0 0);
    background: 
      var(--c) 0%   50%,
      var(--c) 50%  50%,
      var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 1s infinite linear;
  }
  @keyframes l1 {
    0%  {background-size: 20% 100%,20% 100%,20% 100%}
    33% {background-size: 20% 10% ,20% 100%,20% 100%}
    50% {background-size: 20% 100%,20% 10% ,20% 100%}
    66% {background-size: 20% 100%,20% 100%,20% 10% }
    100%{background-size: 20% 100%,20% 100%,20% 100%}
}

.openingstijdenLegenda {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.openingstijdenLegenda .color {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.openingstijdenLegenda .color div {
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background-color: gray;
}