scale-telekom-app-shell {
    display: flex;
    flex-flow: column;
}

main {
    flex: 1;
    height: 100%;
    display: flex;
    flex-flow: column;
}

div#content {
    flex: 1;
    height: 100%;
    display: flex;
    flex-flow: column;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    width: fill-available;
}

#a-search-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.scrollable-group_border {
    box-sizing: border-box;
    height: 20rem;
    padding: var(--scl-spacing-16);
    margin-top: 10px;
    flex: 1;
    overflow-y: auto;
}

.search-bottom-button-container {
    width: 100%;
    display: inline-flex;
    justify-content: right;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.left-button {
    margin-right: auto;
}

.group-header {
    background-color: black;
    box-sizing: border-box;
    color: white;
    padding: 8px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    border-radius: 10px;
    border: none;
    text-align: left;
    outline: none;
}

.search-options {
    display: flex;
    justify-content: space-between;
    gap: var(--scl-spacing-8);
}

scale-sidebar-nav-item {
    width: 100%;
    display: inline-block;
}

scale-icon-action-edit {
    display: none !important;
}

@media only screen and (min-width: 1000px) {
    scale-sidebar-nav-item {
        display: inline;
    }
}

scale-sidebar-nav-item a:hover {
    text-decoration: unset;
    color: var(--color-hover);
}

@media screen and (min-width: 640px) {
    .attributes-container {
        height: 200px;
    }
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 0;
    padding: var(--scl-spacing-16);
    z-index: 100;
}

.skip-link:focus {
    top: 8%;
}

.advanced-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
}

.hw-type-dropdown {
    width: 200px;
    --scale-dropdown-font-size: 0.9rem;
}

.advanced-search-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 2.5rem;
}

.flex-spacer {
    width: 200px;
}

@media screen and (max-width: 785px) {
    .advanced-search-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: static;
    }

    .advanced-search-title {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .hw-type-dropdown {
        width: 100%;
    }

    .flex-spacer {
        display: none;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .advanced-search-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: static;
    }

    .advanced-search-title {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .hw-type-dropdown {
        width: 100%;
    }

    .flex-spacer {
        display: none;
    }
}