﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans:700);
.highcharts-text-outline {
    stroke: unset !important;
    fill: rgb(50, 50, 50) !important;
}
html,
body {
    height: 100%;
}

/*body {
    overflow: hidden;
}*/

.hoja {
    color: #dcdce2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -140px;
    margin-top: -140px;
    width: 280px;
    height: 280px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 4em;
    line-height: 280px;
    -webkit-font-smoothing: antialiased;
}

    .hoja:after,
    .hoja:before {
        content: "";
        border-radius: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: center center;
    }

    .hoja:after {
        box-shadow: inset 0 17.5px 0 rgba(250, 250, 0, 0.6), inset 17.5px 0 0 rgba(250, 200, 0, 0.6), inset 0 -17.5px 0 rgba(250, 150, 0, 0.6), inset -17.5px 0 0 rgba(250, 100, 0, 0.6);
        animation: rotar 8s -2s linear infinite;
    }

    .hoja:before {
        box-shadow: inset 0 17.5px 0 rgba(0, 250, 250, 0.6), inset 17.5px 0 0 rgba(0, 200, 200, 0.6), inset 0 -17.5px 0 rgba(0, 150, 200, 0.6), inset -17.5px 0 0 rgba(0, 200, 250, 0.6);
        animation: rotarIz 8s -2s linear infinite;
    }

@keyframes rotar {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);
    }

    100% {
        transform: rotateZ(360deg) scaleX(1) scaleY(1);
    }
}

@keyframes rotarIz {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);
    }

    100% {
        transform: rotateZ(-360deg) scaleX(1) scaleY(1);
    }
}

.col-sm-2 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
}

.cardBox {
    position: relative;
    width: 100%;
    border: 1px solid #e6e6e6;
    height: 170px;
    border-radius: 8px;
    background-color: #fff;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.cardBox:hover {
    -webkit-box-shadow: 0px 4px 16px -8px rgba(46,46,46,1);
    -moz-box-shadow: 0px 4px 16px -8px rgba(46,46,46,1);
    box-shadow: 0px 4px 16px -8px rgba(46,46,46,1);
}

.cardBox .cardHeaderBox {
    border-radius: 20px;
    position: relative;
    top: -25%;
    left: -5%;
}

    .cardBox .cardHeaderBox h1 {
        position: relative;
        float: left;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.cardBox .derails {
    background-color: #adadad2e;
    border-radius: 0 0 1rem 0;
    transition: all .3s ease-in-out;
    width: 70%;
}

.cardBox .derails:hover {
    cursor: pointer;
}

.cardBox .derails h5 i {
    position: relative;
    top: .3rem;
}

.cardBox .derails:hover .fa-arrow-right {
    margin-right: .5rem !important;
}

.cardBox .derails:hover .fa-arrow-left {
    margin-left: .5rem !important;
}

/*highcharts*/
@import 'https://code.highcharts.com/css/highcharts.css';

#container {
    max-width:100%;

}

