﻿.noneFound {
    text-align: center;
    width: 100%;
    padding: 10px;
}

.month {
    text-transform: capitalize;
}

.disabled {
    color: grey;
    cursor: default !important;
}

.publicEventContainer {
    padding: 5px;
    cursor: pointer;
    opacity: 0.9;
}

.publicEventContainer:hover {
    opacity: 1;
}

.publicEventGrid {
    border: 1px solid black;
    width: 100%;
    color: white;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.publicEventGrid .row {
    position: absolute;
    padding: 15px;
    bottom: 0px;
    width: 100%;
}

.back {
    cursor: pointer;
}

.publicEventGrid .row .location {
    font-size: 16px;
}

.publicEventGrid .row .title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.textShadow {
    text-shadow: 0.05em 0 black, 0 0.05em black, -0.05em 0 black, 0 -0.05em black, -0.05em -0.05em black, -0.05em 0.05em black, 0.05em -0.05em black, 0.05em 0.05em black;
}

.filterBtn:hover {
    outline: 1px solid white;
    cursor: pointer;
}

.month, .year {
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
}

.filterSelected {
    background: grey;
}

/*Ribbon styling*/
.ribbon {
    margin: 0;
    padding: 0;
    color: white;
    padding: 1em 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(10%) translateY(0%) rotate(30deg);
    transform-origin: top left;
    font-weight: bold;
    text-transform: capitalize;
}

.ribbon:before, .ribbon:after {
    content: '';
    position: absolute;
    top: 0;
    margin: 0 -1px; /* tweak */
    width: 100%;
    height: 100%;
    background: inherit;
}

.ribbon:before {
    right: 100%;
    width: 500%;
}

.ribbon:after {
    left: 100%;
    width: 500%;
}