﻿@font-face {
    font-family: 'Source Sans Pro';
    src:
        url('../fonts/SourceSansPro-Regular.ttf') format('truetype'),
/*        url('../fonts/SourceSansPro-Black.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-BlackItalic.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-Bold.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-ExtraLight.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-Italic.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-Light.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-LightItalic.ttf') format('truetype'),          
        url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype'), 
        url('../fonts/SourceSansPro-SemiBoldItalic.ttf') format('truetype');*/
}


body {
    font-family: Source Sans Pro, Arial, Tahoma, sans-serif;
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}


/* Sticky header styles
-------------------------------------------------- */


.site-link {
    font-size: 17px;
    font-weight: 700;
    color: rgb(51,51,51);
    text-decoration: none !important;
    padding: 15px 20px 15px 20px;
    margin: 0;
    border: 0;    
}

.site-nav-item {
    padding: 11px 0 11px 0;
    margin: 0;
    border: 0;
}

.navbar-nav {
    padding: 0;
    margin: 0;
    border: 0;
}

.site-nav-item :hover {
    color: rgb(255,255,255);
    background-color: rgb(51,51,51);
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;   
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
    height: 100%;
    margin: 0;
}

body {
    /* Margin bottom by footer height */
    min-height: 100%;
    height: 100%;
}

.footer {        
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


/* Custom
-------------------------------------------------- */
.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.92);
    z-index: 9999;
}

.overlay-white {
    background-color: rgba(255,255,255,1);    
}

.overlay-right {
    box-shadow: 0 0 2px 2px rgb(64, 64, 64, 0.5);
    position: absolute;
    height: 100%;
    overflow-y: scroll;
    min-width: fit-content;
    width: 40%;
    max-width: 600px;
    margin-left: auto;
    z-index: unset;
}

.accounts-background {
    height: 100%;
    background-image: url("/images/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(220,220,220);
}

.accounts-message-background {
    background-image: url("/images/login_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(26,26,26);
}

.accounts-fields-background {
    background-color: rgba(255,255,255, 0.95);
}

.accounts-message {
    color: white;
}

.register-container {
    background-color: rgb(250,250,250);
    overflow: hidden;
    min-height: 80%;    
    position: relative;
    margin: auto;
}

@media only screen and (max-width: 320px) {
    /* For mobile phones: */
    .register-container {
        width: 100%;
    }
}
.register-btn-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-openit-red {
    color: #cd172d;
}

.text-openit-gray {
    color: #323232;
}

.bg-openit-red {
    background-color: #cd172d;
}

.bg-openit-gray {
    background-color: #f1f1f1;
}

.btn-openit {
    -webkit-transition: 500ms;
    transition: 500ms;
    font-weight: bold;
}

.btn-openit-red {
    background-color: #cd172d;
    color: #FFFFFF;
}

.btn-openit-red:hover, .btn-openit-red:active {
    background-color: #bd172d;
    color: #FFFFFF;
}

.btn-openit-red:focus {
    box-shadow: 0 0 0 0.2rem rgb(225, 83, 97, 0.5);
}

.link-openit {
    -webkit-transition: 500ms;
    transition: 500ms;
}

.link-openit-red {
    color: #cd172d;
}

.link-openit-red:hover {
    color: #bd172d;
    text-decoration: none;
}

.field-wrapper {
    position: relative;
    width: 100%;
}

    .field-wrapper input {
        box-sizing: content-box;
        border: 1px solid #404040;
        /* width = 100% - padding * 2 - border*/
        width: calc(100% - 30px - 2px);
        padding: 15px;
        border-radius: 4px;
    }

.register-form .col-form-label-sm {
    padding-bottom: 0;
    margin-bottom: .25rem;
}



.animation {
    animation-duration: .25s;
    -webkit-animation-duration: .25s;
    -moz-animation-duration: .25s;
    -ms-animation-duration: .25s;
    -o-animation-duration: .25s;
    animation-timing-function: cubic-bezier(.5, 0, .5, 1);
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .5, 1);
    -moz-animation-timing-function: cubic-bezier(.5, 0, .5, 1);
    -ms-animation-timing-function: cubic-bezier(.5, 0, .5, 1);
    -o-animation-timing-function: cubic-bezier(.5, 0, .5, 1);
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
}

.slide-from-right {
    animation-name: show-from-right;
    -webkit-animation-name: show-from-right;
    -moz-animation-name: show-from-right;
    -ms-animation-name: show-from-right;
    -o-animation-name: show-from-right;
}

@keyframes show-from-right {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-to-left {
    animation-name: hide-to-left;
    -webkit-animation-name: hide-to-left;
    -moz-animation-name: hide-to-left;
    -ms-animation-name: hide-to-left;
    -o-animation-name: hide-to-left;
}

.slide-from-left {
    animation-name: show-from-left;
    -webkit-animation-name: show-from-left;
    -moz-animation-name: show-from-left;
    -ms-animation-name: show-from-left;
    -o-animation-name: show-from-left;
}

@keyframes show-from-left {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes hide-to-left {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }

    100% {
        transform: translateX(-200px);
        opacity: 0;
    }
}


/* Smart Table Sorter icons */
.st-sort-ascent:after {
    content: '\25B2';
}

.st-sort-descent:after {
    content: '\25BC';
}


/* Table Sorter icons */
.sort-ascent:after {
    content: '\25B2';
}

.sort-descent:after {
    content: '\25BC';
}

th.sortable {
    cursor: pointer;
}

.padl-5 {
    padding-left: 5px !important;
}
.padl-10 {
    padding-left: 10px !important;
}
.padl-15 {
    padding-left: 15px !important;
}



/* Video Embed */

.embedbounds-16x9 {
       
}

.embedcontainer-16x9 {        
    position: relative;
    padding-top: 56.25%; /*16x9 ration*/    
}

.embedframe-16x9 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

/* ILF */
textarea.ilf-auto-expand {
    overflow: hidden;
    resize: none;    
}

.interview-video {
    background-color: black;
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
}

    .interview-video.hidden {
        border: 0;
        height: 0 !important;
        width: 0 !important;        
    }

 /*State Contaners*/
.state-container-hidden {
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    position: fixed !important;
    z-index: -1 !important;
    overflow: hidden !important;
}

/*quatity*/
.quantity-nav {
    float: right;
    position: relative;
    height: 1.8rem;    
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #1b6ec2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .quantity-button:active {
        background: #1355a0;
    }

    .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0;
        border: 0;
        border-bottom: 1px solid #1861ac;
        border-radius: 4px 4px 0 0;
        line-height: .5;        
        color: white;
    }

    .quantity-button.quantity-down {
        position: absolute;
        bottom: 0;
        height: 50%;
        border: 0;
        border-radius: 0 0 4px 4px;
        line-height: .5;
        color: white;
    }


.jobs .jobs-row:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.jobs input:focus {
    box-shadow: none;
}

.popover-error {
    position: absolute;
    top: unset;
    left: unset;
    max-width: 100%;
    border-color: #d9534f;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 8%), 0 0 8px rgba(217, 83, 79, 60%);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 8%), 0 0 8px rgba(217, 83, 79, 60%);
}

.popover-error .arrow {
    left: 5px;
}

.popover-error .arrow:before {
    border-bottom-color: #d9534f;
}

.popover-error .popover-body {
    position: relative;
    padding-right: 3rem;
    font-weight: bold;
}

.popover-error .popover-error-close-button {
    position: absolute;
    top: 4px;
    right: 4px;
    background: transparent;
    color: #d9534f;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}


/*
flip card
*/
.card-overlay {
    position: relative;
}

.card-overlay > .card-front {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.25s;
    height: 100%;
    width: 100%;
}

.card-overlay:hover .card-front {
    opacity: 1;
}

/*Faqs*/
.faqs .card {
    border-radius: 0 !important;
    border-bottom: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
}

.dropdown-item.dropdown-item-gray.active, .dropdown-item.dropdown-item-gray:active {
    color: #212529;
    text-decoration: none;
    background-color: #e9ecef;
}

.dropdown-item.dropdown-item-gray:focus {
    color: #212529;
    text-decoration: none;
    background-color: transparent;
}

.dropdown-item.dropdown-item-gray.active, .dropdown-item.dropdown-item-gray:active {
    color: #212529;
    text-decoration: none;
    background-color: #e9ecef;
}

.cursor-pointer {
    cursor: pointer;
}

.border-dashed {
    border: 1px dashed #ced4da;
}

.line-height-xs {
    line-height: 1.15;
}

.line-height-sm {
    line-height: 1.25;
}

.select-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-list-group-item {
    padding: 0.25rem 0.75rem;
    cursor: pointer;
}

.select-list-group-item.active, .select-list-group-item:active, .select-list-group-item:hover {
    background-color: #1e8fff;
    color: white;
}

.rotate-90 {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.stage-list-container {
   display:flex;
   position:relative;
}

.stage-list-value {
    font-size: 11px;
    font-stretch: extra-expanded;
    font-weight: 600;
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;
    height: 1px;
    user-select: none;
    white-space: nowrap;
}

.stage-list {
    padding: 2px 0 4px 0;    
}

    .stage-list .stage-done {
        height: 12px;
        background-color: forestgreen;
        border-left:1px solid green;
    }

    .stage-list .stage-rejected {
        height: 12px;
        background-color: #dc3545;
        border-left: 1px solid #dc3545;
    }

    .stage-list .stage-not-done {
        height: 12px;
        background-color: gray;
        border-left:1px solid dimgray;
    }


.ra-smallscroll::-webkit-scrollbar {
    width: .65rem;
    height: .75rem;
}

.ra-smallscroll::-webkit-scrollbar-track {
    background-color: lightgray;
}

.ra-smallscroll::-webkit-scrollbar-thumb {
    background-color: grey;
}

/*Tracking Stage*/
.has-warning {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .select2-selection {
    border-color: #8a6d3b !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
}

.has-warning .select2-container--focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/*Osat*/
.osat th.score {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}

.osat {
    background-color: transparent;
    color: #000000;
    box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, .05);
}

.grade-a {
    background-color: #7bbf7b; /* Green */
    color: #2a5d2a; 
}

.grade-b {
    background-color: #a8d98b; /* Light Green */
    color: #3e6f2f; 
}

.grade-c {
    background-color: #ffde00; /* Light Yellow */
    color: #7f6b2e;
}

.grade-d {
    background-color: #f7d18b; /* Soft Yellow-Orange */
    color: #9f692d; 
}

.grade-e {
    background-color: #f5b85b; /* Yellow-Orange */
    color: #9a5a2a;
}

.grade-f {
    background-color: #f79e52; /* Orange */
    color: #8b4b26; 
}

.grade-g {
    background-color: #f77c5e; /* Soft Orange-Red */
    color: #7d3b22; 
}

.grade-h {
    background-color: #f66a6a; /* Light Red */
    color: #6f2e2e; 
}

.grade-i {
    background-color: #f45252; /* Red */
    color: #5a1c1c; 
}

.grade-j {
    background-color: #e94e4e; /* Muted Deep Red */
    color: #4a1414; /* Dark Brick Red */
}

.no-grade {
    background-color: transparent;
    color: #333333; /* Neutral dark gray */
}


/*Cover Letter Styles*/
@media (min-width: 768px) { /* Desktop */
    .custom-modal-width {
        max-width: 75vw;
        max-height: fit-content;
    }
}

@media (max-width: 767px) { /* Mobile */
    .custom-modal-width {
        max-width: 95vw;
        max-height: fit-content;
    }
}

.custom-modal-width.modal-body {
    min-height: 30vh;
    overflow-y: auto;
}

.summernote-container {
    min-height: 300px;
    max-height: fit-content;
}


    .summernote-container.note-editor {
        min-height: 300px !important;
        max-height: 1000px !important;
    }

.note-editable {
    min-height: 300px !important;
    max-height: 1000px !important;
}

.summernote-container.notice-message {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 10px;
    margin-top: 80px;
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
}

.notice-message i {
    margin-top:20px;
    margin-right: 5px;
    color: #007bff;
}


.question-message {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

    .question-message i {
        margin-right: 5px;
        color: #007bff;
    }



