/* BOOTSTRAP CHANGES */
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.form-control,
.form-control:focus,
.form-control:active:focus,
.form-control.active:focus,
.form-control.focus,
.form-control:active.focus,
.form-control.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.form-select,
.form-select:focus,
.form-select:active:focus,
.form-select.active:focus,
.form-select.focus,
.form-select:active.focus,
.form-select.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.page-link,
.page-link:focus,
.page-link:active:focus,
.page-link.active:focus,
.page-link.focus,
.page-link:active.focus,
.page-link.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

/* END */

.table-filter {
    margin-bottom: 30px;
    width: 500px;
    display: flex;
    justify-content: space-between;
}

.table-filter .form-select {
    width: 40%;
}

.table-filter .form-control {
    width: 55%;
}


.form-actions .form-input {
    border-radius: 5px;
    outline: none;
    border: 1px solid #EC6E15;
    padding: 5px 50px;
    text-align: left;
}

.btn-stack {
    background-color: #EC6E15;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 13px;
    border-radius: 3px;
}

.btn-stack:hover {
    background-color: #EC6E15;
    color: #fff;
}

.login-card {
    border: 3px solid#EC6E15;
    padding-top: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.login-card .btn-login-submit {
    background-color: #EC6E15;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    width: 276px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border: 1px solid #fff;
}

.login-card .form-control {
    border: 1px solid #EC6E15;
}

.login-card .form-control::placeholder {
    font-size: 13px;
    opacity: 0.5;
}

.login-card .form-label {
    color: #000;
    font-size: 14px;
}

.login-card .forgot-link {
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #B7B7B7;
}

.login-card .forgot-link a {
    font-weight: 600;
    color: #EC6E15;
}


.login-logo img {
    max-height: 80px;
    margin-right: 6px;
}

.login-logo span {
    font-size: 16px;
    font-weight: 700;
    color: #EC6E15;
    font-family: 'Public Sans', sans-serif;
    margin-top: 20px;
}

.card-all-data {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-all-data .card-title {
    font-size: 24px;
    display: flex;
    flex-direction: column;
}

.card-all-data p {
    font-size: 18px;
}

.card-all-data .footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EC6E15;
    color: #fff;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.card-all-data .footer-btn a {
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.table-user {
    background-color: #EC6E15;
    color: #fff;
}

.page-item .page-link {
    color: #EC6E15;
}

.table-top {
    display: block;
}

.date-filter {
    display: flex;
    width: 600px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.date-filter .form-control {
    width: 30%;
}

.table {
    font-size: 14px;
}

.btn-edit-table {
    border: 1px solid #EC6E15;
    background-color: #EC6E15;
    border-radius: 3px;
    color: #fff;
    float: right;
}

.btn-edit-table:hover {
    border: 1px solid #EC6E15;
    background-color: #EC6E15;
    color: #fff;
}

.upload-file-section {
    display: flex;
    width: 550px;
    justify-content: space-between;
}

.upload-file-section .upload-file {
    width: 80%;
}

.filter-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-section button {
    margin-left: 10px;
}

.filter-section .filter-input {
    width: 50%;
    display: flex;
    align-items: center;
}

.filter-section .filter-input span {
    margin-left: 10px;
    margin-right: 10px;
}

.btn-prime {
    background-color: #c9caff;
    font-weight: 400;
    border: 1px solid #EC6E15;
    color: #EC6E15;
}

/* RESPONSIVE */
@media only screen and (max-width: 600px) {
    body {
        overflow-x: hidden !important;
    }

    .upload-file-section {
        width: 100%;
    }

    .table {
        font-size: 10px;
    }

    .table-filter {
        width: 100%;
    }

    .table-filter .form-select {
        width: 40%;
    }

    .table-filter .form-control {
        width: 58%;
    }

    .date-filter {
        width: 100%;
    }

    .table-body {
        overflow-x: auto;
    }

    .btn-edit-table {
        float: none;
    }

}