.file {
    position: relative;
}

.file label {
    background: rgba(0, 0, 0, .7);
    padding: 9px 20px;
    color: #fff;
    font-weight: bold;
    transition: all .4s;
    width: 100%;
    font-size: 27px;
    border: 1px solid #fead00;
    cursor: pointer;
}

.file label:before {
    font-family: FontAwesome;
    content: '\f093';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 60px;
    background: #36bb01;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 30px;
    line-height: 60px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

.file .input {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    opacity: 0.01;
    cursor: pointer;
}

.file .input:hover+label,
.file .input:focus+label {
    background: #34495E;
    color: #39D2B4;
}

.copy {
    margin-top: 2em;
}

.copy a {
    text-decoration: none;
    color: #1ABC9C;
}

.card {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.btn-falcon-default {
    cursor: pointer;
}

.fa-header {
    padding-top: 8px;
    font-size: 16px;
}

.dropdown-toggle::after {
    display: none !important;
}

/* SWAL STYLE */
.swal-modal {
    width: 420px !important;
}

.swal-title {
    padding: 10px 10px !important;
    font-size: 20px !important;
}

.swal-icon {
    width: 60px !important;
    height: 60px !important;
}

.swal-icon--warning__body {
    height: 30px !important;
}

.swal-footer {
     text-align: center !important;
}

.swal-icon--error__line {
    width: 30px !important;
    top: 29px;
}

/* BTN STYLE */
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.grid-menu .btn {
    display: block;
    border: 0;
    min-width: 100%;
}
.btn-transition.btn-outline-link {
    background-color: transparent;
}
.btn {
    position: relative;
    transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn-square {
    border-radius: 0 !important;
}
.btn-transition {
    color: #6c757d;
}
.btn-icon-vertical {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.btn {
    font-size: 0.8rem;
    font-weight: 500;
}
button, .btn {
    outline: none !important;
}
.btn-icon-vertical .btn-icon-wrapper {
    display: block;
    margin: 5px 0;
    opacity: .6;
}
.btn-icon-lg {
    font-size: 2.5rem !important;
}
.card-header {
    background-color: #E9EDF1 !important;
}

/* MODALS STYLE */
.modal.left .modal-dialog,
.modal.right .modal-dialog,
.modal.top .modal-dialog,
.modal.bottom .modal-dialog {
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}


/* Left & Right */

.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 400px;
    max-width: 100%;
    height: 100%;
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 15px 15px 80px;
}

.modal.left.fade .modal-dialog {
    left: -500px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

.modal.right.fade .modal-dialog {
    right: -500px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
    right: 0;
}

.modal.left .modal-content,
.modal.right .modal-content,
.modal.top .modal-content,
.modal.bottom .modal-content,
.modal.full .modal-content {
    border-radius: 0;
    border: none;
}

.modal.left .modal-dialog.modal-sm,
.modal.right .modal-dialog.modal-sm {
    width: 300px;
}

.modal.left .modal-dialog.modal-lg,
.modal.right .modal-dialog.modal-lg {
    width: 800px;
}

.modal.left .modal-dialog.modal-xl,
.modal.right .modal-dialog.modal-xl {
    width: 1140px;
}


/* Top and Bottom */

.modal.top .modal-dialog,
.modal.bottom .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.modal.top .modal-content,
.modal.bottom .modal-content {
    height: auto;
    overflow-y: auto;
}

.modal.top .modal-body,
.modal.bottom .modal-body {
    padding: 15px 15px;
}


/* Top */

.modal.top.fade .modal-dialog {
    top: -100%;
    -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
    -o-transition: opacity 0.3s linear, top 0.3s ease-out;
    transition: opacity 0.3s linear, top 0.3s ease-out;
}

.modal.top.fade.show .modal-dialog {
    top: 0;
}


/* Bottom */

.modal.bottom.fade .modal-dialog {
    bottom: -100%;
    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.bottom.fade.show .modal-dialog {
    bottom: 0;
}

.modal.bottom.fade .modal-dialog {
    bottom: -100%;
}


/* Full Screen */

.modal.full .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.modal.full .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.full .close-modal {
    position: fixed;
    top: 0;
    right: 3rem;
}


/* Footer */

.modal-footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 0;
}
