﻿.note-item{
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #EEE;
    width: 100%;
}

.note-item:last-child{
    border-bottom: none;
}

.note-item:hover .note-item-actions{
    visibility:visible;
}

.note-header{
    width: 100%;
    clear: both;
    height: 25px;
    font-size: 0.85rem;
}

.note-item-name{
    float:left;
}

.note-item-actions{
    visibility:hidden;
    float:right;
}

.note-body{
    width:100%;
}

.note-allert {
    background-color: #e6e8f0;
    text-align: center;
}

.note-test {
    background-color: #e6e8f0;
    margin-bottom: 20px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.note-test:last-child{
    margin-bottom:0px;
}

.note-test:hover .note-item-actions {
    visibility: visible;
}

.card .card-header[data-toggle="collapse"]::after {
    content: '\f056';
    color: #e74a3b;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
    content: '\f055';
    color: #1cc88a;
}

.card-scrollable {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.card-scrollable-table {
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
}


.tr-child-row td:first-child {
    padding-left: 15px;
    border-left: 15px solid #f7f9ff;
}
.tr-parent-row {
    background-color: #f5f7ff;
    
}

.tr-parent-row > td {
    border-top: 2px solid #a8b6f0;
}


.dropdown-toggle:after{
    display:none;
}

.btn-custom-grey {
    background-color: #e6e8f0;
}

.btn-custom-grey-two {
    background-color: #e4e6ec;
}

.btn-custom-grey-two i {
    color: #858796!important;
}

/* Notification types*/

.bg-notification-info {
    /*background: rgb(68,101,121);
    background: linear-gradient(18deg, rgba(68,101,121,1) 0%, rgba(170,193,214,1) 100%);*/
    background: #36b9cc;
}

.bg-notification-success {
    /*background: rgb(87,121,68);
    background: linear-gradient(18deg, rgba(87,121,68,1) 0%, rgba(185,214,170,1) 100%);*/
    background: #1cc88a;
}

.bg-notification-alert {
    /*background: rgb(214,142,61);
    background: linear-gradient(18deg, rgba(214,142,61,1) 0%, rgba(231,190,90,1) 100%);*/
    background: #f6c23e;
}

.bg-notification-error {
    /*background: rgb(117,23,13);
    background: linear-gradient(18deg, rgba(117,23,13,1) 0%, rgba(231,71,41,1) 100%);*/
    background: #e74a3b;
}

/* Notification component */

.notification {
    display: flex;
    color: #fff;
    z-index: 0;
    position: fixed;
    min-width: 200px;
    width: 25%;
    max-width: 100%;
    bottom: 1rem;
    right: 1rem;
    border-radius: 0.35rem;
    box-shadow: 0 0 20px #000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.notification-close {
    position: absolute;
    top: .3rem;
    right: .4rem;
    cursor: pointer;
    opacity: .7;
}

    .notification-close:hover {
        opacity: 1;
    }

.notification-icon {
    flex-direction: column;
    justify-content: center;
    padding: .3rem 1rem;
    font-size: 2.5rem;
    background-color: rgba(255,255,255,.2);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.notification-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
    text-align: left;
    padding: 1rem .7rem;
}

    .notification-body h5 {
        margin: 0;
        padding: 0 0 .2rem 0;
        text-transform: uppercase;
    }

    .notification-body p {
        margin: 0;
        padding: 0;
        font-size: 0.8rem;
    }

.notification-visible {
    z-index: 1;
    display: flex;
    flex-direction: row;
    opacity: 1;
}

a:hover, a *:hover{
    cursor: pointer!important;
}

.showOnPrint {
    display: none !important;
}

@media print {
    .card-scrollable-table, .card-scrollable {
        height: auto;
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    .hideWhenPrint{
        display: none !important;
    }

    .showOnPrint{
        display: inherit !important;
    }
}

/*.bg-gradient-custom {
    background-color: #858796;
    background-image: linear-gradient(300deg, #767990 10%, #212130 100%);
    background-size: cover;
}*/

.bg-gradient-custom {
    /*background-color: #858796;*/
    /*background-image: linear-gradient(300deg, #434763 10%, #101021 100%);*/
    /*background-image: linear-gradient(to bottom right, #1a1a6e 0%, #48136c 100%);*/
    background-image: linear-gradient(283deg, #1a1a6e 0%, #421660 110%);
    /*background-image: linear-gradient(287deg, #000066 -20%, #4d0b4d 120%);*/
    background-size: cover;
}

.table {
    width: 100%;
    margin-bottom: 0;
    color: #858796;
}



table {
    border-collapse: collapse;
    empty-cells: show;
}

td {
    position: relative;
}

tr.strikeout td:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
}

tr.strikeout td:last-child:before {
    border-bottom: none;
}

tr.strikeout td:after {
    content: "\00B7";
    font-size: 1px;
}

.card-body-cust{
    padding: 1rem!important;
}

.table-responsive {
    min-height: 200px!important;
}