#appcontent {
    background-color: #ecf0f1;
}

.body {
    font-family: 'Roboto', sans-serif;
}

.hr-text {
    background-color: transparent;
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: .5;
}

.hr-text.title {
    font-family: -webkit-body;
    font-size: 30px;
    font-style: italic;
}

.hr-text::before {
    content: '';
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text::after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 .5em;
    line-height: 1.5em;
    color: #818078;
    background-color: #fcfcfa;
}

.is-primary-color {
    background: var(--primary) !important;
}

.is-primary-color .modal-card-title {
    color: #fff !important;
}

.width-100 {
    width: 100%;
}

.breadcrumb span {
    color: var(--primary);
}

div.is-gap {
    margin-top: 1.5rem;
}

.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}

button.dt-button {
    border-radius: 290486px !important;
    background-color: white !important;
}

.paginate_button {
    border-color: #dee2e5 !important;
    border-radius: 290486px !important;
}

.paginate_button.current {
    color: #fff !important;
    background: var(--primary);
    border-color: var(--primary);
}

.button.is-rounded.is-table {
    padding-right: 1.25em;
    padding-left: 1.25em;
}

table.cards thead {
    display: none;
}

table.cards tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row;
}

table.cards tbody tr {
    margin: 0.5%;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    /* width: 25%; */

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

table.cards tbody td {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;

    border-right: 0.125rem solid rgba(10, 10, 10, 0.1);
    border-left: 0.125rem solid rgba(10, 10, 10, 0.1);
    border-top: none;
    border-bottom: none;
}

table.cards tbody td:first-child {
    border-top-left-radius: 0.4em;
    border-top-right-radius: 0.4em;
    border-top: 0.125rem solid rgba(10, 10, 10, 0.1);
}

table.cards tbody td:last-child {
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em;
    border-bottom: 0.125rem solid rgba(10, 10, 10, 0.1);
}

table.cards tbody td {
    /* margin: 0; 
    height: 10rem; */
    text-align: -webkit-center;
}

table.cards tbody td img {
    max-height: 75px;
    width: auto;
}

.input:focus,
.input.is-focused,
.input:active,
.input.is-active,
.textarea:focus,
.textarea.is-focused,
.textarea:active,
.textarea.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25);
}

.hr-title-centered {
    display: flex;
    align-items: center;
    text-align: center;
}

.hr-title-centered::before,
.hr-title-centered::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}

.hr-title-centered::before {
    margin-right: .25em;
}

.hr-title-centered::after {
    margin-left: .25em;
}

.dt-buttons {
    padding-bottom: 1rem
}

.dt-button-collection .button {
    display: block;
    width: 100%;
    margin-bottom: .25rem
}

.button-page-length.active {
    background-color: #209cee !important;
    color: #fff;
    border-color: #209cee !important
}

.buttons-columnVisibility.active {
    background-color: #209cee !important;
    color: #fff;
    border-color: #209cee !important
}

table.table tr.is-selected {
    background-color: var(--primary);
}

table.dataTable thead tr:first-child th:first-child {
    border-top-left-radius: 0.4em;
}

table.dataTable thead tr:first-child th:last-child {
    border-top-right-radius: 0.4em;
}

table.dataTable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.4em;
}

table.dataTable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.4em;
}

@media screen and (max-width: 1087px) {

    .navbar .navbar-item:not(.is-active):not(:hover),
    .navbar .navbar-link:not(.is-active):not(:hover) {
        color: #fff;
    }
}

.datatable-content {
    overflow-x: auto;
    width: 100%;
}

.datetimepicker-clear-button{
    display: none !important;
}

.icon.is-right-menu{
    float: right;
    height: 1.25rem;
    width: 1.25rem;
}

.is-dropdown-menu ul{
    display: none;
}
.is-dropdown-menu.is-active > a:hover{
    background-color: var(--primary);
    color: white;
}
.is-dropdown-menu.is-active > a{
    background-color: var(--primary);
    color: white;
}
.is-dropdown-menu.is-active > a span i{
    transform: rotate(90deg);
}
.is-dropdown-menu.is-active ul{
    display: block !important;
    transform: translateY(0);
}