body {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #1a1a1e;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    .navbar {
        background: rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid #1a1a1e;

        .nav-item {
            margin: 0 1rem 0 0;
        }

        .nav-link {
            text-transform: uppercase;
            color: $white;
            font-weight: 500;

            &:hover, &:active, &.active, &.show {
                background-color: $primary;
                border-radius: $border-radius;
                color: #fff!important;
            }
        }

        &-notifications {
            .btn {
                .material-symbols-outlined {
                    font-size: 19px;
                }
            }
        }

        .btn-header {
            margin-left: .5rem;
            color: #fff;
            height: 32px;
            display: flex;
            align-items: center;

            &:hover, &:active, &.active, &.show {
                background-color: $primary;
                border-radius: $border-radius;
                color: #fff!important;
                border-color: transparent;
            }
        }

        &-language {

        }

        &-toggle {
            --bs-btn-padding-y: .23rem;
        }

        &-auth {
            margin-left: .5rem;

            .btn {
                color: #fff;

                &:focus, &:active, &.active, &.show {
                    color: #fff;
                    border-color: transparent;
                }
            }
        }

        .dropdown-services {
            min-width: 250px;

            &-title {
                margin: 1rem;
                text-transform: uppercase;
                text-align: center;
                font-weight: 600;
            }
        }

        .container {
            position: relative;
        }

        @include media-breakpoint-down(lg) {
            &-collapse {
                position: absolute;
                top: 42px;
                background: rgb(255, 255, 255);
                z-index: 100;
                right: 12px;
                left: 12px;

                .navbar-nav {
                    padding: .5rem .5rem .5rem 0;
                }

                .nav-link {
                    color: var(--bs-emphasis-color);
                }
            }

            .navbar-toggle {
                display: flex!important;
            }
        }

        .dropdown-auth {
            min-width: 300px;
            padding: 1rem;
        }
    }

    .header {
        margin-top: 60px;

        .container {
            height: 100%;
            display: flex;
            justify-content: space-between;
            flex-direction: column;

            @include media-breakpoint-up(md) {
                flex-direction: row;
            }
        }

        &-brand {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin: 2rem 0;

            @include media-breakpoint-up(sm) {
                max-width: 100%;
            }

            @include media-breakpoint-up(md) {
                max-width: 300px;
            }

            @include media-breakpoint-up(lg) {
                max-width: 400px;
            }
        }
    }
}

main {
    flex: 1;
    margin: 1rem 0;
}

footer {
    &.footer {
        margin-top: 1rem;
        color: $white;
        background: rgba(0, 0, 0, 0.5);
        padding: 1rem 0;
    }
}