.box-creation_text {
    display: flex;
    align-items: center;
    justify-content: space-between;

    h3 {
        font-weight: 400;
    }
}

.box-creation_heading{
    display: flex;
    flex-direction: column;
}

.box-creation_status_success {
    padding: 0.625rem 0.75rem 0.625rem 0.75rem;
    line-height: 1.25rem;
    background-color: #35D84E1A;
    color: #32D74B;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}
.box-creation_status_warning {
    padding: 0.625rem 0.75rem 0.625rem 0.75rem;
    line-height: 1.25rem;
    background-color: #FEEBC8;
    color: #ED8936;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

.paragraph-expiration {
    font-size: 0.875rem;
    color: #7B7F87;
}

.paragraph-code {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7B7F87;
}

.box-creation_wrapper_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    gap: 0.625rem;
}
.box-creation_button_primary,
.box-creation_button_secondary {
    display: inline-block;
    height: auto;
    max-width: max-content;
    text-align: center;
    font-size: 0.875rem;
    white-space: nowrap;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6.25rem;
    padding: 0.75rem 1.25rem;
    letter-spacing: 0.04375rem;
    cursor: pointer;
}

.box-creation_button_primary {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    color: #FFFFFF;
}

.box-creation_button_secondary {
    border: 0.0625rem solid rgba(0, 0, 0, 0.8);
    background-color: #FFFFFF;
    color: rgba(0, 0, 0, 0.8);
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.card {
    font-family: 'Axiforma', sans-serif;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 0.25rem;
    line-height: normal;
}

.card-image {
    display: flex;
    width: 450px;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 0.25rem;
    overflow: hidden;
}

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 1.25rem;
}

.card-header {
    margin-bottom: 2rem;
}

.card-info {
    font-size: 0.875rem;
    color: #4B5563;
    display: flex;
    align-items: center;
}

.icon {
    fill: #6B7280;
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.card-description {
    font-size: 1rem;
    color: #4B5563;
}

.card-footer {
    display: flex;
    align-items: center;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    margin-right: 1rem;
}

.author-info {
    font-size: 0.875rem;
}

.author-name {
    color: #1F2937;
    font-weight: 600;
}

.author-date {
    color: #6B7280;
}
.box-creation_cta{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
    }

    .card-image {
        width: 100%;
        border-radius: 0;
    }
    .box-creation_cta{
        flex-direction: column-reverse;
    }
    .container {
        padding-right: 0.625rem;
        padding-left: 0.625rem;
    }
}

#add_giftcode {
    display: none;
}