﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
/*.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}*/

/* Make .svg files in the carousel display properly in older browsers */
/*.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}*/

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
/*@media screen and (max-width: 767px) {
    /* Hide captions 
    .carousel-caption {
        display: none;
    }
}*/


td.details-control {
    background: url('../../images/plus.png') no-repeat center center;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('../../images/remove.png') no-repeat center center;
}

.loading-background {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 100000000;
}

.loading-container {
    position: fixed;
    top: 50%;
    margin: -15px 0 0 -15px;
    margin-left: 40%;
    color: white;
    font-size: 50px;
}

.c-multistep {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
}

.c-multistep__step {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    min-width: 160px;
}

    .c-multistep__step + .c-multistep__step {
        margin-left: 8px;
    }

.c-step {
    background: #fff;
    transition: all ease .5s;
}

    .c-step.is-active {
        background: #e9e9e9;
    }

        .c-step.is-active .c-step__count {
            background: #007bff;
        }

    .c-step.is-done:hover {
        background: #c9dcef;
        cursor: pointer;
    }

    .c-step.is-done .c-step__count {
        background: #484848;
    }

.c-step__content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.c-step__header {
    display: flex;
    flex-direction: column;
}

.c-step__count {
    background: #a1a1a1;
    color: #fff;
    padding: 0px 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.c-step__title {
    font-size: 14px;
}

.c-step__description {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.c-quadrados {
    position: relative;
    display: block;
    margin-top: 50px;
}

.c-quadrados__item {
    width: 200px;
    height: 140px;
    background-color: #ffffff;
    border: 3px solid #a1a1a1;
    border-radius: 6px;
    color: #484848;
    transition: all ease .5s;
    opacity: 0.9;
}

    .c-quadrados__item:nth-child(1) {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 3;
    }

    .c-quadrados__item:nth-child(2) {
        position: absolute;
        left: 20px;
        top: -20px;
        z-index: 2;
    }

    .c-quadrados__item:nth-child(3) {
        position: absolute;
        left: 40px;
        top: -40px;
        z-index: 1;
    }

.c-quadrados.is-active .c-quadrados__item {
    background-color: #007bff;
    border-color: #ffffff;
    color: #ffffff;
}

.c-quadrados:hover .c-quadrados__item {
    opacity: 1;
    scale: 1.05;
    cursor: pointer;
}

.c-grid-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.c-grid-columns__card {
    background-color: #fff;
    padding: 10px;
    border: 1px solid rgba(194,194,194,.5);
    border-radius: 6px;
    width: 275px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
    box-shadow: rgba(194,194,194,.5) 1px 1px 2px 0px;
    transition: all ease .5s;
}

.c-grid-columns--draggable {
    cursor: move;
}

.c-grid-columns__item.is-active .c-grid-columns__card {
    background: #c9dcef;
}

.c-grid-columns__content {
    width: 100%
}

.c-grid-columns__header {
    color: #a1a1a1;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 3px;
    text-align: left;
}

.c-grid-columns__drag-ico {
    font-size: 14px;
    color: #666;
}

.c-grid-columns__title {
    font-weight: 600;
    margin-left: 10px;
}

.c-grid-columns__remove {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #a1a1a1;
}

    .c-grid-columns__remove:hover {
        color: #dc3545;
    }

.loader {
    font-weight: bold;
    font-family: sans-serif;
    font-size: 30px;
    animation: l1 1s linear infinite alternate;
    height: 100%;
    align-items: center;
}


@keyframes l1 {
    to {
        opacity: 0
    }
}

.filter-container {
    position: relative
}

.filter-content {
    position: relative;
}

.filter-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
}

.file-upload {
    display: block;
    width: 100%;
}

.file-upload__label {
    cursor: pointer;
    border: 2px dashed rgb(0, 105, 217);
    padding: 10px;
    border-radius: 6px;
    display: block;
    text-align: center;
    background-color: rgba(0, 105, 217, .1);
    color: rgb(0, 105, 217);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: .5rem;
    transition: all ease .5s;
}

    .file-upload__label:hover {
        background-color: rgba(0, 105, 217, .2);
    }

.file-upload__extensions {
    display: block;
    font-size: 0.9em;
    color: rgb(102, 102, 102);
    margin-bottom: .5rem;
}

.file-upload__list {
    display: block;
}

    .file-upload__list button {
        background: none;
        border: none;
        cursor: pointer;
    }

.file-upload__list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border: 1px solid rgba(0, 105, 217, .2);
    padding: 10px 20px;
    border-radius: 9px;
    margin-bottom: .5rem;
    transition: all ease .5s;
}

    .file-upload__list-item:hover {
        background-color: rgba(0, 105, 217, .1);
    }
