﻿/*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: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.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: 0.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: 0.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: 10%;
}
.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 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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 0.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;
}
