@import url(animate.css);
* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'HP Simplified';
    font-weight: normal;
    font-size: 16px;
    color: #7e7e7e;
    /*line-height: 1.4px;*/
    background-color: #eeeeee;
    overflow-y: visible !important;
}

@font-face {
    font-family: 'HP Simplified';
    src: url('../fonts/HPSimplified-Bold.woff2') format('woff2'), url('../fonts/HPSimplified-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HP Simplified';
    src: url('../fonts/HPSimplified-Regular.woff2') format('woff2'), url('../fonts/HPSimplified-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

input:hover,
input:focus,
input:active,
textarea:hover,
textarea:active,
textarea:focus,
select:hover,
select:focus,
select:active {
    outline: 0;
}

.wrapper {
    margin: 0px 31px 0px 31px;
    padding-top: 60px;
}

.wrapper-all {
    margin: 30px 31px 0px 31px;
    padding-top: 60px;
}

.white-wrapper {
    background-color: #fff;
    padding: 40px 30px 30px 30px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

body table th {
    line-height: 24px;
}

body .table td {
    vertical-align: middle;
}


/*=== START LOADER ===*/

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0096D6;
    z-index: 99999;
}

.dots .dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 10px 0 10px;
    border-radius: 50%;
    background: #FFF;
    -webkit-animation: dot-dot-dot 1.4s linear infinite;
    animation: dot-dot-dot 1.4s linear infinite;
}

.loader_img {
    width: 100%;
}

.dots img {
    display: inline-block;
    margin-bottom: 30px;
    width: 70px;
}

.dots {
    text-align: center;
}

.dots .dot:nth-child(3) {
    animation-delay: .0s;
}

.dots .dot:nth-child(4) {
    animation-delay: .2s;
}

.dots .dot:nth-child(5) {
    animation-delay: .4s;
}

@keyframes dot-dot-dot {
    0%,
    60%,
    100% {
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
    }
    30% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}


/*=== END ===*/


/*Header Css Start*/

.has-search .form-control {
    padding-left: 2.375rem;
    font-size: 14px;
    width: 150px;
    transition: all 0.5s ease;
}

main {
    padding-left: 265px;
}

.has-search .form-control:hover,
.has-search .form-control:focus {
    outline: 0px;
    box-shadow: none;
}

.has-search .form-control:focus,
.has-search .form-control:active {
    border: 1px solid #0096d6;
    width: 250px;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.28rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.header-user {
    position: relative;
}

.profile_btn {
    position: relative;
}

.header-user p,
.profile_btn p {
    display: inline-block;
    font-size: 14px;
    margin-left: 7px;
    color: #000000;
}

.profile_btn {
    background: none;
}

.profile_btn:focus,
.profile_btn:active,
.profile_btn:hover {
    outline: 0;
    box-shadow: none;
}

.profile-dropdown {
    border: 0;
    box-shadow: 0 0.5rem 0 0.2rem rgba(200, 200, 200, .25);
    padding: 0;
}

.profile-dropdown a.dropdown-item {
    line-height: auto;
    padding: 15px;
}

.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 1px 2px 2px #f2f2f2;
}

.header-wrapper ul li {
    border-right: 1px solid #c9c9c9;
    margin: 0px 5px;
}

.header-wrapper ul li a {
    font-size: 14px;
    padding: 5px 15px 5px 5px !important;
    color: #000;
}

.header-wrapper ul li:last-child {
    border-right: none;
}

.header-wrapper ul li a img {
    height: 28px;
    margin-right: 8px;
}

.user-pic {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    margin: 0px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.header-user figure.user-pic img {
    max-width: 100%;
    min-height: 100%;
    vertical-align: top;
}


/*Header Css End*/


/*Sidebar Css Start*/

#sidebar {
    min-width: 240px;
    max-width: 240px;
    background: #ffffff;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
    left: 30px;
    top: 90px;
    height: calc(100% - 60px);
    z-index: 14;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 25px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px 20px;
    font-size: 15px;
    display: block;
    text-decoration: none;
    color: #000;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#sidebar ul li a:hover {
    color: #3b9ed8;
    background: #fff;
}

#sidebar ul li a:focus {
    background: #fff;
    color: #3b9ed8;
}

#sidebar ul li.active>a,
#sidebar a[aria-expanded="true"] {
    color: #000;
}

#sidebar ul li.active>a,
#sidebar ul li:hover>a {
    /* background-image: linear-gradient(-90deg, #ffffff, #3b9ed8); */
    color: #fff;
    width: 100%;
}

#sidebar ul li:hover li a {
    color: #000;
}

#sidebar ul li:hover li:hover a {
    color: #3b9ed8;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../images/down-arrow.png') no-repeat;
    height: 10px;
    width: 25px;
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #ffffff;
}

#sidebar ul.CTAs {
    padding: 20px;
}

#sidebar ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar a.download {
    background: #fff;
    color: #000;
}

#sidebar a.article,
#sidebar a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}


/*Sidebar Css End*/


/*Login Page Css Start*/

.login-wrapper {
    margin: 60px 0px;
}

.login-wrapper .login-box {
    width: 100%;
    max-width: 350px;
    background-color: #ffffff;
    padding: 40px;
    overflow: hidden;
    box-shadow: -1px 3px 5px #ccc;
}

.login-box h2 {
    font-family: 'HP Simplified';
    font-weight: normal;
    color: #000000;
    font-size: 36px;
}

.login-box h5 {
    font-family: 'HP Simplified';
    font-weight: bold;
    color: #7e7e7e;
    font-size: 16px;
    line-height: 21px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.login-label {
    font-family: 'HP Simplified';
    font-weight: normal;
    color: #7e7e7e;
    font-size: 15px;
}

.login-box input:focus {
    box-shadow: none;
    outline: 0;
    border-color: #0096D6;
}

.custom-input {
    width: 100%;
    max-width: 80%;
    border: 2px solid #c9c9c9;
    border-radius: 7px;
    height: 35px;
}

.custom-input .login-box p {
    font-family: 'HP Simplified';
    font-weight: normal;
    color: #7e7e7e;
    font-size: 15px;
    margin-bottom: 20px;
}

.login-box p a {
    text-decoration: none;
    color: #7e7e7e;
}

.login-btn,
.cancel-btn2 {
    background-color: #ba4317;
    color: #fff;
    padding: 7px 20px;
    font-family: 'HP Simplified';
    font-weight: bold;
    border-radius: 0px 5px 0px 5px;
    margin-top: 15px;
}

.login-btn:focus,
.cancel-btn2:focus {
    outline: 0;
    box-shadow: none;
}

.cancel-btn2 {
    color: #000;
    background: #ccc;
    margin-left: 10px;
}

textarea {
    resize: none;
}


/*Login Page Css End*/


/*Dashboard Css Start*/

.dashboard-main {
    background-color: #fff;
    padding: 50px 30px;
    width: 100%;
    overflow: hidden;
}

.counter-box-main {
    background-color: #fff;
    border: 2px solid #c9c9c9;
    transition: border-width 0.6s linear;
    display: block;
    padding: 20px;
    position: relative;
}

.counter-box a {
    color: #000;
    text-decoration: none;
    color: #7e7e7e;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.counter-box a:hover,
.counter-box a:focus {
    border: 2px solid #c9c9c9;
    /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25); */
}

.counter-box a:hover h4,
.counter-box a:focus h4 {
    color: #5d94d2;
}

.counter-box-main h4 {
    margin-bottom: 10px;
    font-size: 26px;
}

.counter-box-main p {
    margin-top: 15px;
    font-size: 15px;
    color: #000;
}


/*Line chart css start*/

.line-chart-main {
    margin: 20px 0px;
}

#linechart {
    width: 100%;
    height: 300px;
    margin: 0 auto
}


/*Line chart css end*/


/*Tab pills css start*/

.status-pills {
    overflow: hidden;
}

.status-pills .nav-link {
    padding: 15px;
    font-size: 14px;
    text-align: center;
}

.status-pills .nav-tabs .nav-item {
    flex: auto;
}

.status-pills .nav-tabs,
.status-pills .nav-tabs:hover {
    border-bottom: none;
}

.status-pills .nav-tabs .nav-link {
    border: none;
    border-right: 1px solid #c9c9c9;
    border-radius: 0px;
    color: #000;
}

.status-pills .nav-tabs .nav-link.active {
    background-color: #f4f4f4;
    border-radius: 0px;
    border-right: 0px;
    color: #629ee9;
}

#myTabContent {
    background: #f4f4f4;
    padding: 20px;
}

.status-pills .tab-content {
    line-height: 24px;
}

#myTabContent table td {
    padding: 10px;
    font-size: 14px;
}

#myTabContent table td a img {
    height: 5px;
}


/*Tab pills css end*/


/*Alert css start*/

.alert-main {
    border: 1px solid #c9c9c9;
    padding: 18px 25px 40px 25px;
}

.alert-main p {
    font-size: 14px;
    color: #000;
    margin-bottom: 45px;
}

.alert-main h5 {
    font-size: 14px;
    color: #7e7e7e;
    margin-bottom: 17px;
}


/*Alert css end*/


/*Dashboard Css End*/


/*Article Section Start*/

.article-search {
    background-color: #fff;
    padding: 40px 30px 30px 30px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 3px 3px #ccc;
}

.serch-article-wrapper h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
}

.article-serch-box .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.1rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.article-serch-box .form-control {
    padding-left: 2.375rem;
    font-size: 14px;
}

.article-serch-box .form-control:hover,
.article-serch-box .form-control:focus {
    outline: 0px;
    box-shadow: none;
}

.article-serch-box {
    width: 100%;
    max-width: 88%;
    display: inline-block;
}

.serch-article-wrapper .search-btn {
    width: 100%;
    /* max-width: 10%; */
    display: inline-block;
    font-size: 14px;
    background-color: #5d94d2;
    color: #fff;
    border-radius: 6px;
}

.serch-article-wrapper .search-btn:hover,
.serch-article-wrapper .search-btn:focus {
    outline: 0px;
    box-shadow: none;
}

.article-box-wrapper {
    width: 100%;
    margin: 40px 0px;
}

.article-box-inner {
    position: relative;
    background-color: #fff;
    padding: 25px;
    box-shadow: 0px 4px 3px #ccc;
    height: 100%;
    min-height: 200px;
    display: block;
    border: 2px solid #fff;
    text-decoration: none;
}

.article-box-inner h3 {
    color: #595959;
    font-size: 18px;
    margin-bottom: 15px;
}

.article-box-inner p {
    color: #595959;
    font-size: 16px;
    margin-bottom: 15px;
}

.article-content {
    transform: translate(0px, 40px);
}

.view-text {
    position: absolute;
    right: 30px;
    bottom: 25px;
    font-size: 14px;
    color: #595959;
    text-decoration: none;
}

.view-text:hover {
    text-decoration: none;
}

.view-text img {
    margin-left: 8px;
}

.article-box-inner:hover {
    text-decoration: none;
}

.article-box-inner:focus {
    border: 2px solid #5081c8;
    text-decoration: none;
}

.article-box-inner:hover h3,
.article-box-inner:focus h3 {
    color: #5081c8;
}

.article-box-inner:hover p,
.article-box-inner:focus p {
    color: #000;
}

.article-box-inner:hover span,
.article-box-inner:focus span {
    color: #5081c8;
}


/*Article Section End*/


/*Create Article Css Start*/

.top-title {
    font-size: 20px;
    color: #000;
    margin-top: 5px;
}

.top-title img {
    height: 20px;
    vertical-align: text-top;
    margin-right: 5px;
}

.mydatepicker {
    width: 100%;
    max-width: 120px;
    display: inline-block;
}

.date-formate p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #000;
    margin-right: 5px;
    transform: translate(0px, 10px);
}

.date-formate span img {
    height: 20px;
    margin-right: 5px;
}

.date-formate input {
    border-radius: 4px !important;
}

.preview-btn {
    display: inline-block;
    font-size: 14px;
    background-color: #a4a3a8;
    color: #fff;
    border-radius: 6px;
    margin-left: 10px;
}

.date-formate input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    font-size: 14px;
    text-align: center;
}

.date-formate input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
    font-size: 14px;
    text-align: center;
}

.date-formate input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
    font-size: 14px;
    text-align: center;
}

.date-formate input:hover,
.date-formate input:focus {
    outline: 0;
    box-shadow: none;
}

.create-art-search {
    width: 100%;
    display: inline-block;
}

.create-art-search .form-control {
    padding-left: 2.375rem;
    font-size: 14px;
}

.create-art-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.1rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.create-art-search .form-control:hover,
.create-art-search .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.search-cat-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    display: inline-table;
}

.select-category {
    margin-top: 5px;
}

.select-category .sel-cat-title {
    font-size: 15px;
    color: #000;
    margin-bottom: 30px;
}

.category-check label {
    vertical-align: text-bottom;
    font-size: 14px;
    color: #000;
}

.custom-control {
    display: inline-block;
}

.custom-control-label::before {
    top: 0;
    border: 1px solid #a4a4a4;
    border-radius: 4px;
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #5d94d2;
    outline: 0;
    box-shadow: none;
}

.custom-control-label::after {
    top: 0;
    outline: 0;
    box-shadow: none;
}

.add-title {
    margin-bottom: 5px;
}

.add-title-input {
    font-size: 14px;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.add-title-input:hover,
.add-title-input:focus {
    outline: 0;
    box-shadow: none;
}

.add-title input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    font-size: 14px;
}

.add-title input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
    font-size: 14px;
}

.add-title input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
    font-size: 14px;
}

.add-title-input:focus {
    border-color: #80bdff;
}

.create-content-wrapper {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin-bottom: 5px;
}

.create-content-wrapper p {
    font-size: 14px;
    color: #000;
}

.summary-content textarea::placeholder,
.summary-content textarea::placeholder,
.summary-content textareas::placeholder {
    color: #000;
    font-size: 14px;
}

.summary-content textarea:hover,
.summary-content textarea:focus {
    outline: 0;
    box-shadow: none;
}

.tag-main .bootstrap-tagsinput {
    height: 134px;
}

.tag-main .bootstrap-tagsinput .badge {
    margin: 2px 2px;
    padding: 7px 9px;
}

.tag-main .badge-info {
    color: #fff;
    background-color: #5d94d2;
    font-size: 14px;
    font-weight: normal;
}

.tag-main p {
    font-size: 14px;
    color: #000;
}

.tag-inner ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.tag-inner ul li {
    display: inline-block;
    margin-bottom: 10px;
}

.tag-inner ul li a {
    background-color: #a5a5a5;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
}

.tag-inner ul li a:hover,
.tag-inner ul li a:focus {
    background-color: #5d94d2;
}

.image-upload {
    width: 100%;
    height: 150px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    background: #f4f4f4;
    color: #666;
    overflow: hidden
}

.item-wrapper form img {
    margin-bottom: 20px;
    width: auto;
    height: auto;
    max-height: 400px;
    width: auto;
    border-radius: 5px;
    overflow: hidden
}

.image-upload img {
    height: 100% !important;
    width: auto !important;
    border-radius: 0px;
    margin: 0 auto;
}

.image-upload i {
    font-size: 6em;
    color: #ccc
}

.image-upload label {
    color: #000;
}

.dplay-tbl-cell h6 {
    font-size: 14px;
}

.image-upload input {
    cursor: pointer;
    opacity: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0
}

.item-wrapper input {
    height: 100%;
    line-height: 43px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px
}

.attachment-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.attachment-button img {
    margin-bottom: 0px !important;
    height: 18px !important;
}

.attachment-button ul li {
    display: inline-block;
}

.attachment-button ul li a {
    background-color: #b3b3b3;
    height: 50px;
    width: 50px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    font-size: 10px;
    color: #fff;
    padding-top: 8px;
}

.attachment-button input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.bottom-button {
    float: right;
    margin-top: 15px;
}

.blue-btn {
    display: inline-block;
    font-size: 14px;
    background-color: #5d94d2;
    color: #fff !important;
    border-radius: 6px;
    margin-left: 10px;
    padding: .375rem 1.5rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.gray-btn {
    padding: .375rem 1.5rem;
    display: inline-block;
    font-size: 14px;
    background-color: #a4a3a8;
    color: #fff;
    border-radius: 6px;
    margin-left: 10px;
}

.select2-mian-class .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 4px;
    padding: 10px 7px;
    font-size: 14px;
}

.select2-results__option {
    padding: 12px !important;
    font-size: 14px;
}

.select2-mian-class .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5d94d2;
    color: #ffffff;
    border: 1px solid #5d94d2;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
}


/*Create Article Css End*/


/*My Article Css Start*/

.my-article-pills .nav-tabs {
    border-bottom: 0px;
    margin-top: 8px;
}

.my-search {
    float: right;
    width: 100%;
    max-width: 180px;
}

.my-article-pills .nav-tabs .nav-link {
    border: none;
    font-size: 14px;
    color: #000;
}

.my-article-pills li {
    border-right: 1px solid #a4a4a4;
}

.my-article-pills li:last-child {
    border-right: 0px;
}

.my-article-pills .nav-tabs .nav-link.active,
.my-article-pills .nav-tabs .nav-link:hover,
.my-article-pills .nav-tabs .nav-link:focus {
    color: #5d94d2;
}

.my-article-pills table {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 0px 0px;
}

.my-article-pills table th {
    border-bottom: 1px solid #000 !important;
}

.my-article-pills table th,
.my-article-pills table td {
    border: none;
    color: #000;
    font-size: 14px;
    padding: 10px;
}

.my-article-pills .custom-control-label::before,
.my-article-pills .custom-control-label::after {
    top: 5px;
}

.cal-event {
    height: 20px;
}

.action-icon a {
    color: #000;
    font-size: 18px;
    margin-right: 10px;
}

.page-item.disabled .page-link {
    color: #000;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #a4a4a4;
    font-size: 14px;
}

.paginate_button.next a {
    /* border-left: 0 !important; */
}

.paginate_button.previous a {
    border-right: 0 !important;
}

.page-link {
    font-size: 12px;
    color: #000;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 14px;
    border-color: #a4a4a4;
}

.page-item.active .page-link {
    background-color: transparent;
    color: #000;
    border-color: #a4a4a4;
}

.page-item .page-link:hover {
    background: #0096D6;
    color: #fff;
}


/*My Article Css End*/


/*Article Categories Css Start*/

.article-category table {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 0px 0px;
}

.article-category table th {
    border-bottom: 1px solid #000 !important;
}

.article-category table th,
.article-category table td {
    border: none;
    color: #000;
    font-size: 14px;
    padding: 10px;
    line-height: 24px;
}

.article-category .article-cat-search {
    float: right;
    position: absolute;
    right: 15px;
    top: -1px;
    z-index: 111;
}

.article-category .custom-control-label::before,
.article-category .custom-control-label::after {
    top: 5px;
}

.add-categories-btn {
    width: 100%;
    max-width: 200px;
}

.modal-content {
    border-radius: 0px;
}

.modal-header {
    border-bottom: 0px;
    margin-bottom: 3%;
}

.modal-body {
    margin-bottom: 5%;
}

.modal-body p {
    font-size: 14px;
    text-align: center;
    color: #000;
    margin-bottom: 50px;
}

.modal-footer {
    border-top: 0px;
    justify-content: center;
    padding-bottom: 40px;
}

.modal-footer>:not(:last-child) {
    margin-right: 15px;
    padding: .375rem 1.5rem;
}

.modal-footer>:not(:first-child) {
    margin-left: 15px;
    padding: .375rem 1.5rem;
}

.modal-footer>:not(:last-child):focus,
.modal-footer>:not(:first-child):focus {
    outline: 0px;
    box-shadow: none;
}

.modal-title {
    font-size: 16px;
    color: #000;
    text-align: center;
    display: block;
    width: 100%;
}

.modal-header .close {
    padding: 0px;
    margin: 0px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.modal-header .close:focus {
    outline: 0px;
}

.modal-dialog {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50px;
    margin: 0 auto;
}

.cate-label {
    font-size: 14px;
    color: #000;
}

#add-article-cat-modal input:focus,
#edit-article-cat-modal input:focus,
#delete-article-cat-modal input:focus {
    outline: 0;
    box-shadow: none;
}

#add-article-cat-modal input::placeholder,
#edit-article-cat-modal input::placeholder,
#delete-article-cat-modal input::placeholder {
    color: #000;
    font-size: 14px;
}

#add-article-cat-modal input:-ms-input-placeholder,
#edit-article-cat-modal input:-ms-input-placeholder,
#delete-article-cat-modal input:-ms-input-placeholder {
    color: #000;
    font-size: 14px;
}

#add-article-cat-modal input::-ms-input-placeholder,
#edit-article-cat-modal input::-ms-input-placeholder,
#delete-article-cat-modal input::-ms-input-placeholder {
    color: #000;
    font-size: 14px;
}

#delete-article-cat-modal select {
    width: 100%;
    max-width: 230px;
    display: block;
    margin: 0 auto;
    height: 38px;
    border-radius: 8px;
    padding: 6px;
}

#delete-article-cat-modal select group {
    padding: 10px;
}

#delete-article-cat-modal select:focus {
    outline: 0;
    box-shadow: none;
}


/*Article Categories Css End*/


/*Add User Css Start*/

.add-user-main label {
    font-size: 16px;
}

.user-select-checkbox label {
    font-size: 12px;
}

.user-select-checkbox .custom-control-label::after {
    top: 0;
}

.user-select-checkbox .sel-cat-title {
    font-size: 16px;
    margin-top: 20px;
}

.other-info {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin-bottom: 5px;
}

.other-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
}

.other-info-content p {
    font-size: 12px;
    color: #495057;
}

.upload-photo-wrapper {
    position: absolute;
    right: 30px;
    top: -55px;
}

.picture-container {
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.picture-container h6 {
    font-size: 14px;
    color: #000;
}

.picture {
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    margin-bottom: 20px;
}

.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src {
    width: 100%;
    object-fit: cover;
    height: 100%;
}


/*Add User Css End*/


/*Manage User Css Start*/

.switch input {
    display: none;
}

.switch {
    display: inline-block;
    width: 40px;
    height: 20px;
    transform: translateY(15%);
    position: relative;
}

.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #a4a4a4;
    overflow: hidden;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: #5d94d2;
    border-radius: 50%;
    transform: translate(3px, 3px);
    transition: .4s;
}

input:checked+.slider:before {
    transform: translate(23px, 3px);
    background: #a4a4a4;
}

.manage-user-body label {
    margin: 0px;
}


/*Manage User Css End*/


/*Notification Css Start*/

.notification-wrapper {
    padding: 20px;
}

.notification-wrapper .custom-select {
    width: 100%;
    max-width: 7%;
}

.notification-wrapper label {
    display: inline;
}

.notification-title {
    margin: 24px 0px;
}

.latest-not-title {
    color: #000;
    font-size: 16px;
    line-height: 1.45454545;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.mark-all-as-read {
    font-size: 16px;
    color: #000;
    margin-left: auto;
    text-transform: none;
}

.mark-all-as-read:hover,
.mark-all-as-read:focus {
    text-decoration: none;
    color: #000;
}

.notification-list {
    margin-right: 0;
    margin-top: 8px;
    margin-left: 0;
    padding: 0;
}

.notification-list li {
    list-style-type: none;
    border: none;
    padding: 10px 0;
}

.notification-list li .media {
    padding-left: 10px;
}

.notification-list .list-group-item {
    border: none;
    padding: 0px;
}

.notification-list .media {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.notification-list li .media figure {
    margin: 0;
    position: relative;
}

.notification-list .avatar-40 {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.notification-list .avatar img {
    width: 100%;
    min-height: 100%;
    vertical-align: top;
    border-radius: 50%;
}

.notification-list li .media .media-body {
    flex: none;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.6em;
    max-width: 75%;
    min-width: 75%;
    background-color: #f4f4f4;
    border-radius: 6px;
    color: #000;
}

.notification-date-days {
    color: #000;
    font-size: 16px;
    line-height: 1.45454545;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.notification-date-days span {
    font-size: 12px;
}

.notification-list .custom-control {
    position: absolute;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1;
}

.notification-list a:hover {
    background-color: transparent;
}

.notification-list .custom-control-label::after {
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
}

.notification-list .custom-control-label::before {
    height: 18px;
    width: 18px;
}

.notification-list .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url(../images/dot-radio.svg);
}

.notification-list .custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: transparent;
}


/*Notification Css End*/


/*View Article Css Start*/

.view-article-content {
    margin-top: 20px;
}

.view-article-detail h2 {
    font-size: 24px;
    color: #000;
}

.view-article-content select {
    margin: 0 auto;
    height: 38px;
    border-radius: 8px;
    padding: 6px;
}

.advance-search-filter .filer_select {
    width: 20%;
    float: left;
    padding: 0 7.5px;
}

.advance-search-filter {
    display: none;
}

.advance-search-filter.show {
    display: block;
}

.advance-search-filter .filer_select select,
.advance-search-filter .filer_select input {
    width: 100%;
}

.view-article-detail h6 {
    color: #000;
    font-size: 13px;
    margin-bottom: 5px;
}

.view-article-detail p {
    color: #000;
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 22px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.view-article-tag {
    margin-bottom: 12px;
}

.view-article-tag p {
    color: #000;
    font-size: 13px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.view-article-tag ul {
    padding: 0px;
    margin-top: 7px;
    list-style-type: none;
    margin-bottom: 10px;
}

.view-article-tag ul li {
    display: inline-block;
    border-right: 1px solid #7e7e7e;
    padding: 2px;
}

.view-article-tag ul li:last-child {
    border-right: 0px;
}

.view-article-tag ul li a {
    font-size: 13px;
    color: #7e7e7e;
    float: left;
    padding: 5px;
}

.view-article-tag ul li a:hover,
.view-article-tag ul li a:focus {
    text-decoration: none;
    color: #0096D6;
}

.view-article-upload {
    position: relative;
}

.view-article-upload ul {
    margin-bottom: 0px;
}

.preview-image-main {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.preview-img-inner {
    height: 100%;
    width: 100%;
    max-width: 700px;
    margin-bottom: 20px;
}

.preview-img-inner a {
    display: inline-block;
    padding: 0;
    margin-bottom: 10px;
}

.thumbnail_wrap {
    display: inline-block;
    position: relative;
}

.thumbnail_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attachments_actions {
    margin-bottom: 30px;
    font-size: 13px;
    color: #7e7e7e;
    margin-top: 20px;
}

.attachments_actions a {
    display: inline-block;
    color: #7e7e7e;
}

.discussion-title h5 {
    font-size: 16px;
    color: #000;
}

.discussion-title ul {
    margin-bottom: 0px;
    list-style: none;
}

.discussion-title ul li {
    display: inline-block;
    margin-left: 10px;
}

.discussion-title ul li a {
    color: #000;
}

.coment-user-main {
    position: relative
}

.coment-user-main .round {
    line-height: 48px;
    color: #fff;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
}

.coment-user-main .round img {
    border-radius: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.coment-user-main .comment-text {
    padding: 14px 15px 14px 20px;
    width: 100%;
    max-width: 80%;
    background-color: #f4f4f4;
    border-radius: 6px;
}

.coment-user-main .font-medium {
    font-size: 18px;
    color: #000;
}

.coment-user-main .comment-text p {
    max-height: 65px;
    width: 100%;
    overflow: hidden;
    color: #000;
    font-size: 13px;
}

.comment-footer span {
    font-size: 12px;
    color: #7e7e7e;
    line-height: 18px;
}

.audit-log-main {
    display: inline-block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin-bottom: 5px;
}

.audit-log-main p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
    margin-top: 0px;
}

.audit-log-main h6 {
    display: inline;
    font-size: 12px;
}

.audit-inner {
    margin: 0px;
}

.all-file-main-icon {
    width: 100%;
}

.file-box {
    width: 25%;
    max-width: 250px;
    min-width: 250px;
    padding: 15px;
    float: left;
    text-align: center;
}

.file-box a {
    display: block;
    text-decoration: none;
}

.file-box h5 {
    color: #000;
    font-size: 16px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px;
    max-height: 32px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.file-box p {
    color: #a4a4a4;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px;
    max-height: 32px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inner-file-box {
    border: 1px solid #ced4da;
    padding: 10px;
    display: block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.inner-file-box:hover,
.inner-file-box:focus,
.inner-file-box:active {
    border: 1px solid #ccc;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 10px;
    display: block;
}

.inner-file-box img {
    height: 80px;
    margin: 10px;
}

.btn-success {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    padding: .375rem 1.3rem;
    outline: 0;
    box-shadow: none;
}

.btn-success:focus {
    outline: 0;
    box-shadow: none;
}


/*View Article Css End*/


/*Advance Search Css Start*/

.advance-search-link a {
    text-align: center;
    text-decoration: underline;
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #5d94d2;
}

.advance-search-main h2 {
    font-size: 18px;
    color: #000;
    display: table;
    background: #fff;
    padding: 10px;
    /*z-index: 9999;*/
    position: relative;
    margin-left: 10px;
}

.advance-search-filter,
.search_artical_box {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    margin-bottom: 25px;
    margin-top: -28px;
    padding-top: 30px;
}

.advance-search-filter h5 {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.advance-search-filter select {
    margin-right: 5px;
    margin-bottom: 10px;
}

.view-article-content input {
    margin: 0 auto;
    height: 38px;
    border-radius: 8px;
    padding: 6px;
    margin-right: 5px;
    margin-bottom: 10px;
    border: 1px solid rgb(169, 169, 169);
    ;
}

.article-title h2 {
    font-size: 18px;
    color: #000;
}

.article-main-title h4 {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
}


/*.search_artical_box*/

.search_artical_box {
    margin-top: 0;
    position: relative;
}

.advance-search-main h2.search_box_title {
    background: #fff;
    padding: 10px;
    display: table;
    margin-top: -49px;
    margin-left: -2px;
    font-size: 16px;
    color: #3b9ed8;
}

.inner_artical_box h2 {
    opacity: 0.8;
}

.inner_artical_box .inner-file-box {
    border: 0;
    outline: 0;
    padding: 30px 15px;
    text-decoration: none;
}

.artical_title {
    color: #000;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inner_artical_box .inner-file-box h5 {
    font-size: 15px;
    color: #666;
}

.inner_artical_box .inner-file-box p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.inner_artical_box {
    height: 200px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0px 3px 3px #ccc;
    background: #fff;
}

.attached-file-wrapper {
    position: absolute;
    left: 16px;
    bottom: 15px;
    zoom: 1;
}

.attached-file-wrapper .file-avatar {
    margin: 0 2px 2px 0 !important;
    padding: 0;
    border: 0;
    float: left;
    width: 40px;
    height: 40px;
}

.attached-file-wrapper img.file-avatar {
    border-radius: 100px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.search_artical_box .col-sm-6 {
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.search_artical_box .col-sm-6:nth-child(3n) {
    border-right: 0;
}


/*Css added by aiyub*/

table.dataTable tbody tr.selected {
    background: transparent !important;
}

#accordion .card-header {
    background: linear-gradient(-90deg, #ffffff, #3b9ed8);
    border-radius: 0 !important;
    border-top: 0;
}

#accordion .card {
    border-top: 0;
    border-bottom: 3px solid #fff;
}

#accordion .btn-link {
    color: #fff;
    outline: none;
}

#accordion .btn-link:hover,
#accordion .btn-link:focus,
#accordion .btn-link:active {
    text-decoration: none;
}


/*=== Advance Search Css End ===*/

.inner_artical_box:hover,
.inner_artical_box:focus,
.inner_artical_box:active {
    box-shadow: 0px 3px 10px #999;
}

.inner_artical_box .attached-file-wrapper img.file-avatar:hover {
    transform: scale(1.3);
}


/*=== END ===*/


/*=== Hover and Animation css ===*/


/*UX Effect*/

.hp-btn-effect,
.blue-btn-effect,
.gray-btn-effect {
    display: inline-block;
    background: #ba4317;
    border-radius: 0px 5px 0px 5px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin-left: 0 !important;
}

.blue-btn-effect {
    background: #5d94d2;
    border-radius: 6px;
}

.gray-btn-effect {
    background: #a4a3a8;
    border-radius: 6px;
}

.gray-btn-effect .gray-btn {
    margin: 0;
}

.blue-btn-effect.add-categories-btn {
    max-width: 200px;
    width: 100%;
}

.hp-btn-effect .login-btn,
.blue-btn-effect .blue-btn,
.gray-btn-effect .gray-btn {
    background: transparent;
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    color: #fff;
    margin-left: 0;
}

.text_btn {
    position: relative;
    z-index: 9;
}

.transition_btn {
    background: #0096D6;
    position: absolute;
    top: 0%;
    left: -100%;
    width: 50%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
}

.blue-btn-effect .transition_btn {
    background: #ba4317;
}

.gray-btn-effect .transition_btn {
    background: #666;
}

.hp-btn-effect:hover .transition_btn,
.blue-btn-effect:hover .transition_btn,
.gray-btn-effect:hover .transition_btn {
    top: 0;
    left: -100px;
    width: 250%;
}

.effect_box {
    position: relative;
}

span.box_b_top,
span.box_b_bottom,
span.box_b_left,
span.box_b_right {
    position: absolute;
    display: block;
    background: #0096D6;
    transition: all 0.125s linear;
}

span.box_b_top,
span.box_b_bottom {
    width: calc(100% + 2px);
    height: 3px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

span.box_b_left,
span.box_b_right {
    width: 3px;
    height: calc(100% + 2px);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

span.box_b_top {
    top: -2px;
    left: 0;
    transition-delay: 0.375s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

span.box_b_right {
    top: 0;
    right: -2px;
    transition-delay: 0.25s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

span.box_b_bottom {
    bottom: -2px;
    right: 0;
    transition-delay: 0.125s;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

span.box_b_left {
    top: -2px;
    left: -2px;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.effect_box:hover .box_b_top {
    transition-delay: 0s;
}

.effect_box:hover .box_b_right {
    transition-delay: 0.125s;
}

.effect_box:hover .box_b_bottom {
    transition-delay: 0.25s;
}

.effect_box:hover .box_b_left {
    transition-delay: 0.375s;
}

.effect_box:hover .box_b_top,
.effect_box:hover .box_b_bottom {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.effect_box:hover .box_b_left,
.effect_box:hover .box_b_right {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.menu_gradient {
    position: absolute;
    width: 0%;
    background-image: linear-gradient(-90deg, #ffffff, #3b9ed8);
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#sidebar ul li.active .menu_gradient,
#sidebar ul li:hover .menu_gradient {
    position: absolute;
    width: 100%;
    background-image: linear-gradient(-90deg, #ffffff, #3b9ed8);
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.menutext {
    position: relative;
    z-index: 9;
}

.dataTable tr td:last-child a {
    color: #000;
}


/*end UX Effect*/


/*Comment Animation Start*/

.new-comment {
    -webkit-animation-name: comment-slide;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s;
    /* Safari 4.0 - 8.0 */
    animation-name: comment-slide;
    animation-duration: 0.5s;
}

@keyframes comment-slide {
    0% {
        opacity: 0;
        position: absolute;
        left: 100%;
        width: 100%
    }
    100% {
        opacity: 1;
        position: relative;
        left: 0%;
        width: 100%
    }
}


/*Comment Animation End*/

@media(max-width:767px) {
    .form-inline .form-group {
        margin-bottom: 0px;
    }
    #sidebar {
        display: none;
    }
    main {
        padding-left: 0px;
    }
}

.counter {
    position: relative;
    top: -10px;
    left: auto;
    z-index: 2;
    padding: 1px 7px;
    font-size: 12px;
    color: #fff;
    background-color: #fe1212;
    border-radius: 10em;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d
}

.has-success .form-control-feedback {
    color: #3c763d
}

.refresh-block {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    -webkit-transition: all .05s ease;
    transition: all .05s ease;
    top: 0px;
    left: 0px;
    position: absolute;
    z-index: 1000;
    border-radius: 2px;
}

.refresh-block .refresh-loader {
    display: inline-block;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
}

small.error {
    color: #f00;
}

.file-input.theme-fas.file-input-ajax-new {
    position: relative;
}

.input-group.file-caption-main,
.input-group.file-caption-main .btn.btn-primary.btn-file {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 99;
    top: 6px;
}

.file-preview-thumbnails .file-upload-indicator,
.file-preview-thumbnails .file-actions {
    display: none;
}

.krajee-default.file-preview-frame .file-thumbnail-footer {
    max-height: 45px;
}

.document_priview .modal-body {
    height: 500px;
}

body.modal-open {
    position: fixed;
}

.modal-xl {
    max-width: 1400px;
}