@import './colors.css';
@import './icons.css';
@import './buttons.css';
@import './form.css';
textarea {
    resize: none;
}
html, body {
    height: 100%;
    min-height: 100%;
}
body > #root {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
input:-webkit-autofill {
    -webkit-text-fill-color: #c5c5c5!important;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-loading {
    padding: 20px;
    background: #ccc;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.img-loading-logo {
    width: 100%;
    max-width: 150px;
    margin: auto;
}
.container-loading .title {
    color: #fff;
}
.container-page {
    background-color: #F3F3F3;
    opacity: 0;
    transition: all 0.3s;
    padding-top: 14px;
}
.container-page.show {
    opacity: 1;
    transition: all 0.3s;
}
/**DROPDOWN MENU**/
.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropdown-custom {
    display: inline-block;
}
.dropdown-custom .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-custom .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-custom .dropdown-content a:hover {background-color: #ddd}
.dropdown-custom .dropdown-content.show {display:block;}
.dropdown-custom .dropdown-content li {
    display: block;
}
/**END DROPDOWN MENU**/
.btn {
    border-radius: 0px;
}
.overflow-y-auto {
    overflow-y: auto;
}
.icon-close-sidebar {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: 26px;
}
.icon-close-sidebar::before, .icon-close-sidebar::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 31px;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #Ffff;
    margin: 0 auto;
}
.icon-close-sidebar::before {
    transform: rotate(45deg) translate(13px, -13px);
}
.icon-close-sidebar::after {
    transform: rotate(-45deg) translate(13px, 13px);
}
body.scroll-false {
    overflow: hidden;
}
.rc-pagination-item:hover {
    border-color: var(--primary-color)!important;
}
.rc-pagination-item-active, .rc-pagination-item-active:hover {
    background-color: var(--primary-color)!important;
    border-color: var(--primary-color)!important;
    color: #fff;
}