
.modalTitle {
    display: none;
}
.modal-dialog > div {
    box-shadow: 3px 3px 10px 0px #000;
}
.modal-content {
    background-color: #242424;
    background-color: #171717;
}

.modal-header {
    padding: 4px;
    padding-left: 10px;
}

    .modal-header .icon-div {
        display: inline-block;
        border: 1px solid #585858;
        margin-top: -12px !important;
        margin-right: -12px !important;
        padding: 1px !important;
        margin: 0px;
        border-radius: 3px;
        background-color: #ededed;
        background-color: #171717;
        background-color: transparent;
        border: 0px solid #585858;
        height: 32px;
    }

        .modal-header .icon-div button {
            border: 0px;
            background-color: transparent;
            padding: 0px !important;
            margin: 0px;
            /* border: 1px solid #ccc;*/
            width: 30px;
            height: 30px;
            /* border-radius: 3px;
            background-color: #fff;*/
        }

            .modal-header .icon-div button i {
                width: 35px;
                height: 30px;
                margin: 0px;
            }

                .modal-header .icon-div button i::before {
                    margin-top: -2px;
                    margin-left: -16px;
                    position: absolute;
                }




        .modal-header .icon-div .closeWin {
            color: #8b0000;
            font-size: 28px;
        }

         

                .modal-header .icon-div .closeWin .x-mask-close-icon:after {
                    content: " ";
                    background-color: #fff;
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    z-index: -1;
                    margin-left:-10px;
                }

        .modal-header .icon-div .expandCompress {
            /*color: #303030;*/
            color: #fff;
            font-size: 26px;
            /*margin-right: 20px;*/
        }

/*.modal-body {
    color: red;
}*/


.modal-main-panel {
    background-color: #242424;
    overflow-y: auto;
    /*overflow-x: hidden !important;*/
    overflow-x: auto;
}

    .modal-main-panel .form-group {
        width: 98%;
    }


.modal-panel-dock-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #242424;
    border-top: 1px solid #d3d3d3;
    padding: 4px;
}

    .modal-panel-dock-bottom .left {
        float: left;
    }

    .modal-panel-dock-bottom .right {
        float: right;
    }



.modal-spinner {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.modal-openAnimation-drop {
    animation: dropPopup 0.3s ease forwards;
    top: -550px;
}


.modal-openAnimation-dropFast {
    animation: dropPopup 0.15s ease forwards;
    top: -550px;
}

.modal-openAnimation-fadein {
    /*animation: modalFadeIn 700ms ease-in-out 1s both;*/
    animation: modalFadeIn 200ms ease-in-out 50ms both;
}

.modal-openAnimation-fadein-fast {
    /*animation: modalFadeIn 700ms ease-in-out 1s both;*/
    animation: modalFadeIn 80ms ease-in-out 30ms both;
}

@keyframes dropPopup {
    0% {
        opacity: 0;
    }

    70% {
        transform: translateY(600px);
    }

    100% {
        transform: translateY(550px);
        opacity: 1;
    }
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
