.login-page {
    background-color: #e9ecef;
}

    .login-page .login-header, .card-border {
        border-top: 3px solid #286090;
    }

.marina-logo-bgcolor, .btn-primary {
    background-color: #286090 !important;
}

.btn-outline-primary:hover {
    background-color: #286090 !important;
    border-color: #286090 !important;
}

.welcome {
    font-size: 1.1rem;
}

.navbar-header {
    border-bottom: 1px solid #e7e7e7;
}

.round.round-thumb {
    height: 30px;
    width: 30px;
    line-height: 30px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 0.7em;
}

.title-page {
    border-bottom: 1px solid #ddd;
}

.table > thead > tr > th, .table > thead > tr > td {
    background-color: #3276b1;
    color: #ffffff;
    font-weight: bold;
}

/*loader*/
.animationload {
    background-color: black;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    opacity: .5;
}

.spinner {
    -webkit-animation: rotate 1.4s linear infinite;
    animation: rotate 1.4s linear infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -35px;
    margin-top: -35px;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}
/*end loader*/

/*scrollbar*/
.scrollbar-default::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.scrollbar-default::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scrollbar-default::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
/*end scrollbar*/

.changed-row, .changed-row td {
    background-color: #ffc6aa;
}

.cell-list, .validation-summary-errors ul {
    padding-left: 0;
    margin: 0px;
    list-style-type: none;
}

.modal .chosen-container {
    width: 100% !important;
}

.spacious-container {
    overflow: auto;
}

/*table sort*/
table.table-sort thead .sorting,
table.table-sort thead .sorting_asc,
table.table-sort thead .sorting_desc,
table.table-sort thead .sorting_asc_disabled,
table.table-sort thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

    table.table-sort thead .sorting:after,
    table.table-sort thead .sorting_asc:after,
    table.table-sort thead .sorting_desc:after {
        position: absolute;
        top: 8px;
        right: 8px;
        display: block;
        font-family: 'Font Awesome 6 Free';
        opacity: 0.5;
    }

    table.table-sort thead .sorting:after {
        opacity: 0.2;
        content: "\f175\f176"; /* sort */
    }

    table.table-sort thead .sorting_asc:after {
        content: "\f884"; /* sort-by-attributes */
    }

    table.table-sort thead .sorting_desc:after {
        content: "\f160"; /* sort-by-attributes-alt */
    }

    table.table-sort thead .sorting_asc_disabled:after,
    table.table-sort thead .sorting_desc_disabled:after {
        color: #eee;
    }

table.table-sort thead > tr > th.center {
    text-align: center;
}

table.table-sort thead > tr > th {
    padding-right: 30px;
}

table.table-sort th:active {
    outline: none;
}
/*table sort*/

/*Scroll to top*/

#btnScrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
}

    #btnScrollToTop:hover {
        background-color: #555;
    }