@charset "UTF-8";

.pay-vip-item {
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.pay-vip-item.ok, .pay-vip-item:hover {
    border: 2px solid #DE5D50;
    color: #DE5D50;
}

.pay-vip-item.ok:after {
    color: #DE5D50;
    content: "\f058";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 15px;
}

.pay-vip-item .vip-title {
    padding: 10px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.pay-vip-item .vip-text {
    margin: 0;
    text-align: center;
}

.pay-vip-item .vip-price {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.pay-vip-item .vip-price small {
    color: #3c3c3c;
}