*{margin: 0; padding: 0;}
body{
    box-sizing: border-box;
    /*height: 100vh;*/
    width: 100vw;
    display: grid;
    justify-content: center;
    align-content: center;
    cursor: default;
    /* font-family: 'Roboto', sans-serif; */
}

.container {
    margin-top: 30px;
}

.card{
    box-shadow: 1px 0px 25px rgba(0,0,0, .2);
    border-radius: 8px;
}

.card-body{
    padding: 30px;
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

.card-header{
    display: grid;
    grid-template-columns: 27% auto;
    grid-gap: 25px;
    margin-bottom: 40px;
}

.bank-icon-100{
    margin: auto 0 auto auto;
    position: relative;
}

.bank-name{
    margin: auto 0;
}
.bank-name h1{
    font-size: 28px;
}
.bank-name p{
    font-size: 18px;
    margin-top: 3px;
}

.card-data{
    display: grid;
    grid-template-columns: auto 250px;
    grid-gap: 80px;
}

.customer-picture{
    margin: 0 auto;
    width: 100%;
    text-align: right;
    position: relative;
}

.customer-picture img{
    width: 155px;
    cursor: pointer;
}

.customer-picture i{
    position: absolute;
    border: 1px solid #f10f0f;
    border-radius: 50%;
    padding: 3px 4px 1px 4px;
    cursor: pointer;
    color: #f10f0f;
    right: 65px;
    top: -45px;
    opacity: 0;
}

.customer-picture:hover > i{
    opacity: 1;
}

.customer-details{
    margin: auto 0;
    width: 450px;
}
.customer-details table tr td{
    padding: 5px 5px 10px 0px;
    font-size: 16px;
    outline: none;
}

.customer-details table tr td:first-child{
    min-width: 180px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 600;
}
.customer-details table tr td:last-child{
    cursor: pointer;
}

.action-buttons{
    display: grid;
    grid-template-columns: 140px 165px 130px 100px auto;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 1px 0px 25px rgba(0,0,0, .2);
    border-radius: 8px;
}

.button{
    display: inline-flex;
    position: relative;
    padding: 10px 15px;
    border-right: 2px solid #ccc;
    cursor: pointer;
    color: #1e2f4d;
    transition: .3s ease-out;
}
.button:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.button:hover{
    transition: .3s ease-in;
    color: #fff;
    background-color: #1e2f4d;
}

.button p{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin-left: 30px;
}
.button i{
    position: absolute;
    font-size: 20px;
    top: 9px;
}

.footer{
    margin: auto 0 auto  auto;
}

.footer p{
    font-family: 'Roboto', sans-serif;
    margin-right: 20px;
    font-size: 13px;
    color: #666;
}

[contenteditable][placeholder]:empty:before {
    content: attr(placeholder);
    position: absolute;
    color: #dfdfdf;
    background-color: transparent;
}
.boiIcon{
    position: absolute;
    top: -53px;
    right: -5px;
    height: 85px;
}

.hiddenElms{
    display: none;
}