.callbox .text-center{
    text-align: center;
}

.callbox .card{
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
    background-clip: border-box;
    border: 0;
    border-radius: 0.25rem;
}

.callbox .card-body{
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    border: dashed red;
    background-color: skyblue;
    border-radius: 20px;
    line-height: 15px;
}

.callbox p{
    margin: 0;
}

.callbox p strong{
    font-weight: bold;
}

.callbox h3{
    margin: 0;
}

.callbox h3 a{
    text-decoration: none;
    color: inherit;
}

.callbox img{
    display: inline;
    opacity: 0.877126;
    height: 80px;
    margin: auto;
    width: 230px;
}

.callbox .blink{
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}

.chart-card{
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    background-color: #85ff00;
    background-clip: border-box;
    overflow: hidden;
    border: 0;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.chart-card-body{
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    border: 1px dashed red;
    background: #85ff00;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}


.ads-container{
    margin-top: 5px;
    margin-bottom: 5px;
}

.ads-card-body{
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 1px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: dashed red;
    background: linear-gradient(to bottom, #85ff00, #ffffff);
    border-radius: 20px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}