* {
    font-family: "Open Sans", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: rgb(86, 100, 112);
}

body,
html {
    height: 100%;
    overflow: hidden;
    background-color: #f1f1f1 !important;
}

#root {
    height: 100%;
    overflow: auto;
}

.cursor-pointer {
    cursor: pointer;
}

form {
    padding: 0;
    margin: 0;
}

input,
select,
textarea {
    font-weight: 500 !important;
}

button {
    font-weight: 500 !important;
}

.custom-loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.70;
    filter: alpha(opacity=60);
    background-color: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8000;
}

.custom-loader {
    position: fixed;
    top: 40%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    background-color: #fff;
    width: 64px;
    height: 64px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    z-index: 8001;
    overflow: auto;
}

.wrapper-shadow {
    position: absolute;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    bottom: 0;
    top: 70px;
    transition: all .5s;
}

.wrapper-shadow-scroll {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: auto;
}

.wrapper-sidebar {
    position: absolute;
    z-index: 10;
    background-color: #fff;
    border-left: 1px solid #ccc;
    right: 0;
    top: 70px;
    bottom: 0;
    transition: all .5s;
    overflow: auto;
}

.wrapper-modal {
    position: absolute;
    z-index: 10;
    background-color: #fff;
    border-left: 1px solid #ccc;
    right: 10%;
    top: 10px;
    left: 10%;
    transition: all .5s;
}

.btn-primary i,
.btn-danger i,
.btn-secondary i {
    color: #fff;
}

.tabcontent-border {
    border: 1px solid #ddd;
    border-top: 0px;
    padding: 20px;
}