.content {
    margin: auto;
    width: 90%;
}

.card-data-content {
    height: 150px;
    max-height: 150px;
}

    .card-data-content img {
        height: 150px;
        max-height: 150px;
    }

.full {
    width: 100%;
    height: 100%;
    background: #444;
    padding: 0;
    margin: 0 auto;
}

    .full img.wide {
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }

    .full img.tall {
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }

.inline {
    display: inline;
}

.breadcrumb-link:hover {
    color: white;
}

.folder {
    min-height: 120px;
    padding: 10px;
}

.card-padding-wrapper {
    padding: 10px;
}

.folder-icon {
    font-size: 3em;
}

.bounding-box {
    background-size: contain;
    background: no-repeat center;
    height: 100%;
    width: 100%;
}

.canopeo-card {
    transition: box-shadow .25s;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
    height: 150px;
}

    .canopeo-card img {
        overflow: hidden;
    }

#map-details {
    height: 300px;
    width: 100vw;
}

.canopeo-card {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.fill-width {
    width: 100%;
    max-width: none;
    height: auto;
}

.fill-height {
    height: 100%;
    max-width: none;
    width: auto;
}

#map-canvas {
    width: 100%;
    height: 75vh;
}

.cursor-link {
    cursor: pointer;
}

.cursor-none {
    cursor: text;
}

.strong {
    font-weight: 600;
}

.chart-card {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 20px;
}

nav {
    color: #fff;
    background-color: transparent;
    width: 100%;
    height: 66px;
    line-height: 66px;
}

.date-picker-hoverable {
    background-color: white;
}

    .date-picker-hoverable:hover {
        background-color: rgba(200, 200, 200, 0.5);
        cursor: pointer;
    }

.nav-wrapper {
    padding-right: 30px;
}

.green-nav {
    background-color: rgba(102, 187, 106, 0.5);
}

.deckgrid[deckgrid]::before {
    content: '4 .column.column-1-4';
    font-size: 0; /* See https://github.com/akoenig/angular-deckgrid/issues/14#issuecomment-35728861 */
    visibility: hidden;
}

.deckgrid .column {
    float: left;
}

    .deckgrid .column.size-1-6 {
        width: 180px;
    }

    .deckgrid .column.size-1-5 {
        width: 200px;
    }

    .deckgrid .column.size-1-4 {
        width: 200px;
    }

    .deckgrid .column.size-1-3 {
        width: 250px;
    }

    .deckgrid .column.size-1-2 {
        width: 250px;
    }

    .deckgrid .column.size-1-1 {
        width: 280px;
    }

@media screen and (max-width: 480px) {
    .deckgrid[deckgrid]::before {
        content: '2 .column.column-1-2';
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .deckgrid[deckgrid]::before {
        content: '4 .column.column-1-4';
    }
}

@media screen and (min-width: 769px) {
    .deckgrid[deckgrid]::before {
        content: '6 .column.column-1-6';
    }
}

/* Animations */

.ng-enter {
    -webkit-transition: 0.8s linear all;
    transition: 0.8s linear all;
    opacity: 0;
}

.ng-enter-active {
    opacity: 1;
}

.ng-leave {
    -webkit-transition: 0.8s linear all;
    transition: 0.8s linear all;
    opacity: 1;
}

.ng-leave-active {
    opacity: 0;
}

/** Loader **/

.cs-loader {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: 100%;
    padding: 0 100px;
    text-align: center;
}

.cs-loader-inner label {
    color: #4CAF50;
    font-size: 20px;
    opacity: 0;
    display: inline-block;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}

.donate-modal-contact-btn {
    vertical-align: top;
    padding-right: 25%;
}

@media (max-width: 768px) {
    .donate-modal-contact-btn {
        padding-right: 10%;
    }
}

.landing-navbar-style {
    background-color: #343a40;
}

#donateModal {
    position: fixed;
    margin: 0px;
    top: 5% !important;
    left: 20%;
}
#howToUseItModal {
    position: fixed;
    margin: 0px;
    top: 5% !important;
    left: 20%;
}

.researchModal {
    position: fixed;
    margin: 0px;
    top: 2% !important;
    left: 20%;
}

.researchModal_small {
    position: fixed;
    margin: 0px;
    top: 2% !important;
    left: 10%;
}

.twitter-container-card {
    height: 80vh;
}

.max-height-width-percentage {
    height: 100%;
    width: 100%;
}

.tabs .indicator {
    color: green;
    background-color:orange;
}


@media screen and (min-width: 768px) {
    .sticky {
        position: sticky;
        top: 0;
    }
    .dateFilterForm {
        display: flex;
        align-items: center;
    }
    .dateFilterForm .btn {
        display: block;
    }
}
