.table-btn {
    margin-right: 5px
}
.btn-hidden {
    visibility: hidden;
}
.btn-wide {
    width: 100%;
}
.btn-alone {
    margin-top: 32px;
}

div.field-value {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

div.field-value-sm {
    display: block;
    width: 100%;
    padding: 0.25rem 0.5rem;
    font-size: .87rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.2rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* SIDEBAR */
.nav-sidebar .nav-item a {
    font-size: 14px !important
}
li.menu-group > a.nav-link, li.nav-header {
    font-size: 16px !important;
}
li.menu-group > a.nav-link > i {
    display: none;
}


div.btn-comments {
    display: inline-block;
    position: relative;
}
div.btn-comments > span {
    position: absolute;
    right: 2px;
    top: -5px;
}

.deleted { text-decoration: line-through }

/* Custom Error Page */
.error-page {
    background: #fff;
    padding: 10px 20px;
    width: 95%;
}
.error-page h3 {
    margin-bottom: 20px;
}

/* Guest */
.public-card {
    margin-top: 50px;
    color: #566231;
    font-size: 18px;
}
.header-section {
    background-color: #566231;
    color: #fff;
}
.header-section h3 {
    font-size: 26px !important;
    font-weight: bold;
    text-align: center !important;
}
.public-card a {
    color: #9B694F;
    text-decoration: none;
}
div.logo {
    width: 30%;
    margin: 30px auto;
}
div.logo img {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    div.logo {
        width: 50%;
    }
}


/* ANIMATIONS */
.blinking { animation: blinker 1s ease-in-out infinite }
.blinking_alert { animation: blinker_alert 1.5s linear infinite }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
@keyframes blinker_alert {
    0% {
        opacity: 0;
    }
    20% {
        opacity: .80;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: .80;
    }
    100% {
        opacity: 0;
    }

}