.colored-border{
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #5886e8, #28d0db) border-box; 
    border: 4px solid transparent;
}
.green-card-box {
    position: relative;
    height: 250px;
    width: 400px;
   background: linear-gradient(to bottom, #28a01a, #34c94a) padding-box, /* green gradient */
                linear-gradient(to right, #5886e8, #28d0db) border-box;
    border: 4px solid transparent;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.diamond-card-box{
    position: relative;
    height: 250px;
    width: 400px;
   background: linear-gradient(to bottom, #ffffff, #d1f4ff, #aee6f9) padding-box,  /* diamond shine */
            linear-gradient(to right, #e5e4e2, #dcd9ff) border-box;
    border: 4px solid transparent;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Tablet: reduce width */
@media (max-width: 768px) {
    .green-card-box {
        width: 100%;
        max-width: 320px;
    }
}

/* Mobile: further reduce width */
@media (max-width: 480px) {
    .green-card-box {
        width: 100%;
        max-width: 280px;
    }
}

.profit-card-box p {
    writing-mode: vertical-rl;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #000; /* black text color as in image */
    user-select: none;
    white-space: nowrap;
}

.logo-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profit-card-box img {
    max-height: 200px;
    object-fit: contain;
}


.paginate_button{
    border-radius: 50% !important;
}

.paginate_button.next, .paginate_button.previous{
    border-radius: 2px !important;
}

.star-filled {
  display: inline-block;
  background: radial-gradient(circle at 50% 50%, #28d0db 0%, #000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.card-header{
    background-color: black;
    background-image: radial-gradient(circle at 50% 50%, #28d0db5a 0%, transparent 50%);
    color: #fff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.withdraw-selection{
    background-color: black;
    background-image: radial-gradient(circle at 50% 50%, #28d0db5a 0%, transparent 50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.btn-primary{
    background-color: black;
    background-image: radial-gradient(circle at 50% 50%, #28d0db5a 0%, transparent 50%);
    border: 0;
}

.btn-primary:hover{
    background-color: #28d0db;
}

.admin-section .circle-box{
    height: auto;
}

.circle-box{
    border-radius: 8px;
    /*width: 250px;*/
    height: 250px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #5886e8, #28d0db) border-box; 
    border: 4px solid transparent;
}

.blink {
  animation: blinker 5s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

.text-left{
    text-align: left;
}

.promo-desc{
    font-size: 2rem !important;
    color: #24e6a4;
}

.pro-rank{
    font-size: 4rem !important;
    color: #24e6a4;
}

.text-muted {
    color: #a9a9a9 !important;
}

.binary-tree-img{
    width: 220px;
}

.cursor-pointer{
    cursor: pointer;
}

.border-left-right{
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
}

.selected-plan{
    border: 2px solid green;
}

.btn-warning{
    color: #fff !important;
}

.modal-custom {
    color: #636363;
    width: 325px;
    font-size: 14px;
}
.modal-custom .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}
.modal-custom .modal-header {
    border-bottom: none;
    position: relative;
}
.modal-custom h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}

.modal-custom .close {
    position: absolute;
    top: -5px;
    right: -5px;
}
.modal-custom .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}
.modal-custom .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-custom .icon-box i {
    font-size: 58px;
    position: relative;
    top: 3px;
}
.modal-custom.modal-dialog {
    margin-top: 80px;
}
