

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 500px) {
    .cards-container {
        justify-content: center;
    }
}

.cards-container hr {
    border-top: 1px solid gray;
}

.k-card {
    width: 250px;
    margin: 5px 0px 5px 0px;
    border-radius: 5px;
}

#tier0 .k-card-header {
    background-color:  #7030A0;
}

#tier1 .k-card-header {
    background-color:  #9C2FA8;
}

#tier2 .k-card-header {
    background-color:  #568FC2;
}

#tier3 .k-card-header {
    background-color:  #5B9BD5;
}

.k-card-header .k-card-title {
    color: white;
    font-weight: bold;
    text-align: center;
}

.tier-price {
    font-weight: bold;
    text-align: center;
    font-size: large;
}

.tier-description {
    font-weight: bold;
    text-align: center;
    font-size: medium;
}

.k-card-body {
    background-color: #F2F2F2;
    padding: 15px 15px;
}

.tier-details {
    padding-top: 20px;
    font-size: medium;
}

.tier-select {
    margin-top: 30px;
}

.k-card {
    height: 100%;
}

.tier-details tr {
    margin-top: 20px;
}

.tier0-warning {
    display: flex;
    color: white;
    border-radius: 5px;
    background-color: #F1245C;
    font-weight: bold;

}

.tier0-warning div {
    display: flex;
    align-items: center;
    width: 10%;
    justify-content:center
}

.tier0-warning div i {
    font-size: xxx-large;
}

.tier0-warning p {
    padding-left: 10px;
    padding-right: 10px;
}

.discount-info h2 {
    color: black;
    font-weight: bold;
}

.discount-hint {
    font-style: italic;
    font-size: 13px;
    color: red;
    font-weight: bold;
}