/*
/	Otys portal V3
/	Standard color: #ffd300;
*/

/*-- General CSS--*/
*{
    box-sizing:border-box;
}
*:focus {
    outline: none;
}
html{
	margin:0;
	padding:0;
	font-size:62.5%;
}
body{
	margin:0;
	padding:0;
	font-size:1.6rem;
	font-family: 'Inter', sans-serif;
	background-color:#fff;
}
h1,h2,h3,h4,h5,h6{
	margin:0;
	font-weight:600;
    color:#111827;
    font-family: 'Montserrat', sans-serif;
}
h1 {
    line-height: 1.5;
    margin: 0;
}
h2 {
    display: block;
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: bold;
    color: #1F2457;
    margin: 0 0 10px;
}
p, .text {
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin: 0 0 20px;
    color: #6B7280;
    font-weight: 400;
}
p:last-child, .text:last-child {
    margin-bottom: 0;
}
a, a:hover{
	color:#1F2457;
    text-decoration:none;
}
img{
	display:block;
	max-width:100%;
	height:auto;
}
.buttonContainer {
    padding-top: 20px;
}
.formInput + .buttonContainer {
    padding-top: 0;
}
button, .button, input[type="submit"], input[type="button"] {
    font-family: inherit;
    border: none;
    border-radius: 5px;
    background: #ffd300;
    padding: 8px 30px;
    color: #fff;
    font-weight:600;
    box-shadow: 2px 2px 4px #00000012;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2rem;
    transition: .2s;
}
button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    cursor: pointer;
    box-shadow: 2px 2px 4px #00000038;
    color: #fff;
    text-decoration: none;
}
.mini-button {
    width: 20px;
    height: 20px;
    background: #40ADFA;
    border-radius: 3px;
    box-shadow: 2px 2px 4px #00000012;
    transition: .2s;
    margin-right: 5px;
}
.mini-button:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    line-height: 2rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.mini-button:hover {
    box-shadow: 2px 2px 4px #00000038;
    cursor: pointer;
}
.mini-button.save {
    background: #4caf50;
}
.mini-button.save:before {
    content: '\f0c7';
}
.mini-button.delete {
    background: #e91e1e;
}
.mini-button.delete:before {
    content: '\f1f8';
}
input,textarea{
	font-family:inherit;	
}
.sw{
	max-width:1200px;
	margin:0 auto;
	padding:0 15px;
}
.sw.xl{
	max-width:1600px;
}
.sw.sm{
	max-height:768px;
}
.ckOuter{
	display:none;
}

/*
    Standard elements
*/
.standard-el-title {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: bold;
    margin: 0 0 10px 0;
}
.standard-el-sub-title {
    border-bottom: 1px solid #ccc;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
}
.standard-el-item {
    margin: 20px 0;
}

/*Button Primary green*/
.button.primary.green{
    background-color: #22C55E;
    border: 1px solid #22C55E;
    color: #fff;
}
.button.primary.green:hover{
    background-color:#16A34A;
    border: 1px solid #16A34A;
}
/*Button Primary red*/
.button.primary.red{
    background-color: #F87171;
    border: 1px solid #F87171;
    color: #fff;
}
.button.primary.red:hover{
    background-color:#DC2626;
    border: 1px solid #DC2626;
}
/*Button Primary grey*/
.button.primary.grey{
    background-color: #F9FAFB;
    border: 1px solid #F9FAFB;
    color:#4B5563;
}
.button.primary.grey:hover{
    background-color:#E5E7EB;
    border: 1px solid #E5E7EB;
    color:#4B5563;
}

/*Button Secondary green*/
.button.secondary.green{
    background-color: transparent;
    border: 1px solid #4ADE80;
    color:#15803D;
}
.button.secondary.green:hover{
    background-color:#F0FDF4;
    border: 1px solid #16A34A;
}
/*Button Secondary Red*/
.button.secondary.red{
    background-color: transparent;
    border: 1px solid #FCA5A5;
    color:#B91C1C;
}
.button.secondary.red:hover{
    background-color:#FEF2F2;
    border: 1px solid #FCA5A5;
}
/*Button Secondary Grey*/
.button.secondary.grey{
    background-color: transparent;
    border: 1px solid #E5E7EB;
    color:#4B5563;
}
.button.secondary.grey:hover{
    background-color:#F9FAFB;
    border: 1px solid #E5E7EB;
}

/*Icon*/
.icon{
    width: 33px;
    height: 33px;
    border: 1px solid #4B5563;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    cursor:pointer;
}
.icon:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-weight: normal;
    font-size: 14px;
    line-height: 33px;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    color: #000;
}
/*Add icon*/
.icon.add-icon{
    background-color:#DCFCE7;
    border:1px solid #DCFCE7;
}
.icon.add-icon:before{
    content:'\f067';
    color:#15803D;
}
.icon.add-icon:hover{
    border:1px solid #22C55E;
}
/*Remove icon*/
.icon.remove-icon{
    background-color:#FEE2E2;
    border:1px solid #FEE2E2;
}
.icon.remove-icon:before{
    content:'\f00d';
    color:#B91C1C;
}
.icon.remove-icon:hover{
    border:1px solid #F87171;
}
/*Back icon*/
.icon.back-icon{
    background-color:#fff;
    border:1px solid #E5E7EB;
}
.icon.back-icon:before{
    content:'\f177';
    color:#4B5563;
}
.icon.back-icon:hover{
    background-color:#E5E7EB;
    border:1px solid #F3F4F6;
}
/*Edit icon*/
.icon.edit-icon{
    background-color:#fff;
    border:1px solid #E5E7EB;
}
.icon.edit-icon:before{
    content:'\f304';
    color:#6B7280;
}
.icon.edit-icon:hover{
    background-color:#E5E7EB;
    border:1px solid #E5E7EB;
}







/* Inputs */
.formInput {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px;
}
.formInput input,
.formInput textarea {
    background: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 5px;
    color: #111827;
    border: 1px solid #D1D5DB;
    font-size: 1.6rem;
    line-height: 2.2rem;
}
.formInput input[readonly="readonly"] {
    background: #F3F4F6;
    color: #6B7280;
    box-shadow: none;
    cursor: default;
}
.formInput label {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin: 0 0 3px 0;
    color: #9CA3AF;
}

.formInput .error{
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: #F87171;
    margin-top: 3px;
}
.formInput.error-mode input{
    border-color:#F87171;
}
.formInput input:disabled {
    background-color: #F3F4F6;
}
.formInput input:focus,.standard-el-item.focus-mode input{
    border-color:#111827;
    box-shadow:0 1px 3px rgba(17, 24, 39, 0.15);
}
/* Explain */
.formInput {
    position: relative;
}
.explain-wrapper {
    display: inline-block;
    cursor: pointer;
}
.explain-wrapper i {
    color: #111827;
    margin-left: 7px;
    font-size: 1.4rem;
}
.explain {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgb(17 24 39 / 10%);
    padding: 10px;
    max-width: 150px;
    position: absolute;
    font-size: 1.2rem;
    line-height: 1.6rem;
    transform: translateY(-50%) translateX(-20px);
    bottom: 40px;
    color: #111827;
}
/*Radios*/
.radio-container.inline {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.radio {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
}
.radio-container.inline .radio {
    margin-right: 15px;
}
.radio:last-child {
    margin: 0;
}
.radio > label {
    color: #111827;
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 0;
    cursor:pointer;
    padding-left:10px;
}
.radio > input[type="radio"]{
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 100%;
    cursor: pointer;
    margin:0;
    padding: 0;
}
.radio > input[type="radio"]:checked {
    background: #000;
    box-shadow: inset 0 0 0px 4px #fff;
}
/*Checkbox*/
.checkbox-container.inline {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.checkbox {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
}
.checkbox-container.inline .checkbox {
    margin-right: 15px;
}
.checkbox:last-child {
    margin: 0;
}
.checkbox > label {
    color: #111827;
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 0;
    cursor:pointer;
    padding-left:10px;
}
.checkbox > input[type="checkbox"]{
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius:3px;
    cursor: pointer;
    margin:0;
    padding: 0;
}
.checkbox > input[type="checkbox"]:checked{
    background-image:url(../../_images_global/portal_v3/checkbox-check.svg);
    background-repeat:no-repeat;
    background-size:12px auto;
    background-position:center;
    background-color: #000;
}

/*Messages*/
.messages {
    position: fixed;
    top: 90px;
    right: 40px;
    max-height: calc(100vh - 110px);
    overflow: hidden;
}
.message {
    max-width: 450px;
    opacity:0.2;
}
.message_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:25px 30px 25px 20px;
    background: #fff;
    box-shadow: 0 5px 10px rgb(17 24 39 / 5%);
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    position: relative;
}
.message_icon{
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #4B5563;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
.message_icon:before{
    content: '\f075';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-weight:bold;
    color:#fff;
}
.message_close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    text-align: center;
    line-height: 15px;
}
.message_close:before {
    content: '\f00d';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-weight: bold;
    color: #A2A4BC;
    font-size: 10px;
}
.message.remove {
    display:none;
}


.message.success .message_inner{
    background-color:#DCFCE7;
    border-color:#15803D;
}
.message.success .message_icon{
    background-color:#15803D;
}
.message.success .message_icon:before{
    content: '\f00c';
    color:#fff;
}
.message.success .message_text,.message.success .message_title{
    color:#15803D;
}

.message.alert .message_inner{
    background-color:#FEE2E2;
    border-color:#B91C1C;
}
.message.alert .message_icon{
    background-color:#B91C1C;
}
.message.alert .message_icon:before{
    content: '\f071';
    color:#fff;
}
.message.alert .message_text,.message.alert .message_title{
    color:#B91C1C;
}











.message_content{
    padding-left:30px;
    width:calc(100% - 32px);
}
.message_title{
    font-size:1.6rem;
    line-height:1.9rem;
    font-weight:600;
    margin:0 0 5px 0;
}
.message_text{
    color:#9CA3AF;
    font-size:1.4rem;
    line-height:1.9rem;
}

/* Otysselect */
/*All Greys*/
.select {
    background: #fff;
    padding: 2px 35px 2px 10px;
    border-radius: 5px;
    color: #111827;
    border: 1px solid #D1D5DB;
    font-size: 1.6rem;
    line-height: 1.8rem;
}
.select.options_open {
    border-radius: 5px;
    border-color: #121826;
}
.select .select_options,
input.select_searcher{
    border: none;
}
.select .select_options::-webkit-scrollbar-track,
.select .select_options::-webkit-scrollbar{
    background-color: #cecece;
}
.select.single .selected_item[value=NULL],
.select .select_options .option[value=NULL],
.select_label{
    color:#cecece;
}
input.select_searcher {
    background-image: url(../../_images_global/otysSelectv2/search.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 14px;
    background-color: #F3F4F6;
    border-radius: 5px;
    border: none;
    padding: 7px 20px 7px 40px;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #9CA3AF;
}
input.select_searcher:focus {
    border-color: none;
    box-shadow: none;
}
.select .select_options {
    box-shadow: 0 5px 10px #1f24570d;
    width: 100%;
    left: 0;
    border: 1px solid #D1D5DB;
    margin-top: 10px;
    border-radius: 3px;
    padding: 15px 10px;
}
/*Selected option text*/
.active_options,
.select.multiple .selected_item,
.select .select_options .option.selected{
    color:#fff;
}
.select.options_open .select_options {
    display: block;
}
.select .select_options .option {
    padding: 4px 15px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 3px 0;
    position: relative;
}
.select.multiple .select_options .option {
    padding: 4px 15px 4px 40px;
}
.select.multiple .select_options .option:before {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
}
.select.multiple .select_options .option.selected:before {
    background-image: url(../../_images_global/portal_v3/checkbox-check.svg);
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: center;
    background-color: #000;
}
/*Option text color*/
.select.single .selected_item {
    padding: 4px 0;
    margin: 2px 5px;
}
.selected_item {
    color: #1F2457;
}
/* Date select */
.apllDate > div > .select {
    width: calc(33.3% - 6.5px);
    float: left;
    margin-right: 10px;
}
/* Gender select */
.aplGenderInput > div > label {
    margin-bottom: 5px;
    display: block;
}
/*Selected option background color*/
.select.multiple .selected_item, .select .select_options .option.selected {
    background-color: #F3F4F6;
    border-radius: 5px;
    font-size: 1.4rem;
    color: #111827;
}
.select.multiple .active_options_wrapper .selected_item {
    background-color: #111827;
    color: #fff;
    border: 1px solid #D1D5DB;
}
.select .select_options::-webkit-scrollbar-thumb{
    background-color: #121826;   
}
/*Hover over select option*/
.select .select_options .option:not(.selected):hover{
    background-color: #f3f4f6;
    color: #000;
    border-radius: 5px;
}
/*Counter*/
.counter{
    background-color: #ffd300;
}

/* File input */
.fileInputHolder.empty > .remove{
    display: none;
}
.fileInputHolder.empty:after {
    content: '\f574';
    font-family: "Font Awesome 5 Pro";
    font-size: 1.8rem;
    position: absolute;
    top: calc(50% - 18px);
    right: 10px;
    line-height: 3.6rem;
}
.fileInputHolder.empty:hover:after {
    font-weight: bold;
}
.inputFile{
    cursor:pointer;
}
input[type=file]{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left:0;
    top:0;
    z-index:2;
    cursor:pointer;
}
.fileInputHolder {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f4f5fa;
    border-radius: 3px;
    max-width: 100%!important;
    width: 100%;
    padding: 9px 35px 9px 15px;
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #1F2457;
}
span.remove {
    position: absolute;
    right: 0;
    line-height: 4rem;
    width: 40px;
    height: 100%;
    top: 0;
    z-index: 10;
    cursor: pointer;
}
span.remove:after{
    content: '\f2ed';
    font-family: "Font Awesome 5 Pro";
    font-size: 1.8rem;
    position: absolute;
    top: calc(50% - 18px);
    right: 10px;
    line-height: 3.6rem;
}
span.remove:hover:after {
    font-weight: bold;
}



/*Main styling*/
#wrapper {
    display: flex;
    height: 100vh;
}
#main {
    display: block;
    flex: 0 0 auto;
    width: calc(100% - 260px);
}
#bisjab {

    padding: 30px 60px;
    height: calc(100vh - 90px);
    overflow-y: auto;
}


/*Sidebar*/
#sidebar {
    width: 260px;
    background: #F9FAFB;
    flex: 0 0 auto;
    padding: 30px;
    border-right: 1px solid #E0E0E0;
}
#logo img {
    max-width: 180px;
    max-height: 100px;
    margin: 0 auto;
}

/*Menu styling*/
.main-menu{
	padding:40px 0 0 0;
}
.menu-link{
	margin:0 0 5px 0;
}
.menu-link > a {
    display: block;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 2.1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #9CA3AF;
    margin: 0 0 30px;
}
.menu-link > a.active{
    color: #000000;
}
.menu-link > a:hover {
    color: #000000;
}
.menu-link > a:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
	margin-right: 15px;
    font-weight: normal;
    font-size: 2rem;
}
.menu-link.menu-link-home > a:before {
    content: '\f015';
}
.menu-link.menu-link-profilepage > a:before {
    content: '\f2bd';
}
.menu-link.menu-link-logindata > a:before {
    content: '\f084';
}
.menu-link.menu-link-availability > a:before {
    content: '\f133';
}
.menu-link.menu-link-applications > a:before {
    content: '\f0f2';
}
.menu-link.menu-link-jobfavorites > a:before {
    content: '\f005';
}
.menu-link.menu-link-timesheets > a:before {
    content: '\f017';
}
.menu-link.menu-link-sqlist > a:before {
    content: '\f002';
}
.menu-link.menu-link-logout > a:before {
    content: '\f08b';
}

/*Topbar*/
#topbar {
    position: relative;
    height: 90px;
    margin: 0;
    width: 100%;
    z-index: 10;
    box-shadow: inset 0px -1px 0 0px #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#topbar .topbar-inner {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    max-width: 520px;
    margin: 0 auto;
}
#topbar-title a {
    display: none;
}
#topbar h1 {
    display: block;
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: bold;
}
#bisjab h1 {
    display: none;
}
#topbar-tools {
    display: flex;
    align-items: center;
    position: absolute;
    right: 30px;
    top: 20px;
}
/* HAMBURGER */
.hamburger {
    display: none;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: opacity,-webkit-filter;
    transition-property: opacity,-webkit-filter;
    -o-transition-property: opacity,filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    text-transform: none;
    padding: 13px 0;
    margin-left: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    text-align: center;
    margin-left: 15px;
    transition: .2s;
}
.hamburger:hover {
    background: #F3F4F6;
    cursor: pointer;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 20px;
}
.hamburger-inner {
    top: 50%;
    display: block;
}
.hamburger .hamburger-inner {
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
         -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -webkit-transition-duration: 75ms;
         -o-transition-duration: 75ms;
            transition-duration: 75ms;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 15px;
    height: 2px;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 1px;
    background-color: #111827;
}
.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -5px;
}
.hamburger-inner:after {
    bottom: -5px;
}
.hamburger .hamburger-inner:before {
    -webkit-transition: top 75ms ease .12s,opacity 75ms ease;
    -o-transition: top 75ms ease .12s,opacity 75ms ease;
    transition: top 75ms ease .12s,opacity 75ms ease;
}
.hamburger .hamburger-inner:after {
    -webkit-transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    -o-transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19),-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
}

/* HAMBURGER MENU OPEN */
.menuOpen .hamburger .hamburger-inner {
    -webkit-transition-delay: .12s;
         -o-transition-delay: .12s;
            transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
         -o-transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menuOpen .hamburger .hamburger-inner, .menuOpen .hamburger .hamburger-inner:after, .menuOpen .hamburger .hamburger-inner:before {
    background-color: #111827;
}
.menuOpen .hamburger .hamburger-inner:before {
    top: 0;
    -webkit-transition: top 75ms ease,opacity 75ms ease .12s;
    -o-transition: top 75ms ease,opacity 75ms ease .12s;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}
.menuOpen .hamburger .hamburger-inner:after {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -o-transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}


/*Candidate avatar*/
#candidate-image{
    width: 50px;
    height: 50px;
    background-color: #fdfdfc;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    display: block;
    border-radius: 100%;
}
#candidate-image.no-image:before {
    content: '\f2bd';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    color: #ffd300;
    font-size: 3.6rem;
    line-height: 3.6rem;
    font-weight: bold;
}

/*Logout button Topbar*/
#topbar-tools .tools-expand {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    text-align: center;
    margin-left: 20px;
    transition: .2s;
}
#topbar-tools .tools-expand:before {
    content: '\f142';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-size: 3rem;
    text-align: center;
    line-height: 5rem;
    color: #111827;
}
#topbar-tools .tools-expand:hover {
    background: #F3F4F6;
    cursor: pointer;
}
#topbar-tools .tools-wrapper {
    display: none;
    position: absolute;
    width: 280px;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgb(0 0 0 / 5%);
    padding: 10px 0;
}
#topbar-tools.open .tools-wrapper {
    display: block;
}
#topbar-tools .tools-wrapper > * {
    padding: 10px 15px 10px 56px;
    color: #9CA3AF;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 3rem;
    display: block;
    width: 100%;
    background: #fff;
    transition: .2s;
}
#topbar-tools .tools-wrapper > *:hover {
    background: #F9FAFB;
    cursor: pointer;
}
#logout-button:before,
#profilechange-button:before,
#backtowebsite-button:before,
#darkmode-button:before {
    content: '\f2f5';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-size: 1.6rem;
    line-height: 3rem;
    color: #393D60;
    position: absolute;
    left: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #fff;
}
#profilechange-button:before {
    content: '\f304';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
}
#backtowebsite-button:before {
    content: '\f177';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
}
#darkmode-button:before {
    content: '\f186';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    background: #393D60;
    color: #fff;
}



/*Bisjab*/
#bisjab .widget{
    background:#fff;
    margin:0 0 30px 0;
}
#bisjab .myprofile-outer .widget {
    background:#fff;
    margin:0 0 30px 0;
    padding: 30px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
}
#bisjab .widget.empty_loader {
    height: 200px;
    background: #efefef;
}
#bisjab .small-inner,
body.small-body #bisjab h1 {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}
body.small-body #bisjab h1 {
    margin-bottom: 15px;
}
/* Lists */
.list-item {
    background: #fff;
    border: 1px solid #D1D5DB;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 2rem;
    display: block;
    color: #9CA3AF;
}
.list-item:last-child {
    margin: 0;
}
.list-item-bottom {
    display: flex;
    justify-content: space-between;
}
.list-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2rem;
    color: #1F2457;
}

/* Tables */
.table {
    font-size: 1.2rem;
    line-height: 2rem;
}
.table-head {
    display: flex;
    margin: 0 0 10px;
}
.table-item {
    display: flex;
    margin: 0 0 10px;
}
.table-item > div {
    background: #F4F5FA;
    display: block;
    padding: 8px 14px;
    border-radius: 3px;
    margin: 0 5px;
    font-size: 1.4rem;
}
.table-head > div {
    margin: 0 5px;
}
.table-item > div:first-child,
.table-head > div:first-child {
    margin-left: 0;
}
.table-item > div:last-child,
.table-head > div:last-child {
    margin-right: 0;
}

/* Progress circle */
.progress-outer {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.hookText.pcText {
    font-size: 1.6rem;
    line-height: 3.2rem;
}
.explain-outer {
    display: block;
}
.explain-outer {
    display: none;
}
.progress-outer {
    display: none;
}
.circle-outer {
    width: 200px;
    height: 400px;
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
.circle-outer canvas {
    transform: rotateY(180deg);
}

.progress-number {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    text-align: center;
    line-height: 400px;
    font-size: 4.8rem;
    font-weight: 700;
    left: 60px;
    position: absolute;
    top: 10px;
}

/*My Profile page nav*/
#bisjab .widget-page-nav {
    /*padding: 10px 30px;*/
}
.page-nav-items{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 0 20px;
}
.page-nav-items:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #f4f5fa;
    position: absolute;
    left: 0;
    top: calc(50% - 0.5px);
}
.page-nav-items > .nav-item {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    position: relative;
}
.page-nav-items > .nav-item > a{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    display: block;
    line-height: 36px;
    text-align: center;
    font-size: 1.6rem;
    background-color:#f4f5fa;
    transition:0.1s;
}
.page-nav-items > .nav-item > a.active,.page-nav-items > .nav-item > a:hover{
    background-color:#ffd300;
    color:#fff;
}
.page-nav-items > .nav-item:after {
    content: '';
    position: absolute;
    left: 100%;
    top: calc(50% - 0.5px);
    width: 6.5px;
    height: 1px;
    background-color: #ffffff;
}
.page-nav-items > .nav-item:before{
    content: '';
    position: absolute;
    right: 100%;
    top: calc(50% - 0.5px);
    width: 6.5px;
    height: 1px;
    background-color: #ffffff;
}
.page-nav-items > .nav-item:first-child:before,.page-nav-items > .nav-item:last-child:after{
    display:none;
}

/* Loading */
.widget-questionset {
    position: relative;
}
.widget-questionset.saving:before{
    z-index: 10;
    position: absolute;
    left: 0;
    right:0;
    top: calc(50% - 15px);
    margin:0 auto;
    content: '';
    border: 3px solid #ffd300;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    z-index: 10;
}

.widget-questionset.saving form {
    filter: blur(2px);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal */
.modal-body {
    padding: 3rem;
}

/* Hide scroll bar */
html.remodal-is-locked {
    overflow: hidden;
    touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
    display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
    backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
    position: relative;
    outline: none;
    text-size-adjust: 100%;
}
.remodal-is-initialized {
    /* Disable Anti-FOUC */
    display: inline-block;
}



/* advsearch/sqList.html */
.table-sqlist .table-item-activated {
    display: flex;
    justify-content: space-between;
}
.mini-button.edit-sqitem:before {
    content: '\f304';
}
.table-sqlist .edit-mode {
    display: none;
}
.table-item-buttons {
    display: flex!important;
}



@media (max-width: 990.98px) {
    .hamburger {
        display: inline-block;
        width: 40px;
        height: 40px;
        padding: 8px 0;
    }
    #topbar-tools .tools-expand {
        width: 40px;
        height: 40px;
    }
    #topbar-tools .tools-expand:before {
        content: '\f142';
        font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
        font-size: 2.4rem;
        text-align: center;
        line-height: 4rem;
        color: #111827;
    }
    #topbar-title a {
        margin-left: 15px;
        display: block;
        max-height: 30px;
    }
    #topbar-title a img {
        max-height: 30px;
    }
    #topbar .topbar-inner {
        max-width: 100%;
    }
    #sidebar #logo {
        display: none;
    }
    #topbar h1 {
        display: none;
    }
    .main-menu {
        padding: 0;
    }
    #bisjab h1 {
        display: block;
        font-size: 1.8rem;
        line-height: 2.2rem;
        margin: 0 0 15px;
    }
    #bisjab {
        padding: 15px 15px;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    #main {
        width: 100%;
    }
    #sidebar {
        position: fixed;
        z-index: 100;
        height: 100%;
        transform: translateX(-100%);
        transition: .2s;
    }
    #topbar {
        height: 60px;
    }
    #topbar-tools {
        top: 10px;
        right: 15px;
    }
    body.menuOpen #sidebar {
        transform: translateX(0);
    }
    body:after {
        content: '';
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 0.5);
        left: 0;
        top: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: .2s;
    }
    body.menuOpen:after {
        opacity: 100%;
        visibility: visible;
    }
}

@media (max-width: 500.98px) {
    #bisjab .widget {
        margin: 0 0 10px;
    }
}