﻿.colorbox {
    height: 90%;
    width: 92%;
}

@media (max-width: 992px) {
    .colorbox {
        height: 90%;
        width: 92%;
    }
}

.dataTables_wrapper {
    margin: 40px;
}



.spinner {
    margin: 70px auto 0;
    width: 470px;
    text-align: center;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: #333;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}


.customModal-img {
    width: 250px;
}

.customModal {
    display: none;
    top: 0;
    min-width: 250px;
    width: 255px;
    height: 300px;
    margin: 0 auto;
    position: fixed;
    z-index: 40001;
    background: #fff;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
    margin-top: 100px;
    margin-left: 20%;
    animation-name: fadeIn_Modal;
    animation-duration: 0.8s;
}

.header {
    width: 100%;
    height: 30px;
}

    .header a {
        font-size: 1.5em;
        text-decoration: none;
        float: right;
        line-height: 30px;
        margin-right: 20px;
        color: #aaa;
    }

.content {
    padding: 0px !important;
    width: 100%;
    height: auto;
}


/****MEDIA QUERIES****/

@media screen and (min-width: 600px) {
    .customModal-img {
        width: 350px;
    }

    .customModal {
        width: 355px;
        height: 400px;
        margin-left: calc(50vw - 200px);
        margin-top: 120px;
    }


    .header {
        width: 100%;
        height: 40px;
    }

        .header a {
            font-size: 2.4em;
            line-height: 40px;
            margin-right: 10px;
        }

    .content {
        width: 100%;
        height: 400px;
        padding: 0px !important;
    }
}