.table_data_pagination_cont {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: 0.3s all;
    opacity: 1;
}

.table_data_pagination_cont.is-loading {
    position: relative;
    margin-bottom: 50px;
}

.table_data_pagination_cont.is-loading:after {
    content: '';
    position: absolute;
    background-image: url('../../../assets/img/Spinner.svg');
    width: 50px;
    height: 50px;
    background-size: cover;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -60px;
}

.table_data_pagination_cont > a {
    margin: 10px;
}

.table_data_pagination_cont.is-loading > a {
    opacity: 0.7
}
/*LOOP TOTAL BOX*/
.cs-day-box {
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 300px;
    border-radius: 5px;
    background: #f3f3f3;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
    padding: 10px 0px;
}
.cs-day-box .cs-day {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 500;
}

/*COPY*/
.copyBtn-wrap {
    display: flex;
    padding: 5px;
    justify-content: center;
    margin-bottom: 20px;
}
.copyBtn-wrap .copyBtn {
    padding: 8px 15px 10px 10px;
    color: #FFFFFF;
    background: #2CA6E0;
    font-weight: 700;
    font-size: 20px;
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 10%);
    transition: 0.3s all;
    display: flex;
    align-items: center;
    min-width: 230px;
    cursor: pointer;
}
.copyBtn-wrap .copyBtn:hover {
    box-shadow: 2px 2px 5px rgb(0 0 0 / 30%)!important;
}
.copyBtn > i {
    margin-right: 10px;
    background: #33333394;
    width: 30px;
    display: inline-block;
    line-height: 30px;
    border-radius: 30px;
    font-size: 15px;
    text-align: center;
}