.promo-code-block{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}


.promo-code-box {
    background-image: linear-gradient(90.87deg, #d40606 30.19%, #d40606 102.14%);
    border-radius: 10px;
    display: flex;
    gap: 30px;
    width: 60vw;
    padding: 40px 30px;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 0 30px #222;
    border: 1px solid rgb(211 229 18 / 20%);
}

.promo-code-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #D3E512;
    text-transform: uppercase;
    width: 25%;
}

.bonus-code {
    border: 1px dashed #D3E512;
    color: #D3E512;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
    background: #0b5b4f;
    margin-right: 20px;
}

.bonus-code-copy {
    background: #D3E512;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    padding: 12px 15px;
}

.promo-code-field{
    display: flex;
}

.promo-code-box .info__btn {
    margin: 0 !important;
}


@media screen and (max-width: 890px) {
    .promo-code-box {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    .promo-code-title{
        width: 100%;
    }
}

