/*Fonts link*/
@font-face{
    font-family: "Lucida-Handwriting";
    src:url(http://localhost/stanzo_bank/dist/fonts/Lucida-Handwriting-Italic.ttf);
}

@font-face{
    font-family: "Maiandra-GD";
    src:url(http://localhost/stanzo_bank/dist/fonts/Maiandra-GD-Regular.ttf);
} 

*{
    margin: 0;
    padding: 0;
    border: 0;
}

body{
    background-color: #f4f3ef;
    overflow: hidden;
}

.container{
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.wrap-content{
    width: 75%;
    height: 100vh;
    background-color: inherit;
}

.history-wrap{
    width: 100%;
    height: auto;
    padding: 0px 15px;
    margin: 30px 0;
    box-sizing: border-box;
}

.history-wrap .history-fluid{
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.history-wrap .history-fluid .history-title{
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.history-wrap .history-fluid .history-title h3{
    letter-spacing: 1px;
    font-family: "Lucida-Handwriting",sans-serif;
    font-weight: normal;
    font-size: 18px;
}

.history-wrap .history-fluid .history-table{
    width: 95%;
    height: auto;
    margin: 20px auto;
    overflow: auto;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.history-wrap .history-fluid .history-table::-webkit-scrollbar{
    display: none;
}

.history-wrap .history-fluid .history-table table{
    width: 100%;
    border-collapse: collapse;
    height: auto;
}

.history-wrap .history-fluid .history-table table thead tr td{
    text-align: center;
    padding: 5px 20px;
    background-color: #e9ecef;
    letter-spacing: 1px;
    font-family: "Maiandra-GD",sans-serif;
    font-weight: normal;
    font-size: 14px;
}

.history-wrap .history-fluid .history-table table tbody tr td{
    text-align: center;
    padding: 6px 20px;
    letter-spacing: 1px;
    font-family: "Maiandra-GD",sans-serif;
    font-weight: normal;
    font-size: 13px;
    border-bottom: 1px solid #f4f3ef;
}

.history-wrap .history-fluid .history-table table tbody tr td a{
    margin: 0 12px;
}

.history-wrap .history-fluid .history-table table tbody tr td#img{
    width: 30px;
    height: 50px;
}

.history-wrap .history-fluid .history-table table tbody tr td#img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Preloader loader style */

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0,0,0,0.4);
    width: 100%;
    height: 100%;
    transition: 1s;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader:before{
    content: '';
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    transition: 1s;
} 

.preloader.complete:before{
    left: -50%;   
}

.preloader:after{
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    transition: 1s;
}

.preloader.complete:after{
    right: -50%;   
}

.preloader.complete{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader{
    width: 50px;
    height: 50px;
    align-self: center;
    z-index: 3000;
    font-size: 10px;
    border-top: 1px solid rgb(150,0,0);
    border-right: 1px solid green;
    border-bottom: 1px solid blue;
    border-left: 1px solid black;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 9000;
}
        
@-webkit-keyframes spinner{
    from{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
}
    to{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
        
@keyframes spinner{
    from{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
}
    to{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}