﻿
.chat {
    width: 90%;
}

.bubble {
    border-radius: 5px;
    display: inline-block;
    padding: 10px 18px;
    position: relative;
    vertical-align: top;
}

    .bubble::before {
        content: "\00a0";
        display: block;
        height: 16px;
        position: absolute;
        top: 11px;
        transform: rotate( 29deg ) skew( -35deg );
        -moz-transform: rotate( 29deg ) skew( -35deg );
        -ms-transform: rotate( 29deg ) skew( -35deg );
        -o-transform: rotate( 29deg ) skew( -35deg );
        -webkit-transform: rotate( 29deg ) skew( -35deg );
        width: 20px;
    }

.me {
    background-color: #689f38;
    float: left;
    margin: 5px 45px 5px 20px;
}

    .me::before {
        background-color: #689f38;
        left: -9px;
    }

.you {
    background-color: #0277bd;
    float: right;
    margin: 5px 20px 5px 45px;
}

    .you::before {
        background-color: #0277bd;
        right: -9px;
    }

.field-validation-error {
    color: red;
}


.testimonial-card .card-up {
    height: 120px;
    overflow: hidden;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.testimonial-card .avatar {
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
}

.chip{
	margin-right: 0rem;
}

.list-inline-item:not(:last-child) {
    margin-right: 0rem;
}


/*Start Styles für Kurskalender*/
.ns-calendar {
    display: flex;
    padding: 20px 20px;
}

@media (max-width: 1179px) {
    .ns-calendar {
        display: block;
    }
}

.ns-calendar .cal-block {
    position: relative;
    float: left;
    width: 13.6428571428%;
    margin-right: 0.75%;
    padding-top: 30px;
    margin-bottom: 15px;
    border: 1px solid #f4f4f4;
    padding-top: 0;
    margin-bottom: 0;
}

@media (max-width: 1179px) {
    .ns-calendar .cal-block {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 30px;
        float: none;
        padding: 30px 20px 20px;
    }
}

.ns-calendar .cal-block:last-child {
    margin-right: 0;
}

@media (max-width: 1179px) {
    .ns-calendar .cal-block:last-child {
        margin: auto;
    }
}

.ns-calendar .events {
    display: block;
    list-style: none;
    margin-bottom: 0px;
    left: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 4px 0 0;
}

    .ns-calendar .events .li-calender {
        clear: both;
        overflow: hidden;
        padding: 10px;
        background: transparent;
        font-size: 11.5px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.4s ease;
        width: 100%;
        padding: 15px 5px;
    }


.ns-calendar .event-title {
    width: 85%;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    text-decoration: none;
    font-size: 13px;
}

    .ns-calendar .event-title:hover {
        display: block;
        text-decoration: none;
    }
/*Ende Styles für Kurskalender*/

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dunkleres Overlay */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.1); /* Transparenter Rand */
    border-top: 8px solid #E3E3E3; /* Grüner oberer Rand */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite;
}

/* Dreh-Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Glow-Pulsieren */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px #E3E3E3, 0 0 20px #E3E3E3;
    }

    50% {
        box-shadow: 0 0 20px #E3E3E3, 0 0 40px #E3E3E3;
    }
}