.alert-box {
  background: white;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05),
    0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
  counter-increment: gradient-counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
  margin-left: 12px;
}
.alert-box-icon {
  position: absolute;
  z-index: 10;
}
.editable-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: left;
}

.editable-input.radio-label {
    display: block;
    width: 850px;
}

.editable-input.radio-label>label {
    display: block;
    width: 850px;
    white-space: initial;
}

.editable-wrap>span>label {
    white-space: normal;
}

.editable-error {
    color: #f44336;
}

.help-inline {
    color: #f44336;
}

input.natural-ui {
    border: none;
    border-bottom: thin dashed black;
    padding-bottom: 0;
    outline: none;
}

p.contract {
    margin: 20px;
}

div.contract {
    margin: 20px;
}

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    width: 100%;
    min-height: 200px;
    text-align: center;
    padding-top: 90px;
    margin: 10px;
    font-weight: bold;
}

.dragover {
    border: 5px dashed #4285F4;
}

div.newFile {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    max-width: 72em;
    margin: 0 auto 2rem;
    border-radius: 0.6rem;
    border: 2px dashed rgba(0, 0, 0, 0.15);
}

div.fileUpload {
    margin-top: 20px;
    position: relative;
    background: #fff;
    box-shadow: 0 1px 3px 0 #bfbfbf;
    border-radius: 0.6rem;
    padding: 3rem;
}

div.newFileBox {
    padding-left: 20px;
    padding-right: 20px;
}

div.filePreview {
    display: inline-block;
}

div.fileNamePreview {
    display: inline-block;
    vertical-align: top;
}

div.fileNameSuggestion {
    display: block;
    margin-left: 3.9em;
}

.info-circle-icon {
  border-radius: 50%;
  margin-left: 4px;
  background-color: #F57C00;
  color:white;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload_cancel-upload {
    top: -1.2rem;
    right: -1.5rem;
}

.upload_cancel-upload {
    position: absolute;
    width: 2.25em;
    height: 2.25em;
    line-height: 2;
    text-align: center;
    background: #e55235;
    color: #fff;
    border: 0;
    border-radius: 100%;
    top: -1.3rem;
    right: -1rem;
    padding: 0;
}

#loading-bar .bar {
    background: #FFFFFF;
    height: 4px;
}

#loading-bar {
    pointer-events: all;
    z-index: 99999;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
}

#loading-bar-spinner .spinner-icon {
    width: 18px;
    height: 18px;
    border: solid 4px transparent;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-radius: 10px;
}

div.fileUpload.fileUploaded {
    background: #dff5dc;
}


/*
.radio-label>label>span{
  display:block;
  width:850px;
}
*/

.dark-primary-color {
    background: #F57C00;
}

.default-primary-color {
    background: #FF9800;
}

.light-primary-color {
    background: #FFE0B2;
}

.accent-color {
    background: #FF5722;
}

.primary-text-color {
    color: #212121;
}

.text-primary-color {
    color: #212121;
}

.text-alternative-color {
    color: #FF9800;
}

a.text-alternative-color:hover {
    color: #FF9800;
}

.secondary-text-color {
    color: #757575;
}

.divider-color {
    border-color: #BDBDBD;
}

a[disabled=disabled] {
    cursor: default;
}

.submit-form-buttons {
    margin-top: 20px;
    margin-left: 125px;
}

@-webkit-keyframes three-quarters {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes three-quarters {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes three-quarters {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes three-quarters {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Styles for old versions of IE */

.btn-spinner {
    font-family: sans-serif;
    font-weight: 100;
}


/* :not(:required) hides this rule from IE9 and below */

.btn-spinner:not(:required) {
    -webkit-animation: three-quarters 1250ms infinite linear;
    -moz-animation: three-quarters 1250ms infinite linear;
    -ms-animation: three-quarters 1250ms infinite linear;
    -o-animation: three-quarters 1250ms infinite linear;
    animation: three-quarters 1250ms infinite linear;
    border: 3px solid #ffffff;
    border-right-color: transparent;
    border-radius: 100%;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
    text-indent: -9999px;
    width: 18px;
    height: 18px;
}

.btn-spinner:not(:required) {
    margin-left: -22px;
    opacity: 0;
    transition: 0.4s margin ease-out, 0.2s opacity ease-out;
}

.is-loading .btn-spinner {
    transition: 0.2s margin ease-in, 0.4s opacity ease-in;
    margin-left: 5px;
    opacity: 1;
}

.btn {
    text-align: left;
}


/*collapsable*/

.collapsable {
    display: inline-block;
    overflow: hidden;
    height: 0;
    transition: height 1s;
    -webkit-transition: height 1s;
    -moz-transition: height 1s;
    -o-transition: height 1s;
}

.collapsable.showMe {
    height: 100%;
}
/*
.badge-ok:after {
    border: 30px solid #54c958;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 5px 0px;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.badge-warn:after {
    border: 30px solid #FF9800;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 5px 0px;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.badge-error:after {
    border: 30px solid #e55235;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 5px 0px;
    border-bottom-color: transparent;
    border-left-color: transparent;
}
*/

div.note-btn-group.btn-group>button.note-btn {
    background-color: #FF9800 !important;
    border: 1px solid #FF9800 !important
}

.company-logo-upload {
    float: right;
    margin-top: 10px;
    min-width: 15em;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    max-width: 72em;
    min-height: 60px;
    border-radius: 0.6rem;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    text-align: center;
    vertical-align: middle;
}

.company-logo-upload>span {
    padding: 30px;
}

.company-logo {
    float: right;
    margin-top: 25px;
}

@keyframes highlight {
    0% {
        background: #ffff99;
        /* lovely yellow colour */
    }
    100% {
        background: none;
    }
}

.highlight {
    animation: highlight 2s;
}

div.controls {
    height: 38px;
    position: relative;
}

.no-request-box {
    text-align: center;
    padding-left: 250px;
    padding-right: 250px;
    width: 100%;
}
.no-teams-box{
  text-align: center;
  padding-left: 250px;
  padding-right: 250px;
  width: 100%;
}

div.what-next {
    max-width: 560px;
    margin-bottom: 20px;
}

div.helper-text {
    float: left;
    font-size: 12px;
    float: left;
    width: 500px;
    padding-left: 20px;
}

.payroll-summary {
    min-height: 250px;
    background-position: right bottom;
    background-image: url('/public/assets/images/summary.svg');
    background-repeat: no-repeat;
    background-color: rgba(255, 165, 0, 0.34);
    margin-top: 20px;
    margin-right:10px;
    border-radius: 5px;
}

.payroll-incidences {
    min-height: 175px;
    background-position: right bottom;
    background-image: url('/public/assets/images/payroll-incidences.svg');
    background-repeat: no-repeat;
    background-color: rgba(255, 165, 0, 0.34);
    margin-top: 20px;
    margin-right:10px;
    border-radius: 5px;
}


.payroll-config-help {
    min-height: 125px;
    background-position: right bottom;
    background-image: url('/public/assets/images/payroll-helper.svg');
    background-repeat: no-repeat;
    background-color: rgba(255, 165, 0, 0.34);
    margin-top: 10px;
    margin-right:10px;
    border-radius: 5px;
}
.payroll-help-text-wrapper{
  padding-left:10px;
  padding-top: 5px;
  max-width: 700px;
}

.payroll-help-text-item{
  margin-top:3px;
}
.payroll-help-text{
  min-height: 30px;
  padding: 5px;
  background-color: #fff;
  max-width: 500px;
  font-size: 12pt;
  border-radius: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
}


.payroll-summary-file-list{
  clear:both;
  padding-top:10px;
  padding-left: 10px;
}

.payroll-summary-file-item>a{
  padding-left: 10px;
  font-size: 10pt;
}
.payroll-summary-file{
  height: 30px;
  padding: 5px;
  background-color: #fff;
  max-width: 435px;
  font-size: 12pt;
  border-radius: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
}
.checkmark-file{
  background-image: url('/public/assets/images/checkmark.svg');
  background-repeat: no-repeat;
  width:20px;
  height: 20px;
  float: left;
  margin-left:10px;
  margin-right: 10px;
}

.helper-step{
  background-repeat: no-repeat;
  width:30px;
  height: 30px;
  float: left;
  margin-left:10px;
  margin-right:10px;
}
.helper-step-1{
  background-image: url('/public/assets/images/step_1.svg');
}
.helper-step-2{
  background-image: url('/public/assets/images/step_2.svg');
}
.helper-step-3{
  background-image: url('/public/assets/images/step_3.svg');
}
.helper-step-4{
  background-image: url('/public/assets/images/step_4.svg');
}
.helper-step-5{
  background-image: url('/public/assets/images/step_5.svg');
}


ul.payroll-summary-files {
    padding-top: 100px;
    max-width: 500px;
}

ul.payroll-summary-files>li {
    list-style: none;
    height: 40px;
    background-color: #fff;
}


.payroll-published {
    min-height: 425px;
    background-position: right top;
    background-image: url('/public/assets/images/payroll-published.svg');
    background-repeat: no-repeat;
}

.working-on-it {
    min-height: 250px;
    background-position: right top;
    background-image: url('/public/assets/images/working_on_it.svg');
    background-repeat: no-repeat;
}

.working-on-it-sepe {
    min-height: 500px;
    background-position: right top;
    background-image: url('/public/assets/images/sepe.svg');
    background-repeat: no-repeat;
}

.just-hired {
    min-height: 500px;
    background-position: right top;
    background-image: url('/public/assets/images/hired.svg');
    background-repeat: no-repeat;
}

div.success-contract {
    max-width: 560px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .working-on-it {
        min-height: 250px;
        background-image: none;
    }
    .working-on-it-sepe {
        min-height: 500px;
        background-image: none;
    }
    .just-hired {
        min-height: 500px;
        background-image: none;
    }
    div.success-contract {
        max-width: 100%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    div.success-contract {
        max-width: 100%;
    }
    div.what-next {
        max-width: 500px;
        margin-bottom: 20px;
    }
    div.helper-text {
        float: left;
        font-size: 12px;
        float: left;
        width: 400px;
        padding-left: 20px;
    }
    .working-on-it {
        background-size: 250px;
        background-position: right bottom;
        background-image: url('/public/assets/images/working_on_it.svg');
        background-repeat: no-repeat;
    }
    .working-on-it-sepe {
        background-size: 300px;
        background-position: right bottom;
        background-image: url('/public/assets/images/sepe.svg');
        background-repeat: no-repeat;
    }
    .just-hired {
        background-size: 300px;
        background-position: right bottom;
        background-image: url('/public/assets/images/hired.svg');
        background-repeat: no-repeat;
    }
    .payroll-published {
        background-size: 400px;
        background-position: right bottom;
        background-image: url('/public/assets/images/payroll-published.svg');
        background-repeat: no-repeat;
    }
}

blockquote.chat {
    margin: 0 auto;
    max-width: 100%;
    border-left: 0px;
}

.chat>p.bubble {
    margin: 0 0 0.5em;
    border-radius: 1em;
    padding: 0.5em 1em;
    background: #e5e5ea;
    max-width: 75%;
    clear: both;
    position: relative;
    font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.chat>p.bubble.them {
    float: left;
}

.chat>p.bubble.them::after {
    content: "";
    position: absolute;
    left: 0em;
    bottom: 0;
    width: 0.5em;
    height: 1em;
    border-right: 0.5em solid #e5e5ea;
    border-bottom-right-radius: 1em 0.5em;
}

.chat>p.bubble.me {
    float: right;
    background-color: #FF9800;
    color: white;
}

.chat>p.bubble.me::after {
    content: "";
    position: absolute;
    right: 0em;
    bottom: 0;
    width: 0.5em;
    height: 1em;
    border-left: 0.5em solid #FF9800;
    border-bottom-left-radius: 1em 0.5em;
}
.chat>p.bubble-author{
  font-size: 10px;
  clear: both;
}
.chat>p.bubble-author.me{
  text-align: right;
}
.chat>p.bubble-author.them{
  text-align: left;
}



.chat>div>p.bubble {
  margin: 0 0 0.5em;
  border-radius: 1em;
  padding: 0.5em 1em;
  background: #e5e5ea;
  max-width: 75%;
  clear: both;
  position: relative;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.chat>div>p.bubble.them {
  float: left;
}

.chat>div>p.bubble.them::after {
  content: "";
  position: absolute;
  left: 0em;
  bottom: 0;
  width: 0.5em;
  height: 1em;
  border-right: 0.5em solid #e5e5ea;
  border-bottom-right-radius: 1em 0.5em;
}

.chat>div>p.bubble.me {
  float: right;
  background-color: #FF9800;
  color: white;
}

.chat>div>p.bubble.me::after {
  content: "";
  position: absolute;
  right: 0em;
  bottom: 0;
  width: 0.5em;
  height: 1em;
  border-left: 0.5em solid #FF9800;
  border-bottom-left-radius: 1em 0.5em;
}
.chat>div>p.bubble-author{
font-size: 10px;
clear: both;
}
.chat>div>p.bubble-author.me{
text-align: right;
}
.chat>div>p.bubble-author.them{
text-align: left;
}


.write-payroll-comment{
  max-width: 100%;
  margin:auto;
}
.well{
  border-radius:0px;
  border:0px;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}


/*STICKY NOTES*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix-note:before, .clearfix-note:after {
    content: " ";
    display: table;
}

.clearfix-note:after {
    clear: both;
}

.clearfix-note {
    *zoom: 1;
}

.wrapper-note {
    margin: 60px auto 0 auto;
}

.note-wrap {
    width: 235px;
    min-height: 235px;
    padding: 35px;
    margin: 0 22px 44px 22px;
    position: relative;
    font-size: 16px;
    vertical-align: top;
    display: inline-block;
    font-family: Englebert, Arial;
    color: #4b453c;
    background: #F7E999;
    line-height: 34px;
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.note-wrap:before {
    display: block;
    content: "";
    background: rgba(227, 200, 114, 0.4);
    width: 130px;
    height: 28px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    border-radius: 6px/18px 0;
    position: absolute;
    top: -13px;
    left: 50px;
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.note-wrap a {
    color: #6b824f;
    text-decoration: none;
    font-size: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.note-wrap a:hover {
    color: #D83A25;
}

.note-yellow {
    background: #F7E999;
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
}

.note-blue {
    background: #b9dcf4;
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.note-pink {
    background: #FFBDA3;
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    transform: rotate(1deg);
}

.note-green {
    background: #CAF4B9;
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    transform: rotate(-1deg);
}


/*END STICKY NOTES*/

.form-horizontal .form-group .controls .help-float, .form-horizontal .form-group .controls .help-float[class*="span"] {
    background-color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    z-index: 10;
}

.form-horizontal .form-group .controls .help-float.active-float, .form-horizontal .form-group .controls .help-float[class*="span"].active-float {
    display: block;
}

.form-horizontal .form-group .controls .help-float p, .form-horizontal .form-group .controls .help-float[class*="span"] p {
    color: #696B74;
    padding-left: 24px;
    background: transparent url(/public/assets/images/help-bg.png) no-repeat top left;
}

.form-horizontal .form-group .controls .help-float-bottom, .form-horizontal .form-group .controls .help-float-bottom[class*="span"] {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 10;
}

.form-horizontal .form-group .controls .help-float-bottom.active-float, .form-horizontal .form-group .controls .help-float-bottom[class*="span"].active-float {
    display: block;
}

.form-horizontal .form-group .controls .help-float-bottom p, .form-horizontal .form-group .controls .help-float-bottom[class*="span"] p {
    color: #878990;
    padding-left: 24px;
    background: transparent url(/public/assets/images/help-bg.png) no-repeat top left;
}

.form-horizontal .form-group .controls .checkbox input.checkbox {
    top: 5px;
}

.submit-day {
    border: 1px solid #34d3eb !important;
    background: transparent;
    background-color: transparent !important;
    border-radius: 5px;
    border-width: 2px !important;
    font-weight: 600;
    transition: all 400ms ease-in-out;
    background-clip: inherit;
    margin-bottom: 12px;
    margin-left: 8px;
    color: #34d3eb !important;
    padding: 7px;
}

.pay-day {
    color: #34d3eb !important;
    font-weight: 600;
    padding: 9px;
}

.draft-tag {
    border: 1px solid #F57C00 !important;
    background: transparent;
    background-color: transparent !important;
    border-radius: 5px;
    border-width: 2px !important;
    font-weight: 600;
    transition: all 400ms ease-in-out;
    background-clip: inherit;
    margin-bottom: 12px;
    margin-left: 8px;
    color: #F57C00 !important;
    padding: 7px;
}

.add_row {
    margin-top: 20px;
    text-align: right;
}

.payroll-config-type{
  text-align:center;
  margin-bottom:20px;
}
.payroll-validation-filters{
  float:right;
  margin-top: 10px;
  padding-right: 20px;
}

.alert-info-process{
  background-color: rgba(255, 189, 74,1);
  border-color: rgba(255, 189, 74, 1);
}
.search {
  position: relative;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.search input {
  height: 26px;
  width: 100%;
  padding: 0 12px 0 25px;
  background: white url('/public/assets/images/search_icon.png') 8px 6px no-repeat;
  border: 1px solid;
  border-color: #a8acbc #babdcc #c0c3d2;
  border-radius: 13px;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px #e5e7ed, 0 1px #fcfcfc;
  box-shadow: inset 0 1px #e5e7ed, 0 1px #fcfcfc;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #555860;
}
.delete-row{
  cursor:pointer;
  color:red;
  font-size:20pt;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
 }

input[type="number"]{
    -moz-appearance: textfield;
}
input:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}
.incidence-type-header{
  margin-bottom: 10px;
  text-align: right;
  padding-right: 55px;
  border-bottom: 1px;
  border-bottom-color: #EEEEEE;
  border-bottom-style: solid;
}
#feedback_button{
  right: 0px;
  top: 30%;
  z-index: 99999990 !important;
  position: fixed !important;
  cursor: pointer !important;
  line-height: 1px !important;
  margin-top: 0px;
  outline: none !important;
  height: 100px;
  width: 35px;
}

.rubber-stamp {
  font-family:  'Arial';
  font-size: 39px;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  padding: 10px 7px;
  border-radius: 10px;
  opacity: 0.8;
  -webkit-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  position:absolute;
  top:50px;
  right:50px;
}
.rubber-stamp.approved{
  color: #54c958;
  border: 7px solid #54c958;
}
.rubber-stamp.rejected{
  color: #ff5722;
  border: 7px solid #ff5722;
}
.rubber-stamp.in-progress{
  color: #ffbd4a;
  border: 7px solid #ffbd4a;
}

.request-document{
  min-height: 50px;
  min-width: 50px;
  background: url('/public/assets/images/sickness_file.svg') no-repeat;
}
.chat-card{
  z-index: 1;
  position: relative;
  padding-top:20px;
  margin: 0 auto;
  margin-top: 20px;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 82px -21px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 0px 0px 82px -21px rgba(0, 0, 0, 0.61);
  box-shadow: 0px 0px 82px -21px rgba(0, 0, 0, 0.61);
}
.add-picture-container{
  margin-left:auto;
  margin-right:auto;
  border: 1px #ddd;
  padding:15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px -1px rgba(0,0,0,0.6);
}


.mini-rubber-stamp.approved {
    color: #6BC363;
    border: 3px solid #6BC363;
}
.mini-rubber-stamp.denied {
    color: #ff5722;
    border: 3px solid #ff5722;
}
.mini-rubber-stamp {
    font-family: 'Arial';
    text-transform: uppercase;
    font-weight: bold;
    float: right;
    padding: 6px 4px;
    border-radius: 5px;
    opacity: 0.8;
    -webkit-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    position: absolute;
    top: 15px;
    right: 7px;
}


/*
.card-media-body-top-icons {
  margin-top: 10px;
  opacity: 0;
  transition: all 300ms ease-out;
  transform: translateY(-5px);
}

.add-picture-container:hover .card-media-body-top-icons {
  opacity: 1;
  transform: translateY(0);
}

.card-media-body-top-icons > svg {
  cursor: pointer;
  margin-left: 10px;
  transition: all 300ms ease-out;
}

.card-media-body-top-icons > svg:hover {
  fill: #444;
}

.u-float-right {
  float: right;
}
*/
a.sticky-link{
  color:#0079ff;
  text-decoration:underline;
  font-size: 16px;

}
.collapse-icon{
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  border-radius: 50%;
  color: #a0aeae;
  display: block;
  float: right;
  font-size: 18px;
  height: 38px;
  line-height: 40px;
  text-align: center;
  width: 38px;
}

.collapse-header{
  border-top: 1px solid #dfdfdf;
  cursor: pointer;
  padding: 50px 40px 80px 50px;
  transition: all 0.39s ease;
}
.collapse-header-last{
  border-bottom: 1px solid #dfdfdf;
  cursor: pointer;
  padding: 50px 40px 80px 50px;
  transition: all 0.39s ease;
}
.collapse-header:hover h2{
  color:#384343;
}
.collapse-header h2{
    transition: all 0.3s ease;
    color: #384343;
    display: inline-block;
    float: left;
    font-size: 33px;
    font-weight: 900;
    line-height: 38px;
    margin: 0 0 30px;
}

.collapse-header h2 {
    color: #8d9d9d;
    margin: 0;
}

.full-height-modal-window{
  height: 100%;
}

div.filter-selection{
  float:left;
  width:20px;
}

#topnav .topbar-main .notification-list {
    max-height: 830px;
}
.new-tramit-icon{
  margin-right:15px;
  width:10px;
}
th.sorting{
  cursor: pointer;
}

th.sorting_asc{
  cursor: pointer;
}
th.sorting_desc{
  cursor: pointer;
}

.modalContainer{
  top: 10px;
  bottom: 10px;
  left: 100px;
  right: 100px;
  position: fixed;
  background-color: #fff;
  z-index: 9996;
  border-radius: 2px;
  margin: auto;
  min-height: 0px;
  max-width: 1200px;
}

.darkBackdrop{
  position: fixed;
  z-index: 9995;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(31,52,82,0.7);
}

/*
.account-pages {
  background-image: url('/public/assets/images/pattern_bg.png');
  background-repeat: repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}*/
/*** BEGIN VARIABLES ***/
/*** END VARIABLES *** BEGIN STYLING ***/
.switch {
  display: none;
}
.switch + label,
.switch + label::after {
  display: inline-block;
  position: relative;
  width: 54px;
  height: 34px;
  box-sizing: border-box;
  background: #FFF;
  border: 2px solid #DDD;
  border-radius: 9999px;
  transition: 300ms;
}
.switch + label::after {
  content: "";
  position: absolute;
  left: 0;
  background: #FFF;
  width: 30px;
  height: 30px;
  border: none;
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #DDD;
}
.switch:checked + label {
  border: 2px solid #4BD865;
  box-shadow: inset 0 0 0 calc(19px) #4BD865;
}
.switch:checked + label::after {
  left: calc(20px);
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #4BD865;
}
.switch:not(:checked) + label:hover:active {
  box-shadow: inset 0 0 0 calc(19px) #DDD;
}
.switch + label:hover:active::after {
  width: calc(35px);
}
.switch:checked + label:hover:active::after {
  left: calc(15px);
}
.swicth-labels{
  font-size:20px;
  padding-top:2px;
}




.switch.small + label,
.switch.small + label::after {
  display: inline-block;
  position: relative;
  width: 34px;
  height: 19px;
  box-sizing: border-box;
  background: #FFF;
  border: 2px solid #DDD;
  border-radius: 9999px;
  transition: 300ms;
}
.switch.small + label::after {
  content: "";
  position: absolute;
  left: 0;
  background: #FFF;
  width: 15px;
  height: 15px;
  border: none;
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #DDD;
}
.switch.small:checked + label {
  border: 2px solid #4BD865;
  box-shadow: inset 0 0 0 calc(19px) #4BD865;
}
.switch.small:checked + label::after {
  left: calc(15px);
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #4BD865;
}
.switch.small:not(:checked) + label:hover:active {
  box-shadow: inset 0 0 0 calc(19px) #DDD;
}
.switch.small + label:hover:active::after {
  width: calc(25px);
}
.switch.small:checked + label:hover:active::after {
  left: calc(10px);
}


.popover-dark>.arrow:after{
  border-top-color:rgba(43, 50, 52, 0.81) !important;
}
.popover-dark-bottom>.arrow:after{
  border-bottom-color:rgba(43, 50, 52, 0.81) !important;
}
.popover-dark, .popover-dark-bottom{
  background: rgba(43, 50, 52, 0.9) !important;
  z-index:12000;
}


.dark.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

.dark.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

.dark.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}
.dark.form-control{
  background:rgba(43, 50, 52, 0.9) !important;
  color:white;
}
/* Tooltip container */
.tooltiplabel {
    position: relative;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltiplabel .tooltiptext {
    visibility: hidden;
    width: 60px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -30px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltiplabel .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltiplabel:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.module-icon{
  height:30px;
  width:30px;
  float:left;
  margin-right:10px;
}

.module-icon-big{
  height:60px;
  width:60px;
  float:left;
  margin-right:10px;
}

.module-icon-doc_distribution {
  background-image: url('/public/assets/images/list-item-icons/doc_distribution.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.module-icon-payroll{
  background-image: url('/public/assets/images/list-item-icons/payroll_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-new_employee{
  background-image: url('/public/assets/images/list-item-icons/new_employee_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.module-icon-withholding_tax{
  background-image: url('/public/assets/images/list-item-icons/withholding_tax_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.module-icon-fired_employee{
  background-image: url('/public/assets/images/list-item-icons/fired_employee_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-renewal_of_contract{
  background-image: url('/public/assets/images/list-item-icons/new_employee_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-time_report{
  background-image: url('/public/assets/images/list-item-icons/time_report_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-flex_payment{
  background-image: url('/public/assets/images/list-item-icons/flex_payment.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-personal_matter{
  background-image: url('/public/assets/images/list-item-icons/personal_matter_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.module-icon-overtime{
  background-image: url('/public/assets/images/list-item-icons/overtime.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-expense{
  background-image: url('/public/assets/images/list-item-icons/expenses_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-allowance{
  background-image: url('/public/assets/images/list-item-icons/subsistance_allowance_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-mileage{
  background-image: url('/public/assets/images/list-item-icons/mileage_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-vacation{
  background-image: url('/public/assets/images/list-item-icons/vacation_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-clocking{
  background-image: url('/public/assets/images/list-item-icons/clocking.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-remoting{
  background-image: url('/public/assets/images/list-item-icons/remote.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-sickness{
  background-image: url('/public/assets/images/list-item-icons/sickness_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-shift_swap{
  background-image: url('/public/assets/images/list-item-icons/shifts_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-shift_confirmation{
  background-image: url('/public/assets/images/list-item-icons/shift_confirmation_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-suggestion{
  background-image: url('/public/assets/images/list-item-icons/suggest_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-surveys{
  background-image: url('/public/assets/images/list-item-icons/survey_icon.svg');;
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-human_tasks{
  background-image: url('/public/assets/images/list-item-icons/human_task_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-question_and_answer{
  background-image: url('/public/assets/images/list-item-icons/questions_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-absence{
  background-image: url('/public/assets/images/list-item-icons/absence_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.module-icon-time_sheet{
    background-image: url('/public/assets/images/list-item-icons/time_sheet_icon.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.module-icon-signature{
    background-image: url('/public/assets/images/list-item-icons/signature_icon.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.module-icon-account_change{
    background-image: url('/public/assets/images/list-item-icons/bank_icon.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.module-icon-certified_delivery{
  background-image: url('/public/assets/images/list-item-icons/certified_delivery_icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.vertical-tab-active{
  border-top: 1px solid rgb(235, 239, 242);
  border-left: 1px solid rgb(235, 239, 242);
  border-bottom: 2px solid rgb(245, 124, 0);
}

.pannel-collapse-padding{
    padding-left: 10px;
    padding-right: 10px;
}
.prohibition-icon{
  margin-right:5px;
}
.new-version{
  height: 40px;
  background-color: red;
  text-align: center;
  color:#fff;
  font-weight: bold;
  text-transform:uppercase;
  cursor: pointer;
  padding-top:10px;
}
.invoice-overdue-bar{
  height: 40px;
  background-color: red;
  text-align: center;
  color:#fff;
  font-weight: bold;
  cursor: pointer;
  padding-top:10px;
}

.flashit{
  color:#fff;
	-webkit-animation: flash linear 0.7s;
	animation: flash linear 0.7s;
  animation-iteration-count:3;
  -webkit-animation-iteration-count:3;
}
@-webkit-keyframes flash {
	0% { opacity: 1; }
	50% { opacity: .1; }
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; }
	50% { opacity: .1; }
	100% { opacity: 1; }
}
.migrating-bar{
  height: 40px;
  background-image: linear-gradient(45deg, #f15503, #ffc78d);
  text-align: center;
  color:#fff;
  font-weight: bold;
  padding-top:10px;
}

.tag {
  display: inline-block;
  position: relative;
  margin: 5px 10px 5px 0px;
}
.tag label{
  padding: 7px 34px 6px 18px;
  position: relative;
  z-index: 1;
  color: white;
  display: block;
  border-radius: 16px;
  background: #f57c00;
}
.unactive{
  opacity:0.4;
}
.tag input{
  padding: 7px 34px 6px 18px;
  position: relative;
  z-index: 1;
  color: #000;
  display: block;
  border-radius: 16px;
  background: #fff;
}

.tag .fa {
  position: absolute;
  z-index: 1;
  right: 11px;
  top: 11px;
  padding-left:20px;
  cursor: pointer;
  color: white;
  line-height: 0.95;
}

.multi-lines-text { white-space: pre-line; }




/* Animation flip stuff */
/* Flip Effect inspired by http://davidwalsh.name/css-flip */
/* entire container, keeps perspective */
.benefits-card {
  -webkit-perspective: 1000;
          perspective: 1000; }
.benefits-card, .front, .back {
  height: 13.0rem;
  font-size: 12pt;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(28, 30, 34, 0.1);
  background: #fc5700;
}
.benefits-card.restaurant_check{
  background: #ff980e;
}



.benefits-card.nursery_check{
  background: #528dcb;
}
.benefits-card.transport_check{
  background: #5aae25;
}
.benefits-card.health_insurance{
  background: rgb(3, 169, 244);
}

.benefits-card.inactive{
  background-color: rgba(252,87,0,0.5)
}

.benefits-card.restaurant_check.inactive{
  background: rgba(255,152,14,0.5);
}

.benefits-card.nursery_check.inactive{
  background: rgba(82,141,203,0.5);
}
.benefits-card.transport_check.inactive{
  background: rgba(90,174,37,0.5);
}
.benefits-card.health_insurance.inactive{
  background: rgba(3, 169, 244,0.5);
}
.benefits-card>.card-header{
  padding: 10px;
  border-bottom: 1px solid white;
}
.benefits-title{
  display: inline;
  padding: .2em .6em .3em;
  font-size: 115%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.benefits-body{
  margin-top: 20px;
  color: white;
}
.benefits-footer{
    padding-top: 10px;
    padding-left: 10px;
    bottom: 0;
    right: 0;
    position: absolute;
    background-color: white;
    width: 100%;
    min-height: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;}
/* flip the pane when tapped */
.benefits-card.tapped .flipper {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }

.restaurant_check-background{
  background: url('/public/assets/images/flex_payments/restaurant_check.svg') no-repeat;
  height: 75px;
}
.nursery_check-background{
  background: url('/public/assets/images/flex_payments/nursery_check.svg') no-repeat;
  height: 75px;
}
.transport_check-background{
  background: url('/public/assets/images/flex_payments/transport_check.svg') no-repeat;
  height: 75px;
}

.health_insurance-background{
  background: url('/public/assets/images/flex_payments/health_insurance.svg') no-repeat;
  height: 75px;
}

.no-gps-background{
  background: url('/public/assets/images/no_gps.svg') no-repeat;
  height: 150px;
}
/* flip speed goes here */
.flipper {
  -webkit-transition: .5s;
          transition: .5s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 100% 6.5rem;
          transform-origin: 100% 6.5rem;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative; }



#hoang::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(245,124,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

#hoang::-webkit-scrollbar
{
  width: 12px;
  background-color: #F5F5F5;
}

#hoang::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(245,124,0,.3);
  background-color: #555;
}
/* Tooltip container */
.custom-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.custom-tooltip .custom-tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.custom-tooltip:hover .custom-tooltip-text {
    visibility: visible;
}



.shifts-container{
  display:flex;
  flex-direction:row;
}
planning-unassigned-shifts{
  min-height: 100px;
}
.shifts-employees-container{
  overflow: auto;
  max-height: 450px;
  min-height: 50px;
  flex:11;
}
.shifts-week-container{
  flex:39;
}
.shifts-week{
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content: center;
  height: 100%;
  margin-bottom: 10px;
  border-left: 1px solid #DBDDDE;
  border-top: 1px solid #DBDDDE;
}
.shifts-month{
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  min-height: 60px;
  height: 100%;
}
.shifts-year{
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  min-height: 60px;
  height: 100%;
}
.shifts-week-day{
  flex:1;
  text-align:center;
  height:100%;
  line-height: 1.5;
  padding-top:10px;
  border-right:1px solid #DBDDDE;
}
.employee-row{
  height: 80px;
  display: flex;
  border-top: 1px solid #DBDDDE;
  border-left: 1px solid #DBDDDE;
}
.last-day-shift{
  border-right: 1px solid #DBDDDE;
}
.last-shift-row{
  border-bottom: 1px solid #DBDDDE;
}
.shift-row{
  height:80px;
  display: flex;
  flex-direction: row;
}
.employee.employee-row{
  padding:4px;
  display:flex;
}
.employee{
    align-self: center;
    max-width:100%;
}
.employee.employee-first-row{
  margin-top:40px;
}
.employee-last-row{
  border-bottom: 1px solid #DBDDDE;
}
.shift-day{
  padding:4px;
  flex:1;
  text-align:center;
  border-left: 1px solid #DBDDDE;
  border-top: 1px solid #DBDDDE;
  min-width: 0;
}
.shift-day.last{
  border-right:1px solid #DBDDDE;
}
.complete-month{
  padding:4px;
  flex:1;
  text-align:center;
  border-left: 1px solid #DBDDDE;
  border-top: 1px solid #DBDDDE;
  border-right:1px solid #DBDDDE;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complete-year{
  padding:4px;
  flex:1;
  text-align:center;
  border-left: 1px solid #DBDDDE;
  border-top: 1px solid #DBDDDE;
  border-right:1px solid #DBDDDE;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shift-info{
  border: 1px solid #2f81e2;
  background: #2f81e2;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}
/*
.default-info{
  border: 1px solid #2f81e2;
  background: #2f81e2;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}*/
.working_scheduled-info{
  border: 1px solid #2f81e2;
  background: #2f81e2;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}
.working_unscheduled-info{
  border: 1px solid #2f81e2;
  background: #2f81e2;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}

.not_working_scheduled-info{
  border: 1px solid #2f81e2;
  background: #2f81e2;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}
.sickness-info{
  border: 1px solid #F44336;
  background: #F44336;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}
.free-info{
  border: 1px solid #CDDC39;
  background: #CDDC39;
  border-radius: 4px;
  color: #CDDC39;
  min-height: 70px;
  position: relative;
}
.overtime-info{
  border: 1px solid #3a87ad;
  background: #3a87ad;
  border-radius: 4px;
  color: #3a87ad;
  min-height: 70px;
  position: relative;
}
.scheduled-info{
  border: 1px solid #4b9af9;
  background: #4b9af9;
  border-radius: 4px;
  color: #4b9af9;
  min-height: 70px;
  position: relative;
}
.schedules-info{
  border: 1px solid #4b9af9;
  background: #4b9af9;
  border-radius: 4px;
  color: #4b9af9;
  min-height: 70px;
  position: relative;
}
.warnings-info{
  border: 1px solid #e8d73e;
  background: #e8d73e;
  border-radius: 4px;
  color: #635c5c;
  min-height: 70px;
  position: relative;
}
.quadrant-new-info{
  border: 1px solid #f57c00;
  background: #f57c00;
  border-radius: 4px;
  color: #fff;
  padding-top:2px;
  min-height: 70px;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100%;
}

.absence-info{
  border: 1px solid #ffbd4a;
  background: #ffbd4a;
  border-radius: 4px;
  color: #ffbd4a;
  min-height: 70px;
  position: relative;
}
.unavailability-info{
  border: 1px solid #23527C;
  background: #23527C;
  border-radius: 4px;
  color: #23527C;
  min-height: 70px;
  position: relative;
}
.personal_matter-info{
  border: 1px solid #9CCC65;
  background: #9CCC65;
  border-radius: 4px;
  color: #9CCC65;
  min-height: 70px;
  position: relative;

}

.unpaid_leave-info{
  border: 1px solid #f57c00;
  background: #f57c00;
  border-radius: 4px;
  color: #f57c00;
  min-height: 70px;
  position: relative;
}
.remoting-info{
  border: 1px solid #9E9E9E;
  background: #9E9E9E;
  border-radius: 4px;
  color: #9E9E9E;
  min-height: 70px;
  position: relative;
}
.custom_ric-info{
  border: 1px solid #1FC78F;
  background: #1FC78F;
  border-radius: 4px;
  color: #1FC78F;
  min-height: 70px;
  position: relative;
}
.expenditure-info{
  border: 1px solid #9CCC65;
  background: #9CCC65;
  border-radius: 4px;
  color: #9CCC65;
  min-height: 70px;
  position: relative;
}
.custom_tracker-info{
  border: 1px solid #1FC78F;
  background: #1FC78F;
  border-radius: 4px;
  color: #1FC78F;
  min-height: 70px;
  position: relative;
}
.shift-pending{
  background-image:repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 12px);
}
.festive-info{
  border: 1px solid #009688;
  background: #009688;
  border-radius: 4px;
  color: #009688;
  min-height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}
.vacation-info{
  border: 1px solid #8BC34A;
  background: #8BC34A;
  border-radius: 4px;
  color: #617892;
  position: relative;
  color:#fff;
}
.remoting-info{
  border: 1px solid #9E9E9E;
  background: #9E9E9E;
  border-radius: 4px;
  color: #617892;
  min-height: 70px;
  position: relative;
}
.new-event-info{
  color: #fff;
  padding-top:2px;
  min-height: 70px;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100%;
}
#draft-view .new-event-info{
  min-height: 45px !important;
} 
.pending-info{
  opacity:0.5;
}
.shift-info-detail{
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: white;
}
.shift-info-detail-location{
  font-weight: bold;
  font-size: 0.75em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shift-info-schedule-time{
  font-size: small;
}
.edit-shift{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(83,194,83,0.95);
  border-radius: 4px;
  text-align: center;
  opacity: 0 !important;
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  -o-transition: all 0.2s ease-out !important;
  transition: all 0.2s ease-out !important;
  z-index: 5;
  visibility: hidden !important;
}
.shift-day:hover .edit-shift {
  visibility: visible !important;
	opacity: 1 !important;
}
.edit-shift-button{
    flex-grow: 2;
    max-width: 70px;
    color: #FFF;
    border: 1px solid rgba(255,255,255,0.52);
    padding: 7px 0;
    overflow: hidden;
    border-radius: 3px;
    cursor:pointer;
}
.add-shift-button{
    flex-grow: 1;
    max-width: 50px;
    border: 1px solid rgba(255,255,255,0.52);
    padding: 7px 0;
    overflow: hidden;
    color: #FFF;
    border-radius: 3px;
    margin-left: 2px;
    cursor:pointer;
}
.edit-shift-buttons{
  position:relative;
  display: flex;
  align-items:center;
  padding:4px;
  height: 100%;
}
.add-shift{
  height: 100%;
  display: flex;
  justify-content: center;
  min-height:45px;
}
.centered-button{
  align-self: center;
}
.no-shift-yet{
  height: 100%;
}
.no-contract-event{
  height: 100%;
  background-color: #d2d2d2;
  border-radius:4px;
  padding:8px;
  color:#ffff;
  display:flex;
  justify-content: center;
}

.add-shift:hover {
    border-color: #aaa;
    color: #545454;
    cursor: pointer;
}
.add-shift>i{
  padding: 5px;
}
.add-shift:hover>i{
  border: 1px dashed;
  border-radius: 2px;
}
.employee-name{
  font-weight: 700;
  font-size: 14px;
  color: #617892;
  margin-left: 60px;
  margin-top: 2px;
}
.dimension-name {
    font-weight: 700;
    font-size: 14px;
    color: #617892;
    margin-left: 10px;
    margin-top: 2px;
}
.employee-pic{
  background: #f57c00;
  color: #fff;
  display: inline-block;
  font-size: 25px;
  height: 35px;
  line-height: 43px;
  text-align: center;
  width: 35px;
  border-radius: 50%;
  white-space: nowrap;
  text-transform: uppercase;
  float: left;
  font-weight: 700;
  font-size: 15px;
  top: -5px;
  position: relative;
  margin-left:10px;
}
.shift-header-modal{
    border-bottom: 1px solid #ccc;
    padding:15px;
    font-weight: 400;
    font-size: 14pt;
}

.shift-info-detail:hover span.event-plan {
    opacity: 1 !important;
    display: block;
    cursor: pointer;
}
.shift.shift-color:hover span.event-plan {
  opacity: 1 !important;
  display: block;
  cursor: pointer;
}
.open-shift:hover span.event-plan{
    opacity: 1 !important;
    display: block;
    cursor: pointer;
}
.new-event-info:hover span.event-plan {
    opacity: 1 !important;
    display: block;
    cursor: pointer;
}

.event-day-planning:hover span.event-day-plan {
    opacity: 1 !important;
    display: block;
    cursor: pointer;
}

span.event-day-plan {
  transition: 300ms ease-in-out;
  z-index: 4000;
  border-radius: 4px;
  border: 1px solid #f57c00;
  position: absolute;
  right: 3px;
  top: 1px;
  opacity: 0;
  padding: 5px;
  font-size: 12pt;
  padding: 7px;
  background-color:rgba(245, 124, 0, 0.50);
}
span.event-day-plan>a{
  color:white;
}

span.event-plan {
  transition: 300ms ease-in-out;
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #ffffffbd;
  position: absolute;
  right: 3px;
  top: 1px;
  opacity: 0;
  color: #FFF;
  padding: 5px;
  background-color:#68686845;
}
.quadrant-popover>ul{
  padding: 0;
  list-style-type:none;
}
.popover{
  max-width: 450px;
}
.ellipsis-text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
span.event-plan>a{
  color:#FFF;
}
.locations-select>div>span.form-control{
  height:34px;
}
.week-datepicker{

}

.save-cancel-form-footer {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 65px;
    bottom: 0;
    z-index: 2000;
    box-shadow: 0 -4px 10px 0 rgba(0,0,0,.08);
}
.clocking-row{
  height:50px;
}

tr.clocking-row>td{
  padding-top:18px !important;
  padding-bottom:18px !important;
}
thead>tr>td{
  text-align: center;
}
.clocking-row-week{
  vertical-align: middle;
  border-top: none;
  font-weight: 400;
  border-bottom: 1px solid #e7eaec;
}

.clocking-table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-timesheet .day-time {
    padding: 10px;
    color: #676a6c;
    border-radius: 2px;
    border: thin solid transparent;
}

.clocking-day{
  text-align:center;
}

.day-time-link:hover {
    border-color: #f57c00;
}

.manage-menu{
  height: 100px;
  margin: 20px auto;
  padding: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.manage-menu a {
    width: 100%;
    height: 100px;
    margin: 0 5px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    color: #97a2ae;
    border-radius: 4px;
    background: #fff;
    padding-top: 15px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.08);
    transition: all .25s ease-in-out;
}
.manage-menu a.active, .manage-menu a:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.12);
    color: #f57c00;
}



.sub-navigation {
    display: -ms-flexbox;
    display: flex;
    height: 56px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #97a2ae;
    border-bottom: 1px solid #dcdcdc;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.08)
}

.sub-navigation .nav-items {
    display: -ms-flexbox;
    display: flex;
    height: 100%
}

.sub-navigation .nav-items a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row;
    flex-flow: row;
    color: rgba(140,151,163,.8)
}

.sub-navigation .nav-items a+a {
    margin-left: 40px
}

.sub-navigation .nav-items a:focus,.sub-navigation .nav-items a:hover {
    text-decoration: none
}

.sub-navigation .nav-items a:hover {
    transition: all .25s ease-in-out;
    color: #f57c00
}

.sub-navigation .nav-items a.active {
    color: #f57c00;
    border-bottom: 3px solid #f57c00;
    padding-top: 3px
}

.sub-navigation .nav-items a.invalid:not(.active) {
    color: #db3b50;
    border-bottom: 3px solid #db3b50;
    padding-top: 3px
}

.sub-navigation .custom-nav {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row;
    flex-flow: row
}

.sub-navigation .sub-navigation-container {
    padding: 0 20px;
    -ms-flex: 2;
    flex: 2;
    display: -ms-flexbox;
    display: flex
}

sub-navigation.main-container-pad .sub-navigation-container {
    max-width: 1240px;
    -ms-flex: 2;
    flex: 2;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex
}

.submenu-padding{
  padding-top:160px;
}

div.avatar-profile {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF9800;
  padding: 0;
}

div.avatar-profile > img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

div.avatar-profile-users{
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF9800;
  padding: 0;
}
div.avatar-profile-users>img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

div.avatar-worker-detail{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FF9800;
  margin-left: 10px;
}
div.avatar-worker-detail>img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid #FFF;
}
.people-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff; }

.people-status.on {
  background-color: #62bf6e; }

.people-status.off {
  background-color: #F44336; }

.people-status.scheduled {
  background-color: #03A9F4; }

.repeater-container {
  height: calc(100vh - 140px);
  overflow: auto;
}
.repeater-container-tramit-list{
  max-height: calc(100vh - 130px);
  overflow: auto;
}
[vs-repeat] {
  overflow-anchor: none;
}

.search-employee{
  border-style: none;
  height: 35px;
  width: 98%;
  outline: 0;
  background: rgba(221, 221, 221, 0.26);
  padding-left: 20px;
  box-shadow: none;
  border-radius: 30px;
  padding-left: 30px;
}
.header-scroll-shadow{
  box-shadow:0px 8px 8px 0px rgba(0,0,0,.08);
}
.event-requests{
  min-width: 400px;
  max-height: 200px;
  overflow: auto;
}
.event-request-container{
  display: flex;
  height: 80px;
  width: 100%
}
.event-request-icon-container{
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-request-title-container{
  flex:8;
  margin-top:10px;
}
.event-request-link-container{
  flex:1;
  margin-top:10px;
}
.event-request-item{
  border-bottom: 1px solid #ddd;
}
.event-request-icon{
  padding: 20px;
}
.event-request-icon-absence{
  background-image: url('/public/assets/images/list-item-icons/absence_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-unavailability {
  background-image: url('/public/assets/images/list-item-icons/unavailability_icon.svg');
  background-repeat: round;
}
.event-request-icon-vacation{
  background-image: url('/public/assets/images/list-item-icons/vacation_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-clocking{
  background-image: url('/public/assets/images/list-item-icons/clocking.svg');
  background-repeat:no-repeat;
}
.event-request-icon-clocking-virtual{
  background-image: url('/public/assets/images/list-item-icons/clocking.svg');
  background-repeat:no-repeat;
}
.event-request-icon-time-report{
  background-image: url('/public/assets/images/list-item-icons/time_report_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-time-sheet{
  background-image: url('/public/assets/images/list-item-icons/time_sheet_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-remoting{
  background-image: url('/public/assets/images/list-item-icons/remote.svg');
  background-repeat:no-repeat;
}
.event-request-icon-custom_ric{
  background-image: url('/public/assets/images/list-item-icons/suitcase_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-expenditure{
  background-image: url('/public/assets/images/list-item-icons/absence_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-overtime{
  background-image: url('/public/assets/images/list-item-icons/overtime.svg');
  background-repeat:no-repeat;
}
.event-request-icon-sickness{
  background-image: url('/public/assets/images/list-item-icons/sickness_icon.svg');
  background-repeat:no-repeat;
}
.event-request-icon-business_trip{
  background-image: url('/public/assets/images/list-item-icons/business_trip_icon.svg');
  background-repeat:no-repeat;
}

.event-request-icon-training{
  background-image: url('/public/assets/images/list-item-icons/training_icon.svg');
  background-repeat:no-repeat;
}

.event-request-icon-union{
  background-image: url('/public/assets/images/list-item-icons/union_icon.svg');
  background-repeat:no-repeat;
}

.event-request-icon-covid19{
  background-image: url('/public/assets/images/list-item-icons/covid19_icon.svg');
  background-repeat:no-repeat;
}

.blinking-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ffbd4a;
  border-radius: 50%;
  bottom: 40%;
  left: 5px;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}
.blinking-marker:before,
.blinking-marker:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffbd4a;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.blinking-marker-error{
  background-color: #FFFFFF !important;
}
.blinking-marker-error:before,
.blinking-marker-error:after {
  background-color: #FFFFFF !important;
}

.blinking-marker:before {
  -webkit-animation: blink 2.5s linear 0;
          animation: blink 2.5s linear 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.blinking-marker:after {
  -webkit-animation: blink 2.5s linear 0.5s;
          animation: blink 2.5s linear 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes blink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  60% {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(6);
            transform: scale(6);
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  60% {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(6);
            transform: scale(6);
    opacity: 0;
  }
}
.not-laboral{
  opacity:0.5;
}
.tramitapp-time{
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(227, 227, 227);
  border-radius: 4px;
  color: rgb(86, 86, 86);
  padding: 7px 12px;
  height: 38px;
  max-width: 100%;
}
ul.popover-event-list{
  margin-top:20px;
}
ul.popover-event-list>li:not(:last-child){
  padding-bottom:4px;
}

/*
	.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: calc(70%);
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}

	.modal.left .modal-content,
	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
	}

	.modal.left .modal-body,
	.modal.right .modal-body {
		padding: 15px 15px 80px;
	}

.modal.left.fade .modal-dialog{
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
	        transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog{
	left: 0;
}

.modal.right.fade .modal-dialog {
	right: -320px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
	        transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
	right: 0;
}

.modal-content {
	border-radius: 0;
	border: none;
}

.modal-header {
	border-bottom-color: #EEEEEE;
	background-color: #FAFAFA;
}
*/

.checkbox-festive input[type=checkbox]:checked + label::before {
  background: #009688 !important;
  border-color: #009688 !important;
}
.checkbox-bankingHolidays input[type=checkbox]:checked + label::before {
  background: #009688 !important;
  border-color: #009688 !important;
}
.checkbox-unpaid_leave input[type=checkbox]:checked + label::before {
  background-color: #ffbd4a !important;
  border-color: #ffbd4a !important;
}
.checkbox-absence input[type=checkbox]:checked + label::before {
  background: #03A9F4 !important;
  border-color: #03A9F4 !important;
}
.checkbox-personal_matter input[type=checkbox]:checked + label::before {
  background: #9CCC65 !important;
  border-color: #9CCC65 !important;
}
.checkbox-sickness input[type=checkbox]:checked + label::before {
  background: #F44336 !important;
  border-color: #F44336 !important;
}
.checkbox-overtime input[type=checkbox]:checked + label::before {
  background: #3a87ad !important;
  border-color: #3a87ad !important;
}
.checkbox-remoting input[type=checkbox]:checked + label::before {
  background: #9E9E9E !important;
  border-color: #9E9E9E !important;
}
.checkbox-presence input[type=checkbox]:checked + label::before {
  background: #2f81e2 !important;
  border-color: #2f81e2 !important;
}
.checkbox-warning input[type=checkbox]:checked + label::before {
  background: #f6e340 !important;
  border-color: #f6e340 !important;
}
.checkbox-vacation input[type=checkbox]:checked + label::before {
  background: #8BC34A !important;
  border-color: #8BC34A !important;
}
.checkbox-free input[type=checkbox]:checked + label::before {
  background: #CDDC39 !important;
  border-color: #CDDC39 !important;
}

.checkbox-festive input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-bankingHolidays input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-unpaid_leave input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-absence input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-personal_matter input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-sickness input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-overtime input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-remoting input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-presence input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-warning input[type=checkbox]:checked+label::after{
  color:#fff;
}

.checkbox-vacation input[type=checkbox]:checked+label::after{
  color:#fff;
}
.checkbox-free input[type=checkbox]:checked+label::after{
  color:#fff;
}
.filter-option{
  margin-bottom:10px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 3px;
    box-shadow: 0 10px 40px 0 rgba(0,0,0,.12)!important;
    background-clip: padding-box;
    margin-top:0;
}
.dropdown-menu .dropdown-main-ul, ul.dropdown-menu {
    background-color: #fff;
    border-radius: 4px!important;
    margin: 0;
    padding: 10px;
    text-transform: none;
    border: 0;
}
.custom-select {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.custom-select:not(.form-control) .custom-select {
  font-size: 12px;
  font-weight: 600;
}
.custom-select .custom-select-toggle {
  width: 100%;
  padding: 0 30px 0 10px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  background-position: 100% 50%;
  height: 34px;
}
.custom-select:not(.form-control) .custom-select-toggle {
  color: #AFAFAF; /* text-grey-500 */
  background-color: transparent;
  border: 1px solid #d8d8d8;
  opacity: 1;
  transition: background .25s ease;
  letter-spacing: .5px;
  height: 36px;
}
.custom-select .custom-select-toggle:not([disabled]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(/public/assets/images/dropdown-half-opaque.svg)!important;
  background-repeat: no-repeat!important;
  background-position: 100% 50%!important;
  transition: background .3s,border-color .3s;
    cursor: pointer;
}
.custom-select .custom-select-dropdown {
  width: 100%;
  z-index: 1028;
  margin-top: 1px;
}
.dropdown-menu .dropdown-main-ul.scrollable, .dropdown-menu .dropdown-main-ul .scrollable, ul.dropdown-menu.scrollable, ul.dropdown-menu .scrollable {
  overflow-y: auto;
  max-height: 400px;
  margin-bottom: 0;
  min-width:188px;
}
.dropdown-filter.options-list{
  max-height:285px;
  margin-bottom: 0;
  min-width:188px;
  overflow-y: auto;
}
.sidebar-filter-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  cursor: pointer;
  font-size: 12px;
  color: #738190;
  font-weight: 600;
  text-transform: uppercase;
}
.sidebar-filter-header .filter-header-title {
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.form-control-filter-inpt {
  border: 1px solid #efeff4;
  box-shadow: none!important;
  border-radius: 3px;
  color: #5f7183;
  font-weight: 400;
  padding: 7px 12px;
  height: auto;
}
.sidebar-filter-header.with-max-height+[ng-transclude] {
  max-height: 300px;
  overflow-y: auto;
}
.shifts-filters-options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-type-marker {
  background-color: rgba(0,0,0,.28);
  background-image: url(/public/assets/images/checkmark-custom.svg);
  background-position: -2px;
  border-color: transparent;
}
span.position {
  border-radius: 2px;
  height: 18px;
  width: 18px;
  margin-right: 1px;
  display: inline-block;
  vertical-align: middle;
}
.shifts-filters-options li .position {
  margin-right: 10px;
  border-style: solid;
  border-width: 2px;
}
.shifts-filters-options li>:first-child {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.shifts-filters-options li>:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.shifts-filters-options li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #738190;
  padding-left: 5px;
  border-radius: 4px;
}
.shifts-filters-options .title-item {
  background: transparent!important;
  cursor: default;
  border-bottom: 1px solid #dcdcdc;
  margin: 10px 0;
  border-radius: 0;
}
.center-vertically {
  -ms-flex-align: center;
  align-items: center;
}
.align-top, .center-vertically {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row;
  flex-flow: row;
}
.custom-select .custom-select-toggle custom-toggle {
  display: -ms-flexbox;
  display: flex;
}
.display-flex {
  display: -ms-flexbox;
  display: flex;
}
.custom-select:not(.form-control) .custom-select-label.filter-active {
  color: #f57c00;
}
.margin-bottom-10{
  margin-bottom:10px;
}
.margin-top-10{
  margin-top:10px;
}
.btn-margin{
  margin-bottom: 3px;
  font-size: 7pt;
  padding-left:2px;
  padding-right:2px;
}

.warning-alert{
  background-color: #f6e340 !important;
  border: 1px solid #f6e340 !important;
}

.personal_matter-alert{
  background-color: #9CCC65 !important;
  border: 1px solid #9CCC65 !important;
}
.festive-alert{
  background-color: #009688 !important;
  border: 1px solid #009688 !important;
  color:#fff;
}
.festive-alert:hover{
  background-color: #009688 !important;
  border: 1px solid #009688 !important;
  color:#fff;
}

.free-alert{
  background-color: #CDDC39 !important;
  border: 1px solid #CDDC39 !important;
  color:#fff;
}
.free-alert:hover{
  background-color: #CDDC39 !important;
  border: 1px solid #CDDC39 !important;
  color:#fff;
}
.tramit-thumb{
  padding:0px;
  margin:0px;
  width: 100%;
}

div.custom-table-header{
  height:40px;
  display:flex;
  align-items:center;
  align-content:center;
  border:1px solid #ebeff2;
  border-top-left-radius:3px;
  border-top-right-radius:3px;
}
div.custom-table-header>div.name-and-first-name{
  flex:12;
  font-weight:600;
  color:#666666;
  margin-left:10px;
}
div.custom-table-header>div.incidences{
  flex:4;
  text-align:center;
  font-weight:600;
  color:#666666
}
div.custom-table-header>div.status{
  flex:6;
  text-align:center;
  font-weight:600;
  color:#666666
}
div.custom-table-header>div.comments{
  flex:2;
  text-align:center;
  font-weight:600;
  color:#666666
}

div.custom-table-header>div.detail{
  flex:2;
  text-align:right;
}
div.custom-table-item{
  cursor:pointer;
  align-content:center;
  align-items:center;
  display:flex;
  height:41px;
  border-bottom:1px solid #ebeff2;
  padding: 12px 0;
}
div.custom-table-item>div.name-and-first-name{
  flex:12;
  margin-left:10px;
}
div.custom-table-item>div.incidences{
  flex:4;
  text-align:center;
  font-weight:600;
  color:#666666;
}
div.custom-table-item>div.status{
  flex:6;
  text-align:center;
  font-weight:600;
  color:#666666;
}
div.custom-table-item>div.comments{
  flex:2;
  text-align:center;
  font-weight:600;
  color:#666666;
}
div.custom-table-item>div.detail{
  flex:2;
  text-align:right;
  padding-right:20px;
}
div.custom-table.no-matching-filter{
  padding:10px;
  border:1px solid #ebeff2;
}

@keyframes loadingG {
    0% {transform: translate(0,0) rotate(0deg);}
    50% {transform: translate(70px,0) rotate(360deg);}
    100% {transform: translate(0,0) rotate(0deg);}
}

.square {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background-color: #f57c00;
}
.load-wrapp {
    float: left;
    width: 120px;
    height: 120px;
    color:#fff;
    margin: 0 10px 10px 0;
    padding: 20px 20px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: rgba(155,166,175,0.65)
}
.load-7 .square {animation: loadingG 1.5s cubic-bezier(.17,.37,.43,.67) infinite;}

.global-loader-div{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 9999;
  margin-top: -40px; /* Negative half of height. */
  margin-left: -22px; /* Negative half of width. */
}




@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }

.live-marker:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #ffcc80;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite; }

.live-marker:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(245, 124, 0, 0.5);
  border-radius: 50%;
  transition: all 200ms; }

.live-marker {
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%; }

.marker-in:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: #33cd5f;
  border-radius: 50%;
  transition: all 200ms; }

.marker-in {
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%; }

.marker-out:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: #ef473a;
  border-radius: 50%;
  transition: all 200ms; }

.marker-out {
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%; }

.lock-active{
  font-size:16pt;
  color:#F44336;
}
.lock-unactive{
  font-size:16pt;
  color: #8BC34A
}
.lock-open{
  color: #8BC34A;
}
.lock-closed{
  color:#F44336;
}
.lock-avatar-icon{
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 15px;
  height: 15px;
  font-size:15pt;
  text-shadow: -2px -2px 4px white;
}
.swal2-content>ul{
  text-align:left;
}

.swal2-container{
  z-index: 4060;
}

.sync-scroll{
  overflow   : auto;
  overflow-x : hidden;
  overflow-y : auto;
}

.location-matched{
  background-color: #6BC363;
  background-image: url("/public/assets/images/clocking_in_location.svg");
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
}
.location-not-matched{
  background-color: #D4D4D4;
  background-image: url("/public/assets/images/gps_no_matching_location.svg");
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
}
.location-matched-padding{
  height:20px;
  background-color: #6BC363;
}
.location-not-matched-padding{
  height:20px;
  background-color: #D4D4D4;
}
.location-padding-top{
  border-radius: 5px 5px 0px 0px;
}
.location-padding-bottom{
  border-radius: 0px 0px 5px 5px;
}
.no-gps{
  background-color: #eb9c34;
  background-image: url("/public/assets/images/no_gps.svg");
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
}
.no-gps-padding{
  background-color: #eb9c34;
  height:20px;
}
.modal-dialog {
  margin: 0 auto;
}
.modal-dialog.modal-lg-shifts{
  width:99%;
}
.modal-dialog.modal-full-modal{
  width: 100vw;
  height: 100vh;
}
.modal-dialog.modal-full-modal>.modal-content{
  padding:0px
}
.modal-dialog.modal-lg-positions{
  width:80%;
}
.ms-button{
  background-color: transparent;
  background-image: url("/public/assets/images/ms-login-button.svg");
  background-size: 100% 100%;
  border: 0;
  padding: 8px 15px;
  color: white;
  min-height:50px;
  width: 100%;
}
.users-profile-pic{
  width:50px;
  padding:5px;
}
.users-company{
  flex:7;
  align-self:center;
}
.users-fullname{
  flex:14;
  align-self:center;
}
.users-email{
  flex:9;
  align-self:center;
}
.users-national-id{
  flex:3;
  align-self:center;
}
.users-ceased-date{
  flex:3;
  align-self:center;
}
.users-role{
  flex:3;
  align-self:center;
  min-width:96px;
}
.users-type{
  flex:3;
  align-self:center;
  text-align:left;
  white-space:nowrap;
  min-width:96px;
}

/* customers and partners tables */
.customer-table-grid {
  grid-template-columns: 20% 10% 10% 12% 9% 7% 7% 25%;
}

.partner-table-grid {
  grid-template-columns: 30% 20% 10% 10% 30%;
}
.partners-email {
  width: 90%;
}
.customer-kam {
  width: 80%;
}

/* billing tables */
.customer-mayor-table-grid {
  grid-template-columns: 20% 20% 20% 20% 5% 5% 5% ;
}


.toggle-multiple-options {
display: inline-flex;
align-items: center;
background-color: #E9EDEF;
border-radius: 20px;
max-width: 100%;
}

.toggle-multiple-options>.btn.active {
  height: 36px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.13);
  border-radius: 20px;
  margin-top: -2px;
  z-index: 3;
  font-weight: bold;
}

.toggle-multiple-options>.btn{
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E9EDEF;
  font-size: 12px;
  font-weight: normal;
  height: 32px;
  line-height: 1;
  border-radius: 0;
  position: relative;
  border: 0;
  min-width: 100px;
  border-radius: 20px;
}
.toggle-multiple-options>.btn.quadrant{
  background-color: #c5cacc !important;
}
.toggle-multiple-options>.btn.active.quadrant{
  background-color: #fff !important;
}
.toggle-multiple-options>.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  font-weight:bold
}
.toggle-multiple-options>.btn input[type="radio"]{
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}









.tooltip {
 position:absolute;
 z-index:1070;
 display:block;
 font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
 font-style:normal;
 font-weight:400;
 letter-spacing:normal;
 line-break:auto;
 line-height:1.42857143;
 text-align:left;
 text-align:start;
 text-decoration:none;
 text-shadow:none;
 text-transform:none;
 white-space:normal;
 word-break:normal;
 word-spacing:normal;
 word-wrap:normal;
 font-size:12px;
 opacity:0;
 filter:alpha(opacity=0)
}
.tooltip.in {
 opacity:.9;
 filter:alpha(opacity=90)
}
.tooltip.top {
 margin-top:-3px;
 padding:5px 0
}
.tooltip.right {
 margin-left:3px;
 padding:0 5px
}
.tooltip.bottom {
 margin-top:3px;
 padding:5px 0
}
.tooltip.left {
 margin-left:-3px;
 padding:0 5px
}
.tooltip-inner {
 max-width:200px;
 padding:3px 8px;
 color:#fff;
 text-align:center;
 background-color:#f57c00;
 border-radius:3px
}
.tooltip-arrow {
 position:absolute;
 width:0;
 height:0;
 border-color:transparent;
 border-style:solid
}
.tooltip.top .tooltip-arrow {
 bottom:0;
 left:50%;
 margin-left:-5px;
 border-width:5px 5px 0;
 border-top-color:#f57c00
}
.tooltip.top-left .tooltip-arrow {
 right:5px
}
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
 bottom:0;
 margin-bottom:-5px;
 border-width:5px 5px 0;
 border-top-color:#f57c00
}
.tooltip.top-right .tooltip-arrow {
 left:5px
}
.tooltip.right .tooltip-arrow {
 top:50%;
 left:0;
 margin-top:-5px;
 border-width:5px 5px 5px 0;
 border-right-color:#f57c00
}
.tooltip.left .tooltip-arrow {
 top:50%;
 right:0;
 margin-top:-5px;
 border-width:5px 0 5px 5px;
 border-left-color:#f57c00
}
.tooltip.bottom .tooltip-arrow {
 top:0;
 left:50%;
 margin-left:-5px;
 border-width:0 5px 5px;
 border-bottom-color:#f57c00
}
.tooltip.bottom-left .tooltip-arrow {
 top:0;
 right:5px;
 margin-top:-5px;
 border-width:0 5px 5px;
 border-bottom-color:#f57c00
}
.tooltip.bottom-right .tooltip-arrow {
 top:0;
 left:5px;
 margin-top:-5px;
 border-width:0 5px 5px;
 border-bottom-color:#f57c00
}
.submenu-fixed{
  position: fixed;
  z-index:1030;
  width:100%;
  margin-top:60px;
}

.contextual-sticky-footer{
  bottom: 0px;
  left: 0px;
  position: fixed;
  right: 0px;
  z-index: 1015;
  background: rgb(255, 255, 255);
  border-top: 1px solid rgb(234, 240, 246);
  background-color: #f5f8fa;
  border-top: 1px solid #cbd6e2;
  padding: 1rem 140px 1rem 3.25rem;
  min-height: 60px;
}


.overflow-ellipsis {
  overflow: hidden
}

.overflow-y-scroll {
  overflow-y: scroll;
  overflow-x: auto
}

.no-interaction {
  cursor: not-allowed
}

.semi-hide {
  opacity: .6
}

.full-size {
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  top: 0
}

.full-height {
  height: 100%
}

.cursor-pointer {
  cursor: pointer
}

.border-bottom {
  border-bottom: solid 1px
}

.no-margin-top {
  margin-top: 0!important
}

.margin-top {
  margin-top: 15px
}

.margin-top-medium {
  margin-top: 25px
}

.margin-top-big {
  margin-top: 40px
}

.margin-top-small {
  margin-top: 8px
}

.margin-bottom {
  margin-bottom: 15px
}

.margin-bottom-big {
  margin-bottom: 40px
}

.margin-left {
  margin-left: 15px
}

.margin-right {
  margin-right: 15px
}

.no-margin {
  margin: 0
}

.text-lowercase {
  text-transform: lowercase
}

.text-uppercase {
  text-transform: uppercase
}

.no-decoration {
  text-decoration: none!important
}

.text-strong {
  font-weight: 700
}

.no-padding {
  padding: 0!important
}

.padding {
  padding: 20px
}

.padding-left {
  padding-left: 15px
}

.padding-right {
  padding-right: 15px
}

.padding-left-big {
  padding-left: 30px
}

.padding-right-big {
  padding-right: 30px
}

.position-relative {
  position: relative
}

.block,.position-absolute {
  position: absolute
}

.overflow-hidden {
  overflow: hidden
}

.invisible-input {
  border: none
}

.invisible-input:active,.invisible-input:focus {
  outline: 0
}



.template-editor .fixed-element.fixed #scroll-hide {
  position: absolute;
  right: -15px;
  bottom: -66px;
  background-color: #fff;
  width: 14px;
  height: 105%;
  z-index: 40
}

.template-editor .no-padding-right {
  padding-right: 0
}

.template-editor .info-widget-container {
  color: #575757;
  margin: 15px auto auto;
  position: relative;
  width: 100%
}

.template-editor .info-widget-container .info-widget {
  background-color: #fafafa;
  border: 2px solid #eaf1eb;
  border-radius: 4px;
  display: block;
  padding: 10px;
  width: 100%
}

.template-editor .info-widget-container .info-widget textarea {
  resize: none;
  height: 110px;
  width: 100%
}

.template-editor .info-widget-container .info-widget #select-values {
  margin-top: 2px
}

.template-editor .info-widget-container .info-widget #select-values ul {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 250px
}

.template-editor .info-widget-container .info-widget #select-values ul li.row input.form-control {
  max-width: calc(100% - 45px);
  height: 27px;
  margin: 2px 6px
}

.template-editor .info-widget-container .info-widget #select-values ul li.row input[type=checkbox] {
  margin-top: 10px
}

.template-editor .info-widget-container .info-widget #select-values ul li.row .icon-close {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 12px
}

.template-editor .info-widget-container .info-widget #select-values ul li.row .icon-close:hover {
  color: #0A0A0A
}

.template-editor .info-widget-container .info-widget #select-values #add-option {
  margin-top: 5px;
  padding: 4px;
  border: 1px dashed #979797;
  height: 27px;
  background-color: #fff;
  overflow: hidden
}

.template-editor .info-widget-container .info-widget #select-values #add-option .add-option {
  color: #fff;
  background-color: #868686;
  border-radius: 20px;
  display: inline-block;
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  padding-left: 4px
}

.template-editor .info-widget-container .info-widget .select-label small {
  font-size: 10px
}

.template-editor .info-widget-container .info-widget .info-widget-header {
  background-color: #eee;
  border-bottom: solid 1px #e0e0e0;
  margin: -10px -10px 20px;
  padding: 10px
}

.template-editor .info-widget-container .info-widget .fa-times {
  position: absolute;
  right: -34px;
  top: 0
}

.template-editor .info-widget-container .info-widget .image-input-container {
  background-color: #fff;
  border: 2px dashed #ccc;
  padding: 4px 10px;
  display: block;
  height: 32px;
  line-height: 24px
}

.template-editor .info-widget-container .info-widget .image-input-container .progess-striped {
  position: absolute
}

.template-editor .info-widget-container .info-widget .datepicker {
  position: absolute;
  left: 0;
  top: 32px;
  z-index: 20
}

.template-editor .info-widget-container .info-widget .form-control {
  font-weight: 600;
  color: #1a1f1a
}

.template-editor .info-widget-container .info-widget .widget-id-container {
  position: relative
}

.template-editor .info-widget-container .info-widget .widget-id-container .form-control {
  background-color: #f5f5f5;
  border: 0;
  color: #575757;
  font-weight: 400;
  padding-left: 39px;
  padding-bottom: 7px
}

.template-editor .info-widget-container .info-widget .widget-id-container .copy-link {
  font-size: 20px;
  color: #2c352b;
  position: absolute;
  right: 10px;
  top: 0
}

.template-editor .info-widget-container .info-widget .widget-id-container .copy-link.hover,.template-editor .info-widget-container .info-widget .widget-id-container .fa-unlink {
  color: #7bb928
}

.template-editor .info-widget-container .info-widget .widget-id-container span {
  position: absolute;
  top: 5px;
  left: 10px
}

.template-editor .info-widget-container .info-widget .form-group {
  margin-bottom: 18px
}

.template-editor .info-widget-container .info-widget .form-group label {
  margin-bottom: 0
}

.template-editor .info-widget-container .info-widget .form-group .form-control {
  height: 32px
}

.template-editor .info-widget-container .info-widget .form-group .form-control[type=checkbox] {
  box-shadow: none;
  outline: 0
}

.template-editor .empty-widget-container {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #d3d3d3;
  width: 100%;
  height: 330px;
  background-color: #f8f8f8;
  color: #ababab;
  padding: 5px;
  text-align: center
}

.template-editor ul.document {
  background-color: #fff;
  margin: 0
}

.template-editor ul.document li.page {
  margin: 0 4px 10px
}

.template-editor ul.document li.page .annotation{
  color: #fff;
  font-weight: 700;
  line-height: 30px;
  opacity: .8;
  padding: 0 3px;
  position: absolute;
  z-index: 1
}

.template-editor ul.document li.page .annotation.move-handler {
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  top: 0
}

.template-editor ul.document li.page .widget.active {
  opacity: 1
}

.template-editor ul.document li.page .widget.disabled {
  background-color: #e8e8e8;
  border-color: #a5a8a5;
  color: #a5a8a5;
  z-index: 0
}

.template-editor ul.document li.page .widget.disabled * {
  cursor: auto;
  pointer-events: none
}

.template-editor ul.document li.page .annotation.fa-check,.template-editor ul.document li.page .annotation.fa-circle-o,.template-editor ul.document li.page .annotation.fa-dot-circle-o {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px
}

.template-editor ul.document li.page .annotation.tooltip {
  left: -14px;
  text-align: center;
  width: 150px
}

.template-editor ul.document li.page .annotation.widget-editable {
  background-color: transparent;
  border: none;
  box-shadow: none;
  height: 100%;
  line-height: 12px;
  font-size: 12px;
  outline: 0;
  width: 100%;
  bottom: -1px;
  position: absolute
}

.template-editor ul.document li.page .annotation.widget-content {
  bottom: 1px;
  line-height: 12px;
  font-size: 12px;
  padding-left: 3px;
  position: absolute;
  width: 100%
}

.template-editor ul.document li.page .annotation.delete-annotation {
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  padding: 0 2px;
  position: absolute;
  left: -9px;
  top: -9px
}

.template-editor ul.document li.page.page-container.loading .annotation{
  display: none
}
.pdf-image-page{
  margin-left:auto;
  margin-right:auto;
  min-height: 250px;
  display: block;
}
.pdf-annotation-overlay{
  margin-left:auto;
  margin-right:auto;
}
.pdf-holder{
  flex:10;
  padding:15px;
  background-color:#404040;
  height: calc(100vh - 150px);
  overflow: scroll;
}
.pdf-page-container{
  display:inline-block;
  background-color:white;
  position:relative;
}
.pdf-annotators{
  flex:3;
  background:#fbfbfb;
  min-height:450px;
  padding:10px;
  max-width:304px;
}
.pdf-annotators-holder{
  position:relative;
  max-width:304px;
  width: 100%;
}
.annotator{
  background-color: #91b9f3;
  border: 1px dashed #4970fd;
  border-radius: 3px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  height: 38px;
  transition: 0.3s;
  color: white;
  font-weight: bold;
  opacity: 0.5;
}
li.annotator{
  list-style-type: none;
}
.annotator-custom-field{
  background-color: #FAC187;
  border: 1px dashed #F57C00;
  border-radius: 3px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  height: 38px;
  transition: 0.3s;
  color: white;
  font-weight: bold;
  opacity: 0.7;
}
.annotation{
  background-color:#91b9f3;
  border:1px dashed #4970fd;
  opacity:0.5;
  align-items: center;
  display: flex;
  justify-content: center;
}
.annotation-custom-field{
  background-color: #FAC187;
  border: 1px dashed #F57C00;
  opacity:0.7;

}

.delete-annotation{
  top: -12px;
  left: -12px;
  position: absolute;
  border-radius: 10px;
  border: 1px solid white;
  width: 20px;
  height: 20px;
  padding: 1px;
  background: red;
  color: white;
  cursor:pointer;
}
.move-handler{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
}

.template-card{
  padding:25px;
  border:1px solid #ddd;
  border-radius:16px;
  background:white;
  height: 250px;
  margin-bottom: 20px;
  transition: 0.2s transform;
}
.template-card.new{
  background:#F57C00;
  border:none;
  box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 16pt;
  cursor:pointer;
  display:flex;
  align-self:center;
  align-items:center;
}

.template-card.new:hover{
  box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.05)
}

.template-card.empty{
  border: 2px dashed #a5a1a1;
  background:transparent;
  font-size:12pt;
  display:flex;
  align-self:center;
  align-items:center;
}
.template-card-info{
  background:white;
  position:absolute;
  top:0;
  border-radius:16px;
  left:0;
  padding:10px;
  height:100%;
  width:100%;
  display:flex;
  flex-direction:column;
}

.signature-beta-holder{
  display:flex;
}
.doc-holder{
  flex:7;
  min-height:200px;
}
.form-holder{
  flex:3;
  min-height:200px;
  display:flex;
  flex-direction:column;
  border: 1px solid #ddd;
  border-radius: 16px;
  margin-left: 20px;
  box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.1);
  background: white;
}
.form-filler{
  flex:10;
}
.button-signer{
  flex:2;
  display:flex;
  align-items: center;
  justify-content: center;
  min-height:80px;
}
.massive-signature-beta-icon{
  margin-right: 15px;
  width: 15px;
  height: 15px;
  background: url(/public/assets/images/massive-signature-beta-icon.svg);
  background-repeat: no-repeat;
  display: inline-block;
}


.signature-beta-icon{
  margin-right: 15px;
  width: 15px;
  height: 15px;
  background: url(/public/assets/images/header-icons/signature.svg);
  background-repeat: no-repeat;
  display: inline-block;
}

.signature-beta-icon{
  margin-right: 15px;
  width: 15px;
  height: 15px;
  background: url(/public/assets/images/header-icons/signature.svg);
  background-repeat: no-repeat;
  display: inline-block;
}
svg.header-svg-icon{
  width:20px;
  height:20px;
  display: inline-block;
  fill: #6d6d6d;
  margin-right:8px;
}

.signature-templates-beta-icon{
  margin-right: 15px;
  width: 20px;
  height: 20px;
  background: url(/public/assets/images/header-icons/signature-templates.svg);
  background-repeat: no-repeat;
  display: inline-block;
}

.translate-cloak {
  display: none;
}

.request-header{
  min-height: 75px;
  background: #f57c00;
  margin-left: 0px;
  margin-right: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex{
  display:flex !important;
}
ul.submenu.megamenu>li>div{
  float:right;
}
#topnav .navigation-menu > li .submenu li a {
  display: block;
  padding: 8px 15px;
  clear: both;
  white-space: nowrap;
  font-weight: 500;
  color: #494e53;
}

#topnav .navigation-menu > li .submenu li a >div {
  float:right;
}
.pac-container{
  z-index:20000 !important;
}

.cross-word{
  text-decoration: line-through;
  opacity: 0.5;
}

.vm--container{
  z-index:2000 !important;
}

.vm--modal{
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #DDDDDD !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  padding: 0px !important;
  z-index: 10;
}

.btn-rounded .btn-label {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.ui-select-bootstrap .ui-select-toggle > a.btn.btn-xs.btn-link.pull-right {
  margin-top: 0px!important;
}

/* Colors */

/* Text */
.text-black {
  color: #222222;
}

.text-grey-800 {
  color: #484848;
}

.text-grey-700 {
  color: #686868;
}

.text-grey-600 {
  color: #888888;
}

.text-grey-500 {
  color: #AFAFAF;
}

.text-grey-400 {
  color: #D4D4D4;
}

.text-grey-300 {
  color: #ECECEC;
}

.text-grey-200 {
  color: #F2F2F2;
}

.text-grey-100 {
  color: #F8F8FA;
}

.text-orange-800 {
  color: #DD7000;
}

.text-orange-700 {
  color: #F57C00;
}

.text-orange-600 {
  color: #F8A149;
}

.text-orange-500 {
  color: #F9B269;
}

.text-orange-400 {
  color: #FAC187;
}

.text-orange-300 {
  color: #FCD6B0;
}

.text-orange-200 {
  color: #FDE9D4;
}

.text-orange-100 {
  color: #FEF5EB;
}

/* Icons */
.fill-grey-800 {
  fill: #484848;
}

.fill-grey-700 {
  fill: #686868;
}

.fill-grey-600 {
  fill: #888888;
}

.fill-grey-500 {
  fill: #AFAFAF;
}

.fill-grey-400 {
  fill: #D4D4D4;
}

.fill-grey-300 {
  fill: #ECECEC;
}

.fill-grey-200 {
  fill: #F2F2F2;
}

.fill-grey-100 {
  fill: #F8F8FA;
}

.fill-orange-800 {
  fill: #DD7000;
}

.fill-orange-700 {
  fill: #F57C00;
}

.fill-orange-600 {
  fill: #F8A149;
}

.fill-orange-500 {
  fill: #F9B269;
}

.fill-orange-400 {
  fill: #FAC187;
}

.fill-orange-300 {
  fill: #FCD6B0;
}

.fill-orange-200 {
  fill: #FDE9D4;
}

.fill-orange-100 {
  fill: #FEF5EB;
}

/* Backgrounds */
.bg-grey-800 {
  background: #484848;
}

.bg-grey-700 {
  background: #686868;
}

.bg-grey-600 {
  background: #888888;
}

.bg-grey-500 {
  background: #AFAFAF;
}

.bg-grey-400 {
  background: #D4D4D4;
}

.bg-grey-300 {
  background: #ECECEC;
}

.bg-grey-200 {
  background: #F2F2F2;
}

.bg-grey-100 {
  background: #F8F8FA;
}

.bg-orange-800 {
  background: #DD7000;
}

.bg-orange-700 {
  background: #F57C00;
}

.bg-orange-600 {
  background: #F8A149;
}

.bg-orange-500 {
  background: #F9B269;
}

.bg-orange-400 {
  background: #FAC187;
}

.bg-orange-300 {
  background: #FCD6B0;
}

.bg-orange-200 {
  background: #FDE9D4;
}

.bg-orange-100 {
  background: #FEF5EB;
}

/* status colors */
.text-red-state {
  color: #F05050;
}

.text-green-state {
  color: #81C868;
}

.text-yellow-state {
  color: #FFBD4A;
}

.text-orange-state {
  color: #F57C00;
}

.bg-red-state {
  background: #F05050;
}

.bg-green-state {
  background: #81C868;
}

.bg-yellow-state {
  background: #FFBD4A;
}

.bg-orange-state {
  background: #F57C00;
}

/* New styles */
.tc-switch + label, .tc-switch + label::after {
  height: 24px;
  width: 40px;
}

.tc-switch + label::after {
  height: 20px;
  width: 20px;
}

.tc-switch:checked + label::after {
  left: calc(16px);
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #4BD865;
}

.tc-switch + label:hover:active::after {
  width: calc(20px);
}

.custom-select .custom-select-toggle.tc-custom-select-toggle:not([disabled]),
.custom-select:not(.form-control) .custom-select-toggle.tc-custom-select-toggle,
.custom-select .custom-select-toggle.tc-custom-select-toggle {
  color: #686868; /* text-grey-700 */
  background-color: transparent;
  border: 1px solid #686868;
  border-radius: 4px;
  opacity: 1;
  letter-spacing: .5px;
  height: 36px;
}

.tc-custom-select-toggle .fa {
  font-size: 14px!important;
}

.tc-custom-select-toggle span {
  color: #AFAFAF; /* text-grey-500 */
}

.tc-custom-select-toggle .center-vertically {
  height: 100%;
}

.edit-favourites-filters {
  width: 90%;
  margin: 8px auto 24px auto;
}

.edit-favourites-filters .col-md-12 {
  float: none;
}

.edit-favourites-filters .filter-option {
  padding: 0;
  margin-bottom: 8px;
}

.tc-btn {
  height: 40px;
  min-width: 112px;
  width: auto;
  padding: 0 16px;
  border: 1px solid #F57C00;
  font-size: 14px;
  border-radius: 20px;
  font-weight: normal;
}

.tc-btn-sm {
  height: 36px;
}

.tc-btn-xs {
  height: 32px;
}

.tc-btn-primary {
  background: #F57C00;
  color: #FFFFFF;
}

button.tc-btn-primary[disabled] {
  border: 1px solid #FCD6B0;
  color: #FFFFFF;
  background: #FCD6B0;
}

.tc-btn-cancel {
  background: #FFFFFF;
  border: 1px solid #F05050;
  color: #F05050;
}
button.tc-btn-cancel[disabled] {
  opacity: 50%;
}

.tc-btn-warning {
  background: #FFFFFF;
  border: 1px solid #FF9930;
  color: #FF9930;
}

.tc-btn-rounded {
  border-radius: 20px;
}

.sticky-bottom-bar {
  width: calc(50% - 30px);
}

.tc-control-title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 12px;
}

.tc-control-label {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.tc-control-switch-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #D4D4D4;
}

.tc-control-switch-value:last-child {
  border-bottom: 1px solid #D4D4D4;
}

.switch.tc-switch.tc-switch-orange:checked + label {
  border: 2px solid #F57C00;
  box-shadow: inset 0 0 0 calc(19px) #F57C00;
}

.switch.tc-switch.tc-switch-orange:checked + label::after {
  left: calc(20px);
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.2), 0 0 0 2px #F57C00;
}

.tc-config-company-block {
  margin-bottom: 32px;
}

.tc-config-company-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tc-config-company-title {
  font-size: 20px;
  font-weight: 600;
  color: #484848;
  margin: 0;
  line-height: normal;
}

.tc-config-company-title-icon {
  margin-right:12px;
}

.tc-config-company-link {
  align-items: center;
  font-size: 14px;
  display: flex;
  color: #F57C00;
}

.tc-config-company-link-icon {
  margin-right: 8px;
  margin-bottom: -2px;
}

.tc-config-company-info {
  background: #FCD6B0;
  color: #F57C00;
  margin-top: 24px;
  padding: 24px;
  border-radius: 4px;
  font-weight: 400;
}

.tc-config-company-info-text {
  margin-bottom: 8px;
}

.tc-config-company-info-text-extra {
  margin-bottom: 12px;
}

.tc-config-company-info-list {
  line-height: 1.56;
  padding-left: 24px;
  margin: 0;
}

.tc-config-company-info-action {
  font-weight: 600;
  margin: 0;
  line-height: normal;
}

.tc-control-switch-value-xs {
  height: 24px;
}

.tc-control-switch-value-xs label {
  margin: 0;
}

.quadrant-no-results {
  height: 300px;
  background: url('/public/assets/images/schedule.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.clocking_empty_state {
  height: 300px;
  background: url('/public/assets/images/empty-states/clocking_empty_state.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tc-chips-block {
  line-height: normal;
  padding-left: 0;
}

.tc-chips-block-item {
  height: 36px;
  display: inline-block;
  border: 1px solid #F57C00;
  border-radius: 18px;
  padding: 0 16px;
  margin: 5px 12px 5px 0;
}

.tc-chips-block-item-text {
  height: 100%;
  display: flex;
  align-items: center;
  color: #F57C00;
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  max-width: 434px;
  display: block;
  text-overflow: ellipsis;
}
.vm--overlay {
  z-index: 10;
  opacity: 1;
}
.img-circle{
  border-radius: 50%;
  object-fit: cover;
}


.magic-bg{
  background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
}

.quick-info{
  color: white;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
.quick-sickness-info{
  background: #F44336;
}
.quick-schedules-info{
  background:#2f81e2;
}
.quick-absences-info{
  background:#ffbd4a;
}
.quick-vacations-info{
  background:#8BC34A;
}
.quick-festive-info{
  background:#009688;
}
.quick-free-info{
  background:#CDDC39;
}

tramitapp-grid[theme='material'] tramitappgr-viewport tramitappgr-data .data-cell {
  padding: 0px !important;
}

tramitappgr-focus.focused-cell {
  -webkit-box-shadow: -1px 0 0 #f57c00 inset, 1px 0 0 #f57c00 inset,
    0 -1px 0 #f57c00 inset, 0 1px 0 #f57c00 inset !important;
  box-shadow: -1px 0 0 #f57c00 inset, 1px 0 0 #f57c00 inset,
    0 -1px 0 #f57c00 inset, 0 1px 0 #f57c00 inset !important;
}

tramitappgr-overlay-selection .selection-border-range {
  -webkit-box-shadow: -1px 0 0 #f57c00 inset, 1px 0 0 #f57c00 inset,
    0 -1px 0 #f57c00 inset, 0 1px 0 #f57c00 inset !important;
  box-shadow: -1px 0 0 #f57c00 inset, 1px 0 0 #f57c00 inset,
    0 -1px 0 #f57c00 inset, 0 1px 0 #f57c00 inset !important;
}

tramitappgr-overlay-selection .autofill-handle {
  background: #f57c00 !important;
}

tramitapp-grid[theme=material] tramitappgr-viewport-scroll.colPinStart{
  box-shadow: 4px 0 0 0 rgb(0 0 0 / 4%);
}


/* tramitapp-grid[theme='material'] tramitappgr-scroll-virtual {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  width: 0;
  min-width: 0 !important;
  min-height: 0 !important;
}

tramitapp-grid[theme='material'] tramitappgr-scroll-virtual::-webkit-scrollbar {
  display: none;
} */

tramitapp-grid[theme=material] tramitappgr-header .rgHeaderCell{
  padding:0px !important;
  text-align: center !important;
}
tramitapp-grid[theme='material']#EmployeeTimeOffReportTable tramitappgr-header .rgHeaderCell {
  padding-right: 4px !important;
  padding-left: 10px !important;
  text-align: left !important;
}

tramitappgr-viewport-scroll.colPinStart tramitappgr-header {
  border-top-left-radius: 4px;
}
tramitappgr-viewport-scroll.colPinEnd tramitappgr-header {
  border-top-right-radius: 4px;
}
tramitapp-grid[theme='material'] tramitappgr-header .header-taRow:not(.group) {
  box-shadow: none;
}
tramitappgr-header {
  background: #f4f4f5;
  border: 1px solid #e2e2e5;
}
tramitappgr-viewport-scroll:not(.colPinStart, .colPinEnd) tramitappgr-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.autocomplete-input {
  border: 1px solid #eee;
  border-radius: 0px !important;
  width: 100%;
  padding: 12px !important;
  box-sizing: border-box;
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
  background-color: #fff;
  background-image: none !important;
  background-position: unset !important;
}

.autocomplete-result {
  cursor: default;
  padding: 12px 12px 12px 12px;
  background-image: unset !important;
  background-repeat: unset !important;
  background-position: unset !important;
}
.tramitapp-dropdown-list{
  z-index:2000;
}
tramitapp-dropdown .ta-dr-root{
  height:100%;
}
tramitapp-dropdown input.filter-box{
  font-size:11pt;
}
.select-code{
  min-width: var(--select-code-width)
}

.ql-editor.ql-blank::before{
  font-style: normal !important;
  color: #AFAFAF !important;
  font-size: 16px !important;
}
.ql-container.ql-snow{
  min-height: 150px;
  border: 1px solid #ebebeb !important;
}
.ql-editor{
  min-height: 150px;
}
.ql-container {
  font-size: 16px;
}
.ql-toolbar.ql-snow {
  border-top: 1px solid #ebebeb !important;
  border-left: 1px solid #ebebeb !important;
  border-right: 1px solid #ebebeb !important;
}
.ql-editor.ql-blank{
  min-height: 150px;
}


.mx-datepicker-popup {
  z-index: 4001 !important;
}

.rich-text ul {
  padding-left: 1.5em;
}
.rich-text li {
  list-style-type: disc;
  list-style-position: inside;
}
.rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.rich-text > p > img:only-child {
  display: block;
  margin: 8px auto;
}
.ql-indent-1{
  padding-left:3em;
}
.ql-indent-2{
  padding-left:4.5em;
}
.ql-align-center{
  text-align:center;
}
.ql-align-right{
  text-align:right;
}
.ql-align-justify{
  text-align:justify;
}
.form-question-label {
  color: #484848;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.form-question-label::first-letter{
  text-transform: capitalize;
}
.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
  top: 56px !important;
}
:root{
  --swiper-theme-color:#8AE16B !important;
}
.onboarding-popover{
  width: 300px;
}
.onboarding-popover-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #F05050;
  font-weight: 600;
  padding: 5px 16px 4px;
}

.onboarding-popover-inner-content{
  padding:12px 16px;
  color:#888888;
}


.tc-card-box {
  padding: 54px 40px;
  margin-bottom: 24px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background-color: #ffffff;
}