﻿

/* Animated loading */
#notificationDialog .modal-content img {
    width: 32px;
    margin-right: 10px;
}

.loading img {
    -webkit-animation: rotation 1s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

/* pdf viewer */
[id*="PdfView"] {
    border: 1px solid #dee2e6;
}

[id*="pdf"].modal .modal-content {
    height: 1000px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [id*="pdf"].modal .modal-content {
        height: 650px;
    }

    [id*="pdf"].modal .modal-footer {
        display: none;
    }
}

/*  */
.yesNo button {
    width: 100px;
}

/* */
.Details .Job h4.collapsed:after {
    /*float: right;*/
    font-family: "Font Awesome 5 Free";
    content: '\f103';
    font-weight: 900;
    padding-left: 10px;
    position: relative;
    top: 1px;
}

.Details .Job h4:after {
    /*float: right;*/
    font-family: "Font Awesome 5 Free";
    content: '\f102';
    font-weight: 900;
    padding-left: 10px;
    position: relative;
    top: 1px;
}

/* footer shadow */
.footer {
    box-shadow: 0 -.5rem 1rem rgba(0,0,0,.15) !important;
}


