input[type=number]:focus {
    border: 3px solid #464646;
}
input[type=text]:focus {
    border: 3px solid #464646;
}
textarea:focus {
    border: 3px solid #464646;
}
select[id=customer_bank]:focus {
    border: 3px solid #464646;
}
select[id=route]:focus {
    border: 3px solid #464646;
}
select[id=bank_district]:focus {
    border: 3px solid #464646;
}
select[id=bank_branch]:focus {
    border: 3px solid #464646;
}
select[id=bank]:focus {
    border: 3px solid #464646;
}
.is-focused {
    border: 3px solid #464646;
    border-radius: 7px;
}
select[id=uid]:focus {
    border: 3px solid #464646;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.file-zone {
    /*width: 100%;*/
    max-height: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    /*align-items: center;
    justify-content: center;*/
    text-align: left;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #7A7A7A;
    border-radius: 10px;
    background-color: #E9E9E9;
}

.drop-zone {
    /*width: 100%;
    height: 200px;*/
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #7A7A7A;
    border-radius: 10px;
}
.drop-zone--over {
    border-style: solid;
}
.drop-zone__input {
    display: none;
}
.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ececec;
    background-size: contain;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}
.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}