﻿
textarea {
    min-height: 150px;
}

table th, .table td, .table > thead > tr > th {
    padding: 8px;
}

.table-striped tbody tr:nth-of-type(2n+1), .record:nth-of-type(2n+1), .multi-records-record:nth-of-type(2n+1), .vacancy:nth-of-type(2n+1), .notification-box:nth-of-type(2n+1) {
    background-color: #fafbfc;
}

.table {
    color: #656565;
}

/* Loading  */
/*#region Loading*/
@-webkit-keyframes typing {
    0% {
        background-color: #ffffff;
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    25% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px #ffffff, 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    75% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px #ffffff;
    }
}

@-moz-keyframes typing {
    0% {
        background-color: #ffffff;
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    25% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px #ffffff, 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    75% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px #ffffff;
    }
}

@keyframes typing {
    0% {
        background-color: #ffffff;
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    25% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px #ffffff, 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }

    75% {
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px #ffffff;
    }
}

.loading-container {
    z-index: 5000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #215ba9;
}

    .loading-container.loading-inactive {
        display: none;
    }

        .loading-container.loading-inactive .loader {
            display: none;
        }

    .loading-container .loading {
        position: relative;
        font-weight: bold;
        color: #fff;
        display: inline-block;
        white-space: nowrap;
        bottom: 36px;
        text-align: justify;
        text-justify: inter-word;
        width: 130px;
    }

    .loading-container .loader {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        -webkit-animation: typing 1s linear infinite alternate;
        -moz-animation: Typing 1s linear infinite alternate;
        animation: typing 1s linear infinite alternate;
        margin: 50vh auto;
        /* Not necessary- its only for layouting*/
        position: relative;
    }

a.down, a.up {
    color: #fff !important;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

/*Form validation*/

.field-validation-error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 90%;
    color: #dc3545;
}

.form-control.input-validation-error {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .form-control.input-validation-error:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.custom-select.input-validation-error {
    border-color: #dc3545;
}

    .custom-select.input-validation-error:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.form-check-input.input-validation-error ~ .form-check-label {
    color: #dc3545;
}

.custom-control-input.input-validation-error ~ .custom-control-label {
    color: #dc3545;
}

    .custom-control-input.input-validation-error ~ .custom-control-label::before {
        border-color: #dc3545;
    }

.custom-control-input.input-validation-error:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d;
}

.custom-control-input.input-validation-error:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-control-input.input-validation-error:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545;
}

.custom-file-input.input-validation-error ~ .custom-file-label {
    border-color: #dc3545;
}

.custom-file-input.input-validation-error:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .form-control.valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    }

.custom-select.valid {
    border-color: #28a745;
    padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .custom-select.valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    }

.form-check-input.valid ~ .form-check-label {
    color: #28a745;
}

.custom-control-input.valid ~ .custom-control-label {
    color: #28a745;
}

    .custom-control-input.valid ~ .custom-control-label::before {
        border-color: #28a745;
    }

.custom-control-input.valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57;
}

.custom-control-input.valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-control-input.valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745;
}

.custom-file-input.valid ~ .custom-file-label {
    border-color: #28a745;
}

.custom-file-input.valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.validation-summary-errors ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

    .validation-summary-errors ul li:before {
        content: "\f06a";
        font-family: 'Font Awesome 5 Free';
        display: inline-block;
        font-weight: 900;
        width: 1em;
    }

/*Custom file show name*/
.custom-file-label {
    overflow: hidden;
}
/*Override blue color*/

.custom-control-input:checked ~ .custom-control-label:before {
    border-color: #215ba9;
    background-color: #215ba9;
}

.btn-primary, btn-primary.disabled, .btn-primary:disabled {
    background-color: #215ba9;
    border-color: #215ba9;
}

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: 0 0 0 #000;
        background-color: #215ba9;
        border-color: #215ba9;
    }

    .btn-primary:hover {
        background-color: #169ad4;
        border-color: #169ad4;
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        background-color: #215ba9;
        border-color: #158eb3;
    }

.btn-info, btn-info.disabled, .btn-info:disabled {
    background-color: #27aae3;
    border-color: #27aae3;
}

    .btn-info.focus, .btn-info:focus, .btn-info.active, .btn-info:active {
        box-shadow: 0 0 0 #000;
        background-color: #51c8fc;
        border-color: #51c8fc;
    }

    .btn-info:hover {
        background-color: #51c8fc;
        border-color: #51c8fc;
    }

    .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
        background-color: #51c8fc;
        border-color: #51c8fc;
    }

.btn-outline-info, btn-outline-info.disabled, .btn-outline-info:disabled {
    background-color: #fff;
    border-color: #0b407a;
    color: #0b407a;
}

    .btn-outline-info:hover {
        background-color: #0b407a;
        border-color: #0c4787;
        color: #fff;
    }

.navbar {
    background-color: #215ba9;
    background-repeat: repeat-x;
}

a, .btn-link, a.page-link {
    display: inline-block;
    color: #215ba9;
}

    a:hover, .btn-link:hover {
        color: #215ba9;
    }

.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
}

.navbar-dark a.navbar-brand:focus, .navbar-dark a.navbar-brand:hover {
    color: #fff;
}

.form-control:focus {
    border-color: #215ba9;
    box-shadow: 0 0 0 .2rem rgba(35,183,229,.25);
}

h1, h2, h3, h4, h5, h6 {
    color: #215ba9;
}

label {
    color: #656565;
    font-weight: bold;
}

.table thead > tr > th {
    border-bottom: 3px solid #215ba9;
}

table.dataTable thead .sorting:after, .page-item.active a.page-link {
    color: #fff;
}

.page-item.active .page-link {
    background-color: #215ba9;
    border-color: #215ba9;
}

/*Modal*/
.modal-message .modal-dialog {
    width: 300px;
}

.modal-message .modal-body,
.modal-message .modal-footer,
.modal-message .modal-header,
.modal-message .modal-title {
    background: 0 0;
    border: none;
    margin: 0;
    padding: 0 20px;
    text-align: center !important;
}

.modal-message .modal-header {
    color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 0 8px;
}

    .modal-message .modal-header .fa,
    .modal-message .modal-header .glyphicon,
    .modal-message .modal-header .typcn,
    .modal-message .modal-header .wi {
        font-size: 30px;
    }

.modal-message .modal-title {
    font-size: 17px;
    color: #737373;
    margin-bottom: 3px;
}

.modal-message .modal-body {
    color: #737373;
}

.modal-message .modal-footer {
    margin: 25px 0 20px;
    padding-bottom: 10px;
}

.modal-message.modal-info .modal-header {
    color: #57b5e3;
    border-bottom: 3px solid #57b5e3;
}

.modal-message.modal-danger .modal-header {
    color: #d73d32;
    border-bottom: 3px solid #e46f61;
}

.modal-message.modal-warning .modal-header {
    color: #f4b400;
    border-bottom: 3px solid #ffce55;
}

.modal-message.modal-success .modal-header {
    color: #53a93f;
    border-bottom: 3px solid #a0d468;
}

.modal-blue .modal-header {
    border-bottom: 3px solid #5db2ff;
}

.modal-danger .modal-header {
    border-bottom: 3px solid #d73d32;
}

.modal-success .modal-header {
    border-bottom: 3px solid #53a93f;
}

.modal-warning .modal-header {
    border-bottom: 3px solid #f4b400;
}

.modal-silver .modal-header {
    border-bottom: 3px solid #777777;
}

.modal-inverse .modal-header {
    border-bottom: 3px solid #444444;
}

.modal-blueberry .modal-header {
    border-bottom: 3px solid #6f85bf;
}

.modal-palegreen .modal-header {
    border-bottom: 3px solid #a0d468;
}

.modal-orange .modal-header {
    border-bottom: 3px solid #fb6e52;
}

.modal-darkorange .modal-header {
    border-bottom: 3px solid #ed4e2a;
}

.modal-magenta .modal-header {
    border-bottom: 3px solid #bc5679;
}

.modal-purple .modal-header {
    border-bottom: 3px solid #7e3794;
}

.modal-maroon .modal-header {
    border-bottom: 3px solid #981b48;
}

.modal-primary .modal-header {
    border-bottom: 3px solid #4374e0;
}

.modal-content {
    -webkit-border-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0;
    -moz-background-clip: padding;
    border-radius: 0;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    color: #000000;
    background-color: #ffffff;
    border: rgba(0, 0, 0, 0);
}

    .modal-content .close {
        font-size: 26px;
    }

.modal-footer {
    padding-top: 12px;
    padding-bottom: 14px;
    border-top: 0;
    background-color: #f5f5f5;
}

.modal-header {
    padding: 10px 15px 10px 20px;
    background-color: #f5f5f5;
}

    .modal-header .close {
        font-size: 26px;
    }

.modal-backdrop {
    background-color: #ffffff;
}

    .modal-backdrop.in {
        zoom: 1;
        filter: alpha(opacity=75);
        -webkit-opacity: 0.75;
        -moz-opacity: 0.75;
        opacity: 0.75;
    }

.modal-message .modal-dialog {
    width: 300px;
}

.modal-message .modal-body,
.modal-message .modal-footer,
.modal-message .modal-header,
.modal-message .modal-title {
    background: 0 0;
    border: none;
    margin: 0;
    padding: 0 20px;
    text-align: center !important;
}

.modal-message .modal-header {
    color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 0 8px;
}

    .modal-message .modal-header .fa,
    .modal-message .modal-header .fas,
    .modal-message .modal-header .glyphicon,
    .modal-message .modal-header .typcn,
    .modal-message .modal-header .wi {
        font-size: 30px;
    }

.modal-message .modal-title {
    font-size: 17px;
    color: #737373;
    margin-bottom: 3px;
}

.modal-message .modal-body {
    color: #737373;
}

.modal-message .modal-footer {
    margin: 25px 0 20px;
    padding-bottom: 10px;
}

.modal-message.modal-info .modal-header {
    color: #57b5e3;
    border-bottom: 3px solid #57b5e3;
}

.modal-message.modal-danger .modal-header {
    color: #d73d32;
    border-bottom: 3px solid #e46f61;
}

.modal-message.modal-warning .modal-header {
    color: #f4b400;
    border-bottom: 3px solid #ffce55;
}

.modal-message.modal-success .modal-header {
    color: #53a93f;
    border-bottom: 3px solid #a0d468;
}

.form-title {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
    font-weight: 700;
    color: #215ba9;
}
.lightbox-gallery {
    color: #000;
    overflow-x: hidden
}

    .lightbox-gallery p {
        color: #fff
    }

    .lightbox-gallery h2 {
        font-weight: bold;
        margin-bottom: 40px;
        padding-top: 40px;
        color: #fff
    }

@media (max-width:767px) {
    .lightbox-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}

.lightbox-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px
}

    .lightbox-gallery .intro p {
        margin-bottom: 0
    }

.lightbox-gallery .photos {
    padding-bottom: 20px
}

.lightbox-gallery .item {
    padding-bottom: 30px
}