#preloader{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffff63;
    z-index: 999999;
}
#preloader .preloader-spin{
    position: absolute;
    top: 30%;
    left: 50%;
    width: 5rem;
    height: 5rem;
    color: #3f78e0;
    border-width: 0.75em;
}

.select2-container{
    display: block;
    /*width: 100%;*/
    padding: .6rem 1rem;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.7;
    color: #60697b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid rgba(8, 60, 130, .07);
    border-radius: .4rem;
    box-shadow: 0 0 1.25rem rgba(30,34,40,.04);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    z-index: 99999
}
.select2-container--default .select2-selection--single{
    border: none;
    color:#60697b;
}
.select2-dropdown {
    background-color: white;
    border: 1px solid #083c8212;
    border-radius: .4rem;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -1px!important;
    top:-8px;
    width: 100%;
    z-index: 1051;
}
.title-swal{
    font-size: 1em!important
}
.modal-header, .modal-body, .modal-footer{
  padding: 1em!important  
}
.modal-body{
  padding: 2em!important  
}

.course-training-banner-wrap {
    margin: -1rem 0 3.5rem;
}

.course-training-banner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 1.35rem 1.5rem;
    border-radius: .8rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(235, 242, 255, .95) 58%, rgba(235, 250, 246, .92) 100%);
    box-shadow: 0 0rem .5rem rgba(30, 34, 40, .08);
    color: #343f52;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.course-training-banner:before {
    content: "";
    position: absolute;
    top: -70%;
    left: -35%;
    width: 28%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
    transform: skewX(-18deg);
    animation: courseBannerGlow 4.5s ease-in-out infinite;
    z-index: -1;
}

.course-training-banner:hover {
    transform: translateY(-3px);
    border-color: rgba(63, 120, 224, .34);
    box-shadow: 0 1.25rem 3rem rgba(30, 34, 40, .12);
    color: #343f52;
}

.course-banner-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(63, 120, 224, .14);
    color: #3f78e0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.course-banner-label {
    color: #3f78e0;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-banner-cta {
    white-space: nowrap;
    animation: courseBannerPulse 2.2s ease-in-out infinite;
}

@keyframes courseBannerGlow {
    0%, 42% {
        left: -35%;
        opacity: 0;
    }

    52% {
        opacity: 1;
    }

    72%, 100% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes courseBannerPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@media (max-width: 767.98px) {
    .course-training-banner-wrap {
        margin: -.5rem 0 2.5rem;
    }

    .course-training-banner {
        padding: 1.2rem;
    }

    .course-banner-cta {
        width: 100%;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .course-training-banner:before,
    .course-banner-cta {
        animation: none;
    }
}

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(calc(100% - 2rem), 980px);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(63, 120, 224, .16);
    border-radius: .8rem;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1rem 3rem rgba(30, 34, 40, .16);
    color: #343f52;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.cookie-consent__content {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    min-width: 0;
}

.cookie-consent__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(63, 120, 224, .12);
    color: #3f78e0;
    font-size: 1.25rem;
}

.cookie-consent__text {
    min-width: 0;
}

.cookie-consent__title {
    margin: 0 0 .2rem;
    color: #343f52;
    font-weight: 700;
    line-height: 1.25;
}

.cookie-consent__description {
    margin: 0;
    color: #60697b;
    font-size: .88rem;
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: .5rem;
}

@media (max-width: 767.98px) {
    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
        bottom: .75rem;
        padding: 1rem;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}



/*    div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
        border: 0;
        border-radius: .25em;
        background: initial;
        background-color: #e12000;
        color: #fff;
        font-size: 1em;
    }*/
