body, html {
    background: #ff8568;
}

#content{
    overflow: visible;
    background: #ff8568;
    min-height: 100vh;
}

#cl-filterbar{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    position: sticky;
    align-self: flex-end;
    z-index: 10;
    width: min(calc(100% - min(10vh, 10vw) - 10pt), 30vh);
    padding: 0pt;
    height: calc(5vh + 10pt);
    top: 5vh;
    right: 1vh;
    border-radius: 15pt;
    background: #9f88ff;
    box-shadow: 0 .3vh 3vh 0 rgba(0,0,0,0.5);
    transition: .5s ease;
}

#cl-filterbar.filteropen{
    display: flex;
    position: sticky;
    overflow-y: scroll;
    background: white;
    width: min(calc(100vw - 2vh), 55vh);
    border-radius: 5pt;
    padding: 5pt;
    height: 98vh;
    top: 1vh;
    right: 1vh;
    box-shadow: none;
}

#cl-filter-maintogglewrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 10pt);
    height: fit-content;
    position: sticky;
    top: 0;
    border-radius: 11pt;
    backdrop-filter: blur(10px);
    padding: 5pt;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    transition: .5s ease;
    z-index: 10;
}

#cl-filterbar.filteropen #cl-filter-maintogglewrap{
    width: calc(100% - 2vh);
    box-shadow: 0 0 2vh 0 rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0;
}

#cl-filterbar.filteropen #cl-filterswrap{
    opacity: 1;
}

#cl-filtermaintoggle{
    margin: 0;
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    text-shadow: -.5vh .3vh 1vh rgba(0,0,0,0.1);
    font-size: 2vh;
    text-align: center;
    padding: 0 min(2vh, 4vw) 0 min(2vh, 4vw);
    width: fit-content;
    border: none;
    height: 5vh;
    border-radius: 11pt;
    cursor: pointer;
    transition: .3s ease;
    backdrop-filter: blur(10px);
    background: white;
}

#cl-filtermaintoggle:hover {
    transform: scaleY(1.1) scaleX(1.025);
    text-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 2vh 0 rgba(0,0,0,0.3);
    border-radius: 12pt;
}

#cl-filtermaintoggle:focus {
    transform: scaleY(1.1) scaleX(1.025);
    text-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 2vh 0 rgba(0,0,0,0.3);
    border-radius: 12pt;
}

#cl-filterbar.filteropen #cl-filtermaintoggle:hover{
    background: #c7ff7a;
    box-shadow: none;
}

#cl-filterbar.filteropen #cl-filtermaintoggle:focus{
    background: #c7ff7a;
    box-shadow: none;
}

#cl-viewtoggle{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    width: 5vh;
    height: 5vh;
    border: none;
    border-radius: 11pt;
    cursor: pointer;
    transition: .3s ease;
    backdrop-filter: blur(10px);
    background: white;
    scrollbar-width: none;
}

#cl-viewtoggle::-webkit-scrollbar {
  display: none;
}

#cl-viewtoggle img{
    margin: .5vh;
    object-fit: contain;
    width: 80%;
    opacity: .8;
    pointer-events: none;
    transition: .3s ease;
    scroll-snap-align: center;
}

#cl-viewtoggle:hover {
    scale: 1.1;
    box-shadow: 0 0 2vh 0 rgba(0,0,0,0.3);
    border-radius: 12pt;
}

#cl-viewtoggle:focus {
    scale: 1.1;
    box-shadow: 0 0 2vh 0 rgba(0,0,0,0.3);
    border-radius: 12pt;
}

#cl-viewtoggle:hover img{
    opacity: .9;
    scale: .8;
}

#cl-viewtoggle:focus img{
    opacity: .9;
    scale: .8;
}

#cl-filterbar.filteropen #cl-viewtoggle:hover{
    background: #c7ff7a;
    box-shadow: none;
}

#cl-filterbar.filteropen #cl-viewtoggle:focus{
    background: #c7ff7a;
    box-shadow: none;
}

.cl-filterbottombutton{
    margin: 3vh 0 1vh 0;
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    text-shadow: -.5vh .3vh 1vh rgba(0,0,0,0.1);
    font-size: 2vh;
    text-align: center;
    padding: 0 min(2vh, 4vw) 0 min(2vh, 4vw);
    width: 100%;
    border: none;
    min-height: 5vh;
    border-radius: 11pt;
    cursor: pointer;
    transition: .3s ease;
    background: #9f88ff;
}

.cl-filterbottombutton:hover{
    color: #c7ff7a;
    scale: .95;
}

.cl-filterbottombutton:focus{
    color: #c7ff7a;
    scale: .95;
}

#cl-filterswrap{
    display: flex;
    flex-direction: column;
    width: calc(100% - 40pt);
    height: fit-content;
    margin: 5vh 0 5vh 0;
    position: relative;
    border-radius: 11pt;
    backdrop-filter: blur(50px);
    padding: 20pt;
    transition: .5s ease;
    opacity: 0;
    background-color: #9f88ff;
}

#cl-filterswrap .filter-group{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 7vh;
    padding-top: 1vh;
}

#cl-filterswrap h4{
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: clamp(3vh, 2.5vh, 5vw);
    margin: 0 0 2vh 0;
    text-align: left;
    color: black;
    font-weight: bold;
    background: #c7ff7a;
    padding: .5vh;
    border-radius: 5pt;
}

#cl-filterswrap label{
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: clamp(1.5vh, 4.5vw, 2.2vh);
    margin: 0 0 2vh 0;
    text-align: left;
    color: white;
    font-weight: 300;
}

#cl-filterswrap .filter-checkboxes{
    display: flex;
    flex-direction: column;
}

#cl-filterswrap .accessibility-filters{
    display: flex;
    flex-direction: column;
}

#cl-filterswrap .accessibility-filters label{
    margin: 2vh 0 2vh 0;
    font-weight: bold;
}

#cl-filterswrap .accessibility-filters label p{
    margin: 1vh 0 .5vh 0;
    font-size: min(2vh, 3vw);
    color: rgba(255, 255, 255, 0.7);
}

#cl-filterswrap input[type="checkbox"] {
    background: none;
    appearance: none;
    width: min(2vh, 5vw);
    height: min(2vh, 5vw);
    border-radius: .5vh;
    border: white 2pt solid;
    background-color: white;
    transition: .3s ease;
}

#cl-filterswrap input[type="checkbox"] label{
    pointer-events: none;
}

#cl-filterswrap input[type="checkbox"]:hover {
    border: #c7ff7a 2pt solid;
    background-color: #c7ff7a;
    scale: 1.15;
}

#cl-filterswrap input[type="checkbox"]:focus {
    border: #c7ff7a 2pt solid;
    background-color: #c7ff7a;
}

#cl-filterswrap input[type="checkbox"]:checked {
    background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="2 2 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 12.5L10 18L19 7" stroke="%23d0f8bd" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center/100%;
    border: rgba(255, 255, 255, 0) 0pt solid;
}

#cl-filterswrap input[type="checkbox"]:checked:hover {
    background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="2 2 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 12.5L10 18L19 7" stroke="rgb(159, 136, 255)" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center/100%, #c7ff7a;
    border: rgba(255, 255, 255, 0) 0pt solid;
}

#cl-filterswrap input[type="checkbox"]:checked:focus {
    background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="2 2 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 12.5L10 18L19 7" stroke="rgb(159, 136, 255)" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center/100%, #c7ff7a;
    border: rgba(255, 255, 255, 0) 0pt solid;
}

#cl-filterswrap input[type="range"] {
    appearance: none;
    background: white;
    width: 100%;
    height: 20pt;
    border-radius: 5pt;
    border: none;
    transition: all .3s ease;
}

#cl-filterswrap input[type="range"]:hover {
    background: rgba(255, 255, 255, 0.2);
}

#cl-filterswrap input[type="range"]:focus {
    background: rgba(255, 255, 255, 0.2);
}

#cl-filterswrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20pt;
    width: 30pt;
    border-radius: 5pt;
    background-color: #ff8568;
    box-shadow: 0 0 5pt 0px rgba(0,0,0,0.3);
    transition: all .3s ease;
    cursor: pointer;
}

#cl-filterswrap input[type="range"]:hover::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35pt;
    box-shadow: 0 0 15pt 0px rgba(0,0,0,0.3);
    background-color: #c7ff7a;
}

#cl-filterswrap input[type="range"]:focus::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35pt;
    box-shadow: 0 0 15pt 0px rgba(0,0,0,0.3);
    background-color: #c7ff7a;
}

#cl-filterswrap input[type="number"],
#cl-filterswrap input[type="date"],
#cl-filterswrap input[type="time"] {
    appearance: none;
    border: none;
    background: white;
    height: fit-content;
    width: fit-content;
    min-width: 20%;
    min-height: 3vh;
    border-radius: 5pt;
    color: black;
    font-weight: bold;
    font-size: clamp(2vh, 5vw, 2.5vh);
    outline: none;
    text-align: center;
    transition: .3s ease;
    padding: 2pt;
}

#cl-filterswrap input[type="number"]:hover,
#cl-filterswrap input[type="date"]:hover,
#cl-filterswrap input[type="time"]:hover {
    appearance: none;
    border: none;
    background: #c7ff7a;
    height: fit-content;
    width: fit-content;
    min-width: 20%;
    min-height: 3vh;
    border-radius: 5pt;
    transform: scaleY(1.05) scaleX(1.025);
}

#cl-filterswrap input[type="number"]:focus,
#cl-filterswrap input[type="date"]:focus,
#cl-filterswrap input[type="time"]:focus {
    appearance: none;
    border: none;
    background: #c7ff7a;
    height: fit-content;
    width: fit-content;
    min-width: 20%;
    min-height: 3vh;
    border-radius: 5pt;
    transform: scaleY(1.05) scaleX(1.025);
}

#cl-filterswrap select {
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    font-size: 2vh;
    text-align: left;
    padding: 0 min(2vh, 4vw) 0 min(2vh, 4vw);
    width: 100%;
    border: none;
    height: 5vh;
    border-radius: 5pt;
    cursor: pointer;
    transition: .3s ease;
    background: white;
}

#cl-filterswrap select:hover {
    transform: scaleY(1.1) scaleX(1.025);
    background: #c7ff7a;
}

#cl-filterswrap select:focus {
    transform: scaleY(1.1) scaleX(1.025);
    background: #c7ff7a;
}

#cl-viewswrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: fit-content;
    transition: .3s ease;
}

#cl-viewswrap.filteropen{
    margin-top: -98vh;
}

@media (min-aspect-ratio: 1/1) {
    #cl-viewswrap.filteropen{
        width: calc(100% - 55vh);
    }
}

#no-results-message {
    display: flex;
    white-space: pre-wrap;
    width: 80%;
    height: fit-content;
    justify-self: center;
    text-align: center;
    padding: 3vh;
    color: black;
    font-weight: bold;
    font-size: 1.8vh;
    background: #c7ff7a;
    border-radius: 5pt;
    margin: 2vh 0;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
}

#cl-gridview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30vh, 1fr));
    gap: min(5vh, 5vw);
    padding: 5vh 0vh 5vh 0vh;
    white-space: nowrap;
    width: calc(100% - min(10vh, 10vw));
    align-self: center;
    height: fit-content;
    border-radius: 0px;
    position: relative;
    margin-top: 5vh;
}

.cl-entry {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: none;
    height: line;
    margin-bottom: 3vh;
    border: none;
    border-radius: 5pt;
    padding: 0 0 1vh 0;
    overflow: hidden;
    white-space: pre-wrap;
    scroll-snap-align: center;
    transition: filter 0.18s;
    transition: opacity 0.1s;
    cursor: pointer;
    background: white;
    transition: .3s ease;
}

.cl-entry:hover{
    scale: 1.025;
}

.cl-entry:hover h3{
    color: #c7ff7a;
    background-color: black;
}

.cl-entry h3{
    font-size: clamp(2vh, 3vh, 5vw);
    margin: 0;
    text-align: left;
    color: black;
    background-color: #c7ff7a;
    border-radius: 5pt;
    padding: 10pt 10pt 5pt 10pt;
    transition: .5s ease;
}

.cl-entry p{
    margin: 0;
    text-align: left;
    line-height: normal;
    font-size: 2vh;
    color: rgba(0, 0, 0, 0.5);
    background-color: white;
    padding: 5pt 10pt 0 10pt;
    width: calc(100% - 20pt);
}

.cl-entry .cl-entry-short_description{
    margin-top: 1vh;
    color: black;
    background-color: white;
    text-align: left;
    font-weight: bold;
}

.cl-highlight h3{
    background: #9f88ff;
    color: white;
}

.cl-entry.cl-expired {
    opacity: .7;
}

.cl-entry.cl-expired h3{
    color: rgba(255, 255, 255, 0.8);
    background: rgb(130, 130, 130) !important;
}

#cl-detailsbox {
    position: fixed;
    z-index: 99;
    overflow: hidden;
    display: flex;
    align-self: center;
    border-radius: 5pt;
    width: min(120vh, calc(100% - min(10vh, 10vw)));
    height: calc(100% - 10vh);
    top: 105vh;
    background: white;
    box-shadow: 0vh 0.3vh 1.8vh 0px rgba(0,0,0,0.5);
    transition: .5s ease;
    opacity: 0;
}

#cl-detailsbox.cl-detailsboxopen {
    top: 5vh;
    opacity: 1;
}

#cl-detailstogglebox {
    width: 5vh;
    height: 5vh;
    display: inline-block;
    position: absolute;
    cursor: pointer;
    top: 1.5vh;
    right: 1.5vh;
    transition: .5s ease;
    background-color: #c7ff7a;
    border-radius: 5pt;
}

#cl-detailstogglebox:hover {
    transform: translateY(1vh);
}

#cl-detailstogglebox:hover span:first-of-type {
    top: 50%;
    width: 60%;
    transform: translateX(5%) rotate(40deg);
    transition: transform .3s ease, top .5s ease .1s, background-color .3s ease, width .3s ease;
}

#cl-detailstogglebox:hover span:last-of-type {
    top: 50%;
    width: 60%;
    transform: translateX(75%) rotate(-40deg);
    transition: transform .3s ease, top .5s ease .1s, background-color .3s ease, width .3s ease;
}

#cl-detailstogglebox span {
    scale: .8;
    position: absolute;
    width: 100%;
    height: .8vh;
    border-radius: .3vh;
    display: inline-block;
    background-color: black;
    transition: .5s ease;
}

#cl-detailstogglebox span:first-of-type {
    transform: rotate(45deg);
    top: 45%;
}

#cl-detailstogglebox span:last-of-type {
    transform: rotate(-45deg);
    top: 45%;
}

.cl-detailsbox-content {
    padding: min(3vh, 3vw);
    overflow-y: auto;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.cl-detailsbox-header-info {
    font-size: clamp(1.5vh, 5vw, 1.8vh);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    margin: 8vh 0 0 0;
}

.cl-detailsbox-title {
    font-size: clamp(3.5vh, 8vw, 4.5vh);
    line-height: 1.3;
    margin: 4vh 0 1vh 0;
    color: black;
    font-weight: bold;
    background: #c7ff7a;
    width: fit-content;
    padding: 5pt;
    border-radius: 5pt;
    word-break: break-all;
}

.cl-detailsbox-subtitle {
    font-size: clamp(1.8vh, 5vw, 2vh);
    font-weight: bold;
    color: black;
    margin: 0 0 7vh 0;
}

.cl-detailsbox-image {
    width: 100%;
    max-height: 55vh;
    object-fit: cover;
    border-radius: 5pt;
    margin: 1vh 0;
}

.cl-detailsbox-description {
    font-size: 2vh;
    font-weight: 500;
    color: black;
    line-height: 1.6;
    text-align: left;
    margin: 1vh 0 3vh 0;
}

.cl-detailsbox-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15vh, 1fr));
    gap: 2vh;
    margin: 10vh 0 0 0;
}

.cl-detailsbox-info-card {
    background: #9f88ff;
    border-radius: 10pt;
    padding: 1vh;
    text-align: center;
}

.cl-detailsbox-info-card img {
    width: 10vh;
    height: 10vh;
    margin: 1vh 0;
}

.cl-detailsbox-info-card.clickable {
    cursor: pointer;
    transition: .3s ease;
}

.cl-detailsbox-info-card.clickable:hover {
    background: #c7ff7a;
}

.cl-detailsbox-info-card.clickable:hover p{
    color: black;
}

.cl-detailsbox-info-card.clickable:hover h3{
    color: black;
}

.cl-detailsbox-info-card h3 {
    margin: 0 0 1vh 0;
    font-size: 2.2vh;
    font-weight: bold;
    color: white;
}

.cl-detailsbox-info-card p {
    margin: 0;
    font-size: 2vh;
    color: rgba(255, 255, 255, 0.9);
}

.cl-detailsbox-date-weekday{
    margin: 2vh 0 0.5vh 0 !important;
    font-size: 2.5vh !important;
    font-weight: bold;
    color: rgba(255, 255, 255, .5) !important;
}

.cl-detailsbox-date-month, .cl-detailsbox-date-year{
    margin: 0 !important;
    font-size: 2.5vh !important;
    font-weight: bold;
    color: rgba(255, 255, 255, .5) !important;
}

.cl-detailsbox-date-day{
    font-size: 8vh !important;
    line-height: .9;
    font-weight: bold;
    color: #c7ff7a !important;
}

.cl-detailsbox-time-start{
    margin: 2.5vh 0 0 0 !important;
    font-size: 5vh !important;
    line-height: 1;
    font-weight: bold;
    color: #c7ff7a !important;
}

.cl-detailsbox-time-end{
    margin: 1.5vh 0 0 0;
    font-size: 5vh !important;
    line-height: 1;
    font-weight: bold;
    color: #c7ff7a !important;
}

.cl-detailsbox-copy-hint {
    margin: 1.5vh 0 0 0 !important;
    font-size: clamp(1.3vh, 5vw, 1.4vh) !important;
    color: rgba(255, 255, 255, 0.4);
}

.cl-detailsbox-guests-title {
    margin: 0 0 1vh 0;
    font-size: 1.8vh;
    color: rgba(255, 255, 255, 0.6);
}

.cl-detailsbox-accessibility-card {
    border-radius: 10pt;
    padding: 2vh;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-detailsbox-accessibility-card.fully-accessible {
    background: #c7ff7a;
}

.cl-detailsbox-accessibility-card.fully-accessible h3{
    color: black;
}

.cl-detailsbox-accessibility-card.fully-accessible p{
    color: black;
}

.cl-detailsbox-accessibility-card.partially-accessible {
    background: #f28ade;
}

.cl-detailsbox-accessibility-card.not-accessible {
    background: #ff8568;
}

.cl-detailsbox-accessibility-card h3 {
    margin: 0 0 1vh 0;
    font-size: 2.2vh;
    color: rgba(255, 255, 255, 0.9);
}

.cl-detailsbox-accessibility-card img {
    width: 10vh;
    height: 10vh;
    margin: 1vh 0;
}

.cl-detailsbox-accessibility-card p {
    margin: 0;
    font-size: 1.6vh;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.cl-detailsbox-accessibility-info {
    font-size: clamp(1.8vh, 5vw, 2vh);
    font-weight: 500;
    color: black;
    margin: 2vh 0;
}

.cl-detailsbox-trigger-warning {
    background: rgba(50, 50, 50, 0.8);
    border-radius: 10pt;
    padding: 2vh;
    margin: 5vh 0 0 0;
}

.cl-detailsbox-trigger-warning p {
    font-size: clamp(1.8vh, 5vw, 2vh);
    font-weight: 200;
    color: white;
    margin: 0;
}

.cl-detailsbox-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1vh;
    margin-top: 8vh;
}

.cl-detailsbox-custom-link {
    text-decoration: none;
    background: #9f88ff;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 10pt;
    font-size: 1.8vh;
    transition: .3s ease;
    display: inline-block;
    font-weight: bold;
}

.cl-detailsbox-custom-link:hover {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-custom-link:focus {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-calendar-btn-primary {
    background: #9f88ff;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 10pt;
    font-size: 1.8vh;
    cursor: pointer;
    transition: .3s ease;
}

.cl-detailsbox-calendar-btn-primary:hover {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-calendar-btn-primary:focus {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-calendar-btn-secondary {
    background: #9f88ff;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    padding: 1.5vh 3vh;
    border: none;
    border-radius: 10pt;
    font-size: 1.8vh;
    cursor: pointer;
    transition: .3s ease;
}

.cl-detailsbox-calendar-btn-secondary:hover {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-calendar-btn-secondary:focus {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-share-btn {
    background: #9f88ff;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    padding: 1.5vh 3vh;
    border: none;
    border-radius: 10pt;
    font-size: 1.8vh;
    cursor: pointer;
    transition: .3s ease;
}

.cl-detailsbox-share-btn:hover {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}

.cl-detailsbox-share-btn:focus {
    background: #c7ff7a;
    color: black;
    scale: 1.05;
}


#cl-calendarview {
    width: calc(100% - min(10vh, 4vw));
    align-self: center;
    padding: min(5vh, 3vw) 0;
    height: fit-content;
    margin-top: 5vh;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.calendar-month {
    background: white;
    border-radius: 10pt;
    padding: min(3vh, 3vw);
    width: calc(100% - min(6vh, 6vw));
    max-width: 400vh;
    align-self: center;
}

.calendar-month-title {
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: clamp(3vh, 4vh, 6vw);
    color: black;
    text-align: center;
    margin: 0 0 3vh 0;
    background-color: #c7ff7a;
    border-radius: 5pt;
}

.calendar-grid {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1vh;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: min(1vh, 1vw);
    margin-bottom: 2vh;
}

.calendar-weekdays > div {
    text-align: center;
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.8vh;
    color: rgba(0, 0, 0, 0.7);
    padding: 1vh;
    background: none;
    border-radius: 5pt;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: min(1vh, 1vw);
}

.calendar-day {
    height: line;
    min-height: min(10vh, 5vw);
    background: #ff8568;
    border-radius: 5pt;
    padding: min(1vh, 1vw);
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calendar-day:hover {
    background: #ff8668c5;
}

.calendar-day:focus {
    background: #ff8668c5;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day-number {
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: 1.6vh;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5vh;
    text-align: right;
}

.calendar-day.cl-todaysdate {
    background: white;
    border: 2px solid black;
    
}

.calendar-day.cl-todaysdate .calendar-day-number {
    color: black;
    font-weight: bold;
}

.calendar-day-events {
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    flex: 1;
    overflow: hidden;
}

.calendar-event {
    background: #c7ff7a50;
    border-radius: 3pt;
    padding: 0.5vh;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3pt solid #c7ff7a;
    display: flex;
    flex-direction: column;
    gap: 0.2vh;
}

.calendar-event:focus {
    border-left-color: #c7ff7a;
    background-color: #c7ff7a80;
    scale: .95;
}

.calendar-event.highlight {
    border-left-color: #9f88ff;
    background-color: #9f88ff80;
}

.calendar-event:hover {
    border-left-color: #c7ff7a;
    background-color: #c7ff7a;
    scale: .95;
    animation: none;
}

.calendar-event.cl-expired {
    opacity: .5;
    border-radius: 3pt !important;
    background-color: #ffffff30 !important;
    border-left: 3pt solid #a7a7a780 !important;
}

.calendar-event.cl-expired:hover {
    opacity: 1;
}

.event-time {
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: clamp(1.2vh, 2.3vw, 1.5vh);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    transition: .3s ease;
}

.event-title {
    font-family: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
    font-size: clamp(1.2vh, 2.5vw, 1.7vh);
    color: white;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: clip;
    white-space: pre-wrap;
    transition: .3s ease;
}

.calendar-event:hover .event-time {
    color: rgba(0, 0, 0, 0.7);
}

.calendar-event:hover .event-title {
    color: black;
}

.calendar-event:focus .event-time {
    color: rgba(0, 0, 0, 0.7);
}

.calendar-event:focus .event-title {
    color: black;
}

#cl-gridview[style*="table-column"] .cl-entry {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin-bottom: 5vh;
    padding: min(2vh, 2vw);
}

#cl-gridview[style*="table-column"] .cl-entry .cl-entry-short_description {
    display: none;
}