@keyframes academy-notification-circle {
    from { transform: scale(1); }
    to { transform: scale(1.5); }
}

@keyframes academy-notification-bell {
    0% { transform: rotate(25deg); }
    5% { transform: rotate(45deg); }
    10% { transform: rotate(5deg); }
    15% { transform: rotate(40deg); }
    20% { transform: rotate(10deg); }
    25% { transform: rotate(35deg); }
    30% { transform: rotate(15deg); }
    35% { transform: rotate(30deg); }
    40% { transform: rotate(20deg); }
    45% { transform: rotate(28deg); }
    50% { transform: rotate(25deg); }
    100% { transform: rotate(25deg); }
}

.animated-notification-circle {
    position: absolute !important;
    left: -10px;
    top: -6px;
    width: 40px;
    height: 40px;
    transform-origin: 50% 50%;
    opacity: 0.25;
    animation: academy-notification-circle 2s infinite alternate ease;
}

.animated-notification-bell {
    animation: academy-notification-bell 2s infinite ease;
}

.form-shading {
    position: relative;
}

.form-shading:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    bottom: -5px;
    left: -5px;
    background-color: #000;
    opacity: 0.35;
    border-radius: 5px;
    z-index: 2000;
}

.form-shading:after {
    display: block;
    content: '';
    position: absolute;
    top: calc(50% - 2em);
    left: calc(50% - 2em);

    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    border: .35em solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    z-index: 2001;
}

.event-video-player .vjs-big-play-button {
    width: 3em;
    height: 1.63em;
    left: calc(50% - (3em / 2));
    top: calc(50% - (1.63em / 2));
}

.event-chat-message:nth-of-type(2n) {
    background: #f5f5f5;
}

@media (max-width: 767px) {
    .mobile-row-wrap {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
