.__fc-loader,
.__fc-loader:before,
.__fc-loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: load7 1.5s infinite ease-in-out;
}

.__fc-loader {
    color: #ffffff;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.__fc-loader:before,
.__fc-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.__fc-loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.__fc-loader:after {
    left: 3.5em;
}

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.backdrop {
    height: 100vh;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

.top-control {
    margin-bottom: 1em;
    text-align: right;
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.fc-portlet-item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.fc-portlet-item-content > header.fc-portlet-item-header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    background: #f4f4f4;
    color: #606060;
}

.fc-portlet-item-content > footer.fc-portlet-item-footer {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: space-between;
    background: #f4f4f4;
    color: #606060;
}
.chart-list {
    display: flex;
    margin: 1em;
    flex-wrap: wrap;
}
.fc-chart-card {
    flex-grow: 1;
    width: 240px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    cursor: pointer;
}
.fc-chart-card .img {
    background-color: #505060;
    height: 200px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
    color: #b4b4b4;
    perspective: 500px;
}
.fc-chart-card .img > .fc-portlet-item {
    transform-style: preserve-3d;
    /*transform: rotateY(-15deg);*/
    transition: transform .35s ease;
}
.fc-chart-card .img > .fc-portlet-item:hover {
    transform: rotateY(-30deg);
}
.fc-chart-card-body {
    padding: 0.5em;
}

.fc-portlet-container-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5em;
    flex-direction: column;
    color: rgba(28, 43, 52, 0.68);
    background: #f4f4f4;
}