.dataTables_wrapper{
    overflow-x: scroll;
}

.dataTables_wrapper .dataTables_paginate a{
	position: relative;
    float: left;
    padding: 7px 18px;
    line-height: 1.52857143;
    text-decoration: none;
    color: #515253;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    margin-left: -1px;
    outline: none;
    text-decoration: none;
    transition: all 0.5s;
}

.dataTables_wrapper .dataTables_paginate a.current, .dataTables_wrapper .dataTables_paginate a:hover{
	z-index: 2;
    color: #ffffff;
    background-color: #0094cb;
    border-color: #0094cb;
    cursor: default;
    transition: all 0.5s;
}

.dataTables_wrapper .dataTables_paginate a:hover{
	text-decoration: none;
	cursor: pointer;
}

/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
    padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
    padding: 0;
}


.form-group img{
    cursor: pointer;
}

fieldset{
    margin-bottom: 30px;
}

/* 

for zoom animation 
uncomment this part if you haven't added this code anywhere else

*/


.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out; 
    -moz-transition: all 0.3s ease-out; 
    -o-transition: all 0.3s ease-out; 
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
        opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
        opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.custom-chart{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-chart .c-chart-list{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.custom-chart .c-chart-list .chart-label{
    flex: 10%;
    width: 10%;
    text-align: right;
}

.custom-chart .c-chart-list .chart-line{
    flex: 90%;
    width: 90%;
}

.custom-chart .c-chart-list .chart-line .chart-number{
    position: relative;
    color: #fff;
}

.custom-chart .c-chart-list .chart-line .char-barline{
    background-color: #FE6500;
    padding: 12px;
    text-align: center;
}

.flex-center{
    display: flex;
    flex-direction: row;
    justify-content: center;
}