#text-container {
    color: rgba(200,200,200);
    height: unset;
}

#text-container > div {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2% 4%;
}

#text-container p {
    margin: 1em 0;
}

#images-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 3em;
}

#images-container > div {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

#images-container > div img {
    width: 100%;
    height: auto;
}

#table-row {
    width: 80%;
    margin: auto;
    border: 1px solid white;
    background: white;
    justify-content: space-between;
    border-radius: 10px;
    padding: 1em;
    display: flex;
    gap: 1em;
    color: black;
}

#table-row > div {
    display: flex;
    align-items: center;
    gap: 1em;
}

#table-row > div:first-child {
    width: 60%;
    justify-content: space-between;
}

#table-row > div:last-child {
    width: 40%;
    justify-content: space-between;
}

#table-row .logo {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 2em;
}

#table-row .logo img {
    width: auto;
    height: 60px;
    padding: .5em;
}

#table-row #bonus {

}

#table-row #bonus .tag {
    background: #ff9b00;
    font-size: .8em;
    width: 120px;
    padding: .3em;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    color: white;
}

#table-row #bm-stars-mobile {
    display: none!important;
}

#table-row #bm-stars, #table-row #bm-stars-mobile {
    font-size: .8em;
    display: flex;
    gap: .5em;
}

#table-row #bm-stars .stars, #table-row #bm-stars-mobile .stars {
    display: flex;
}

#table-row #bm-stars-mobile {
    justify-content: start;
}

#table-row #bm-stars .stars svg, #table-row #bm-stars-mobile .stars svg {
    width: 10px;
    height: 10px;
}

#table-row #copy {
    background: #f5f5f5;
    padding: 1em;
    display: flex;
    gap: .5em;
    align-items: center;
    justify-content: center;
    position: relative;
}

#table-row #copy .tag {
    background: #e02d57;
    position: absolute;
    top: -10px;
    right: -10px;
    padding: .2em;
    font-size: .6em;
    color: white;
}

#table-row #cta {
    background: #14e682;
    font-size: .8em;
    padding: 1.4em;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    #images-container {
        display: block;
    }

    #images-container > div {
        margin-bottom: 3em;
    }

    #table-row {
        width: 95%;
    }

    #table-row .logo {
        padding: 0 .5em;
    }

    #table-row #bm-stars {
        display: none;
    }

    #table-row #bonus > span:last-child {
        display: none;
    }

    #table-row #bonus .tag {
        display: none;
    }

    #table-row #bm-stars-mobile {
        display: flex!important;
        width: 100;
    }

    #table-row {
        flex-direction: column;
    }

    #table-row > div {
        width: 100%!important;
    }
}

#faq > details {
    margin: 2em 0;
    padding: 1em;
    border: 1px solid white;
}

.MainTop_rightName__O6GnL {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}