﻿/*default variables such as colors, mixins...*/
/*BREAKPOINTS*/
/*COLORS*/
/*BORDERS*/
/*FONT SIZES*/
/*FONT OPTIONS*/
/*FONT OPTIONS OPEN SANS*/
.hrpro-main-body {
  background-color: #ffffff; }

.hrpro-main-container {
  position: relative;
  min-height: 100vh; }

.hrpro-main-main {
  padding-bottom: 40px;
  background-color: #ffffff; }

.hrpro-footer {
  border-top: 1px solid #DCDCDC;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px; }
  @media screen and (min-width: 360px) {
    .hrpro-footer {
      width: 114%; } }
  @media screen and (min-width: 320px) {
    .hrpro-footer {
      width: 100%; } }
  @media screen and (max-width: 375px) {
    .hrpro-footer {
      width: 100%; } }
  @media screen and (min-width: 411px) {
    .hrpro-footer {
      width: 100%; } }
  @media screen and (min-width: 414px) {
    .hrpro-footer {
      width: 100%; } }
  .hrpro-footer__p {
    padding: 14px;
    margin: 0;
    font-size: 12px; }
  .hrpro-footer .hrpro-footer-main {
    margin: 0 auto; }
    @media screen and (min-width: 1366px) {
      .hrpro-footer .hrpro-footer-main {
        width: 60%; } }
    @media screen and (max-width: 1280px) {
      .hrpro-footer .hrpro-footer-main {
        width: 100%; } }
    @media screen and (max-width: 360px) {
      .hrpro-footer .hrpro-footer-main {
        width: 100%; } }
    @media screen and (max-width: 320px) {
      .hrpro-footer .hrpro-footer-main {
        width: 100%; } }
  .hrpro-footer .auth-link-main {
    padding: 1rem; }
  .hrpro-footer .auth-link {
    color: #333;
    font-size: 14px;
    margin-left: 20px; }
    .hrpro-footer .auth-link:hover {
      text-decoration: none; }

.hrpro-links {
  color: #2DB8D2;
  font-size: 14px;
  float: right;
  text-decoration: underline; }

/*All inputs and select boxes "default" styles*/
input:focus, select:focus {
  background-color: none;
  outline: none;
  border: 1px solid #2DB8D2; }

/*TOGGLE BUTTONS*/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px; }

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #717171;
  -webkit-transition: .4s;
  transition: .4s; }

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s; }

input:checked + .slider {
  background-color: #2DB8D2; }

input:focus + .slider {
  box-shadow: 0 0 1px #2DB8D2; }

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px); }

/* Rounded sliders */
.slider.round {
  border-radius: 34px; }

.slider.round:before {
  border-radius: 50%; }

.classicTransitionAnimation {
  -webkit-animation: classicTransitionAnimation 2s;
  animation: classicTransitionAnimation 1.2s; }

@keyframes classicTransitionAnimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.dangerTransitionAnimation {
  -webkit-animation: dangerTransitionAnimation 2s;
  animation: dangerTransitionAnimation 1.2s; }

@keyframes dangerTransitionAnimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.transitionAnimation {
  -webkit-animation: transitionAnimation 1.5s steps(9) forwards;
  -moz-animation: transitionAnimation 1.5s steps(10) infinite;
  -ms-animation: transitionAnimation 1.5s steps(10) infinite;
  -o-animation: transitionAnimation 1.5s steps(10) infinite;
  animation: transitionAnimation 1.5s steps(9) forwards; }

@keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-ms-keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes transitionAnimation {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* -- ERROR CLASSES -- */
.error-hr {
  width: 380px;
  height: 1px;
  background-color: transparent;
  border-bottom: 1px solid rgba(209, 209, 209, 0.18);
  margin: 0 auto; }

.error-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0B2B47; }

/* -- ERROR NOT FOUND PAGE -- */
.error-not-found {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 150px);
  text-align: center; }

.error-not-found-404 {
  color: #ffffff;
  font-size: 52px;
  text-shadow: 2px 2px #33556d; }

.error-not-found-text {
  margin-top: 17px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 200; }

.error-not-found-animation {
  color: #ffffff;
  font-size: 100px;
  animation: bouncing ease 3s infinite;
  transform-origin: bottom;
  margin-bottom: -20px; }

/* -- INTERNAL ERROR PAGE -- */
.internal-error {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 220px);
  text-align: center; }

.internal-error-500 {
  font-size: 120px;
  font-weight: 600;
  color: #2DB8D2;
  text-shadow: 2px 2px #33556d; }

.internal-error-subtext {
  margin-top: -15px;
  color: #2DB8D2;
  font-size: 16px; }

.internal-error-text {
  margin-top: 17px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 200; }

.internal-error-animation {
  color: #2DB8D2;
  font-size: 140px;
  animation: pulsing 5s ease infinite alternate;
  margin-bottom: -48px; }

/* -- FORBIDDEN ERROR PAGE -- */
.forbidden-error {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 150px);
  text-align: center; }

.forbidden-error-403 {
  font-size: 120px;
  font-weight: 600;
  color: #2DB8D2;
  text-shadow: 2px 2px #33556d; }

.forbidden-error-text {
  margin-top: 17px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 200; }

.forbidden-error-animation {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: calc(25% - 230px);
  text-align: center;
  color: #2DB8D2;
  opacity: .1;
  font-size: 400px; }

.forbidden-error-animation i {
  animation: rotation 16s infinite linear; }

/* -- GENERAL ERROR PAGE -- */
.general-error {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 200px);
  text-align: center; }

.general-error-oops {
  font-size: 62px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 2px #33556d; }

.general-error-subtext {
  margin-top: -15px;
  color: #2DB8D2;
  font-size: 34px; }

.general-error-text {
  color: #2DB8D2;
  font-size: 17px;
  font-weight: 200; }

.general-error-animation {
  color: #2DB8D2;
  font-size: 100px; }

.general-error-animation i {
  animation: bugsize 5s infinite alternate; }

#settingsNavigation .nav {
  border-left: 1px solid rgba(255, 255, 255, 0.25); }

#settingsNavigation .nav-item > a:active {
  color: #2DB8D2;
  font-weight: 700; }

@keyframes bugsize {
  50% {
    font-size: 80px; } }

@keyframes rotation {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

@keyframes pulsing {
  0%, 100% {
    opacity: 0.8; }
  50% {
    opacity: .25; } }

@keyframes bouncing {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(20px); }
  100% {
    transform: translateY(0); } }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0 auto;
  color: #333; }

/*LABEL ANIMATIONS*/
.form-group-animation {
  position: relative; }

.form-label-animation {
  left: 9px;
  top: 11px;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out; }

.focused .form-label-animation {
  position: absolute;
  transform: translateY(-50%);
  font-size: 10px; }

.form-input-animation {
  position: relative; }

/*Reset col-12*/
.col-12 {
  padding: 0 !important; }

.hrpro-partials {
  padding: 0 15px 0 15px; }

l
.hrpro-partials-job {
  padding: 0 15px 0 15px; }
  @media screen and (min-width: 768px) {
    l
.hrpro-partials-job {
      padding: 0 80px 0 80px; } }

.invalid {
  border: 1px solid #E4625A; }

.error_form {
  color: #E4625A;
  font-size: 10px;
  margin: 5px 0 5px 0; }

.error_form_adress {
  color: #E4625A;
  font-size: 10px;
  z-index: 1;
  margin-top: -18px;
  display: block;
  margin-bottom: -1px; }

.error_form_adress_right {
  color: #E4625A;
  font-size: 10px;
  z-index: 1;
  margin-top: -18px;
  display: block;
  margin-left: 18px; }

.hrpro-spinner-loading {
  position: absolute;
  margin: 0 auto;
  z-index: 2;
  width: 100%;
  top: calc(100% - 90%); }
  .hrpro-spinner-loading .spinner-border {
    border: 4px #2DB8D2 solid;
    border-right-color: transparent;
    width: 64px;
    height: 64px; }

#cookieConsent {
  background-color: #0B2B47;
  color: #ffffff;
  border-radius: 0px;
  border: 0px; }
  #cookieConsent button.accept-policy.close span {
    color: #ffffff; }

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:hover {
  border: 1px solid #DCDCDC;
  -webkit-text-fill-color: #333;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s; }

input:-webkit-autofill:focus {
  border: 1px solid #2DB8D2;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset; }

input[type="checkbox"]:focus {
  border: 1px solid #2DB8D2;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset; }

.hr-line {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #efe9e9 !important; }

#welcomeInfo, #benefitsInfo, #ruleInfo, #MyDataInfo {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s; }

@keyframes fadeInOpacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.logout-link {
  /*    color: $tertiary;*/
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.logout-link:hover {
  color: #04BFD7;
  text-decoration: none; }

.logout-link:hover > i {
  transform: translateX(10px); }

.logout-link > span {
  margin-left: 10px; }

.logout-link > i {
  transition: transform .1s linear; }

.navigationDiv {
  display: flex;
  flex-flow: row wrap;
  /*align-items: center;*/
  color: #04BFD7;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  margin-right: 20px; }

.navigationDiv a {
  vertical-align: middle;
  margin: 15px;
  /*padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;*/ }

@media (max-width: 640px) {
  .tenders-link {
    margin-top: 30px !important; }
  .navigationDiv a {
    margin: 0;
    padding-top: 7px; }
  .navigationDiv {
    flex-direction: column;
    align-items: stretch;
    margin-left: 30px; } }

.tenders-link-back {
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 30px;
  color: #04BFD7;
  font-weight: bold; }

.tenders-link {
  color: #04BFD7; }

.tenders-logout {
  color: #04BFD7; }

a:hover {
  color: #04BFD7; }

.fa_custom {
  color: #04BFD7; }

.education-card {
  margin-bottom: 10px; }

.career-card {
  margin-bottom: 10px; }

.hrpro-main-body {
  background-color: #2DB8D2; }
  @media screen and (min-width: 1280px) {
    .hrpro-main-body {
      background-color: #fff; } }

.hrpro-webemployment-auth-main {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  /*@media screen and (min-width: $break-medium) {
        background-image: url('../images/onBoardingLoginPhoto_full.png');
        background-repeat: no-repeat;
        background-position: right;
        background-position: 640px 0px;
        background-size: 100%;
    }

    @media screen and (min-width: $break-large) {
        background-image: url('../images/onBoardingLoginPhoto_full.png');
        background-repeat: no-repeat;
        background-position: right;
        background-position: 683px 0px;
        background-size: 100%;
    }

    @media screen and (min-width: $break-extra-large) {
        background-image: url('../images/onBoardingLoginPhoto_full.png');
        background-repeat: no-repeat;
        background-position: right;
        background-position: 960px 0px;
        background-size: 100%;
    }

    @media screen and (min-width: $break-k) {
        background-image: url('../images/onBoardingLoginPhoto_full.png');
        background-repeat: no-repeat;
        background-position: right;
        background-position: 1280px 0px;
        background-size: 100%;
    }*/
  /*Footers*/ }
  @media screen and (min-width: 1280px) {
    .hrpro-webemployment-auth-main {
      background-color: #fff; } }
  .hrpro-webemployment-auth-main #hrproLogo {
    background-image: url("../images/hrpro_logo.svg");
    background-repeat: no-repeat;
    width: 203px;
    height: 47px;
    background-size: contain;
    visibility: hidden; }
    @media screen and (min-width: 1280px) {
      .hrpro-webemployment-auth-main #hrproLogo {
        background-image: url("../images/HRPRO_pozitiv_logo.png");
        background-repeat: no-repeat;
        margin-bottom: 2rem;
        width: 203px;
        height: 47px;
        background-size: contain;
        visibility: hidden; } }
  .hrpro-webemployment-auth-main .auth-footer {
    display: none;
    position: absolute;
    top: 600px;
    font-size: 0.75rem;
    /*@media screen and (max-width: $break-extra-small) {
            top: 410px;
        }

        @media screen and (min-width: $break-small) {
            top: 480px;
        }

        @media screen and (min-width: $break-small-375) {
            top: 530px;
        }

        @media screen and (min-width: $break-small-411) {
            top: 580px;
        }

        @media screen and (min-width: $break-small-414) {
            top: 590px;
        }

        @media screen and (min-width: $break-ipad) {
            top: 400px;
        }

        @media screen and (min-width: $break-ipad-pro) {
            top: 400px;
        }


        @media screen and (min-width: $break-large) {
            top: 536px;
        }

        @media screen and (min-width: $break-extra-large) {
            top: 620px;
        }*/ }

.hrpro-webemployment-auth {
  margin: 6rem auto;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  /*@media screen and (min-width: $break-large) {
    margin: 12rem 11rem 9rem;
    }

    @media screen and (min-width: $break-extra-large) {
    margin: 16rem 16rem 9rem;
    }

    @media screen and (min-width: $break-k) {
    margin: 33rem 23rem 9rem;
    }*/
  /*&__header {
        font-size: $header;
    }
    /*&__header-text {
        margin-bottom: 3rem;
    }*/ }
  @media screen and (min-width: 768px) {
    .hrpro-webemployment-auth {
      flex: 0 0 45%;
      max-width: 45%; } }
  @media screen and (min-width: 1366px) {
    .hrpro-webemployment-auth {
      flex: 0 0 25%;
      max-width: 25%;
      /*float: left;
        margin: 12rem 10rem 9rem;*/ } }

.hrpro-webemployment-auth-form__input {
  width: 100%;
  height: 42px;
  margin: 0 0 16px 0;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #DCDCDC;
  background-color: #ffffff;
  color: #333;
  color: #333;
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  margin-bottom: 5px; }
  @media screen and (min-width: 1280px) {
    .hrpro-webemployment-auth-form__input {
      color: #333;
      background-color: #ffffff;
      border: 1px solid #DCDCDC; } }

.hrpro-webemployment-auth-form__loginBtn {
  position: relative;
  width: 100%;
  height: 42px;
  margin: 0 0 22px 0;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  background-color: #2DB8D2;
  border: 0; }
  @media screen and (min-width: 1280px) {
    .hrpro-webemployment-auth-form__loginBtn {
      position: relative;
      width: 100%;
      height: 42px;
      margin: 0 0 22px 0;
      font-size: 14px;
      text-align: center;
      cursor: pointer;
      color: #ffffff;
      background-color: #2DB8D2;
      border: 0; } }

.hrpro-webemployment-auth-form__loginBtn:focus {
  outline: none; }

.hrpro-webemployment-auth-form .hrpro-links {
  color: #2DB8D2;
  font-size: 14px;
  float: left; }
  @media screen and (min-width: 1280px) {
    .hrpro-webemployment-auth-form .hrpro-links {
      color: #2DB8D2; } }

.form-control::-webkit-input-placeholder {
  color: #333; }
  @media screen and (min-width: 1280px) {
    .form-control::-webkit-input-placeholder {
      color: #333; } }

.form-control:-moz-placeholder {
  color: #333; }
  @media screen and (min-width: 1280px) {
    .form-control:-moz-placeholder {
      color: #333; } }

.form-control::-moz-placeholder {
  color: #333; }
  @media screen and (min-width: 1280px) {
    .form-control::-moz-placeholder {
      color: #333; } }

.form-control:-ms-input-placeholder {
  color: #333; }
  @media screen and (min-width: 1280px) {
    .form-control:-ms-input-placeholder {
      color: #333; } }

.form-control:-ms-input-placeholder {
  color: #333; }
  @media screen and (min-width: 1280px) {
    .form-control:-ms-input-placeholder {
      color: #333; } }

#cookieConsent {
  background-color: #0B2B47;
  color: #ffffff;
  border-radius: 0rem;
  border: 0px; }
  #cookieConsent button.accept-policy.close span {
    color: #ffffff; }

.password-reset-link {
  float: right;
  color: #2DB8D2;
  text-decoration: underline; }

.password-reset-link:hover {
  color: #2DB8D2; }

input.input-validation-error {
  border: 1px solid #E4625A; }

.validation-summary-errors ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 5px; }
