@use '../../styles/utils';

@mixin buttons {
    margin: 30px 0;
    display: flex;
    width: 100%;
}

@mixin desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--gray-800);
    text-align: left;
}

@mixin content {
    display: flex;
    flex-direction: column;
}

.create-bundle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    &-title-section {
        text-align: center;
        width: 500px;
        margin-bottom: 10px;
    }

    &-title {
        @include utils.title;

        margin-bottom: 20px;
    }

    &-subtitle {
        @include utils.subtitle;

        color: var(--gray-800);
        margin: 0;
    }

    &-content-section {
        @include content;

        width: 450px;
        align-items: flex-start;
    }

    &-success-page {
        @include content;

        width: 410px;
        align-items: center;
    }

    &-success-alert {
        margin: 0 0 20px;
    }

    &-alert {
        margin: 10px 0;
    }

    .Alert {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        color: var(--gray-800);
        text-align: left;
        box-shadow: 0 0 6px 0 rgba(28 28 28 / 12%);
    }

    .dropdown-description {
        @include desc;

        margin-top: 10px;
    }

    .thumbnail-description {
        @include desc;

        margin-top: 20px;
        font-weight: 500;
    }

    .buttons-container {
        @include buttons;

        justify-content: space-between;
    }

    .button-container {
        @include buttons;

        justify-content: flex-end;
    }
}
