﻿* {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

.input-group > input {

}

.btn-file {
    position: relative;
    overflow: hidden;
}
.slide-right {
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    opacity: 0;
    transition: 255ms;
}

.slide-left {
    transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    opacity: 0;
    transition: 255ms;
}


    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.dropdown-item {
    color: #fff !important;
}

body {
    /*padding-top: 50px;*/
    padding-bottom: 20px;
    background-color: #DEDEDE;
    zoom: 90%;
}

.card-header-clickable {
    transition: all .5s ease-in-out !important;
}

    .card-header-clickable:hover {
        opacity: .7;
        cursor: pointer;
    }

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    /*padding-right: 15px;*/
}

.invisible {
    display: none;
}

.img-checked {
    opacity: 0.4;
}

.fadeIn {
    animation: 1.0s cubic-bezier(0,1,.7,1) 0s 1 fadeIn;
}

.loading-fade-in {
    animation: 1.0s ease-out 0s 1 loading-fadein;
    animation-fill-mode: forwards;
}

.loading-fade-out {
    animation: .3s ease-in 0s 1 loading-fadeout;
    animation-fill-mode: forwards;
}

.freeze {
    pointer-events: none;
}

.fadeOut {
    animation: .5s ease-in 0s 1 fadeOut;
    animation-fill-mode: forwards;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px; /* Adjusts for spacing */
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

.row-fullheight {
    min-height: 90vh;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.vertical-center {
    min-height: 80%; /* Fallback for browsers do NOT support vh unit */
    min-height: 80vh; /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

.max-800 {
    max-width: 800px;
}

@keyframes fadeIn {
    0% {
        transform: perspective(500px) translate3d(-50px,80px,60px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0px,0px,0px);
        opacity: 1;
    }
}

@keyframes card-header-fadein {
    0% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes card-header-fadein-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loading-fadein {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading-fadeout {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate3d(0, -50px, 0);
    -ms-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: -webkit-transform .5s ease-out;
    -ms-transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
}

    .pace.pace-active {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .pace .pace-progress {
        display: block;
        position: fixed;
        z-index: 2000;
        top: 0;
        right: 100%;
        width: 100%;
        height: 10px;
        background: #223b99;
        pointer-events: none;
    }

.card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 25px 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    border-radius: 3px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
}

    .card .card-header-logo {
        opacity: 0;
        margin: auto;
        height: 160px;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        animation: 2s ease 0s 1 card-header-fadein-opacity;
        animation-fill-mode: forwards;
        animation-delay: 1s;
    }

    .card .card-height-indicator {
        margin-top: 100%;
    }

    .card .title {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .card .card-image {
        height: 60%;
        position: relative;
        overflow: hidden;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: -30px;
        border-radius: 6px;
    }

        .card .card-image img {
            width: 100%;
            height: 100%;
            border-radius: 6px;
            pointer-events: none;
        }

        .card .card-image .card-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: #fff;
            font-size: 1.3em;
            text-shadow: 0 2px 5px rgba(33, 33, 33, 0.5);
        }

    .card .category:not([class*="text-"]) {
        color: #999999;
    }

    .card .card-content {
        padding: 15px 20px;
    }

        .card .card-content .category {
            margin-bottom: 0;
        }

    .card .card-header {
        opacity: 0;
        box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
        margin: -20px 15px 0;
        border-radius: 3px;
        padding: 15px;
        background-color: #999999;
        animation: 2s cubic-bezier(0,1,.7,1) 0s 1 card-header-fadein, 1.5s ease 0s 1 card-header-fadein-opacity;
        animation-fill-mode: forwards;
    }

        .card .card-header .title {
            color: #FFFFFF;
        }

        .card .card-header .category {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.62);
        }

    .card .card-footer {
        margin: 0 20px 10px;
        padding-top: 10px;
        border-top: 1px solid #eeeeee;
    }

        .card .card-footer .content {
            display: block;
        }

        .card .card-footer div {
            display: inline-block;
        }

        .card .card-footer .author {
            color: #999999;
        }

        .card .card-footer .stats {
            line-height: 22px;
            color: #999999;
            font-size: 12px;
        }

            .card .card-footer .stats .material-icons {
                position: relative;
                top: 4px;
                font-size: 16px;
            }

        .card .card-footer h6 {
            color: #999999;
        }

    .card [data-background-color="purple"] {
        background: linear-gradient(60deg, #ab47bc, #8e24aa);
        box-shadow: 0 12px 20px -10px rgba(156, 39, 176, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(156, 39, 176, 0.2);
    }

    .card [data-background-color="blue"] {
        background: linear-gradient(60deg, #26c6da, #00acc1);
        box-shadow: 0 12px 20px -10px rgba(0, 188, 212, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(0, 188, 212, 0.2);
    }

    .card [data-background-color="dark-blue"] {
        background: linear-gradient(60deg, #223e9b, #240072);
        box-shadow: 0 12px 20px -10px rgba(20, 39, 176, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(10, 39, 176, 0.2);
    }

    .card [data-background-color="green"] {
        background: linear-gradient(60deg, #66bb6a, #43a047);
        box-shadow: 0 12px 20px -10px rgba(76, 175, 80, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(76, 175, 80, 0.2);
    }

    .card [data-background-color="orange"] {
        background: linear-gradient(60deg, #ffa726, #fb8c00);
        box-shadow: 0 12px 20px -10px rgba(255, 152, 0, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(255, 152, 0, 0.2);
    }

    .card [data-background-color="red"] {
        background: linear-gradient(60deg, #ef5350, #e53935);
        box-shadow: 0 12px 20px -10px rgba(244, 67, 54, 0.28), 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(244, 67, 54, 0.2);
    }

    .card [data-background-color] {
        color: #FFFFFF;
    }

        .card [data-background-color] a {
            color: #FFFFFF;
        }



.input-group {
    position: relative;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

input, select {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    margin-bottom: 2px;
    height: 46px;
}

.max-width {
    width: fit-content;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select option {
        padding: 12px 0 10px 24px;
    }

    input:focus, select:focus {
        outline: none;
    }

.label-select {
    pointer-events: none
}

.filter-select {
    min-width: 180px;
}

    .filter-select:invalid {
        box-shadow: none;
    }

.filter-text {
    max-width: 80px;
}

    .filter-text:invalid {
        box-shadow: none;
    }

.filter-input-group {
    margin: unset;
}

label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.label-header {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    left: 5px;
    top: 10px;
    pointer-events: none;
}

input:optional:placeholder-shown ~ label {
    color: #999;
    font-size: 18px;
    top: 10px;
}

select:valid ~ label,
input:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #2e2a68;
}

.label-down ~ label {
    top: 10px !important;
    font-size: 18px !important;
    color: #999 !important;
}


select:focus ~ label,
input:focus ~ label,
input:focus:optional:placeholder-shown ~ label {
    top: -20px;
    font-size: 14px;
    color: #2e2a68;
}

input:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 14px;
    color: #2e2a68;
}

.bar {
    display: block;
    width: 0;
}

    .bar:before,
    .bar:after {
        content: '';
        height: 3px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #38409b;
        transition: 1s ease all;
        -moz-transition: 1s ease all;
        -webkit-transition: 1s ease all;
    }

    .bar:before {
        right: 0%;
    }

    .bar:after {
        left: 0%;
    }


input:focus ~ .bar:after,
select:focus ~ .bar:after {
    width: 100%;
}

input:optional ~ .bar:before,
select:optional ~ .bar:before,
input:optional ~ .bar:after,
select:optional ~ .bar:after {
    background: LightBlue;
}


.highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.2;
}

input:focus ~ .highlight,
select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animations */
@-webkit-keyframes inputHighlighter {
    from {
        background: #4285f4;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #4285f4;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #4285f4;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.load {
    z-index: 2147483640;
    position: fixed;
    margin: auto;
    width: 100px;
    height: 80px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.gear {
    position: absolute;
    z-index: -10;
    width: 40px;
    height: 40px;
    animation: spin 5s infinite;
}

.two {
    left: 40px;
    width: 80px;
    height: 80px;
    animation: spin-reverse 5s infinite;
}

.three {
    top: 45px;
    left: -10px;
    width: 60px;
    height: 60px;
}

@keyframes spin {
    50% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    50% {
        transform: rotate(-360deg);
    }
}







.pagination-detail {
    margin-left: 10px;
}


.form-check-label {
    position: relative;
    pointer-events: all;
    padding-top:15px;
    top: 0;
}


.form-check-input {
    display: inline;
    width: 20px;
    height: 18px;
    margin-bottom: 10px;
    transform: translateY(3px);
}

.table-hover tbody tr:not(:hover) td, .table-hover tbody tr:not(:hover) th {
    transition: background .7s;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: #fff792;
}

.fixed-table-container input[type=radio], .fixed-table-container input[type=checkbox] {
    width: unset;
    height: unset;
}

.fixed-table-container tbody .selected td {
    background-color: #ffa41d;
}

.btn-input-group {
    margin-bottom: -4px;
    margin-right: 0px !important;
    border: 0px solid;
}

.btn-group-left {
    margin-bottom: 4px;
    margin-right: 0px !important;
    border: 0px solid;
}

.col-auto {
    margin-right: 10px;
    margin-left: 10px;
}

.dropdown-menu {
    box-shadow: 0 0 15px #fff;
    padding-left: 0;
    /*text-indent: 60px*/
    /*background-color: rgba(0,0,0,1);*/
}

    .dropdown-menu > li {
        line-height: 40px;
    }

        .dropdown-menu > li:hover {
            background: white;
        }

        .dropdown-menu > li > a {
            display: block;
            text-indent: 24px;
            font-size: medium;
            height: 40px;
            color: cornflowerblue;
            text-decoration: none;
        }
