.section__generate {
    padding: 140px 0 70px;
}

.section__generate .container__layout {
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.generate__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.status__loading {
    width: 100%;
    min-width: 500px;
    max-width: 500px;
    max-height: 10px;
    min-height: 10px;
    background-color: var(--light-grey-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.status__loading>span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    max-height: 10px;
    min-height: 10px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: width linear 0.4s;
}

.status__loading.error>span {
    background-color: #FF5252;
}

.generate__status {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.status__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.status__btn {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.status__btn > button,
.status__btn > a{
    min-height: 40px;
}

.status__btn>button.hide,
.status__btn>a.hide,
.status__btn .circle__loading.hide {
    display: none;
}


.status__btn .generate__again {
    background-color: #FF5252;
}

.circle__loading {
    border: 6px solid var(--primary-color);
    border-radius: 50%;
    border-top: 6px solid transparent;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1.5s linear infinite;
    /* Safari */
    animation: spin 1.5s linear infinite;
}

.generate__status .support>p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.generate__status .support>p>span {
    color: var(--primary-color);
    cursor: pointer;
}

.license__info {
    border-radius: 24px;
    border: 2px solid var(--primary-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 500px;
}

.license__info .item .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.license__info .item .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    min-height: 24px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}