.ab-card {
    max-width: 1110px;
    background-color: #0A1626;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 15px;
    word-break: break-word;
}

.ab-card .ab-card-column {
    word-break: break-word;
}

.ab-card .ab-card-label {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    background-color: #00D1FF;
    color: #090C12;
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 2px 10px;
}

.ab-card .ab-bonus-label {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFBF00;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ab-card .ab-bonus-label span {
    line-height: 135%;
}

.ab-card .ab-bonus-label img {
    margin-right: 10px;
}

.ab-card .ab-bonus-value {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FBFBFC;
    margin-bottom: 10px;
    text-align: center;
}

.ab-card .ab-bonus-button {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(270deg, #0080FF 0%, #0040FF 100%);
    color: #FBFBFC;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: none;
    border: none;
    width: 100%;
}

.ab-card .ab-promo {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    margin-top: 15px;
    position: relative;
}

.ab-card .ab-promo-code {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #FBFBFC;
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px dashed #B8B8CC;
    display: grid;
    justify-content: center;
    word-break: break-word;
}

.ab-card .ab-promo-button {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 150%;
    color: #FBFBFC;
    padding: 10px 30px;
    border-radius: 3px;
    border: 2px solid #0080FF;
    display: grid;
    grid-template-columns: max-content;
    background: transparent;
    text-transform: uppercase;
    margin: 15px auto 0;
    transition: all .3s ease-in-out;
    width: 100%;
    justify-content: center;
}

.ab-card .ab-promo-button:hover {
    color: #FBFBFC;
    background: linear-gradient(270deg, #0080FF 0%, #0040FF 100%), #0040FF;
    border-color: #0040FF;
    transition: all .3s ease-in-out;
}

.ab-card .ab-promo .ab-promo-response {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FBFBFC;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0A1626;
    padding: 15px;
    overflow: hidden;
    text-align: center;
    display: none;
}

@media (min-width: 575px) {
    .ab-card .ab-promo {
        grid-template-columns: 1fr min-content;
    }

    .ab-card .ab-promo-button {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .ab-card .ab-card-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .ab-card .ab-card-column {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .ab-card .ab-bonus-label,
    .ab-card .ab-bonus-value {
        margin-bottom: 0;
        justify-content: flex-start;
        text-align: left;
    }
}