.sheet-container {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-family: var(--sd-ec-font-font-family-regular);
}

.sheet-container .sheet-close-button {
    color: #0066B3;
    font-size: 1rem;
    line-height: 1.3125;
    cursor: pointer;
    font-weight: bold;
}

.sheet-container .h-64px {
    height: 4rem;
}

.sheet-container .place-items-center {
    place-items: center;
}

.sheet-container .sheet {
    pointer-events: auto;
    position: static;
    margin-bottom: 0;
}

.sheet-container .sheet-backdrop {
    opacity: 0.6;
    animation: none;
    background: #002c5a;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sheet-container .sheet-wrapper {
    display: flex;
    position: absolute;
    z-index: 1000;
    justify-content: center;
    align-items: flex-end;
    animation: none;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.sheet-container .bottom-sheet {
    padding: 0 24px 0 24px;
    max-width: 40rem;
    box-sizing: border-box;
    display: block;
    outline: 0;
    border-radius: 24px 24px 0 0;
    background: #fff;
}

.sheet-container .sheet-content {
    overflow: auto;
    padding-bottom: 2rem;
    max-height: 70vh;
}

.sheet-container .sheet-content:focus {
    outline: none;
}

.sheet-container .sheet-content:focus-visible {
    box-shadow: 0 0 0 var(--sd-border-base-size-xx-small) var(--sd-color-base-blue-145), 0 0 0 var(--sd-boxshadow-base-size-x-small) var(--sd-ec-color-state-secondary-120), 0 0 0 var(--sd-boxshadow-base-size-small) var(--sd-color-base-blue-145);
    z-index: 1;
}

.sheet-container .sheet-button {
    background-color: var(--sd-ec-color-background-secondary-010);
    border-color: var(--sd-ec-color-background-secondary-010) !important;
    height: 2.5625rem;
    border-radius: 100px;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.sheet-container .sheet-info-text {
    font-family: var(--sd-ec-font-font-family-bold);
    font-size: var(--sd-ec-text-paragraph-strong-medium-fontsize);
    color: var(--sd-ec-color-brand-secondary-100);
}

.sheet-container .line-height-24 {
    line-height: 1.5;
}

.sheet-container .padding-right-small {
    padding-right: var(--sd-spacing-base-small);
}

.sheet-container .line-height-21 {
    line-height: 1.3125;
}

.sheet-container .margin-top-xlarge {
    margin-top: var(--sd-spacing-base-x-large);
}

.sheet-container .margin-bottom-xlarge {
    margin-bottom: var(--sd-spacing-base-x-large);
}

.sheet-container .margin-bottom-large {
    margin-bottom: var(--sd-spacing-base-large);
}

.sheet-container .margin-top-medium {
    margin-top: var(--sd-spacing-base-medium);
}

.sheet-container .padding-right-small {
    padding-right: var(--sd-spacing-base-small);
}

.sheet-container .text-large-xx {
    font-family: var(--sd-ec-font-font-family-bold);
    font-size: var(--sd-ec-text-heading-xx-large-fontsize);
    line-height: 1.8125;
    letter-spacing: var(--sd-ec-text-heading-xx-large-letterspacing);
}

.sheet-container .padding-bottom-32 {
    padding-bottom: 2rem;
}

.sheet-container .margin-bottom-0 {
    margin-bottom: 0;
}

.sheet-container .margin-left-24 {
    margin-left: 1.5rem;
}

.sheet-container .margin-left-24 {
    margin-right: 1.5rem;
}

.sheet-container .d-flex {
    display: -ms-flexbox;
    display: flex;
}
.sheet-container .justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.sheet-container .font-bold {
    font-family: var(--sd-ec-font-font-family-bold);
}

.sheet-container .text-large-xx {
    font-size: var(--sd-ec-text-heading-xx-large-fontsize);
    line-height: 1.8125;
    letter-spacing: var(--sd-ec-text-heading-xx-large-letterspacing);
}

.sheet-container .text-color-base {
    color: var(--sd-ec-color-brand-tertiary-100);
}

@keyframes sheet-slideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}

/* Not included in the original style-sheet: */

.sheet-container .sheet-button-secondary {
    background-color: #F37122;
}

.sheet-container .sheet-info-text-secondary {
    color: #FFF;
}

/* Switch von Sheet zu Modal */
@media screen and (min-width: 960px){
    .lg\:w-auto {
        width: auto !important;
    }

    .sheet-container .sheet-wrapper {
        justify-content: center;
        align-items: center;
    }

    .sheet-container .bottom-sheet{
        border-radius: 1.5rem;
    }

    @keyframes sheet-slideUp {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
}
