.auction__title {
    margin-top: 40px;
}

.auction__content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.auction__description {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.auction__content-item {
    width: calc(100% / 2 - (24px / 2));
    border: 2px solid #414141;
    padding: 24px;
    background: #2b2b2b8f;
}

.auction__content-item-text {
    margin-top: 24px;
}

.auction__content-item-text-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.auction__content-item-text-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}

.auction__content-item-text-items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}

.auction__content-item-text-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.auction__content-item-text-item-name {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.auction__content-item-text-item-value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.auction__content-item-actions {
    margin-top: 24px;
    display: flex;
    display: none;
    gap: 10px;
}

.auction__content-item-actions-button {
    width: calc(50% - (10px / 2));
    border: 1px solid white;
    padding: 10px;
    height: 50px;
    background: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;

    transition: all 0.2s ease;
    cursor: pointer;
}

.auction__content-item-actions-button:hover {
    opacity: 0.8;
}

.auction-modal__title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #fff;
}

.auction-modal__form {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.auction-modal__form-item {
    width: 100%;
}

.auction-modal__code-verify-wrapper {
    width: calc(32% - 16px);
}

.auction-modal__code-verify {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.auction-modal__code-verify-text {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}

.auction-modal__code-verify-btn {
    border: 1px solid #a9a9a9;
    padding: 0px 10px;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auction-modal__code-verify-btn:hover {
    opacity: 0.8;
}

.auction-modal__code-verify-step2 {
    display: none;
    width: 100%;
}

.auction-modal__code-verify-wrapper .input__label {
    display: none
}

.auction-modal__code-verify-wrapper .input__wrapper {
    height: 100%;
}

.auction-modal__code-verify-wrapper .auction-modal__code-verify {
    height: 100%;
}

.auction-modal__code-verify-start-btn {
    margin-top: 25px;
}

/* .auction-modal__form .auction-modal__form-item:nth-child(1) {
    width: 68%;
} */

.auction-modal__code-verify-wrapper {
    width: calc(32% - 16px);
}

.auction-modal__second-stage-ec {
    width: calc(50% - 8px) !important;
}

.auction-modal__code-verify-input {
    position: relative;
}

.auction-modal__code-verify-input-confirm {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}

.auction-modal__code-verify-input-confirm:hover {
    opacity: 0.8;
}

.auction-modal__code-verify-input-confirmed {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    align-items: center;
    justify-content: center;
}

.auction-modal__actions {
    margin-top: 32px;
    display: flex;
    gap: 10px;
}

.auction-modal__button {
    flex: 1;
    border: 1px solid #a9a9a9;
    padding: 0px 10px;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.auction-modal__button:hover {
    opacity: 0.8;
}

.auction-modal__send {
    height: 64px !important;
    flex: 1;
    font-size: 22px !important;
    pointer-events: none;
    opacity: 0.6;
}
.auction-modal__send.active {
    pointer-events: auto;
    opacity: 1;
}

.auction-modal__form-item-step {
    font-family: var(--font-family);
    font-weight: 200;
    font-size: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auction-modal__form-item-step-value {
    font-weight: 700;
}

.auction-modal__form-item-step-price {
    font-weight: 700;
}

.auction-modal__error {
    margin-top: 20px;
    color: #ff4e4e;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    display: none;
}

.auction-modal__success {
    margin-top: 20px;
    color: #0aa30a;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    display: none;
}

.auction-activate-modal__title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #fff;
}

.auction-activate-modal__form {
    margin-top: 24px;
    width: 100%;
}

.auction-activate-modal__actions {
    margin-top: 32px;
    width: 100%;
    display: flex;
    gap: 16px;
}

.auction-activate-modal__button {
    flex: 1;
    border: 1px solid #a9a9a9;
    padding: 0px 10px;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auction-activate-modal__button:hover {
    opacity: 0.8;
}

.auction-activate-modal__send {
    flex: 1;
    height: 64px !important;
    font-size: 22px !important;
}

.auction-activate-modal__error {
    margin-top: 20px;
    color: #ff4e4e;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    display: none;
}

.last-bid-my {
    color: #0aa30a;
    display: none;
}

.last-bid {
    white-space: nowrap;
    margin-left: 5px;
}

.auction__content-item-text-item-value {
    text-align: right;
}

@media screen and (max-width: 1100px) {
    .auction__title {
        font-size: 40px;
    }
}

@media screen and (max-width: 900px) {
    .auction__content-item {
        width: 100%;
    }
    .auction__content-item-actions-button {
        font-size: 14px;
    }
    .auction-modal__form .auction-modal__form-item:nth-child(1) {
        width: 100%;
    }
    .auction-modal__code-verify-wrapper {
        width: 100%;
        margin-top: -10px;
    }
}

@media screen and (max-width: 700px) {
    .auction__title {
        font-size: 30px;
    }
}


@media screen and (max-width: 530px) {
    .auction__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 410px) {
    .auction__title {
        font-size: 22px;
    }
}