﻿/* Dashboard Buttons */
.menu-item {
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .menu-item a {
        color: #fff;
        display: block;
        transition: all 0.3s;
    }

        .menu-item a p {
            /*font-family: 'Oswald', sans-serif;*/
            font-weight: 300;
            font-size: 20px;
            text-align: center;
        }

        .menu-item a i {
            font-size: 50px;
            padding-bottom: 20px;
        }

    .menu-item:hover a {
        text-decoration: none;
        /*animation: wobble;
        -webkit-animation: wobble;
        animation-duration: 1000ms;
        -webkit-animation-duration: 1000ms;*/
    }

/* Pie Chart Colors */

.text-primary {
    color: #4e73df !important
}

a.text-primary:focus, a.text-primary:hover {
    color: #224abe !important
}

.text-success {
    color: #1cc88a !important
}

a.text-success:focus, a.text-success:hover {
    color: #13855c !important
}

.text-info {
    color: #36b9cc !important
}

a.text-info:focus, a.text-info:hover {
    color: #258391 !important
}


/**** Start Background Color ****/

.blue {
    background: #28ABE3;
}

.green {
    background: #72bf48;
}

.red {
    background: #FF432E;
}

.purple {
    background: #9068BE;
}

.light-blue {
    background: #ADD8E6;
}

.light-green {
    background: #6ED3CF;
}

.light-red {
    background: #FB6648;
}

.light-orange {
    background: #FA6900;
}

.color {
    background: #0ECEAB;
}

/* Form Validation */
.formvalidation input.ng-touched.ng-invalid {
    background-color: pink;
    color: black;
}

.formvalidation input.ng-touched.ng-valid {
    background-color: lightgreen;
    color: black;
}

#formValidation::placeholder {
    color: red;
    opacity: 1; /* Firefox */
}

#formValidation::-ms-input-placeholder { /* Edge 12-18 */
    color: red;
}

.messagePopUpText {
    color: red;
    font-family: Georgia, serif;
    font-size: 14px;
}        

/* Modal Size */

.modalSize {
    width: 100%;
    height: 75vh;
    border: solid 5px #808080;
    overflow-y: scroll;
}

/* Table Sort */

.up {
    position: relative;
}

    .up:before {
        content: "\f160";
        font-family: FontAwesome;
        right: 5px;
        position: absolute;
        top: 0;
    }

.down {
    position: relative;
}

    .down:before {
        content: "\f161";
        font-family: FontAwesome;
        right: 5px;
        position: absolute;
        top: 0;
    }

/*.up {
    background: url(../Image/up.png);
    background-position: right center;
    background-repeat: no-repeat;
}

.down {
    background: url(../Image/down.png);
    background-position: right center;
    background-repeat: no-repeat;
}*/

/* Wait Animation */
.wait {
    position: fixed;
    top: 50%;
    left: 50%;
}

    .wait.img {
        padding: 1px;
        border: 5px solid #021a40
    }

    /* Drop And Down ul li*/

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.panel ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

    /**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.panel ul[dnd-list] .dndDraggingSource {
    display: none;
}

    /**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
    .panel ul[dnd-list] .dndPlaceholder {
        background-color: #ddd;
        display: block;
        min-height: 42px;
    }

.panel ul[dnd-list] li {
    color: #ffffff;
    border: 1px solid #ddd;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
}

        /**
 * Show selected elements in green
 */
    .panel ul[dnd-list] li.selected {
        background-color: #dff0d8;
        color: #3c763d;
    }

/* Document Holder */
animate-container {
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

.animate-repeat {
    display: inline-block;
    line-height: 30px;
    list-style: none;
    box-sizing: border-box;
}

    .animate-repeat.ng-move,
    .animate-repeat.ng-enter,
    .animate-repeat.ng-leave {
        transition: all linear 0.7s;
    }

        .animate-repeat.ng-leave.ng-leave-active,
        .animate-repeat.ng-move,
        .animate-repeat.ng-enter {
            opacity: 0;
            max-height: 0;
        }

            .animate-repeat.ng-leave,
            .animate-repeat.ng-move.ng-move-active,
            .animate-repeat.ng-enter.ng-enter-active {
                opacity: 1;
                max-height: 30px;
            }


.doc-container {
    margin: auto;
    width: 85vw;
}

.doc-item {
    width: 200px;
    margin: 10px;
    transition: .5s ease;
}

    .doc-item:hover {
        transition: all .2s;
        transform: scale(1.2, 1.2);
    }

.merge-doc-item {
    width: 600px;
    margin: 10px;
    transition: .5s ease;
}

    .merge-doc-item:hover {
        transition: all .2s;
        transform: scale(1.2, 1.2);
    }

.search-doc-item {
    width: 200px;
    margin: 10px;
    transition: .5s ease;
}

    .search-doc-item:hover {
        transition: all .5s;
        transform: scale(2.0, 2.0);
    }

.docWindow {
    width: 200px;
    float: left;
    margin: 10px;
}

/* Image Viewer */

canvas {
    display: block;
    margin: 1em auto;
    background: #fff;
    border: 1px solid #ccc
}

/* Alert */

.modal-alert-success {
    color: #2b542c;
    background-color: #99ff99;
    border-color: #3c763d;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.modal-alert-info {
    color: #245269;
    background-color: #66ccff;
    border-color: #31708f;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.modal-alert-warning {
    color: #66512c;
    background-color: #ffcc00;
    border-color: #8a6d3b;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.modal-alert-danger {
    color: #843534;
    background-color: #ff9999;
    border-color: #a94442;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

/* Table Style */

.fodd {
    background-color: #ffffff;
}

.feven {
    background-color: #c5eadd;
}

.dodd {
    background-color: #ffffff;
}

.deven {
    background-color: #f2dede;
}

/* Drag and Drop */

ul[dnd-liste] {
    min-height: 42px;
    padding: 0;
}

    ul[dnd-liste] > li {
        border-bottom: 1px solid #ddd;
        display: block;
        padding: 10px 15px;
        cursor: default;
    }

        ul[dnd-liste] > li.dndDraggingSource {
            display: none;
        }

        ul[dnd-liste] > li.dndPlaceholder {
            background-color: #ddd;
            min-height: 42px;
        }


/* Project Viewer */

.openseadragon {
    width: 100%;
    height: 100%;
    border: 1px solid black;
    color: #333;
    background-color: black;
}

    .openseadragon.front-page {
        height: 586px;
    }


/*from openseadragon demos
 
.openseadragon {
    width: 1000px;
    height: 600px;
    border: 1px solid black;
    color: #333; 
    background-color: black;
    margin: auto;
}

    .openseadragon.front-page {
        height: 586px;
    }

.openseadragon-small {
    width: 100px;
    height: 80px;
    border: 1px solid black;
    color: #333; 
    background-color: black;*/

/* Modal Settings*/

.modal .modal-dialog {
    margin-top: 10px;
}

.modal-1X {
    /**/
}

    .modal-1X .modal-dialog {
        width: 100px;
        padding: 0;
    }

.modal-2X {
    /**/
}

    .modal-2X .modal-dialog {
        width: 200px;
        padding: 0;
    }

.modal-3X {
    /**/
}

    .modal-3X .modal-dialog {
        width: 300px;
        padding: 0;
    }

.modal-4X {
    /**/
}

    .modal-4X .modal-dialog {
        width: 400px;
        padding: 0;
    }

.modal-5X {
    /**/
}

    .modal-5X .modal-dialog {
        width: 400px;
        padding: 0;
    }

.modal-6X {
    /**/
}

    .modal-6X .modal-dialog {
        width: 600px;
        padding: 0;
    }

.modal-7X {
    /**/
}

    .modal-7X .modal-dialog {
        width: 700px;
        padding: 0;
    }

.modal-8X {
    /**/
}

    .modal-8X .modal-dialog {
        width: 800px;
        padding: 0;
    }

.modal-9X {
    /**/
}

    .modal-9X .modal-dialog {
        width: 900px;
        padding: 0;
    }

.modal-10X {
    /**/
}

    .modal-10X .modal-dialog {
        width: 1000px;
        padding: 0;
    }

/*Modal Responsive*/

.modal-double {
    /**/
}

    .modal-double .modal-dialog {
        width: 90vw;
        padding: 0;
    }

.modal-viewer {
    /**/
}

    .modal-viewer .modal-dialog {
        margin-top: 0;
        width: 1100px;
        padding: 0;
        /*margin-top: 0;
        width: 100%;*/
    }

.fullScreenModal {
    /**/
}

    .fullScreenModal .modal-dialog {
        width: 100%;
        height: 95%;
        padding: 0;
    }

    .fullScreenModal .modal-content {
        height: 100%;
    }

/* Small Box */
.small-box {
    border-radius: 0.25rem;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 20px;
    position: relative;
}

    .small-box > .inner {
        padding: 10px;
        color: white;
    }

    .small-box > .small-box-footer {
        background: rgba(0, 0, 0, 0.1);
        color: rgba(255, 255, 255, 0.8);
        display: block;
        padding: 3px 0;
        position: relative;
        text-align: center;
        text-decoration: none;
        z-index: 10;
    }

        .small-box > .small-box-footer:hover {
            background: rgba(0, 0, 0, 0.15);
            color: #ffffff;
        }

    .small-box h3 {
        font-size: 4.2rem;
        font-weight: bold;
        margin: 0 0 10px 0;
        padding: 0;
        white-space: nowrap;
    }

@media (min-width: 992px) {
    .col-xl-2 .small-box h3,
    .col-lg-2 .small-box h3,
    .col-md-2 .small-box h3 {
        font-size: 3.6rem;
    }

    .col-xl-3 .small-box h3,
    .col-lg-3 .small-box h3,
    .col-md-3 .small-box h3 {
        font-size: 3.6rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-2 .small-box h3,
    .col-lg-2 .small-box h3,
    .col-md-2 .small-box h3 {
        font-size: 4.2rem;
    }

    .col-xl-3 .small-box h3,
    .col-lg-3 .small-box h3,
    .col-md-3 .small-box h3 {
        font-size: 4.2rem;
    }
}

.small-box p {
    font-size: 2rem;
}

    .small-box p > small {
        color: #f8f9fa;
        display: block;
        font-size: 4.9rem;
        margin-top: 5px;
    }

.small-box h3,
.small-box p {
    z-index: 5;
}

.small-box .icon {
    color: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

    .small-box .icon > i {
        font-size: 90px;
        position: absolute;
        right: 15px;
        top: 15px;
        transition: all 0.3s linear;
    }

        .small-box .icon > i.fa, .small-box .icon > i.fas, .small-box .icon > i.far, .small-box .icon > i.fab, .small-box .icon > i.glyphicon, .small-box .icon > i.ion {
            font-size: 70px;
            top: 20px;
        }

.small-box:hover {
    text-decoration: none;
}

    .small-box:hover .icon > i {
        font-size: 95px;
    }

        .small-box:hover .icon > i.fa, .small-box:hover .icon > i.fas, .small-box:hover .icon > i.far, .small-box:hover .icon > i.fab, .small-box:hover .icon > i.glyphicon, .small-box:hover .icon > i.ion {
            font-size: 75px;
        }

@media (max-width: 767.98px) {
    .small-box {
        text-align: center;
    }

        .small-box .icon {
            display: none;
        }

        .small-box p {
            font-size: 18px;
        }
}

/* BG Colors */
.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

/* Evrak Takip İptal Seçilen Giden Evrak Kaydı */
.evrakTakipGidenIptal {
    color: #ffffff;
    background-color: #FF7377;
}

    .evrakTakipGidenIptal a {
        color: #ffffff;
    }
