/* ==========================================================================
   bootstrap.custom.css: Teile aus bootstrap.css heraus kopiert und hier gesammelt eingefügt.
   Das Einbinden der gesamten bootstrap.css Datei führt zu einem Layout Bruch. So ist zumindest gewährleistet, dass die bootstrap Komponenten gestylt sind und funktionieren.
   Dieses css wird nur an den Stellen eingebunden, wo es verwendet wird.
   ========================================================================== */

.vkmodal.fade {
    transition: opacity 0.15s linear;
    opacity: 1; /* NICHT UPDATESICHER! */
}

@media screen and (prefers-reduced-motion: reduce) {
    .vkmodal.fade {
        transition: none;
    }
}

.vkmodal.fade:not(.show) {
    opacity: 0;
}

.modal-open {
    overflow: hidden;
}

.modal-open .vkmodal.modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.vkmodal.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.vkmodal .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.vkmodal.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

  @media screen and (prefers-reduced-motion: reduce) {
  .vkmodal.modal.fade .modal-dialog {
    transition: none;
  }
}

.vkmodal.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.vkmodal .modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.vkmodal .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: "";
}

.vkmodal .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.vkmodal .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.vkmodal .modal-backdrop.fade {
    opacity: 0;
}

.vkmodal .modal-backdrop.show {
    opacity: 0.5;
}

.vkmodal .modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.vkmodal .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.vkmodal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.vkmodal .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    line-height: 1.5;
}

.vkmodal .modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.vkmodal .modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.vkmodal .modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.vkmodal .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

  @media (min-width: 576px) {
  .vkmodal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .vkmodal .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .vkmodal .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .vkmodal .modal-sm {
    max-width: 300px;
  }
}

  @media (min-width: 992px) {
  .vkmodal .modal-lg {
    max-width: 800px;
  }
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

.cu-alert--fixed {
    position: fixed;
    top: 39%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.cu-alert--fixed-top {
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.vkmodal .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.vkmodal .close:hover {
    color: #000;
    text-decoration: none;
}

.vkmodal .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75;
}

.vkmodal button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
