html {
    font-size: 13px;
    position: relative;
    min-height: 100%;
}



.iban {
    width: 300px;
    padding: 5px;
    text-transform: uppercase;
}

.text-thin-gray {
    color: lightgray !important;
}


.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    background-color: #ccc;
}


.accordion-body {
    padding: 0.5rem 0.5rem;
}

.accordion-button {
    padding: 0.3em 0.5rem;
}


/*-----------------*/
#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.card:hover {
    transform: scale(1.00);
    box-shadow: 0 0 20px rgba(0,0,0,0.0);
}


/*--------------------------------------------     Flip Card --------------------------------------------------*/

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    color: black;
}

.flip-card-back {
    color: black;
    transform: rotateY(180deg);
}

.fill {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}




table.dataTable tbody th, table.dataTable tbody td {
    padding: 1px 10px;
}




/*
<div class="flip-card" >
<div class="flip-card-inner" >
<div class="flip-card-front" >
<img src="img_avatar.png" alt="Avatar" style="width:300px;height:300px;" >
</div >
<div class="flip-card-back" >
<h1 > John Doe</h1 >
<p > Architect & Engineer</p >
<p > We love that guy</p >
</div >
</div >
</div >*/


/*-----------------------------------------------------------------------------------------------------------*/
