﻿/*#DialogPrintableMap .modal-dialog {
            z-index: 9999999999;
        }*/

#DialogPrintableMap {
    box-shadow: 10px 10px 5px #888888;
}

    #DialogPrintableMap .modal-dialog {
        top: 60px;
        max-width: 400px;
        max-height: 200px;
        margin: 30px auto !important;
    }

    #DialogPrintableMap .modal-content {
        border-radius: 0px !important;
    }

    #DialogPrintableMap div > button.close {
        font-size: 40px;
        color: white;
        line-height: .75;
        opacity: 1.0;
    }

    #DialogPrintableMap div.modal-body > div:first-child {
        text-align: center;
        margin-bottom: 10px;
    }

    #DialogPrintableMap .modal-footer .btn {
        border-radius: 0px;
    }

    /* cow blue */
    #DialogPrintableMap > div > div > div.modal-header,
    #DialogPrintableMap .modal-footer .btn {
        color: white;
        background-color: #367cfe;
        background: -webkit-gradient(linear,left top,left bottom,from(#367cfe),to(#015dff));
        background: -webkit-linear-gradient(to top,#367cfe,#015dff);
        background: -moz-linear-gradient(to top,#367cfe,#015dff);
        background: -ms-linear-gradient(to top,#367cfe,#015dff);
        background: -o-linear-gradient(to top,#367cfe,#015dff);
        background: linear-gradient(to top,#367cfe,#015dff);
    }

        /* cow green */
        #DialogPrintableMap .modal-footer .btn:hover {
            /*border: 1px solid #2e6da4;
                background: #337ab7;*/
            color: #1e1e1e;
            background-color: #bfe096;
            background: -webkit-gradient(linear,left top,left bottom,from(#bfe096),to(#9fd163));
            background: -webkit-linear-gradient(to top,#bfe096,#9fd163);
            background: -moz-linear-gradient(to top,#bfe096,#9fd163);
            background: -ms-linear-gradient(to top,#bfe096,#9fd163);
            background: -o-linear-gradient(to top,#bfe096,#9fd163);
            background: linear-gradient(to top,#bfe096,#9fd163);
        }


/*#region application loader dialogprintablemap */
.application-loader-dialogprintablemap-container {
    display: block;
    color: #FFFFFF;
    height: 100%;
    text-align: center;
}

.application-loader-dialogprintablemap {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #1a6cff;
    border-top: 4px solid #FFFFFF;
    border-top-width: 3px;
    border-top-style: solid;
}

.application-loader-dialogprintablemap-animate-download-generating {
    display: inline-block;
    animation: application_loader_navbar_dialogprintablemap .9s linear infinite;
    -webkit-animation: application_loader_dialogprintablemap_rotate .9s linear infinite;
    visibility: visible;
}

    .application-loader-dialogprintablemap-animate-download-generating ~ div {
        display: none;
    }

.application-loader-dialogprintablemap-animate-download-ready {
    display: none;
    animation: none;
    -webkit-animation: none;
    visibility: hidden;
}

    .application-loader-dialogprintablemap-animate-download-ready ~ div {
        display: inline-block;
    }

.application-loader-dialogprintablemap-animate-download-none {
    display: none;
    visibility: hidden;
    animation: none;
    -webkit-animation: none;
}

    .application-loader-dialogprintablemap-animate-download-none ~ div {
        display: none;
    }

.application-loader-dialogprintablemap-animate-download-error {
    display: none;
    visibility: hidden;
    animation: none;
    -webkit-animation: none;
}

    .application-loader-dialogprintablemap-animate-download-error ~ div {
        display: none;
    }

@keyframes application_loader_dialogprintablemap_rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
