﻿body {
    overflow-x: hidden;
    background: #f6f9fc;
    position:relative;
}

.forceOverflowSetting {
    overflow: visible !important;
    max-height: auto;
}

.forceOverflowSetting2 {
   min-height:auto;
   max-height:auto;
}

.swal2-actions button {
    font-size: 16px !important;
}

.purchase-popup .swal2-html-container{
    overflow:hidden;
}

.swal2-container{
    position:absolute !important;
}

.shake {
    animation: shakes 0.5s;
}

@keyframes shakes {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.scale{
    scale:0.95;
    transition:all 400ms;
}

.scale:hover{
    scale:1;
}

.spin {
    border: 16px solid #0042A4;
    border-radius: 50%;
    border-top: 16px solid #3775CF;
    border-right: 16px solid #619BEE;
    border-bottom: 16px solid #96BFF9;
    border-left: 16px solid #C9E0FF;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    margin:auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swal2-toast .swal2-title {
    font-size: 16px !important;
}

.div_info {
    font-weight: bold;
    display: block;
    font-size: 14px;
    color: black;
}

@keyframes floatAttempt {
    0% {
        top:0px;
    }

    50% {
        top:20px;
    }

    100% {
        top:0px;
    }
}

.divider[data-content] {
    font-weight: bold;
    font-size: 20px;
}
.divider.big[data-content] {
    font-weight: bold;
    font-size: 30px;
}
.divider.grey::after {
    color: #144d87 !important;
    background-color: rgb(229, 231, 235) !important;
}
.divider.big::after {
    color: #144d87 !important;
    background-color: white !important;
}

.noneFound {
    text-align: center;
    width: 100%;
    padding: 10px;
}

.month {
    text-transform: capitalize;
}

.disabled {
    color: grey;
    cursor: default !important;
}

.publicEventContainer {
    padding:10px !important;
}

.publicEventGrid {
    width: 100%;
    color: white;
    overflow: hidden;
    position: relative;
}
#eventDescription{
    font-weight:bold;
}

.highlight {
    transition-duration: 1s;
    transition-property: border-top, border-left, border-bottom, border-right, box-shadow, border-radius, transform;
}

.highlight:hover {
    box-shadow: rgba(54, 54, 58, 0.2) 5px 5px 5px, rgba(34, 56, 191, 0.1) 10px 10px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transform: translateY(-3px)
}

.childBtn {
    transition-duration: 1s;
    transition-property: border-top, border-left, border-bottom, border-right, box-shadow, border-radius, transform;
    border-radius: 0px;
    margin: 15px;
}
.childBtn:hover, .childBtn.active {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: rgba(33, 36, 36, 0.25) 8px 8px;
    transform: translateY(-5px)
}
.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{
    opacity:0.7;
}

.filterBtn:hover {
    opacity:1;
    cursor: pointer;
}

.groupSelected{
    background:green !important;
    color:white;
}


.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(0%) translateY(0%) rotate(25deg);
    transform-origin: top left;
    font-weight: bold;
    text-transform: capitalize;
    font-size:13px !important;
}

    .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%;
    }
    .slideTop{
        animation: 1s ease-out 0s 1 slideInTop;
    }
@keyframes slide {
    0% {
        position:absolute;
        right:200px;
    }

    100% {
        right:0px;
        position:relative;
    }
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}
@keyframes slideInTop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.spinner {
    height: 50px;
    width: max-content;
    font-size: 18px;
    font-weight: 600;
    font-family: monospace;
    letter-spacing: 1em;
    color: black;
    filter: drop-shadow(0 0 10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner span {
    animation: loading6454 1.75s ease infinite;
}

.spinner span:nth-child(2) {
    animation-delay: 0.25s;
}

.spinner span:nth-child(3) {
    animation-delay: 0.5s;
}

.spinner span:nth-child(4) {
    animation-delay: 0.75s;
}

.spinner span:nth-child(5) {
    animation-delay: 1s;
}

.spinner span:nth-child(6) {
    animation-delay: 1.25s;
}

.spinner span:nth-child(7) {
    animation-delay: 1.5s;
}
.spinner span:nth-child(8) {
    animation-delay: 1.75s;
}

@keyframes loading6454 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}