﻿/*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;
}

.hrpro-personal-information-main {
  margin: 0 auto;
  background-color: #ffffff;
}
.hrpro-personal-information-main input[disabled] {
  background-color: #FAFAFA;
}
.hrpro-personal-information-main_error {
  position: absolute;
  width: 100%;
}
.hrpro-personal-information-main_error .error-msg {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 64px;
  color: #2DB8D2;
}

.hrpro-personal-information-header {
  background-color: transparent;
  text-align: center;
  color: #ffffff;
  width: 100%;
  margin-bottom: 30px;
}
.hrpro-personal-information-header__logo {
  background-image: url("../images/HRPRO_negativ.png");
  background-repeat: no-repeat;
  background-position-x: center;
  height: 20px;
  background-size: contain;
  visibility: hidden;
}
.hrpro-personal-information-header__header {
  width: 411px;
  padding: 3px 9px 23px 9px;
  margin: 0 auto;
  background-color: transparent;
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-header__header {
    width: 480px;
    padding: 0px 17px 24px 17px;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-header__header {
    width: 640px;
    padding: 0px 17px 24px 17px;
  }
}

.hrpro-personal-information-section-progress {
  padding: 12px 0 4px;
  display: inline-block;
  color: #454342;
}
.hrpro-personal-information-section-progress__personal-info, .hrpro-personal-information-section-progress__education, .hrpro-personal-information-section-progress__career, .hrpro-personal-information-section-progress__documents {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
}
.hrpro-personal-information-section-progress .head-icon-active {
  color: #ffffff;
  background-color: #2DB8D2;
}
.hrpro-personal-information-section-progress .head-icon-full {
  color: white;
  background-color: #2DB8D2;
  border: 1px solid #2DB8D2;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  font-size: 10px;
  width: 30px;
  height: 30px;
  padding: 10px;
  border-radius: 50%;
  font-size: 10px;
}
@media screen and (min-width: 320px) {
  .hrpro-personal-information-section-progress .head-icon-full {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: -16px;
  }
}
@media screen and (min-width: 360px) {
  .hrpro-personal-information-section-progress .head-icon-full {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: -16px;
  }
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress .head-icon-full {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: -16px;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-section-progress .head-icon-full {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: -16px;
  }
}
.hrpro-personal-information-section-progress__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 5px;
  border-radius: 50%;
  /*border: 1px solid $secondary;*/
  background-color: rgba(4, 191, 215, 0.2);
  color: #454342;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  font-weight: bold;
  line-height: 17px;
  font-family: "Open Sans", sans-serif;
}
.hrpro-personal-information-section-progress__icon:hover {
  cursor: pointer;
  background-color: #04BFD7;
  color: #ffffff;
  text-decoration: none;
}
.hrpro-personal-information-section-progress__icon:active {
  color: #ffffff;
  background-color: #2DB8D2;
}
@media screen and (min-width: 320px) {
  .hrpro-personal-information-section-progress__icon {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 6px;
  }
}
@media screen and (min-width: 360px) {
  .hrpro-personal-information-section-progress__icon {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 6px;
  }
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress__icon {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 6px;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-section-progress__icon {
    font-size: 10px;
    width: 30px;
    height: 30px;
    padding: 6px;
  }
}
.hrpro-personal-information-section-progress .hrpro-icon-visited {
  color: #2DB8D2;
  background-color: white;
  border: 1px solid #2DB8D2;
}
.hrpro-personal-information-section-progress__dash {
  display: inline-block;
  width: 17px;
  height: 2px;
  margin: 0 8px 0 8px;
  border-bottom: 2px solid #9D9D9D;
}
@media screen and (min-width: 320px) {
  .hrpro-personal-information-section-progress__dash {
    width: 17px;
  }
}
@media screen and (min-width: 360px) {
  .hrpro-personal-information-section-progress__dash {
    width: 17px;
  }
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress__dash {
    width: 17px;
  }
}
.hrpro-personal-information-section-progress .dash-updated {
  border: 2px solid #04BFD7;
}
.hrpro-personal-information-section-progress__label {
  font-size: 10px;
  font-weight: normal;
  margin-left: -41px;
  margin-top: 40px;
  position: absolute;
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress__label {
    font-size: 10px;
    margin-left: -41px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-section-progress__label {
    margin-left: -45px;
    margin-top: 40px;
    font-size: 10px;
  }
}
.hrpro-personal-information-section-progress .hrpro-label-personal, .hrpro-personal-information-section-progress .hrpro-label-education {
  margin: 40px 16px 0 -51px;
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress .hrpro-label-personal, .hrpro-personal-information-section-progress .hrpro-label-education {
    margin: 40px 16px 0 -51px;
  }
}
.hrpro-personal-information-section-progress .hrpro-label-career {
  margin: 40px 16px 0 -39px;
}
@media screen and (min-width: 1366px) {
  .hrpro-personal-information-section-progress .hrpro-label-career {
    margin: 40px 16px 0 -39px;
  }
}

.hrpro-personal-information-sections {
  position: relative;
  width: 411px;
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-sections {
    width: 640px;
  }
}
.hrpro-personal-information-sections .alert {
  border-radius: 0 !important;
  padding: 4px 8px !important;
  font-size: 15px;
}
.hrpro-personal-information-sections .requiredIndicator {
  position: relative;
  height: 100vh;
  padding: 2px;
  color: red;
}
.hrpro-personal-information-sections .requiredParagraph {
  margin-top: -8px;
  font-size: 12px;
  color: #717171;
  padding-top: 3px;
}
.hrpro-personal-information-sections .requiredIndicatorMain {
  color: red;
}

.hrpro-form {
  width: 411px;
  margin: 0 auto;
}

.hrpo-myData-h2 {
  text-transform: uppercase;
  font-size: 14px;
  /*font-weight: 600;*/
  padding: 0px 0 0;
  line-height: 19px;
}

.hrpo-myData-h3 {
  font-size: 16px;
  color: #333333;
  /*color: $black-gray;
  font-weight: 600;*/
}

.hrpo-myData-h3-normal {
  font-weight: normal;
}

.hrpo-myData-h3-upper {
  font-size: 16px;
  color: #333333;
  /*color: $black-gray;
  font-weight: 600;*/
  text-transform: uppercase;
  font-size: 14px;
  color: #333333;
  line-height: 19px;
}
@media screen and (min-width: 1366px) {
  .hrpo-myData-h3-upper {
    font-size: 14px;
  }
}

.hrpo-myData-h4 {
  font-size: 14px;
  font-weight: normal;
  margin: 0 3px 16px 0;
}

.hrpo-input-field {
  width: 100%;
  height: 42px;
  margin: 0 0 16px 0;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #DCDCDC;
  background-color: #ffffff;
  color: #333;
  padding: 16px 0 8px 8px;
}

.hrpro-input-field__regular {
  width: 100%;
  height: 42px;
  margin: 0 0 16px 0;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #DCDCDC;
  background-color: #ffffff;
  color: #333;
  padding: 16px 8px 4px 8px;
}

.hrpro-button-field {
  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-button-field:focus {
  outline: none;
}

.hrpro-input-labels {
  display: block;
  position: absolute;
  margin-bottom: -16px;
  font-size: 15px;
  color: #9D9D9D;
}

.hrpro-input-labels_extra-small {
  font-size: 10px;
  display: block;
  position: absolute;
  margin-bottom: -16px;
  color: #9D9D9D;
  left: 9px;
}

.gender {
  margin-right: 20px;
  display: inline-block;
}

.gender ~ label {
  margin-right: 5px;
}

/*GDPR COMPLIANCE*/
.hrpro-personal-information-gdpr-main {
  background: #ffffff;
  position: relative;
  margin: 0 auto;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr {
  background-color: transparent;
  text-align: center;
  color: #ffffff;
  width: 100%;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr__logo {
  background-color: #0B2B47;
  padding: 12px 0 12px 0;
  text-align: center;
  visibility: hidden;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance {
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance {
    width: 940px;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance {
    width: 940px;
  }
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance__h2 {
  padding: 32px 14px 0 14px;
  font-size: 34px;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance__text {
  padding: 14px 14px 32px 14px;
  color: #555555;
  font-size: 15px;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-decline {
  position: relative;
  width: 100%;
  height: 42px;
  margin: 0 0 10px 0;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: #2DB8D2;
  background-color: #ffffff;
  border: 1px solid #2DB8D2;
  width: 40%;
  margin-left: 14px;
  padding: 8px;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-decline:hover {
  text-decoration: none;
  outline: none;
  /* color: $tertiary;*/
}
@media screen and (min-width: 1280px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-decline {
    width: 20%;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-decline {
    width: 20%;
  }
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-field {
  width: 40%;
  margin-right: 14px;
  padding: 8px;
  margin-left: 14px;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-field:hover {
  text-decoration: none;
  color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-field {
    width: 20%;
  }
}
@media screen and (min-width: 1920px) {
  .hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-button-field {
    width: 20%;
  }
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance .hrpro-links {
  margin: 6px 0 0 14px;
  font-size: 15px;
}
.hrpro-personal-information-gdpr-main .hrpro-personal-information-gdpr-compliance__buttons {
  height: 64px;
  margin-bottom: 155px;
}

.hrpro-label-details {
  margin-left: -25px;
}

.hrpro-label-interests {
  margin-left: -37px;
}

.hrpro-label-education {
  margin-left: -47px;
}

.hrpro-label-career {
  margin-left: -37px;
}

.hrpro-label-documents {
  margin-left: -43px;
}

.hr-line-education {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #efe9e9 !important;
}

.display-none {
  display: none;
}

.career-subtitle {
  font-weight: 400;
}

.citizenship-type-label {
  font-size: 10px;
  padding: 6px;
}

.documentMaxSize {
  margin-top: 8px;
  font-size: 14px;
  color: #717171;
  margin-bottom: 0px;
}

.documentAccept {
  font-size: 14px;
  color: #717171;
  white-space: pre-line;
}

.hrpro-tenders-sections {
  position: relative;
  /*width: 800px;*/
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (min-width: 1920px) {
  .hrpro-tenders-sections {
    /*width: 800px;*/
  }
}

.tenders-form {
  /*width: 800px;*/
  flex: 0 0 95%;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .tenders-form {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media screen and (min-width: 1366px) {
  .tenders-form {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.personal-job-position {
  color: #04BFD7;
}

.notice {
  margin-bottom: 5px;
}
