@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
html {
  font-size: 100%;
}

body {
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  color: #485878;
  background-color: #fff;
}

b, strong {
  font-weight: 700;
}

a {
  color: #485878;
  text-decoration: none;
}
a:hover {
  color: #485878;
  text-decoration: none;
}
.btn a {
  color: #fff;
}

input[type=checkbox] {
  accent-color: #0d6efd;
}

button {
  outline: none !important;
  box-shadow: 0 !important;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}
.p-absolute.r-0 {
  right: 0;
}

.d-flex {
  display: flex;
}

.cursor-pointer {
  cursor: pointer;
}

/* .custom-tooltip + .tooltip > .tooltip-inner {background-color: #f00 !important;} */
.positionCvSel {
  background: #EB4765;
  color: #fff;
}

.my-indicator {
  display: none;
}
.htmx-request .my-indicator {
  display: inline;
}
.my-indicator.htmx-request {
  display: inline;
}

.fullScreenLoader {
  display: none;
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.fullScreenLoader:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}

/* :not(:required) hides these rules from IE9 and below */
.fullScreenLoader:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.fullScreenLoader:not(:required):after {
  content: "";
  display: inline-block;
  /* visibility: hidden; */
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

.loaderContainer {
  text-align: center;
  padding: 25px 0;
}
.loaderContainer--100w {
  width: 100%;
}

.loader {
  display: inline-block;
  /* visibility: hidden; */
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

.fullscreenLoaderBase {
  background: #808080;
  opacity: 0.8;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
}
.fullscreenLoaderBase--container {
  position: relative;
}
.fullscreenLoaderBase--container_centered {
  position: absolute;
  left: 50%;
  top: 40%;
}

.tooltip-inner {
  border: 1px solid black;
  background-color: #fff;
  color: #38445D !important;
}
.__bg-blue .tooltip-inner {
  background-color: #485878 !important;
  color: #fff !important;
  max-width: 500px;
  word-wrap: break-word;
  padding: 10px;
}

.relevant {
  font-weight: 700;
}

.marktext1 {
  font-weight: bold;
  background-color: #ffff66;
}

.marktext2 {
  font-weight: bold;
  background-color: #99ff99;
}

.marktext3 {
  font-weight: bold;
  background-color: #99ffff;
}

.marktext4 {
  font-weight: bold;
  background-color: #9999ff;
}

.marktext5 {
  font-weight: bold;
  background-color: #ff99ff;
}

.marktext6 {
  font-weight: bold;
  background-color: #ff9999;
}

.marksct {
  font-weight: bold;
  background-color: #99ccff;
}

.markcou {
  font-weight: bold;
  background-color: #99ccff;
}

.markdon {
  font-weight: bold;
  background-color: #99ccff;
}

.org-member-ica {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("/web/images/ica/logo_simple_good quality_notext_28x24.png") no-repeat 0px -1px;
  vertical-align: middle;
  margin-left: 3px;
}
h1 .org-member-ica {
  width: 75px;
  height: 75px;
  background-size: 50px 45px;
}

.org-member-ica-full {
  display: inline-block;
  background: #fff;
  width: 145px;
  color: #00A8AC;
  height: 63px;
  font-size: 190px;
  text-align: left;
  position: relative;
  top: 12px;
}
.org-member-ica-full .logo {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url("/web/images/ica/Logo-platform_200x40-01.jpg") no-repeat 0px -1px;
  position: absolute;
  top: 22px;
  right: 0px;
}
.org-member-ica-full .memberOfText {
  position: absolute;
  top: -14px;
  left: 18px;
  font-size: 16px;
}

#nav-description .notice table {
  table-layout: fixed;
  width: 100%;
}
#nav-description .notice table td {
  border: 1px solid black;
}

.simple-open-close--open {
  display: block;
}
.simple-open-close--close {
  display: none;
}

#crawlerCatch {
  visibility: hidden;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
/* Breakpoint for extra-small viewport */
/* Breakpoint for small viewport */
/* Breakpoint for medium viewport */
/* Breakpoint for large viewport */
/* Breakpoint for extra-large viewport */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1190px;
  }
}
.as-wrapper--contact .call-contact {
  display: none;
}

.color--primary {
  color: #485878 !important;
}

.color--primary-dark {
  color: #38445D !important;
}

.color--secondary {
  color: #EB4765 !important;
}

.color--white {
  color: #fff !important;
}

.color--gray {
  color: #808080 !important;
}

.color--extralight-gray {
  color: #F2F2F2 !important;
}

.color--border-1 {
  color: #fff !important;
}

.color--border-2 {
  color: #d8d7d7 !important;
}

.color--border-gray {
  color: #DDDDDD !important;
}

.color--errorstate {
  color: #a81616 !important;
}

.color--validation {
  color: #14A06C !important;
}

.bg--primary {
  background: #485878 !important;
}

.bg--primary-dark {
  background: #38445D !important;
}

.bg--secondary {
  background: #EB4765 !important;
}

.bg--white {
  background: #fff !important;
}

.bg--gray {
  background: #808080 !important;
}

.bg--extralight-gray {
  background: #F2F2F2 !important;
}

.bg--border-1 {
  background: #fff !important;
}

.bg--border-2 {
  background: #d8d7d7 !important;
}

.bg--border-gray {
  background: #DDDDDD !important;
}

.bg--errorstate {
  background: #a81616 !important;
}

.bg--validation {
  background: #14A06C !important;
}

.border--primary {
  border-color: #485878 !important;
}

.border--primary-dark {
  border-color: #38445D !important;
}

.border--secondary {
  border-color: #EB4765 !important;
}

.border--white {
  border-color: #fff !important;
}

.border--gray {
  border-color: #808080 !important;
}

.border--extralight-gray {
  border-color: #F2F2F2 !important;
}

.border--border-1 {
  border-color: #fff !important;
}

.border--border-2 {
  border-color: #d8d7d7 !important;
}

.border--border-gray {
  border-color: #DDDDDD !important;
}

.border--errorstate {
  border-color: #a81616 !important;
}

.border--validation {
  border-color: #14A06C !important;
}

.cursor-pointer {
  cursor: pointer;
}

.text--title-12 {
  font-size: 12px;
  line-height: 16px;
}
.text--title-16 {
  font-size: 16px;
  line-height: 16px;
}
.text--title-22 {
  font-size: 22px;
  line-height: 24px;
}
.text--title-24 {
  font-size: 24px;
  line-height: 27px;
}
.text--title-26 {
  font-size: 26px;
  line-height: 29px;
}
.text--title-28 {
  font-size: 28px;
  line-height: 32px;
}
.text--title-30 {
  font-size: 30px;
  line-height: 34px;
}
.text--title-36 {
  font-size: 36px;
  line-height: 40px;
}
.text--title-42 {
  font-size: 42px;
  line-height: 52px;
}
.text--title-48 {
  font-size: 48px;
  line-height: 52px;
}
.text--title-52 {
  font-size: 52px;
  line-height: 52px;
}
.text--title-form {
  font-size: 16px;
  color: #EB4765;
  text-transform: uppercase;
  border-bottom: 1px solid #EB4765;
  font-weight: 600;
}
.text--size-xsmall {
  font-size: 14px !important;
  line-height: 18px;
}
.text--size-small {
  font-size: 16px !important;
  line-height: 20px;
}
.text--size-base {
  font-size: 18px !important;
}
.text--size-large {
  font-size: 20px !important;
}
.text--size-xlarge {
  font-size: 34px !important;
}
.text--align-center {
  text-align: center;
}
.text--align-left {
  text-align: left;
}
.text--align-right {
  text-align: right;
}
.text--weight-light {
  font-weight: 300 !important;
}
.text--weight-regular {
  font-weight: 400 !important;
}
.text--weight-semibold {
  font-weight: 600 !important;
}
.text--weight-bold {
  font-weight: 700 !important;
}
.text--style-italic {
  font-style: italic;
}
.text--link-underline {
  text-decoration: underline;
}
.text--link-underline:hover {
  text-decoration: underline;
}
.text--upper {
  text-transform: uppercase;
}
.text--border {
  position: relative;
  display: block;
}
.text--border-top {
  padding-top: 10px;
}
.text--border-top:after {
  content: "";
  position: absolute;
  top: 0px;
  width: 30px;
  height: 1px;
  background-color: #485878;
  left: 50%;
  margin-left: -15px;
}
.text--border-bottom {
  padding-bottom: 10px;
}
.text--border-bottom:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 30px;
  height: 1px;
  background-color: #485878;
  left: 50%;
  margin-left: -15px;
}
.text--border-bottom-secondary:after {
  background-color: #EB4765;
}
.text--min60 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
}
@media (max-width: 1199.98px) {
  .text--min60 {
    min-height: auto;
  }
}

.sameLine {
  display: inline-block;
}

.tox-tinymce {
  border-radius: 0 !important;
  border: 1px solid #C1C1C1 !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.m-2 {
  margin: 2px !important;
}

.p-2 {
  padding: 2px !important;
}

.width-2 {
  width: 2px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.m-5 {
  margin: 5px !important;
}

.p-5 {
  padding: 5px !important;
}

.width-5 {
  width: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.m-10 {
  margin: 10px !important;
}

.p-10 {
  padding: 10px !important;
}

.width-10 {
  width: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.m-15 {
  margin: 15px !important;
}

.p-15 {
  padding: 15px !important;
}

.width-15 {
  width: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.m-20 {
  margin: 20px !important;
}

.p-20 {
  padding: 20px !important;
}

.width-20 {
  width: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.m-25 {
  margin: 25px !important;
}

.p-25 {
  padding: 25px !important;
}

.width-25 {
  width: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.m-30 {
  margin: 30px !important;
}

.p-30 {
  padding: 30px !important;
}

.width-30 {
  width: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.m-35 {
  margin: 35px !important;
}

.p-35 {
  padding: 35px !important;
}

.width-35 {
  width: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.m-40 {
  margin: 40px !important;
}

.p-40 {
  padding: 40px !important;
}

.width-40 {
  width: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.m-45 {
  margin: 45px !important;
}

.p-45 {
  padding: 45px !important;
}

.width-45 {
  width: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.m-50 {
  margin: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.width-50 {
  width: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.m-60 {
  margin: 60px !important;
}

.p-60 {
  padding: 60px !important;
}

.width-60 {
  width: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.m-70 {
  margin: 70px !important;
}

.p-70 {
  padding: 70px !important;
}

.width-70 {
  width: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.m-75 {
  margin: 75px !important;
}

.p-75 {
  padding: 75px !important;
}

.width-75 {
  width: 75px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.m-100 {
  margin: 100px !important;
}

.p-100 {
  padding: 100px !important;
}

.width-100 {
  width: 100px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.ml-200 {
  margin-left: 200px !important;
}

.pl-200 {
  padding-left: 200px !important;
}

.mr-200 {
  margin-right: 200px !important;
}

.pr-200 {
  padding-right: 200px !important;
}

.m-200 {
  margin: 200px !important;
}

.p-200 {
  padding: 200px !important;
}

.width-200 {
  width: 200px !important;
}

.wp-10 {
  width: 10% !important;
}

.wp-20 {
  width: 20% !important;
}

.wp-30 {
  width: 30% !important;
}

.wp-40 {
  width: 40% !important;
}

.wp-50 {
  width: 50% !important;
}

.wp-60 {
  width: 60% !important;
}

.wp-70 {
  width: 70% !important;
}

.wp-80 {
  width: 80% !important;
}

.wp-90 {
  width: 90% !important;
}

.wp-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.max-w-100 {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .max-w-sm-60 {
    max-width: 60%;
  }
}

.animation-arrow__right, .animation-arrow__left {
  transform: translateX(0px);
  transition: transform 0.3s ease;
  display: inline-block;
}
.animation-arrow:hover .animation-arrow__right {
  transform: translateX(3px);
}
.animation-arrow:hover .animation-arrow__left {
  transform: translateX(-3px);
}

.form-assortis {
  color: #485878;
}
.form-assortis .form-inline .form-label {
  margin-bottom: 0;
  margin-right: 5px;
}
.form-assortis .form-inline .form-check + .custom-select-wrap {
  margin-left: 5px;
}
@media (max-width: 575.98px) {
  .form-assortis .form-inline .form-check + .custom-select-wrap {
    margin-top: 10px;
    margin-left: 0;
  }
}
.form-assortis .form-group {
  margin-bottom: 15px;
}
.form-assortis .form-group--datepicker .input-datepicker {
  position: relative;
}
.form-assortis .form-group--datepicker .input-datepicker:after {
  content: "\f00ed";
  font-family: "Material Design Icons";
  font-size: 18px;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  color: #EB4765;
  bottom: 10px;
  right: 5px;
}
.form-assortis .form-label {
  font-size: 20px;
  font-weight: 600;
}
.form-assortis .form-label--required:invalid {
  border: 1px solid red;
}
.form-assortis .form-label--required:after {
  content: "*";
  color: #EB4765;
}
.form-assortis .form-label--normal {
  font-size: 14px;
  font-weight: 400;
}
.form-assortis .form-bg {
  --rmsc-bg: #f7f7f7 !important;
}
.form-assortis .form-control {
  border-radius: 0;
  background-color: #F7F7F7;
  border: solid 1px #C1C1C1;
  font-size: 14px;
  color: #485878;
  height: 42px;
  line-height: 18px;
  padding: 10px;
}
.form-assortis .form-control:focus, .form-assortis .form-control:hover {
  box-shadow: none;
  border-color: #485878;
  background-color: #F7F7F7;
}
.form-assortis .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #979797;
}
.form-assortis .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #979797;
}
.form-assortis .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #979797;
}
.form-assortis .form-control:-moz-placeholder { /* Firefox 18- */
  color: #979797;
}
.form-assortis textarea.form-control {
  height: auto;
}
.form-assortis .form-check .form-check-label--term {
  font-size: 14px;
}
.form-assortis .form-check .form-check-label--option {
  font-size: 14px;
}
.form-assortis .form-check .form-check-label--list {
  font-size: 16px;
}
.form-assortis .form-check .form-check-label--services {
  font-size: 20px;
  font-weight: 600;
}
.form-assortis .form-check .form-check-label--required:before {
  content: "*";
  color: #EB4765;
}
.form-assortis .form-check--disabled {
  opacity: 0.6;
}
.form-assortis .form-check-inline .form-check-label {
  font-size: 16px;
}
.form-assortis .custom-select-wrap {
  position: relative;
}
.form-assortis .custom-select-wrap:before {
  content: "\f0140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  background-color: #F7F7F7;
  right: 10px;
  top: 10px;
  color: #485878;
  z-index: 10;
  pointer-events: none;
}
.form-assortis .custom-select-wrap--180 {
  width: 180px;
}
.form-assortis .custom-select-wrap--100 {
  width: 100px;
}
.form-assortis .custom-select-wrap--small:before {
  top: 7px;
}
.form-assortis .custom-select {
  border-radius: 0;
  background-color: #F7F7F7;
  border: solid 1px #C1C1C1;
  font-size: 14px;
  color: #485878;
  height: 42px;
  line-height: 18px;
  padding: 10px;
  position: relative;
}
.form-assortis .custom-select:invalid {
  color: #979797 !important;
}
.form-assortis .custom-select:focus, .form-assortis .custom-select:hover {
  box-shadow: none;
  border-color: #485878;
  background-color: #F7F7F7;
}
.form-assortis .custom-select--small {
  height: 42px;
  line-height: 16px;
  padding: 8px;
}
.form-assortis .form-help-error {
  color: #EB4765;
  font-size: 14px;
}
.form-assortis .input-group .input-group-append span {
  border-radius: 0;
  background-color: #fff;
  color: #485878;
  border-color: #C1C1C1;
  font-size: 14px;
  font-weight: 700;
}
.form-assortis .input-group .input-group-append .btn {
  border-radius: 0;
}
.form-assortis .input-group .input-group-append .custom-select-wrap {
  width: auto;
  min-width: 80px;
}
.form-assortis .input-group .custom-select-wrap--small + .input-group-append .btn {
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn {
  color: #fff;
  background-color: #485878;
  padding: 10px 40px;
  border-radius: 0;
  font: 18px "Kulim Park", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: none !important;
}
.btn a {
  text-decoration: none;
}
.btn:hover {
  background-color: #526488;
  color: #fff;
}
.btn.btn-link {
  color: #485878;
  background: none;
  padding: 0;
}

.btn--small {
  font-size: 14px;
}

.btn--normal {
  font-size: 16px;
}

.btn--large {
  font-size: 20px;
}

.btn--padding-xsmall {
  padding: 3px 10px;
}

.btn--padding-small {
  padding: 7px 20px;
}

.btn--radius {
  border-radius: 3px;
}

.btn--primary {
  background-color: #485878;
}
.btn--primary:hover {
  background-color: #526488;
  color: #fff;
}

.btn--secondary {
  background-color: #EB4765;
}
.btn--secondary:hover {
  background-color: #ee5e78;
  color: #fff;
}

.btn--bordered-primary {
  background: transparent;
  border: 2px solid #485878;
  color: #485878;
  padding: 6px 18px;
}
.btn--bordered-primary:hover {
  background: transparent;
  color: #3e4c68;
  border-color: #3e4c68;
}

.btn--bordered-secondary {
  background: transparent;
  border: 2px solid #EB4765;
  color: #EB4765;
  padding: 6px 18px;
}
.btn--bordered-secondary:hover {
  background: transparent;
  color: #e93052;
  border-color: #e93052;
}

.btn--unstyle {
  background-color: transparent !important;
  color: #485878 !important;
  padding: 0 !important;
  z-index: 3;
  position: relative;
}
.btn--unstyle-secondary {
  color: #EB4765 !important;
}
.btn--unstyle.dropdown-toggle:after {
  display: none;
}

@media (max-width: 991.98px) {
  .btn--full-md {
    width: 100%;
  }
}

.btn-group {
  --bs-btn-active-bg: $secondary;
}
.btn-group .btn {
  border-radius: 3px !important;
  margin-right: 10px;
  background-color: #D8D8D8;
  color: #485878;
  font-weight: 400;
  outline: none !important;
  box-shadow: none !important;
}
.btn-group .btn.active {
  background-color: #EB4765;
  color: #fff;
}
.btn-group .btn--primary.active {
  background-color: #485878;
}
.btn-group .btn--secondary.active {
  background-color: #EB4765;
}
.btn-group .btn--muted.active {
  background-color: #808080;
}
.btn-group .btn input[type=radio] {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
}
.btn-group input[type=radio]:checked + label {
  color: #fff;
  background-color: #EB4765;
}
.btn-group--small .btn {
  padding: 3px 10px;
}

.flag_blue_bg {
  background: #d9e3ff;
  border: 1px solid #0136d4;
  border-width: 0 0 1px 0;
}

.flag_aqua_bg {
  background: #e8fefe;
  border: 1px solid #00e4e4;
  border-width: 0 0 1px 0;
}

.flag_green_bg {
  background: #ddfee6;
  border: 1px solid #01c634;
  border-width: 0 0 1px 0;
}

.flag_orange_bg {
  background: #ffe6c6;
  border: 1px solid #ff9900;
  border-width: 0 0 1px 0;
}

.flag_red_bg {
  background: #ffdfdf;
  border: 1px solid #e90000;
  border-width: 0 0 1px 0;
}

.flag_white_bg {
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-width: 0 0 1px 0;
}

.newFlag {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #EB4765;
  padding: 0px 5px;
  color: #EB4765;
  font-size: 12px;
  background: yellow;
}

.border--right {
  border-right: 1px solid;
}
.border--right-bottom {
  border-right: 1px solid;
}
@media (max-width: 991.98px) {
  .border--right-bottom {
    border-right: 0px solid;
    border-bottom: 1px solid;
  }
}
.border--left {
  border-left: 1px solid;
}
.border--bottom {
  border-bottom: 1px solid;
}
.border--all {
  border: 1px solid;
}
.border--radius {
  border-radius: 5px;
}
.border--hidden {
  border: 0 !important;
}
@media (max-width: 767.98px) {
  .border--hidden-sm {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .border--hidden-md {
    border: 0;
  }
}

.line--vertical {
  height: 30px;
  position: relative;
}
.line--vertical:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 50%;
}
.line--vertical-small {
  height: 20px;
}
.line--white:after {
  background-color: #fff;
}
.line--gray:after {
  background-color: #DDDDDD;
}

.datepicker .day {
  padding: 6px;
}
.datepicker-switch {
  text-align: center;
}
.datepicker-days .table-condensed {
  margin: 0 14px;
}
.datepicker-days .table-condensed .disabled {
  color: #DDDDDD !important;
}
.datepicker-days .new.day {
  color: #DDDDDD;
}
.datepicker-days .day:hover {
  border: 1px solid #485878;
}
.datepicker-months {
  min-width: 12em;
}
.datepicker-months .active {
  background: #EB4765;
}
.datepicker-months .table-condensed {
  width: 100%;
}
.datepicker-months .table-condensed .disabled {
  color: #DDDDDD !important;
}
.datepicker-months .month:hover {
  border: 1px solid #485878;
}
.datepicker-years {
  min-width: 12em;
}
.datepicker-years .active {
  background: #EB4765;
}
.datepicker-years .table-condensed {
  width: 100%;
}
.datepicker-years .table-condensed .disabled {
  color: #DDDDDD !important;
}
.datepicker-years .year:hover {
  border: 1px solid #485878;
}
.datepicker-decades, .datepicker-centuries {
  min-width: 12em;
}
.datepicker-decades .active, .datepicker-centuries .active {
  background: #EB4765;
}
.datepicker-decades .table-condensed, .datepicker-centuries .table-condensed {
  width: 100%;
}
.datepicker-decades .table-condensed .disabled, .datepicker-centuries .table-condensed .disabled {
  color: #DDDDDD !important;
}
.datepicker-decades .year:hover, .datepicker-centuries .year:hover {
  border: 1px solid #485878;
}
.datepicker td, .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.bannerBk {
  background: #303D51;
  border-top: 1px solid #ffffff;
  cursor: pointer;
}

.section1 {
  flex: 0 0 40%;
  max-width: 40%;
  color: #EB4765;
  font-size: 22px;
  font-weight: 500;
  padding: 12px;
  text-align: right;
  padding-right: 24px;
  padding-left: 0px;
}
@media (max-width: 1199.98px) {
  .section1 {
    text-align: inherit;
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 991.98px) {
  .section1 {
    text-align: inherit;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 767.98px) {
  .section1 {
    padding: 6px;
  }
}

.section2 {
  position: relative;
  flex: 0 0 60%;
  max-width: 60%;
  color: #fff;
  font-size: 26px;
  padding: 10px;
}
@media (max-width: 767.98px) {
  .section2 {
    padding-top: 6px;
  }
}

.section3 {
  position: relative;
  flex: 0 0 62%;
  max-width: 62%;
  color: #fff;
  font-size: 16px;
  z-index: 9999;
  line-height: 50px;
}
@media (max-width: 1199.98px) {
  .section3 {
    text-align: inherit;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 991.98px) {
  .section3 {
    text-align: inherit;
    flex: 0 0 40%;
    max-width: 40%;
    line-height: initial;
  }
}
@media (max-width: 767.98px) {
  .section3 {
    line-height: initial;
  }
}

.section4 {
  padding: 2px 15px;
  color: #fff;
  border-radius: 5px;
  height: 29px;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .section4 {
    text-align: inherit;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.section4 .registerButton {
  background: #E83B5E;
  width: 145px;
  color: #fff;
  text-align: center;
  padding: 3px 4px;
  border-radius: 5px;
}

.joinUsBanner {
  display: flex;
  flex-wrap: wrap;
  width: 674px;
  height: 47px;
  background: url(/image/b2_b1.png) no-repeat;
  background-position-x: 2px;
}
.joinUsBanner__section1 {
  position: relative;
  flex: 0 0 29%;
  max-width: 29%;
  text-align: right;
  color: #EB4765;
  font-size: 40px;
  font-weight: 700;
  z-index: 9999;
}
@media (max-width: 767.98px) {
  .joinUsBanner__section1 {
    font-size: 25px;
    text-align: inherit;
  }
}
.joinUsBanner__section1 .text {
  position: absolute;
  top: 10px;
}
@media (max-width: 991.98px) {
  .joinUsBanner__section1 .text {
    padding-left: 0;
  }
}
@media (max-width: 767.98px) {
  .joinUsBanner__section1 .text {
    font-size: 30px;
    position: absolute;
    top: 5px;
  }
}
.joinUsBanner__section2 {
  position: relative;
  flex: 0 0 70%;
  max-width: 70%;
  padding-left: 14px;
  z-index: 999;
}
.joinUsBanner__section2 .lineContainer {
  position: absolute;
  top: 5px;
}
.joinUsBanner__section2 .line {
  display: block;
  color: #fff;
  font-size: 13px;
  word-spacing: 2px;
  line-height: 17px;
  letter-spacing: 0.2px;
}
@media (max-width: 767.98px) {
  .joinUsBanner__section2 .line {
    font-size: 9px;
    line-height: 11px;
  }
}
.joinUsBanner__section2 .line .highlighted {
  color: #EB4765;
  font-weight: 900;
}

.eddBanner {
  display: flex;
  flex-wrap: wrap;
  width: 674px;
  height: 47px;
  background: url("/image/b2_b2.png") no-repeat;
}
.eddBanner__section1 {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  color: #FFCC03;
  font-size: 40px;
  font-weight: 700;
  z-index: 9999;
}
.eddBanner__section1 .eddLogo {
  margin-top: 3px;
}
@media (max-width: 991.98px) {
  .eddBanner__section1 .eddLogo {
    width: 65px;
  }
}
@media (max-width: 991.98px) {
  .eddBanner__section1 .eddLogo img {
    width: 120%;
  }
}
.eddBanner__section1 .ecLogo {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .eddBanner__section1 .ecLogo {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .eddBanner__section1 {
    flex: 0 0 29%;
    max-width: 29%;
    padding-left: 0;
  }
}
.eddBanner__section1 .text {
  position: absolute;
  top: 4px;
  padding-left: 50px;
}
.eddBanner__section2 {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 3px;
  color: #fff;
  text-align: right;
  padding-left: 14px;
}
@media (max-width: 991.98px) {
  .eddBanner__section2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1199.98px) {
  .eddBanner__section2 {
    flex: 0 0 70%;
    max-width: 70%;
    text-align: inherit;
  }
}
.eddBanner__section2 div {
  display: inline-block;
}
.eddBanner__section2 .followus {
  margin-top: 5px;
}
@media (max-width: 575.98px) {
  .eddBanner__section2 .followus {
    margin-top: 0;
  }
}
.eddBanner__section2 .followus .text {
  line-height: 14px;
  width: 110px;
  font-size: 16px;
}
@media (max-width: 575.98px) {
  .eddBanner__section2 .followus .text {
    width: 100%;
    font-size: 14px;
  }
}
.eddBanner__section2 .fb, .eddBanner__section2 .linkedin, .eddBanner__section2 .twitter {
  position: relative;
  width: 25px;
  height: 25px;
}
.eddBanner__section2 .fb a, .eddBanner__section2 .linkedin a, .eddBanner__section2 .twitter a {
  position: absolute;
  left: 2px;
}
.eddBanner__section2 .fb img, .eddBanner__section2 .linkedin img, .eddBanner__section2 .twitter img {
  width: 24px;
  height: 24px;
}
@media (max-width: 575.98px) {
  .eddBanner__section2 .fb img, .eddBanner__section2 .linkedin img, .eddBanner__section2 .twitter img {
    width: 20px;
    height: 20px;
  }
}

.error {
  font-size: 15px;
  padding: 40px;
  word-wrap: break-word;
}
.error .row > div {
  margin: 5px 0;
}
.error__header {
  position: relative;
}
.error__header-close {
  position: absolute;
  right: 0;
  top: 0;
}

.errordata__block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 20px;
  margin-bottom: 10px;
}
.errordata__type-label {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
}
.errordata__type-label label {
  position: absolute;
  right: 5px;
  cursor: pointer;
}
.errordata__type-message {
  flex: 0 0 80%;
  max-width: 80%;
}
@media (max-width: 767.98px) {
  .errordata__type-message {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.custom-error-message {
  position: relative;
}

.custom-error-toggle {
  position: absolute;
  opacity: 0;
}
.custom-error-toggle:checked ~ .custom-error {
  display: block !important;
}

.field-validation-error {
  color: #a81616;
  position: relative;
  padding-left: 20px;
}
.field-validation-error::before {
  content: "•";
  position: absolute;
  left: 5px;
}

.multi-select {
  background: #F7F7F7 !important;
}
.multi-select .dropdown-heading {
  height: 42px;
}
.multi-select .dropdown-heading:has(button.clear-selected-button) {
  height: auto !important;
}
.multi-select.rmsc {
  padding: 0;
}
.form-bg .multi-select.rmsc {
  --rmsc-bg: #f7f7f7;
}
.multi-select .dropdown-heading-value {
  overflow: initial !important;
  text-overflow: initial !important;
  white-space: initial !important;
}
.multi-select__selectedValues {
  display: inline-block;
  margin: 2px;
  padding: 4px 10px 4px 5px;
  background: #fff;
  color: #485878;
  border: 1px solid #C1C1C1;
  font-size: 1em;
  font-weight: 700;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.multi-select {
  position: relative;
}
.multi-select ul {
  margin: 0;
  padding: 0;
}
.multi-select li {
  list-style-type: none;
  padding: 4px !important;
}
.multi-select__container {
  font-size: 12px;
}
.multi-select__items {
  padding: 4px !important;
}
.multi-select__items:not(:has(*)) {
  display: none;
}
.multi-select__items li {
  width: fit-content;
  border: 1px solid gray;
  display: inline-block;
  margin: 2px;
  padding: 0 2px;
}
.multi-select__item-remove {
  cursor: pointer;
}
.multi-select__search-input {
  width: 100%;
}
.multi-select__drop {
  display: none;
  max-height: 350px;
  width: 100%;
  overflow-y: scroll;
  position: absolute;
  background: #fff;
  border: 1px solid black;
  z-index: 999;
}
.multi-select__drop--open {
  display: block;
}
.multi-select__drop-group {
  font-weight: 700;
}
.multi-select__drop-item--selected {
  background: #808080;
  color: #DDDDDD;
}
.multi-select__drop-item:not(.multi-select__drop-item--selected):hover {
  cursor: pointer;
  background: #C7CEDB;
}

*, *:focus, *:hover {
  outline: none;
}

header#as-header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  background: #fff;
  /*
  .as-header__main-nav{
    width: 100%;
    height: auto;
    z-index: 5;
    position: fixed;
    top: 0;
    left: 0;
    background-color: $white;
    transition: height 0.3s ease;

    &.hide-menu{
        height: 0 !important;
        overflow: hidden;
    }
  }

  .as-header__main-subnav{
    width: 100%;
    position: absolute;
    transition: top 0.3s ease;
    top: 76px;
    left: 0;

    &.position-fixed{
        z-index: 5;
    }
    &.subnav-stiky{
      top:0;
    }
  }
  */
}
header#as-header .header__link-active {
  color: #EB4765;
}
header#as-header.icaHeader .logo {
  top: -1px;
  left: 0px;
  width: 270px;
  height: 82px;
  margin-top: -13px;
  margin-right: 5px;
  background: url(/images/ica/Logo-platform_540x160.png) left top no-repeat;
  background-size: 100%;
  cursor: pointer;
}
header#as-header.icaHeader .dropdown:hover > .dropdown-menu {
  display: block;
}
header#as-header.icaHeader .as-navbar {
  padding-top: 0;
  position: relative;
  margin-top: -1px;
  padding-right: 0;
}
header#as-header.icaHeader .nav-link {
  color: #fff !important;
  border-right: none !important;
}
header#as-header.icaHeader .icaheader-languages-holder span {
  color: #EB4765;
}
header#as-header.icaHeader .subHeader {
  color: #373737;
}
header#as-header.icaHeader .nav-item {
  margin-top: 8px;
}
header#as-header.icaHeader .nav-item, header#as-header.icaHeader .nav-link {
  margin-top: 1px !important;
}
header#as-header.icaHeader .nav-item a, header#as-header.icaHeader .nav-link a {
  font-size: 12px !important;
  font-family: "Gothic-A1", sans-serif !important;
  color: #373737 !important;
}
header#as-header.icaHeader .nav-item a a:focus:not(:focus-visible), header#as-header.icaHeader .nav-link a a:focus:not(:focus-visible) {
  outline: none;
}
header#as-header.icaHeader .dropdown-menu {
  top: 28px;
}
header#as-header.icaHeader .dropdown-menu:hover {
  background-color: #DDDDDD !important;
}
header#as-header.icaHeader .membersSpace {
  display: block;
  background: #fff;
  line-height: 28px;
  height: 25px;
  padding: 0 15px;
  font-size: 12px;
  color: #00a8ac;
  letter-spacing: -0.12px;
}
@media (max-width: 767.98px) {
  header#as-header.icaHeader .membersSpace {
    padding: 0 6px;
  }
}
header#as-header.icaHeader .bottom {
  color: #373737;
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
header#as-header.icaHeader .bottom .nav-item {
  font-size: 12px;
  font-family: "Gothic-A1", sans-serif;
  display: inline-block;
  position: relative;
  margin: 0 10px;
  white-space: nowrap;
}
header#as-header.icaHeader .bottom .nav-item a:hover {
  color: #e36566 !important;
}
header#as-header.icaHeader .bottom .nav-item--assortLogo {
  width: 110px;
  top: -18px;
  left: -8px;
}
header#as-header.icaHeader .bottom .nav-item--assortLogo .btn-assortis {
  position: absolute;
  top: 11px;
  left: -3px;
}
header#as-header.icaHeader .bottom a {
  font-size: 15px;
  font-family: "Gothic-A1", sans-serif;
}
header#as-header.icaHeader .bottom .btn-assortis {
  padding: 0;
  height: 30px;
  width: 124px;
  background-size: 115px 37px !important;
  background: url("/web/images/Logo_clean_465x152.png") no-repeat 6px;
}
header#as-header.icaHeader .assortisLinks .nav-item {
  padding: 5px 8px;
  font-size: 14px;
}
header#as-header.icaHeader .assortisLinks .nav-item a {
  font-size: 14px !important;
}
header#as-header.icaHeader .assortisLinks .nav-item--selected a {
  color: #e36566 !important;
}
header#as-header.icaHeader .top {
  background: #00a8ac;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  height: 36px;
  padding-top: 2px;
  z-index: 9999;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  header#as-header.icaHeader .top {
    height: auto;
  }
}
header#as-header.icaHeader .top a {
  color: #fff !important;
}
@media (min-width: 992px) {
  header#as-header.icaHeader .top:before {
    content: "";
    border-right: 70px solid transparent;
    border-top: 40px solid transparent;
    border-left: 28px solid #fff;
  }
}
header#as-header.icaHeader .top .nav-item {
  font-size: 12px;
  font-family: "Gothic-A1", sans-serif;
  display: inline-block;
  position: relative;
  margin: 0 10px;
  white-space: nowrap;
}
header#as-header.icaHeader .top .nav-item .company {
  display: inline-block;
}
@media (max-width: 1199.98px) {
  header#as-header.icaHeader .top .nav-item .company {
    display: none;
  }
}
@media (min-width: 576px) {
  header#as-header.icaHeader .top .nav-item:not(.noSep):after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #FFF;
    opacity: 0.5;
    line-height: 26px;
    margin: 6px 17px;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: -25px;
  }
}
header#as-header.icaHeader .top .linkedin-link {
  background: url("/web/images/ica/icon-linkedin.png") no-repeat 4px 0;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: bottom;
}
header#as-header.icaHeader .top .twitter-link {
  background: url("/web/images/ica/icon-twitter.png") no-repeat 2px 0;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: bottom;
}
header#as-header.icaHeader .top .lang-selector {
  font-size: 10px;
}
header#as-header.icaHeader .top .lang-selector a {
  padding: 2px;
}
header#as-header #main-nav {
  position: relative;
  top: 0;
  background-color: #fff;
  transition: margin-top 0.3s ease;
  margin-top: 0px;
}
header#as-header #main-nav.hide-menu {
  margin-top: -76px;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav--private .nav-item .nav-link {
  border-right: 1px solid rgba(72, 88, 120, 0.66);
  padding: 0px 10px !important;
  margin: 9px 0;
}
@media (max-width: 991.98px) {
  header#as-header .as-navbar .navbar-collapse .navbar-nav--private .nav-item .nav-link {
    padding: 0;
    border-right: 0;
  }
}
@media (min-width: 992px) {
  header#as-header .as-navbar .navbar-collapse .navbar-nav--private .nav-item--btn {
    margin-left: 20px;
  }
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.userMenu:hover .userNameBody {
  display: block;
  min-width: -webkit-fill-available;
  top: 38px;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.userMenu:hover .userNameBody:hover {
  display: block;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.dropdown {
  position: relative;
  z-index: 4;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle.header-hover {
  outline: none;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle:after {
  display: none;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle .dropdown__arrow {
  transform: rotateX(0deg);
  transition: transform 0.4s;
  transform-style: preserve-3d;
  display: inline-block;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.dropdown.show .dropdown-toggle .dropdown__arrow {
  transform: rotateX(180deg);
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item--btn {
  margin-right: 10px;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item--btn:last-child {
  margin-right: 0;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link {
  color: #EB4765;
  font-weight: 700;
  text-transform: uppercase;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link i {
  color: #485878;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-link {
  color: #485878;
  padding: 9px 10px;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-link {
    padding-left: 0;
  }
}
.icaHeader header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-link {
  color: #fff;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-link-btn {
  font-size: 14px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 400;
  text-transform: none;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-link-btn i {
  font-size: 20px;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .nav-separate {
  display: block;
  position: relative;
  top: 22px;
  width: 40px;
  height: 1px;
  background-color: rgba(72, 88, 120, 0.66);
  opacity: 0.6;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .dropdown-menu {
  border-radius: 0;
  border: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
  padding: 3px 10px;
  position: relative;
  color: #485878;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #EB4765;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
header#as-header .as-navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover:after {
  opacity: 1;
}
header#as-header .as-subnav {
  background-color: #485878;
}
header#as-header .as-subnav .subnav-nav {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  header#as-header .as-subnav .subnav-nav {
    padding: 5px 0 10px 0;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
}
header#as-header .as-subnav .subnav-nav .subnav-item .subnav-link {
  padding: 13px 10px;
  color: #fff;
  display: block;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  header#as-header .as-subnav .subnav-nav .subnav-item .subnav-link {
    padding: 0 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 13px;
    margin-top: 4px;
  }
}
header#as-header .as-subnav .subnav-nav .subnav-item:last-child .subnav-link {
  border: 0;
}

.as-footer {
  color: #fff;
}
.as-footer a {
  color: #fff;
}
.as-footer .footer__top {
  background-color: #485878;
  padding: 70px 0 100px 0;
}
.as-footer .footer__top .footer-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.as-footer .footer__top .footer-list__item {
  margin-bottom: 8px;
}
.as-footer .footer__top .footer-list__link {
  font-size: 14px;
}
.as-footer .footer__top .footer-list__link:hover {
  text-decoration: underline;
}
.as-footer .footer__bottom {
  background-color: #38445D;
  padding: 15px 0;
  font-size: 16px;
}
.as-footer .footer__bottom a {
  text-decoration: underline;
}

.hero-static {
  position: relative;
  background-color: #F7F7F7;
}
.hero-static__row--450 {
  min-height: 450px;
}
@media (max-width: 767.98px) {
  .hero-static__row--450 {
    min-height: none;
    padding-top: 50px;
    padding-bottom: 350px;
  }
}
.hero-static__row--400 {
  min-height: 400px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px) {
  .hero-static__row--400 {
    min-height: none;
    padding-top: 50px;
    padding-bottom: 350px;
  }
}
.hero-static__row--300 {
  min-height: 300px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px) {
  .hero-static__row--300 {
    min-height: none;
    padding-top: 50px;
    padding-bottom: 350px;
  }
}
.hero-static__row--vacancies {
  min-height: 290px;
}
@media (max-width: 767.98px) {
  .hero-static__row--vacancies {
    min-height: none;
    padding-top: 50px;
    padding-bottom: 280px;
  }
}
.hero-static__row--small {
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero-static__text {
  position: relative;
  z-index: 1;
}
.hero-static__img {
  max-height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199.98px) {
  .hero-static__img {
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .hero-static__img {
    /*height: 50%; 
    transform: translateX(30%);*/
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .hero-static__img {
    top: auto;
    right: auto;
    bottom: 70px;
    left: 50%;
    max-width: none;
    height: 240px;
    transform: translateY(0) translateX(-50%);
  }
}
.hero-static__img-bottom {
  top: auto;
  transform: translateY(0%);
  bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-static__img-bottom {
    bottom: 0;
    height: 250px;
    transform: translateY(0) translateX(-50%);
  }
}
.hero-static-tender .hero-static__row {
  padding-top: 30px;
  padding-bottom: 80px;
}
.hero-static-tender__evidence {
  background-color: #fff;
  color: #485878;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
}
.hero-static-tender__evidence.current {
  opacity: 1;
}
.hero-static-tender__info {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
.col-md-3 .hero-static-tender__info {
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .hero-static-tender__info-item {
    display: block;
    margin: 5px 0 0 0 !important;
  }
}
@media (max-width: 767.98px) {
  .hero-static-tender__btn-add {
    margin-top: 10px;
  }
}

#hero-carousel {
  background-color: #F7F7F7;
}
#hero-carousel .carousel-control-prev-arrow, #hero-carousel .carousel-control-next-arrow {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
#hero-carousel .carousel-control-prev-arrow {
  border-top: 1px solid #979797;
  border-left: 1px solid #979797;
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
#hero-carousel .carousel-control-prev:hover .carousel-control-prev-arrow {
  transform: rotate(-45deg) translateX(-5px) translateY(-5px);
}
#hero-carousel .carousel-control-next-arrow {
  border-bottom: 1px solid #979797;
  border-right: 1px solid #979797;
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
#hero-carousel .carousel-control-next:hover .carousel-control-next-arrow {
  transform: rotate(-45deg) translateX(5px) translateY(5px);
}
#hero-carousel .carousel-indicators li {
  margin: 0 2px;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #485878;
  opacity: 1;
  transition: width 0.3s ease;
}
#hero-carousel .carousel-indicators li.active {
  background-color: #EB4765;
  width: 30px;
}
#hero-carousel .carousel-indicators li::marker {
  font-size: 0;
}
#hero-carousel .carousel-item {
  height: 550px;
}
@media (max-width: 767.98px) {
  #hero-carousel .carousel-item {
    height: auto;
    min-height: 550px;
    padding-bottom: 300px;
    padding-top: 50px;
  }
}
#hero-carousel .carousel-item .item__title {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
}
#hero-carousel .carousel-item .item__text {
  font-size: 28px;
  line-height: 32px;
}
#hero-carousel .carousel-item .item__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  #hero-carousel .carousel-item .item__img {
    height: 50%;
    transform: translateY(-50%) translateX(0%);
  }
}
@media (min-width: 1200px) {
  #hero-carousel .carousel-item .item__img {
    height: 50%;
    transform: translateY(-50%) translateX(30%);
  }
}
@media (max-width: 1199.98px) {
  #hero-carousel .carousel-item .item__img {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  #hero-carousel .carousel-item .item__img {
    height: 300px;
    top: 100%;
    left: 50%;
    transform: translateY(-15%) translateX(-50%);
  }
}

.panel-profile {
  background-color: #485878;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 25px;
}
.panel-profile .projectUpdate {
  background: #F2F2F2;
  width: 100%;
  height: 100%;
  padding: 0 7px;
  padding-top: 6px;
  font-size: 14px;
}
.panel-profile .projectUpdate__remove {
  display: inline-block;
}
.panel-profile .projectUpdate__status {
  display: inline-block;
}
.panel-profile .projectTimeline {
  height: 100%;
}
.panel-profile--contacts .contact .contact-item {
  font-size: 14px;
}
.panel-profile--description {
  position: relative;
}
.panel-profile--description.hidden {
  height: 130px;
  overflow: hidden;
}
.panel-profile--description.hidden:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  background: #485878;
  background: linear-gradient(0deg, #485878 0%, rgba(255, 255, 255, 0) 100%);
}
.panel-profile--tab {
  padding-bottom: 0;
  border-bottom: 1px solid #DDDDDD;
}
.panel-profile.vacancies {
  padding-bottom: 0;
}
.panel-profile.vacancies .collapse-filter-option {
  border: none;
}
.panel-profile .breadcrumb-item a, .panel-profile .breadcrumb-item.active {
  color: #fff;
}
.panel-profile .breadcrumb-item:before {
  border-color: #8691A6 !important;
}
.panel-profile__separate {
  background-color: rgba(255, 255, 255, 0.2);
}
.panel-profile .profile-menu {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .panel-profile .profile-menu {
    flex-direction: column;
  }
}
.panel-profile .profile-menu__item:last-child .profile-menu__link {
  padding-right: 0px;
  margin-right: 0px;
}
.panel-profile .profile-menu__item--logout {
  margin-left: auto;
}
.panel-profile .profile-menu__item--logout .profile-menu__link {
  font-size: 16px;
}
.panel-profile .profile-menu__item--logout .profile-menu__link .material-icons {
  font-size: 26px;
}
@media (min-width: 992px) {
  .panel-profile .profile-menu__item--option {
    margin-left: auto;
  }
}
@media (max-width: 1199.98px) {
  .panel-profile .profile-menu__item--option {
    margin-top: 10px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.panel-profile .profile-menu__link {
  font-size: 14px;
  color: #fff;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
}
@media (max-width: 991.98px) {
  .panel-profile .profile-menu__link {
    border-right: 0;
    padding-right: 0px;
    margin-right: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.panel-profile .profile-menu__link .material-icons {
  font-size: 18px;
}
.panel-profile .btn:not(.btn-classic) {
  padding: 5px 10px;
  border-radius: 3px;
}
.panel-profile .data-evidence {
  display: inline-block;
  font-size: 14px;
  background-color: #F2F2F2;
  padding: 2px 10px;
  margin: 5px 3px 0 0;
  border-radius: 3px;
}
.panel-profile__nav-tab {
  margin-top: 30px;
  margin-bottom: -1px;
}
.panel-profile__nav-tab .nav-tabs {
  border: 0;
}
.panel-profile__nav-tab .nav-tabs .nav-link {
  background-color: #fff;
  color: #485878;
  border-color: #DDDDDD;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 20px 13px 20px;
}
.panel-profile__nav-tab .nav-tabs .nav-link .material-icons {
  font-size: 26px;
}
.panel-profile__nav-tab .nav-tabs .nav-link:last-child {
  margin-right: 0px;
}
.panel-profile__nav-tab .nav-tabs .nav-link.active {
  background-color: #F2F2F2;
  border-bottom-color: #F2F2F2;
}
.panel-profile .collapse-filter-option {
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  color: #485878;
}
.panel-profile .collapse-filter-option form {
  padding: 20px;
}

.subscription-item {
  opacity: 0.6;
}

.projectLink__delete {
  padding-left: 10px;
}
.projectLink__delete a {
  color: #EB4765;
  font-size: 14px;
}
.projectLink__add a {
  color: #fff;
}

.bscTabContainer--underline {
  border-bottom: 1px solid #EB4765;
}
.bscTabContainer .bsc-nav-link {
  padding: 0 10px;
  opacity: 0.6;
}
.bscTabContainer .bsc-nav-link.active {
  opacity: 1;
}
.bscTabContainer .bsc-nav-link h3 {
  font-size: 16px;
  color: #EB4765;
  text-transform: uppercase;
  font-weight: 600;
}

.orgView a {
  color: #fff !important;
  text-decoration: underline;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
}
.breadcrumb-item {
  font-size: 14px;
  position: relative;
  padding-right: 12px;
}
.breadcrumb-item.active {
  color: #485878;
}
.breadcrumb-item + .breadcrumb-item:before {
  content: "";
  padding: 0;
  position: absolute;
  top: 8px;
  left: -6px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #485878;
  border-right: 1px solid #485878;
  transform: rotate(45deg);
}

.more-details.collapsed .more-details__icon, .more-details.closed .more-details__icon {
  transform: rotate(45deg);
}
.more-details.collapsed .more-details__more, .more-details.closed .more-details__more {
  display: inline;
}
.more-details.collapsed .more-details__more-alt, .more-details.closed .more-details__more-alt {
  display: none;
}
.more-details.collapsed .more-details__less, .more-details.closed .more-details__less {
  display: none;
}
.more-details.collapsed .more-details__less-alt, .more-details.closed .more-details__less-alt {
  display: inline;
}
.more-details__icon {
  transform: rotate(0);
  transition: transform 0.2s;
  transform-style: preserve-3d;
  font-size: 16px !important;
  display: inline-block;
}
.more-details__more {
  display: none;
}
.more-details__more-alt {
  display: inline;
}
.more-details__less {
  display: inline;
}
.more-details__less-alt {
  display: none;
}

.view-filter__icon {
  transform: rotateX(180deg);
  transition: transform 0.4s;
  transform-style: preserve-3d;
  display: inline-block;
}
.view-filter.collapsed .view-filter__icon {
  transform: rotateX(0deg);
}

.card-faq, .card-cv {
  border-radius: 0;
  border: 0;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.mvp .card-faq, .mvp .card-cv {
  box-shadow: 0 0 0 0;
}
.card-faq__header, .card-cv__header {
  padding: 0px;
  background-color: #fff;
}
.mvp .card-faq__header, .mvp .card-cv__header {
  background-color: #F2F2F2 !important;
}
.card-faq__body, .card-cv__body {
  padding: 0px 60px 20px 20px;
}
.card-faq__btn, .card-cv__btn {
  padding: 20px 60px 20px 20px;
  background-color: #fff;
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  font-size: 20px;
  font-weight: 700;
}
.mvp .card-faq__btn, .mvp .card-cv__btn {
  background-color: #F2F2F2;
}
.card-faq__btn.collapsed:after, .card-cv__btn.collapsed:after {
  transform: rotate(45deg);
}
.card-faq__btn:after, .card-cv__btn:after {
  content: "\f0159";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0);
  transition: transform 0.2s;
  transform-style: preserve-3d;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #EB4765;
}
.card-cv .card-cv__btn:after {
  color: #485878;
}
.card-projects {
  border-radius: 0;
  border: 0;
  margin-bottom: 20px;
}
.card-projects:not(:has(.card-projects__btn.collapsed)) .card-projects__header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card-projects__header {
  padding: 10px 60px 20px 20px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .card-projects__header .project-header-item {
    margin-bottom: 10px;
  }
}
.card-projects__body {
  padding: 0px 20px;
  padding-bottom: 30px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: max-height 0s;
}
.card-projects__btn {
  padding: 5px 60px 0px 20px;
  background-color: #fff;
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  font-size: 20px;
  font-weight: 700;
}
.card-projects__btn .material-icons {
  display: block;
  transform: rotate(0);
  transition: transform 0.2s;
  transform-style: preserve-3d;
}
.card-projects__btn.collapsed:after {
  transform: rotate(180deg);
}
.card-projects__btn:after {
  content: "\f0140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: 30px;
  font-weight: 700;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0);
  transition: transform 0.2s;
  transform-style: preserve-3d;
  position: absolute;
  right: 20px;
  top: 10px;
  color: #485878;
}

.pagination {
  margin-bottom: 0;
}
.pagination .page-item.active .page-link {
  background-color: #EB4765;
  color: #fff;
}
.pagination .page-item:last-child {
  margin-left: 10px;
}
.pagination .page-link {
  font-size: 14px;
  color: #485878;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0 !important;
  border: 0;
  transition: all 0.3s ease;
  box-shadow: none !important;
}
.pagination .page-link:hover {
  background-color: #d7dae0;
  color: #485878;
}

.preference-details-email__img {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background: #EB4765 !important;
}

.relatedProjectContract {
  max-height: 280px;
}
.relatedProjectContract .scrollItem {
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
}

.call-contact {
  position: fixed;
  z-index: 1000;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 991.98px) {
  .call-contact {
    bottom: 15px;
    right: 15px;
  }
}
.call-contact .icon-circle {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}

.number--circle {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 40px;
  flex: 0 0 40px;
  max-width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
}

.progress-circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress-circle:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.progress-circle > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress-circle .progress-circle__left {
  left: 0;
}
.progress-circle .progress-circle__bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #EB4765;
}
.progress-circle .progress-circle__left .progress-circle__bar {
  left: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress-circle .progress-circle__right {
  right: 0;
}
.progress-circle .progress-circle__right .progress-circle__bar {
  left: -100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.progress-circle .progress-circle__icon {
  display: flex;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.progress-circle__value {
  text-align: center;
}
.progress-circle__value .value__number {
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 28px;
}
.progress-circle__value .value__name {
  font-size: 16px;
  font-style: italic;
}

/* This for loop creates the 	necessary css animation names
Due to the split circle of progress-circle__left and progress-circle right, we must use the animations on each side.
*/
.progress-circle[data-percentage="5"] .progress-circle__right .progress-circle__bar {
  animation: loading-1 0.5s linear forwards;
}
.progress-circle[data-percentage="5"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="10"] .progress-circle__right .progress-circle__bar {
  animation: loading-2 0.5s linear forwards;
}
.progress-circle[data-percentage="10"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="15"] .progress-circle__right .progress-circle__bar {
  animation: loading-3 0.5s linear forwards;
}
.progress-circle[data-percentage="15"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="20"] .progress-circle__right .progress-circle__bar {
  animation: loading-4 0.5s linear forwards;
}
.progress-circle[data-percentage="20"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="25"] .progress-circle__right .progress-circle__bar {
  animation: loading-5 0.5s linear forwards;
}
.progress-circle[data-percentage="25"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="30"] .progress-circle__right .progress-circle__bar {
  animation: loading-6 0.5s linear forwards;
}
.progress-circle[data-percentage="30"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="35"] .progress-circle__right .progress-circle__bar {
  animation: loading-7 0.5s linear forwards;
}
.progress-circle[data-percentage="35"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="40"] .progress-circle__right .progress-circle__bar {
  animation: loading-8 0.5s linear forwards;
}
.progress-circle[data-percentage="40"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="45"] .progress-circle__right .progress-circle__bar {
  animation: loading-9 0.5s linear forwards;
}
.progress-circle[data-percentage="45"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="50"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="50"] .progress-circle__left .progress-circle__bar {
  animation: 0;
}

.progress-circle[data-percentage="55"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="55"] .progress-circle__left .progress-circle__bar {
  animation: loading-1 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="60"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="60"] .progress-circle__left .progress-circle__bar {
  animation: loading-2 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="65"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="65"] .progress-circle__left .progress-circle__bar {
  animation: loading-3 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="70"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="70"] .progress-circle__left .progress-circle__bar {
  animation: loading-4 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="75"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="75"] .progress-circle__left .progress-circle__bar {
  animation: loading-5 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="80"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="80"] .progress-circle__left .progress-circle__bar {
  animation: loading-6 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="85"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="85"] .progress-circle__left .progress-circle__bar {
  animation: loading-7 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="90"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="90"] .progress-circle__left .progress-circle__bar {
  animation: loading-8 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="95"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="95"] .progress-circle__left .progress-circle__bar {
  animation: loading-9 0.5s linear forwards 0.5s;
}

.progress-circle[data-percentage="100"] .progress-circle__right .progress-circle__bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-circle[data-percentage="100"] .progress-circle__left .progress-circle__bar {
  animation: loading-10 0.5s linear forwards 0.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(18);
    transform: rotate(18deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(54);
    transform: rotate(54deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}
@keyframes loading-6 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-7 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(126);
    transform: rotate(126deg);
  }
}
@keyframes loading-8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-9 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(162);
    transform: rotate(162deg);
  }
}
@keyframes loading-10 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.progress-circle {
  margin-bottom: 1em;
}

.step-register__step {
  text-align: center;
}
@media (max-width: 767.98px) {
  .step-register__step {
    display: none;
  }
}
.step-register__step:after {
  content: "";
  border-bottom: 1px solid #8691A6;
  border-right: 1px solid #8691A6;
  right: -5px;
  position: absolute;
  z-index: 2;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
}
@media (max-width: 767.98px) {
  .step-register__step:after {
    display: none;
  }
}
.step-register__step:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .step-register__step--active {
    display: block;
  }
}
.step-register__step--active .step-register__number {
  background-color: #EB4765;
}
.step-register__step--active .step-register__title {
  color: #EB4765;
}
.step-register__step--completed {
  opacity: 0.5;
}
@media (max-width: 767.98px) {
  .step-register__next-mobile {
    border-bottom: 1px solid #8691A6;
    border-right: 1px solid #8691A6;
    right: 20px;
    position: absolute;
    z-index: 2;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
  }
}
@media (max-width: 767.98px) {
  .step-register__prev-mobile {
    border-top: 1px solid #8691A6;
    border-left: 1px solid #8691A6;
    left: 20px;
    position: absolute;
    z-index: 2;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
  }
}
.step-register__number {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 60px;
  width: 60px;
  height: 60px;
  background-color: #C1C1C1;
  border-radius: 50%;
}
.step-register__title {
  font-weight: 700;
  color: #C1C1C1;
  margin-top: 20px;
  display: block;
  width: 100%;
}

.box--shadow {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.box--shadow .btn {
  padding-left: 10px;
  padding-right: 10px;
}

.strip {
  padding-top: 20px;
}
.strip--padding {
  padding-bottom: 70px;
}
.strip--padding-small {
  padding: 40px 0;
}
.strip--img-right {
  position: relative;
}
@media (max-width: 767.98px) {
  .strip--img-right {
    padding-bottom: 250px;
  }
}
.strip--img-right .strip__abs-image-right {
  position: absolute;
  width: 50%;
  left: 50%;
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  .strip--img-right .strip__abs-image-right {
    width: 100%;
    top: auto;
    bottom: 0;
    left: 0;
    height: 250px;
  }
}
.strip--filter {
  padding: 20px 0;
}
.strip--pagination {
  padding: 20px 0;
}
.strip--testimonials .container .carousel-control-prev-arrow, .strip--testimonials .container .carousel-control-next-arrow {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.strip--testimonials .container .carousel-control-prev-arrow {
  border-top: 1px solid #979797;
  border-left: 1px solid #979797;
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
.strip--testimonials .container .carousel-control-prev:hover .carousel-control-prev-arrow {
  transform: rotate(-45deg) translateX(-5px) translateY(-5px);
}
.strip--testimonials .container .carousel-control-next-arrow {
  border-bottom: 1px solid #979797;
  border-right: 1px solid #979797;
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
.strip--testimonials .container .carousel-control-next:hover .carousel-control-next-arrow {
  transform: rotate(-45deg) translateX(5px) translateY(5px);
}
.strip--testimonials .container .carousel-control-next {
  margin-left: 30px;
}
.strip--testimonials .container .carousel-control-prev {
  margin-right: 30px;
}
@media (min-width: 992px) {
  .strip--job-posting .strip__job-posting-grid {
    margin-left: -30px;
    margin-right: 30px;
  }
}
.strip .scoringLegend {
  border: 1px solid #EB4765;
  margin: 8px;
  padding: 6px;
}

.material-icons {
  font-size: inherit;
  vertical-align: top;
}

.icon-circle--small {
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 50%;
}
.icon-circle--small i {
  font-size: 32px;
  line-height: 55px;
}
.icon-circle--base {
  width: 65px;
  height: 65px;
  text-align: center;
  border-radius: 50%;
}
.icon-circle--base i {
  font-size: 30px;
  line-height: 65px;
}
.icon-circle--normal {
  width: 78px;
  height: 78px;
  text-align: center;
  border-radius: 50%;
}
.icon-circle--normal i {
  font-size: 36px;
  line-height: 78px;
}
.icon-circle--center {
  display: block;
  margin: 0 auto;
}
.icon-circle--flexlist.icon-circle--small {
  flex: 0 0 55px;
  max-width: 55px;
}
.icon-circle--flexlist.icon-circle--base {
  flex: 0 0 65px;
  max-width: 65px;
}
.icon-circle--flexlist.icon-circle--normal {
  flex: 0 0 78px;
  max-width: 78px;
}

.modal-as {
  color: #485878 !important;
}
.modal-as .modal-dialog {
  max-width: 800px;
}
.modal-as .modal-header {
  border: 0;
  display: block;
  position: relative;
  padding: 30px 20px 10px 20px;
}
.modal-as .modal-header .close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #485878;
  opacity: 1;
  font-size: 18px;
  border: none;
  background: #fff;
}
.modal-as .modal-content {
  word-break: break-word;
}
.modal-as .modal-footer {
  border: 0;
  padding: 10px 20px 30px 20px;
}

.modal .close {
  border: none;
  background: #fff;
  color: #485878;
}

.graph__mask {
  overflow: hidden;
  position: relative;
}
.graph__mask-container {
  position: absolute;
  bottom: 0;
  left: 0;
}
.graph__number {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 400px;
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
}
.graph__number li {
  height: 10%;
  font-size: 16px;
}
.graph__chart {
  display: table;
  table-layout: fixed;
  width: calc(100% - 30px);
  height: 100px;
  margin: 0 0 0 30px;
  padding: 0 10px;
  background-image: linear-gradient(top, rgba(0, 0, 0, 0.1) 2%, transparent 2%);
  background-size: 100% 5%;
  background-position: left top;
  border-bottom: 1px solid #485878;
}
.graph__chart li {
  position: relative;
  display: table-cell;
  vertical-align: bottom;
  height: 200px;
}
.graph__chart span {
  margin: 0 5px;
  display: block;
  background-color: #EB4765;
  animation: animGraph 1s ease-in-out;
  position: relative;
}
@media (max-width: 991.98px) {
  .graph__chart span {
    margin: 0 2px;
  }
}
.graph__chart span:before {
  content: attr(title);
  font-size: 14px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  padding: 5px;
  display: block;
  text-align: center;
  word-wrap: break-word;
  color: #fff;
  animation: animPercent 1s ease-in-out;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .graph__chart span:before {
    display: none;
  }
}
.graph__chart span.under-2:before {
  top: -26px;
  color: #485878;
}
@keyframes animPercent {
  0% {
    opacity: 0;
  }
}
@keyframes animGraph {
  0% {
    height: 0;
  }
}
.graph .pie-chart {
  display: flex;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .graph .pie-chart {
    flex-direction: column;
  }
}
.graph .pie-chart .pie-chart--wrapper {
  width: 400px;
  margin: 30px auto;
  text-align: center;
}
.graph .pie-chart .pie-chart__pie, .graph .pie-chart .pie-chart__legend {
  display: inline-block;
  vertical-align: top;
}
.graph .pie-chart .pie-chart__pie {
  position: relative;
  height: 200px;
  width: 200px;
  margin: 10px auto 35px;
}
.graph .pie-chart .pie-chart__pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #EEE;
  border-radius: 50%;
  top: 50px;
  left: 50px;
}
.graph .pie-chart .pie-chart__legend {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: auto 0 auto auto;
  background: #FFF;
  padding: 0;
  font-size: 16px;
  text-align: left;
  width: 40%;
}
@media (max-width: 991.98px) {
  .graph .pie-chart .pie-chart__legend {
    width: auto;
    margin: 20px auto 0 auto;
  }
}
.graph .pie-chart .pie-chart__legend li {
  margin-bottom: 5px;
  position: relative;
}
.graph .pie-chart .pie-chart__legend li .pie-leggend-color {
  content: "";
  position: absolute;
  top: 1px;
  left: -20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: black;
}
.graph .pie-chart .pie-chart__legend li em {
  font-style: normal;
}
.graph .pie-chart .slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  animation: bake-pie 1s;
}
.graph .pie-chart .slice span, .graph .pie-chart .slice div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}
.graph .pie-chart .slice .tooltip {
  opacity: 0 !important;
  display: none;
}
@-webkit-keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.new {
  display: block;
}

.customPopup {
  overflow: hidden;
  overflow-y: auto;
  height: 470px;
  padding: 30px;
}

.db-body {
  overflow-y: auto;
}
.db-body h5 {
  border-bottom: 1px solid #DDDDDD;
  margin-right: 40px;
}

.subscriptions {
  container-type: inline-size;
}
.subscriptions__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
@container (max-width: 1600px) {
  .subscriptions__container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@container (max-width: 1000px) {
  .subscriptions__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@container (max-width: 900px) {
  .subscriptions__container {
    grid-template-columns: 1fr 1fr;
  }
}
@container (max-width: 500px) {
  .subscriptions__container {
    grid-template-columns: 1fr;
  }
}
.subscriptions__item {
  max-width: 400px;
  width: 300px;
}
.subscriptions__item.not-subscribed {
  opacity: 0.6;
}
.subscriptions__type--activated {
  color: #14A06C;
}
.subscriptions__type--title {
  margin-top: 15px;
}
.subscriptions__type--image {
  background-color: #485878;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  line-height: 65px;
  color: #fff;
  text-align: center;
}
.subscriptions__type--body ul {
  padding-left: 1.2rem;
}
.subscriptions__type--edit {
  text-align: center;
}

.tender__header {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.tender__header .material-icons {
  vertical-align: text-top;
}
@media (max-width: 991.98px) {
  .tender__header .tender__type {
    display: none;
  }
  .tender__header .tender__type--tender, .tender__header .tender__type--tender-projects {
    display: block;
  }
}
@media (max-width: 1199.98px) {
  .isIca .tender__header .tender__type {
    display: none;
  }
  .isIca .tender__header .tender__type--tender, .isIca .tender__header .tender__type--tender-projects, .isIca .tender__header .tender__type--location {
    display: block;
  }
}
.tender .title {
  color: #485878;
  font-weight: 900;
}
.tender__description {
  background-color: #485878;
  font-size: 14px;
  width: 100%;
}
.tender .tender_nodata {
  font-size: 14px;
  text-align: center;
}
.tender__body .center {
  text-align: center;
}
.tender__item {
  color: #485878;
  padding: 10px 20px;
  min-height: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.tender__item-selected {
  background-color: #FFE;
}
.tender__item:hover {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}
.tender__item .tooltip-inner {
  background-color: #485878 !important;
  color: #fff;
  z-index: 999;
  max-width: 500px;
  height: auto;
  word-wrap: break-word;
  overflow: overlay;
  white-space: normal;
  padding: 10px;
  position: absolute;
  display: none;
}
.tender__item .info-hover {
  cursor: pointer;
  padding: 0px 2px;
  display: inline-block;
}
.tender__item .info-hover .infoTip {
  background-color: #485878;
  color: #fff;
  z-index: 999;
  max-width: 500px;
  height: auto;
  word-wrap: break-word;
  overflow: overlay;
  white-space: normal;
  padding: 10px;
  position: absolute;
  display: none;
}
.tender__item .info-hover:hover .infoTip {
  display: block;
}
@media (max-width: 991.98px) {
  .tender__item {
    padding: 20px;
  }
}
.tender__item .contractLots, .tender__item .shortlistCompanies {
  flex: 0 0 100%;
  display: block;
  width: 100%;
}
.tender__item .contractLots .lot_title, .tender__item .shortlistCompanies .lot_title {
  font-size: 14px;
}
.tender__item .contractLots .contractLot, .tender__item .contractLots .shortlistLot, .tender__item .shortlistCompanies .contractLot, .tender__item .shortlistCompanies .shortlistLot {
  display: flex;
  font-size: 12px;
}
.tender__item .contractLots .contractLot div, .tender__item .contractLots .shortlistLot div, .tender__item .shortlistCompanies .contractLot div, .tender__item .shortlistCompanies .shortlistLot div {
  flex: 0 0 10%;
}
.tender__item .contractLots .contractLot div.title, .tender__item .contractLots .shortlistLot div.title, .tender__item .shortlistCompanies .contractLot div.title, .tender__item .shortlistCompanies .shortlistLot div.title {
  flex: 1 0 42%;
}
.tender__item .contractLots .contractLot div.title .sml, .tender__item .contractLots .shortlistLot div.title .sml, .tender__item .shortlistCompanies .contractLot div.title .sml, .tender__item .shortlistCompanies .shortlistLot div.title .sml {
  font-size: 11px;
}
.tender__item .contractLots .contractLot .location, .tender__item .contractLots .shortlistLot .location, .tender__item .shortlistCompanies .contractLot .location, .tender__item .shortlistCompanies .shortlistLot .location {
  flex: 0 0 11%;
}
.tender__type {
  font-size: 14px;
  padding-right: 10px;
  flex: 0 0 10%;
  max-width: 10%;
  line-height: 18px;
}
.organisation .tender__type {
  flex: 0 0 12%;
  max-width: 12%;
}
.organisation .tender__type--index {
  flex: 0 0 5%;
  max-width: 5%;
}
.organisation .tender__type--title {
  flex: 0 0 30%;
  max-width: 30%;
  text-align: left;
}
.tender__type--companies {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
.tender__type .contract-lot {
  display: flex;
  flex-wrap: wrap;
  line-height: 23px;
  margin-top: 10px;
}
.tender__type .contract-lot__list {
  flex: 0 0 95%;
  max-width: 95%;
}
.tender__type .contract-lot__list .company-item .item {
  display: flex;
  flex-wrap: wrap;
  line-height: 23px;
}
.tender__type .contract-lot__list .company-item .item__type {
  flex: 0 0 10%;
  max-width: 10%;
}
.tender__type .contract-lot__list .company-item .item__type-published {
  flex: 0 0 10%;
  max-width: 10%;
}
.tender__type .contract-lot__list .company-item .item__type-name {
  flex: 0 0 71%;
  max-width: 71%;
}
.tender__type .contract-lot__list .company-item .item__type-link {
  flex: 0 0 3%;
  max-width: 3%;
}
@media (max-width: 1199.98px) {
  .tender__type .contract-lot__list .company-item .item__type-type {
    flex: 0 0 13%;
    max-width: 13%;
  }
  .tender__type .contract-lot__list .company-item .item__type-name {
    flex: 0 0 65%;
    max-width: 65%;
  }
}
@media (max-width: 767.98px) {
  .tender__type .contract-lot__list .company-item .item__type-budget, .tender__type .contract-lot__list .company-item .item__type-published {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tender__type .contract-lot__list .company-item .item__type-name {
    flex: 0 0 90%;
    max-width: 90%;
  }
}
.tender__type .contract-lot__lot {
  flex: 0 0 100%;
  max-width: 100%;
}
.tender__type .contract-lot__index {
  flex: 0 0 5%;
  max-width: 5%;
  font-size: 12px;
  text-align: center;
}
.tender__type .contract-lot__companies {
  width: 100%;
}
.tender__type .contract-lot__type {
  flex: 0 0 10%;
  max-width: 10%;
}
.tender__type .contract-lot__type-published {
  flex: 0 0 10%;
  max-width: 10%;
}
.tender__type .contract-lot__type-name {
  flex: 0 0 71%;
  max-width: 71%;
}
.tender__type .contract-lot__type-link {
  flex: 0 0 3%;
  max-width: 3%;
}
@media (max-width: 1199.98px) {
  .tender__type .contract-lot__type-type {
    flex: 0 0 13%;
    max-width: 13%;
  }
  .tender__type .contract-lot__type-name {
    flex: 0 0 65%;
    max-width: 65%;
  }
}
@media (max-width: 767.98px) {
  .tender__type .contract-lot__type-budget, .tender__type .contract-lot__type-published {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tender__type .contract-lot__type-name {
    flex: 0 0 90%;
    max-width: 90%;
  }
}
.sip .tender__type--title {
  flex: 0 0 30%;
  max-width: 30%;
}
.organisation .tender__type--title {
  flex: 1 0 30% !important;
  max-width: 30% !important;
  cursor: pointer;
}
.tender__type--list {
  flex: 0 0 100%;
  max-width: 100%;
}
.tender__type--list.open {
  height: 400px;
}
.sip .tender__type--projectTitle {
  flex: 0 0 28%;
  max-width: 28%;
}
.tender__type--location {
  flex: 0 0 11%;
  max-width: 11%;
  word-wrap: break-word;
}
.isIca .tender__type--location {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--location {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.tender__type--index {
  flex: 0 0 3%;
  max-width: 3%;
}
.tender__type--deadline {
  color: #EB4765;
  padding-right: 0;
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--deadline {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.tender__type--ica {
  flex: 0 0 18%;
  max-width: 18%;
  position: relative;
}
@media (max-width: 1199.98px) {
  .tender__type--ica {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
  }
}
.isIca .tender__type--donor {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--donor {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.tender__type--budget {
  letter-spacing: 1px;
}
.isIca .tender__type--budget {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--budget {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.isIca .tender__type--published {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--published {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.orgPartners .tender__type--title {
  flex: 0 0 60%;
  max-width: 100%;
}
.orgPricing .tender__type--title {
  flex: 1 0 30%;
  max-width: 100%;
}
.orgProject2 .tender__type--title {
  flex: 0 0 39%;
  max-width: 100%;
}
.orgPartners .tender__type--donor, .orgPartners .tender__type--role, .orgPartners .tender__type--budget, .orgPricing .tender__type--donor, .orgPricing .tender__type--role, .orgPricing .tender__type--contracts, .orgPricing .tender__type--discount, .orgPricing .tender__type--published {
  flex: 0 0 9%;
  max-width: 9%;
}
.orgPricing .tender__type--budget {
  flex: 0 0 12%;
  max-width: 12%;
}
@media (max-width: 1199.98px) {
  .tender__type {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .tender__type {
    font-size: 14px;
    flex: 0 0 20%;
    max-width: 20%;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .tender__type {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.tender__type--tender {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .tender__type--tender {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0px;
  }
}
.tender__type--tender-projects {
  flex: 0 0 39%;
  max-width: 39%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--tender-projects {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (max-width: 991.98px) {
  .tender__type--tender-projects {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0px;
  }
}
.tender__type--tender-contracts, .tender__type--tender-shortlists {
  flex: 0 0 54%;
  max-width: 54%;
  cursor: pointer;
}
.tender__type--action {
  font-size: 28px;
  flex: 0 0 8%;
  max-width: 8%;
  padding-right: 0;
  border-left: 1px solid #DDDDDD;
}
.isIca .tender__type--action {
  flex: 0 0 0%;
  max-width: 0%;
}
@media (max-width: 1199.98px) {
  .isIca .tender__type--action {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    border-left: none;
    border-top: 1px solid #DDDDDD;
    padding-top: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .tender__type--action {
    border: 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    border-top: 1px solid #DDDDDD;
    padding-top: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .tender__type--action {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.tender__tag {
  display: inline-block;
  font-size: 14px;
  background-color: #F2F2F2;
  padding: 2px 10px;
  margin: 5px 3px 0 0;
  border-radius: 3px;
}
.tender .btn-action {
  font-size: 28px;
}
.tender .btn-action i:hover {
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tender .btn-action {
    font-size: 24px;
  }
}
.tender .btn-action--add .tooltip-inner {
  background-color: #485878;
  font-size: 14px;
}
.tender .btn-action--add .arrow:before {
  border-top-color: #485878;
}
.tender .btn-action--delete-restore .tooltip-inner {
  background-color: #14A06C;
  font-size: 14px;
}
.tender .btn-action--delete-restore .arrow:before {
  border-top-color: #14A06C;
}
.tender .btn-action--delete .tooltip-inner {
  background-color: #EB4765;
  font-size: 14px;
}
.tender .btn-action--delete .arrow:before {
  border-top-color: #EB4765;
}

.projects__header {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.projects__header .material-icons {
  vertical-align: text-top;
}
@media (max-width: 1199.98px) {
  .projects__header .projects__type--hideLg {
    display: none;
  }
}
.projects__header.myprojects .projects__type--action {
  max-width: 100%;
}
.projects__header.myprojects .projects__type--action .bin {
  display: inline-block;
  vertical-align: middle;
}
.projects .center {
  text-align: center;
}
.projects__multiSelect {
  display: none;
  position: fixed;
  right: 32px;
}
.projects__container {
  height: 560px;
  overflow-y: auto;
}
.projects__item {
  padding: 10px 20px;
  min-height: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.projects__item:hover {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1199.98px) {
  .projects__item {
    padding: 20px;
  }
}
.projects__type {
  font-size: 14px;
  padding-right: 10px;
  flex: 0 0 10%;
  max-width: 10%;
  line-height: 18px;
}
.projects__type--location {
  flex: 0 0 12%;
  max-width: 12%;
}
.myproject .projects__type--location {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--location {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .myproject .projects__type--location--all {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--location {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.projects__type--donar {
  flex: 0 0 11%;
  max-width: 11%;
}
.myproject .projects__type--donar {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--donar {
    flex: 0 0 15%;
    max-width: 15%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--donar {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.myproject--all .projects__type--donar {
  flex: 0 0 7%;
  max-width: 7%;
}
@media (max-width: 991.98px) {
  .myproject--all .projects__type--donar {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.projects__type--users {
  flex: 0 0 13%;
  max-width: 13%;
}
.myproject .projects__type--users {
  flex: 0 0 11%;
  max-width: 11%;
}
@media (max-width: 991.98px) {
  .myproject .projects__type--users {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.projects__type--position {
  flex: 0 0 5%;
  max-width: 5%;
}
.myproject .projects__type--position {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--position {
    flex: 0 0 12%;
    max-width: 12%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--position {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.projects__type--experts {
  flex: 0 0 5%;
  max-width: 5%;
}
.myproject .projects__type--experts {
  flex: 0 0 7%;
  max-width: 7%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--experts {
    flex: 0 0 12%;
    max-width: 12%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--experts {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.projects__type--added {
  flex: 0 0 7%;
  max-width: 7%;
}
.myproject .projects__type--added {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--added {
    flex: 0 0 12%;
    max-width: 12%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--added {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.myproject--all .projects__type--added {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 1199.98px) {
  .myproject--all .projects__type--added {
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.projects__type--deadline {
  flex: 0 0 7%;
  max-width: 7%;
}
.myproject .projects__type--deadline {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .myproject .projects__type--deadline {
    flex: 0 0 12%;
    max-width: 12%;
  }
}
@media (max-width: 991.98px) {
  .myproject .projects__type--deadline {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 1199.98px) {
  .projects__type {
    font-size: 13px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .projects__type {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .projects__type {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.projects__type--check {
  flex: 0 0 10px;
  max-width: 18px;
  margin-top: 0;
}
.projects__type--number {
  flex: 0 0 20px;
  max-width: 20px;
  margin-top: 0;
}
.projects__type--title {
  flex: 0 0 calc(40% - 50px);
  max-width: calc(40% - 50px);
  font-weight: 700;
  font-size: 14px;
  margin-top: 0 !important;
}
@media (max-width: 1199.98px) {
  .projects__type--title {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
}
.myprojects-all .projects__type--title {
  flex: 0 0 calc(36% - 50px);
  max-width: calc(36% - 50px);
}
.projects__type--action {
  flex: 0 0 4%;
  max-width: 4%;
  border-left: 1px solid #DDDDDD;
  text-align: right;
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  .projects__type--action {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0;
    border-top: 1px solid #DDDDDD;
    text-align: center;
  }
}
.myprojects .projects__type--action {
  flex: 0 0 7%;
  max-width: 7%;
}
.myprojects .projects__type--action.actions {
  display: block;
}
.myprojects .projects__type--action.actions.hide {
  display: none;
}
.myprojects .projects__type--action.actions-multiple {
  display: none;
}
.myprojects .projects__type--action.actions-multiple.show {
  display: block;
}
.myprojects .projects__type--action .bin {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1199.98px) {
  .myprojects .projects__type--action {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0;
    border-top: 1px solid #DDDDDD;
    text-align: center;
    padding-top: 8px;
  }
}
.myproject--all .projects__type--action {
  flex: 0 0 100%;
  max-width: 100%;
  border-left: 0;
  border-top: 1px solid #DDDDDD;
  text-align: center;
  padding-top: 8px;
}
.projects__type .btn--unstyle {
  margin: 0;
}
.projects__type .btn--unstyle.dropdown-toggle {
  position: relative;
}
.projects__type .btn--unstyle.dropdown-toggle--moveTo {
  font-size: 24px;
}
.projects__type .btn--unstyle.dropdown-toggle.show .mdi-menu:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  margin-left: -5px;
  background-color: #485878;
  left: -14px;
  top: 10px;
  z-index: 1;
}
.projects__type .dropdown-menu--moveTo {
  background-color: #485878;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  border: 0;
  left: 50% !important;
  min-width: 16rem;
  transform: translate3d(-50%, -100%, 0px) !important;
  top: -10px !important;
  padding-top: 20px;
  z-index: 999;
}
.projects__type .dropdown-menu--moveTo .moveToText {
  margin-bottom: -1px;
}
.projects__type .dropdown-menu--moveTo a {
  color: #fff;
  font-weight: 700;
}
.myprojects .projects__type .dropdown-menu--moveTo {
  transform: translate3d(-110%, -30%, 0px) !important;
}
.projects__type .dropdown-menu--moveTo ul {
  position: relative;
  padding-top: 20px;
  z-index: 20;
  background-color: #485878;
}
.projects__type .dropdown-menu--moveTo ul li {
  padding: 2px;
}
.projects__type .dropdown-menu--moveTo ul li:hover {
  background: #C7CEDB;
}
.projects__type .btn-action {
  font-size: 28px;
}
.projects__type .btn-action i:hover {
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .projects__type .btn-action {
    font-size: 24px;
  }
}
.projects__type .btn-action--delete-restore .tooltip-inner {
  background-color: #14A06C;
  font-size: 14px;
}
.projects__type .btn-action--delete-restore .arrow:before {
  border-top-color: #14A06C;
}
.projects__type .btn-action--delete .tooltip-inner {
  background-color: #EB4765;
  font-size: 14px;
}
.projects__type .btn-action--delete .arrow:before {
  border-top-color: #EB4765;
}

#project-description li {
  height: 30px;
}

.projects-vacancies .detailsAlert {
  margin-top: 20px;
  width: 100%;
}
.projects-vacancies .vacancyPublish {
  line-height: 25px;
}
.projects-vacancies__header {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.projects-vacancies__header .material-icons {
  vertical-align: text-top;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__header .projects-vacancies__type:not(.projects-vacancies__type--move-delete) {
    display: none;
  }
}
.projects-vacancies .center {
  text-align: center;
}
.projects-vacancies__item {
  padding: 10px 20px;
  min-height: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.projects-vacancies__item:hover {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}
.projects-vacancies__item .vacancyDetails {
  flex: 0 0 100%;
  width: 100%;
  display: block;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__item {
    padding: 20px;
  }
}
.projects-vacancies__type {
  font-size: 14px;
  padding-right: 10px;
  flex: 0 0 15%;
  max-width: 15%;
  line-height: 18px;
}
.projects-vacancies__type--published {
  flex: 0 0 15%;
  max-width: 15%;
}
.projects-vacancies__type--published .colorBlue {
  color: #0075FF;
  font-size: 17px;
  padding: 0 5px;
}
.projects-vacancies__type--published .pv_publish {
  cursor: pointer;
}
.projects-vacancies__type--view {
  flex: 1 0 33%;
  max-width: 33%;
}
.projects-vacancies__type--date {
  flex: 0 0 14%;
  max-width: 14%;
}
.projects-vacancies__type--status {
  flex: 0 0 10%;
  max-width: 10%;
}
.projects-vacancies__type--deadline {
  flex: 0 0 10%;
  max-width: 10%;
  color: #EB4765;
}
.inHouse .projects-vacancies__type--deadline {
  flex: 0 0 10%;
  max-width: 10%;
}
.projects-vacancies__type--position {
  flex: 0 0 66%;
  max-width: 65%;
}
.inHouse .projects-vacancies__type--position {
  flex: 0 0 55%;
  max-width: 55%;
}
.projects-vacancies__type--logoHeader {
  flex: 0 0 15%;
  max-width: 15%;
}
.projects-vacancies__type--locationHeader {
  flex: 0 0 8%;
  max-width: 8%;
}
.inHouse .projects-vacancies__type--locationHeader {
  flex: 0 0 18%;
  max-width: 18%;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type {
    font-size: 13px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .projects-vacancies__type {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .projects-vacancies__type {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.projects-vacancies__type--action {
  flex: 0 0 13%;
  max-width: 13%;
  text-align: center;
  border-left: 1px solid #DDDDDD;
}
.projects-vacancies__type--action div i {
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type--action {
    flex: 0 0 100%;
    max-width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 0;
    padding-top: 8px;
  }
}
.projects-vacancies__type--action .hideAction {
  display: none;
}
.projects-vacancies__type--check {
  flex: 0 0 30px;
  max-width: 30px;
  margin-top: 0;
}
.projects-vacancies__type--logo {
  flex: 0 0 180px;
  max-width: 200px;
  margin-top: 0;
}
.projects-vacancies__type--inhPos {
  flex: 0 0 60%;
  max-width: 60%;
  font-size: 16px;
  margin-top: 0;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type--inhPos {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.projects-vacancies__type--cvs {
  flex: 0 0 7%;
  width: 7%;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type--cvs {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.projects-vacancies__type--title {
  flex: 0 0 calc(40% - 30px);
  max-width: calc(40% - 30px);
  font-size: 16px;
  margin-top: 0;
}
.bsc_myview .projects-vacancies__type--title {
  flex: 0 0 70%;
  max-width: 70%;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type--title {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.projects-vacancies__type--experts {
  flex: 0 0 100%;
  max-width: 100%;
}
.projects-vacancies__type--move-delete {
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 1199.98px) {
  .projects-vacancies__type--move-delete {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.single-organisation__header {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.single-organisation__header .material-icons {
  vertical-align: text-top;
}
@media (max-width: 1199.98px) {
  .single-organisation__header .single-organisation__type:not(.single-organisation__type--alert) {
    display: none;
  }
}
.single-organisation__item {
  padding: 15px 20px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1199.98px) {
  .single-organisation__item {
    padding: 20px;
  }
}
.single-organisation__type {
  font-size: 14px;
  padding-right: 10px;
  flex: 0 0 10%;
  max-width: 10%;
  line-height: 18px;
}
.single-organisation__type:last-child {
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  .single-organisation__type {
    font-size: 13px;
    flex: 0 0 20%;
    max-width: 20%;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .single-organisation__type {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .single-organisation__type {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.single-organisation__type--number {
  flex: 0 0 30px;
  max-width: 30px;
}
.single-organisation__type--title {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  font-size: 16px;
  margin-top: 0;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--title {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.single-organisation__type--partners {
  flex: 0 0 12%;
  max-width: 12%;
}
@media (min-width: 1200px) {
  .single-organisation__type--partners {
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .single-organisation__type--partners {
    font-size: 13px;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 767.98px) {
  .single-organisation__type--partners {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.single-organisation__type--partners.single-organisation__type--number {
  flex: 0 0 30px;
  max-width: 30px;
  text-align: left;
}
.single-organisation__type--partners.single-organisation__type--title {
  flex: 0 0 calc(52% - 30px);
  max-width: calc(52% - 30px);
  font-size: 16px;
  margin-top: 0;
  text-align: left;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--partners.single-organisation__type--title {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.single-organisation__type--partners.single-organisation__type--alert {
  flex: 0 0 52%;
  max-width: 52%;
  text-align: left;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--partners.single-organisation__type--alert {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-organisation__type--pricing {
  flex: 0 0 9%;
  max-width: 9%;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--pricing {
    font-size: 13px;
    flex: 0 0 14.28%;
    max-width: 14.28%;
  }
}
@media (max-width: 767.98px) {
  .single-organisation__type--pricing {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.single-organisation__type--pricing.single-organisation__type--number {
  flex: 0 0 30px;
  max-width: 30px;
}
.single-organisation__type--pricing.single-organisation__type--title {
  flex: 0 0 calc(37% - 30px);
  max-width: calc(37% - 30px);
  font-size: 16px;
  margin-top: 0;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--pricing.single-organisation__type--title {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.single-organisation__type--pricing.single-organisation__type--alert {
  flex: 0 0 37%;
  max-width: 37%;
  text-align: left;
}
@media (max-width: 1199.98px) {
  .single-organisation__type--pricing.single-organisation__type--alert {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.vacancies__header {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.vacancies__header .material-icons {
  vertical-align: text-top;
}
.vacancies__header .vacancies__type {
  background-color: #F2F2F2;
  font-size: 14px !important;
}
@media (max-width: 991.98px) {
  .vacancies__header .vacancies__type {
    display: none;
  }
  .vacancies__header .vacancies__type--vacancies {
    display: block;
  }
}
.vacancies__item {
  padding: 0;
  min-height: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.vacancies__item:hover {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767.98px) {
  .vacancies__item {
    align-items: start;
  }
}
.vacancies__type {
  font-size: 14px;
  padding: 10px 10px 10px 0;
  flex: 0 0 10%;
  max-width: 10%;
  line-height: 18px;
}
@media (max-width: 1199.98px) {
  .vacancies__type {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .vacancies__type {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 20px;
  }
}
.job .vacancies__type {
  flex: 0 0 8%;
  max-width: 8%;
}
@media (max-width: 991.98px) {
  .job .vacancies__type {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .job .vacancies__type {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
  }
}
@media (max-width: 575.98px) {
  .job .vacancies__type {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.vacancies__type-logo {
  color: #EB4765;
  background-color: #fff;
  flex: 0 0 15%;
  max-width: 15%;
  padding: 0px !important;
  text-align: center;
  align-self: stretch;
  order: 1;
}
@media (max-width: 991.98px) {
  .vacancies__type-logo {
    flex: 0 0 28%;
    max-width: 28%;
    margin-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .vacancies__type-logo {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0px;
  }
}
.vacancies__type-logo .type-logo-wrap {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.vacancies__type-logo .type-logo-wrap img {
  max-width: 100%;
  height: auto;
}
.vacancies__type-position {
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 16px;
  padding-left: 20px;
  order: 2;
}
@media (max-width: 991.98px) {
  .vacancies__type-position {
    flex: 0 0 70%;
    max-width: 70%;
    margin-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .vacancies__type-position {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0px;
  }
}
.job .vacancies__type-position {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 991.98px) {
  .job .vacancies__type-position {
    flex: 0 0 70%;
    max-width: 70%;
    margin-top: 0px;
  }
}
.vacancies__type-location {
  font-size: 16px;
  flex: 0 0 25%;
  max-width: 25%;
  order: 3;
}
@media (max-width: 991.98px) {
  .vacancies__type-location {
    order: 4;
  }
}
@media (min-width: 992px) {
  .job .vacancies__type-location {
    flex: 0 0 15%;
    max-width: 15%;
  }
}
.vacancies__type-project {
  flex: 0 0 17% !important;
  max-width: 17% !important;
  order: 4;
}
@media (max-width: 991.98px) {
  .vacancies__type-project {
    flex: 0 0 50%;
    max-width: 50%;
    order: 3;
  }
}
.job .vacancies__type-project {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (max-width: 991.98px) {
  .job .vacancies__type-project {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.vacancies__type-duration {
  order: 5;
}
.vacancies__type-published {
  order: 6;
}
.vacancies__type-deadline {
  flex: 0 0 9%;
  max-width: 9%;
  padding-right: 0;
  color: #EB4765;
  cursor: pointer;
  order: 7;
}
.vacancies__type-deadline a {
  color: #EB4765;
  text-decoration: underline;
}

.description {
  background-color: #F2F2F2;
  padding-bottom: 100px;
}
.description--noPadding {
  padding-bottom: 0;
}
.description__leaderboard {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  margin-top: -50px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 20px;
  font-size: 14px;
  font-weight: 300;
}
.description__leaderboard .contractAward {
  cursor: pointer;
}
.description__leaderboard .hr-column {
  padding: 0 5%;
}
.description__leaderboard.vacancies {
  margin-top: 0px;
}
.description__leaderboard.jpb {
  margin-top: 0px;
  color: #485878;
}
.description__leaderboard .restrictions {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  width: fit-content;
  white-space: nowrap;
}
.description__leaderboard-item {
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .description__leaderboard-item {
    margin-top: 10px;
  }
}
.description__leaderboard-title {
  font-weight: 700;
}
.description__leaderboard--vacancies {
  padding: 0;
}
.description__leaderboard--vacancies .description__leaderboard-item {
  padding: 10px 15px 10px 0;
}
@media (max-width: 991.98px) {
  .description__leaderboard--vacancies .description__leaderboard-item {
    padding: 0px 10px 20px 20px;
  }
}
.description__leaderboard--vacancies .description__leaderboard-item:first-child {
  padding: 0px;
}
.description__leaderboard--vacancies .description__leaderboard-item .type-logo-wrap {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.description__leaderboard--vacancies .description__leaderboard-item .type-logo-wrap img {
  max-width: 100%;
  height: auto;
}
.description__leaderboard--vacancies .description__leaderboard-title {
  display: block;
}
.description__short {
  margin-top: 5px;
}
.description__short--blocked {
  height: 80px;
  overflow: hidden;
  position: relative;
}
.description__short--blocked:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}
.description__content {
  margin-top: 70px;
}
.description__content-text {
  font-size: 16px;
  word-break: break-all;
}
.description__content-link {
  text-decoration: underline;
}
.description__content--blocked {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}
.description__content--blocked:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  background: rgb(242, 242, 242);
  background: linear-gradient(0deg, rgb(242, 242, 242) 50%, rgba(255, 255, 255, 0) 100%);
}
.description__become {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 550px;
  max-width: 90%;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.description__become .btn {
  padding: 10px 20px;
  font-weight: 400;
}

#project-description a {
  color: #EB4765;
  text-decoration: underline;
}
#project-description > * {
  background: initial;
}
#project-description strong {
  background: initial !important;
  color: #485878 !important;
}
#project-description table {
  table-layout: fixed;
  width: 100%;
}
#project-description table td {
  border: 1px solid black;
  padding: 2px 5px;
}

.view-filter {
  font-weight: 700;
}
.view-filter__icon {
  transform: rotateX(180deg);
  transition: transform 0.4s;
  transform-style: preserve-3d;
  display: inline-block;
}
.view-filter.collapsed .view-filter__icon {
  transform: rotateX(0deg);
}

.delete.icon {
  opacity: 1;
  margin: 0 5px 0 0;
  line-height: 15px;
  z-index: 3;
}
.delete.icon:before {
  content: "\f0156";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EB4765;
  margin: 0;
}

.ui.dropdown.search-filter {
  width: 100%;
  border: 1px solid #C1C1C1;
  background-color: #F7F7F7;
  margin-top: 10px;
  padding: 6px 15px 4px 10px;
}
.ui.dropdown.search-filter--flag {
  background-color: transparent;
  border: 0;
  margin: 0;
}
.ui.dropdown.search-filter--flag .text > img {
  margin-top: 0;
  margin-bottom: 0;
  max-height: none;
  margin-right: 20px;
}
.ui.dropdown.search-filter--flag .menu {
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.ui.dropdown.search-filter--flag .menu .item {
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.ui.dropdown.search-filter:after {
  content: "\f0140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 10px;
  transform: rotateX(0deg);
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}
.ui.dropdown.search-filter.visible:after {
  transform: rotateX(180deg);
}
.ui.dropdown.search-filter .label {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px 4px 5px !important;
  line-height: 15px;
  margin: 2px 5px 2px 2px;
  background-color: #fff;
  border: 1px solid #C1C1C1;
  border-radius: 3px;
  box-shadow: none !important;
  color: #485878;
  display: inline-flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
}
.ui.dropdown.search-filter .label .delete.icon {
  opacity: 1;
  margin: 0 5px 0 0;
  line-height: 15px;
  z-index: 3;
}
.ui.dropdown.search-filter .label .delete.icon:before {
  content: "\f0156";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EB4765;
  margin: 0;
}
.ui.dropdown.search-filter .search-filter__text {
  color: #485878;
  font-size: 14px;
  margin: 6px 0;
}
.ui.dropdown.search-filter .search-filter__menu {
  width: 100%;
  border-radius: 0;
  border: 1px solid #C1C1C1;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.ui.dropdown.search-filter .search-filter__menu .search-filter__input {
  margin: 10px;
}
.ui.dropdown.search-filter .search-filter__menu .search-filter__input input {
  font-size: 14px;
  padding: 4px 10px 4px 7px !important;
  border-radius: 3px;
  width: 100%;
  border: 1px solid #C1C1C1;
}
.ui.dropdown.search-filter .search-filter__menu .search-filter__input input:focus {
  border-color: #485878;
  outline: none !important;
}
.ui.dropdown.search-filter .search-filter__scrollingmenu {
  border-top: 0;
  max-height: 160px;
}
.ui.dropdown.search-filter .search-filter__scrollingmenu .item {
  padding: 5px 10px !important;
  font-size: 14px;
  color: #485878;
}
.ui.dropdown.search-filter .search-filter__scrollingmenu .item:hover {
  background-color: #F7F7F7;
}
.ui.dropdown.keyword-filter {
  width: 100%;
  border: 1px solid #C1C1C1;
  background-color: #F7F7F7;
  padding: 6px 5px 4px 10px;
  border-radius: 0;
  font-size: 14px;
}
.ui.dropdown.keyword-filter .default.text {
  color: #979797;
  margin-left: 0;
}
.ui.dropdown.keyword-filter .dropdown.icon {
  display: none;
}
.ui.dropdown.keyword-filter .label {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px 4px 5px !important;
  line-height: 15px;
  margin: 2px 5px 2px 2px;
  background-color: #fff;
  border: 1px solid #C1C1C1;
  border-radius: 3px;
  box-shadow: none !important;
  color: #485878;
  display: inline-flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
}
.ui.dropdown.keyword-filter .label .delete.icon {
  opacity: 1;
  margin: 0 5px 0 0;
  line-height: 15px;
  z-index: 3;
  cursor: pointer;
}
.ui.dropdown.keyword-filter .label .delete.icon:before {
  content: "\f0156";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EB4765;
  margin: 0;
}
.ui.dropdown.keyword-filter.active.dropdown {
  border-color: #C1C1C1;
  background-color: #F7F7F7;
}
.ui.dropdown.keyword-filter.active.dropdown .menu {
  border-color: #C1C1C1;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.ui.dropdown.keyword-filter.active.dropdown .menu .item {
  padding: 5px 10px !important;
  font-size: 14px;
  color: #485878;
}
.ui.dropdown.keyword-filter.active.dropdown .menu .item:hover {
  background-color: #F7F7F7;
}

.cv-adb-td {
  border: 1px solid #666666;
  padding-left: 5px;
}

.table-as {
  color: #485878;
}
.table-as thead tr th {
  border-top: 0;
  border-bottom: 1px solid #485878;
  font-weight: 700;
  font-size: 14px;
}
.table-as thead tr th:first-child {
  padding-left: 0;
}
.table-as tbody tr td {
  border-color: #DDDDDD;
}
.table-as tbody tr td:first-child {
  padding-left: 0;
}
.table-as tbody tr td:last-child {
  padding-right: 0;
}
.table-as--asociated-user {
  font-size: 16px;
}
.table-as--asociated-user thead tr th {
  min-width: 120px;
}
.table-as--asociated-user thead tr th:first-child {
  padding-left: 0;
  min-width: 60px;
}
.table-as--asociated-user tbody tr td .material-icons {
  font-size: 22px;
}
.table-as--asociated-user tbody tr td:first-child {
  font-weight: 700;
}
.table-as--asociated-user tbody tr td:last-child {
  width: 200px;
  text-align: right;
}
.table-as--asociated-user .asociated-user__action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.table-as--asociated-user .asociated-user__action a {
  margin-right: 10px;
}
.table-as--asociated-user .asociated-user__action a:last-child {
  margin-right: 0;
}
.table-as--project-detail {
  font-size: 14px;
}
.table-as--project-detail thead tr th {
  border-bottom: 0;
  padding: 7px;
}
.table-as--project-detail tbody tr td {
  vertical-align: middle;
  padding: 7px;
}
.table-as--project-detail tbody tr td:first-child {
  min-width: 200px;
  font-size: 16px;
}
.table-as--project-detail tbody tr td:last-child {
  min-width: 100px;
}
.table-as--project-detail tbody tr:first-child td {
  border-top: 0;
}

.tab-search .nav-tabs {
  border-bottom: none;
}
.tab-search .nav-tabs .nav-item.show .nav-link, .tab-search .nav-tabs .nav-link.active {
  background-color: #485878;
  color: #fff;
}
.tab-search .nav-link {
  color: #485878;
}
.tab-search__item {
  padding-left: 7px;
  padding-right: 7px;
  margin-top: 7px;
}
.tab-search__item.active .tab-search__link {
  background-color: #485878;
  color: #fff;
}
.tab-search__item.active .tab-search__link .icon-circle {
  background-color: #EB4765;
}
.tab-search__item:hover .icon-circle {
  background-color: #EB4765;
}
.tab-search__link {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 8px;
}
.tab-search__link-max {
  max-width: 100% !important;
}
.tab-search__link.active {
  background-color: #485878;
  color: #fff;
}
.tab-search__link.active .icon-circle {
  background-color: #EB4765;
}
@media (max-width: 1199.98px) {
  .tab-search__link {
    flex: 0 0 47% !important;
  }
}
@media (max-width: 991.98px) {
  .tab-search__link {
    font-size: 14px;
  }
}
.tab-search__link .icon-circle {
  background-color: #485878;
  color: #fff;
  margin-right: 7px;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  max-width: 47px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .tab-search__link .icon-circle {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    max-width: 35px;
  }
}
.tab-search__link .icon-circle i {
  font-size: 24px;
  line-height: 47px;
}
@media (max-width: 991.98px) {
  .tab-search__link .icon-circle i {
    font-size: 18px;
    line-height: 35px;
  }
}

.icaMatching {
  margin-top: 20px;
  padding: 20px;
}

.icaMatching-item {
  padding: 2px 5px;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  margin: 2px 2px;
  display: inline-block;
  color: #FF6666;
  font-size: 14px;
}
.icaMatching-item--isLocal {
  color: #6685FF;
}

.info-hover {
  cursor: pointer;
  padding: 0px 2px;
  display: inline-block;
}
.info-hover--positionAbsTR {
  position: absolute;
  right: 50px;
}
.info-hover .infoTip {
  background-color: #485878;
  color: #fff;
  z-index: 999;
  max-width: 500px;
  height: auto;
  word-wrap: break-word;
  overflow: overlay;
  white-space: normal;
  padding: 10px;
  position: absolute;
  display: none;
}
@media (max-width: 991.98px) {
  .info-hover .infoTip {
    left: -200px;
  }
}
.info-hover:hover .infoTip {
  display: block;
}

.busopSearch {
  max-height: 280px;
}
.busopSearch .busopSearch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .busopSearch .busopSearch__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .busopSearch .busopSearch__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .busopSearch .busopSearch__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.busopSearch .busopSearch__grid:has(.busopSearch__item) .no-data {
  display: none;
}
.busopSearch .busopSearch__grid:not(:has(.busopSearch__item)) {
  grid-template-columns: 1fr;
}
.busopSearch__link .busopSearch__type-toolbar {
  display: none;
}
.busopSearch__item {
  position: relative;
  padding: 2px 5px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  height: 70px;
}
.busopSearch__item:hover, .busopSearch__item--selected {
  box-shadow: 0 0 8px 4px rgb(72, 88, 120);
}
.busopSearch__type-name {
  flex: 0 0 80%;
  max-width: 80%;
  font-size: 14px;
  font-weight: 700;
}
.busopSearch__type-name a {
  display: inline-block;
  width: 100%;
  max-width: 100%;
}
.busopSearch__type-toolbar {
  max-width: 30%;
  flex: 10 0 20%;
  text-align: right;
}
.busopSearch__type-toolbar .mdi {
  color: #485878;
}
.busopSearch__type-toolbar .mdi-cog {
  font-size: 16px;
}
.busopSearch__type-toolbar .dropdown-toggle {
  border: 0;
  background-color: #fff;
  color: #485878;
}
.busopSearch__type-toolbar .dropdown-toggle::after {
  margin-top: 6px;
}
.busopSearch__type-toolbar .isPrivateIcon::before {
  content: "\f06d1";
}
.busopSearch__type-toolbar .isPrivate--open .isPrivateIcon::before {
  content: "\f06d0";
}
.busopSearch__type-toolbar .toolbar-item {
  display: inline-block;
  vertical-align: top;
}
.busopSearch__type-type {
  font-size: 12px;
}

.saveSearchModal .saveSearchModal__bsc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 12px;
}
.saveSearchModal .saveSearchModal__bsc-more span {
  cursor: pointer;
}
.saveSearchModal #btnSaveSearch {
  width: 150px;
}

.searchManagement__createNew {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .searchManagement__createNew {
    position: relative;
  }
}
.searchManagement__createNew--hide {
  display: none;
}
.searchManagement__details .box--shadow {
  display: none;
}
.searchManagement__details .box--shadow:has(> section) {
  display: block;
}

#editSearchItem .modal-dialog {
  max-width: 900px !important;
}

﻿ .public-dta_header {
  transform: translateX(30%) translateY(-20%);
  height: auto;
  top: auto;
  max-width: 100% !important;
}
.shared-faq .faqPanel {
  display: none;
}
.shared-faq .faqPanel--active {
  display: block;
}
@media (max-width: 1199.98px) {
  .shared-faq .tab-search__link {
    max-width: 100% !important;
  }
}

.steps {
  display: none;
}
.steps--active {
  display: block;
}

.project-vacancies {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.project-vacancies__header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .project-vacancies__header .project-vacancies__type--status, .project-vacancies__header .project-vacancies__type--date {
    display: none;
  }
}
.project-vacancies__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.project-vacancies__body {
  width: 100%;
}
.project-vacancies__type {
  font-size: 14px;
  padding-right: 10px;
  flex: 0 0 10%;
  max-width: 10%;
  line-height: 18px;
}
.project-vacancies__type--name {
  flex: 0 2 40%;
  max-width: 40%;
}
.project-vacancies__type--download {
  flex: 0 1 20%;
  max-width: 20%;
}
.project-vacancies__type--status {
  flex: 0 0 20%;
  max-width: 20%;
}
.project-vacancies__type--date {
  flex: 0 0 10%;
  max-width: 10%;
}
@media (max-width: 991.98px) {
  .project-vacancies__type {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.email-alert-schedule__weekly #daySelect {
  display: block !important;
}
.email-alert-schedule__weekly #detailsSection {
  display: none !important;
}
.email-alert-schedule__unsubscribe .email-alert-schedule__details {
  display: none;
}

.scoring__average {
  width: 200px;
  height: 20px;
  border: 1px black solid;
}
.scoring__average-bar {
  width: 200px;
  height: 18px;
  background-color: #EB4765;
  border-right: 1px lightgrey solid;
}
.scoring__average-value {
  margin: 2px 20px;
}
.scoring__average-clearfix {
  margin-bottom: 8px;
}

.scoringLegend {
  height: 90%;
}

.review {
  max-height: 2000px;
  overflow-y: scroll;
}

#cv-details .card {
  color: #485878 !important;
}

.market-analysis__header {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .market-analysis:not(.top-expert) .market-analysis__header .market-analysis__type {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .market-analysis.top-expert .market-analysis__header .market-analysis__type {
    display: none;
  }
}
.market-analysis__item {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .market-analysis__item {
    border-bottom: 1px solid #C1C1C1;
  }
}
.market-analysis__type {
  flex: 0 0 5%;
  max-width: 5%;
}
.market-analysis:not(.top-expert) .market-analysis__type-col-1 {
  flex: 0 0 50%;
  max-width: 50%;
}
.market-analysis:not(.top-expert) .market-analysis__type-col-2, .market-analysis:not(.top-expert) .market-analysis__type-col-3 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767.98px) {
  .market-analysis:not(.top-expert) .market-analysis__type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .market-analysis:not(.top-expert) .market-analysis__type:not(.market-analysis:not(.top-expert) .market-analysis__type-col-0) {
    padding-left: 20px;
  }
  .market-analysis:not(.top-expert) .market-analysis__type:not(.market-analysis:not(.top-expert) .market-analysis__type-col-0) .market-analysis__value {
    padding: 10px;
  }
  .market-analysis:not(.top-expert) .market-analysis__type-col-2, .market-analysis:not(.top-expert) .market-analysis__type-col-3 {
    padding-top: 5px;
  }
}
.market-analysis.top-expert .market-analysis__type-col-1 {
  flex: 0 0 27%;
  max-width: 27%;
}
.market-analysis.top-expert .market-analysis__type-col-2 {
  flex-grow: 1;
  max-width: 100%;
  padding-right: 10px;
}
.market-analysis.top-expert .market-analysis__type-col-3 {
  flex: 0 0 13%;
  max-width: 13%;
}
@media (max-width: 991.98px) {
  .market-analysis.top-expert .market-analysis__type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .market-analysis.top-expert .market-analysis__type:not(.market-analysis.top-expert .market-analysis__type-col-0) {
    padding-left: 20px;
  }
  .market-analysis.top-expert .market-analysis__type:not(.market-analysis.top-expert .market-analysis__type-col-0) .market-analysis__value {
    padding: 10px;
  }
  .market-analysis.top-expert .market-analysis__type-col-2, .market-analysis.top-expert .market-analysis__type-col-3 {
    padding-top: 5px;
  }
}

.project-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .project-timeline {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 100px;
  }
}
.project-timeline__section {
  margin: 10px;
  background: #fff;
  border: none;
  color: #485878;
  border-radius: 10px;
}
.project-timeline__item {
  font-size: 15px;
  line-height: 13px;
  padding: 7px 15px;
  margin-left: 15px;
}
.project-timeline__item--header {
  font-weight: 900;
  font-size: 16px;
}
.project-timeline__item.current, .project-timeline__item:hover {
  background: #eae9ed !important;
}
.project-timeline__item.current a {
  color: #EB4765;
}
.project-timeline .hr {
  border-top: 2px solid #485878;
  margin-left: 15px;
}

.document-section__header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 20px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .document-section__header {
    display: none;
  }
}
.document-section__item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: top;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .document-section__item {
    border-bottom: 1px solid #C1C1C1;
    padding-bottom: 10px;
  }
}
.document-section__type {
  flex: 0 0 20%;
  max-width: 20%;
}
.document-section__type-name {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .document-section__type {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .document-section__type-name {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 5px;
  }
}

.sub-projects__header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.sub-projects__item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.sub-projects__type-title {
  flex: 0 0 80%;
  max-width: 80%;
}
.sub-projects__type-icon {
  flex: 30px;
  max-width: 30px;
}
.sub-projects__type-published {
  flex: 1;
}

.user-admin__header {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
}
@media (max-width: 991.98px) {
  .user-admin__header {
    display: none;
  }
}
.user-admin__item {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}
.user-admin__type {
  flex: 0 0 20%;
  max-width: 20%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.user-admin__type-id {
  flex: 0 0 10%;
  max-width: 10%;
}
@media (max-width: 991.98px) {
  .user-admin__type-id {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.user-admin__type-status {
  flex: 0 0 10%;
  max-width: 10%;
}
.user-admin__type-action {
  flex: 1;
  text-align: right;
}
@media (max-width: 991.98px) {
  .user-admin__type {
    flex: 0 0 50%;
    max-width: 50%;
    padding-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .user-admin__type-action {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    line-height: 45px;
  }
}
.user-admin__icons {
  padding: 0 3px;
  cursor: pointer;
}

#newProfile .text {
  padding: 0 60px;
}
#newProfile .manualSpecify {
  display: none;
}
#newProfile .manualSpecify--open {
  display: block;
}

.required-languages__header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: #485878;
  text-decoration: underline;
}
.required-languages__item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 4px;
}
.required-languages__type {
  flex: 0 0 25%;
  max-width: 25%;
}

.language--not-valid {
  border-color: #a81616 !important;
}

.interest {
  background-color: #F2F2F2;
  border: 1px solid #C1C1C1;
  display: flex;
  margin-bottom: 10px;
}
.interest__item {
  position: relative;
}
.interest__item-input {
  position: absolute;
  top: 4px;
}
.interest__item-text {
  margin-left: 20px;
  line-height: 18px;
  font-size: 14px !important;
}
.interest__category {
  flex: 0 0 30%;
  max-width: 30%;
  min-height: 300px;
  padding: 5px;
}
.interest__category-item {
  margin: 5px;
  cursor: pointer;
}
.interest__category-header {
  font-size: 16px;
  font-weight: 600;
}
.interest__category-number {
  top: -2px;
  position: relative;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #EB4765;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.interest__category ul {
  padding: 10px;
  margin-bottom: 0;
}
.interest__category ul li {
  padding-bottom: 5px;
}
.interest__category ul li .interest-category__link {
  font-weight: 600;
  font-size: 16px;
}
.interest__category ul li .interest-category__number {
  top: -2px;
  position: relative;
  display: none;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #EB4765;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.interest__category ul li.active .interest-category__number {
  display: inline-block;
}
.interest__list {
  flex: 0 0 70%;
  max-width: 70%;
  display: flex;
  flex-direction: column;
}
.interest__list .form-control {
  height: 30px;
  background-color: #fff !important;
}
.interest__list .options {
  display: flex;
  flex-wrap: wrap;
}
.interest__list .options__item {
  flex: 1 0 auto;
}
.interest__list .interest-list__wrapper {
  position: relative;
  height: 100%;
  margin-left: 10px;
  border-left: 1px solid #C1C1C1;
  border-top: 1px solid #C1C1C1;
}
.interest__list .interest-list__wrapper-inner {
  position: absolute;
  background-color: #fff;
  padding: 0 10px 15px 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.interest__list .interest-list__category {
  padding-top: 15px;
}
.interest__list .interest-list__category:last-child {
  margin-bottom: 0px;
}
.interest__list .interest-list__category .unSection, .interest__list .interest-list__category .euSection {
  padding: 8px 0;
  padding-left: 20px;
}

.trainingPills-type {
  border: 1px solid black;
  padding: 5px 10px;
}
.trainingPills-type__1 {
  background-color: green;
}
.trainingPills-type__2 {
  background-color: lightblue;
}
.trainingPills__header {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.trainingPills__item {
  padding: 10px 20px;
  min-height: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.trainingPills__type {
  font-size: 14px;
  padding-right: 10px;
  max-width: 10%;
  line-height: 18px;
  flex: 0 0 10%;
  max-width: 10%;
}
.trainingPills__type-title {
  flex: 0 0 45%;
  max-width: 45%;
}
.trainingPills__type-description {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 20%;
}
.trainingPills__type-image {
  flex: 0 0 20%;
  max-width: 20%;
}
.trainingPills__type-image img {
  border: 1px solid rgba(221, 221, 221, 0.8666666667);
  width: 200px;
  margin-right: 15px;
}
.trainingPills__item--notActive .trainingPills__type-image {
  opacity: 0.3;
}
.trainingPills__type-remaining {
  text-align: center;
}
.trainingPills__type-link {
  flex: 0 0 15%;
  max-width: 15%;
  opacity: 1 !important;
}
.trainingPills__type-link .btn {
  font-size: 14px !important;
}
.pills-list.purchase-mode .trainingPills__item--notActive .trainingPills__type-link {
  display: none;
}
@media (max-width: 991.98px) {
  .trainingPills__type-link {
    flex: 100%;
    max-width: 100%;
  }
}
.trainingPills__type-check {
  display: none;
  opacity: 1 !important;
}
.pills-list.purchase-mode .trainingPills__item--notActive .trainingPills__type-check {
  display: inline-block;
}
.trainingPills__submit {
  display: none;
}
.pills-list.purchase-mode .trainingPills__submit {
  display: block;
}
.trainingPills .mediabutton-play {
  color: #EB4765;
  font-size: 60px;
}
.trainingPills .mediabutton-pause {
  color: #485878;
  font-size: 50px;
}
.trainingPills .mediabutton:hover {
  cursor: pointer;
}
.trainingPills .modal-as .sub-text {
  padding: 0 10%;
}
.trainingPills .modal-as .modal-body {
  padding: 0 10%;
}
.trainingPills .modal-as .pills-to-add {
  padding-left: 50px;
}

.training-portfolio-fees {
  width: 100%;
  text-align: left;
}
.training-portfolio-fees tr, .training-portfolio-fees td {
  border: 1px solid #DDDDDD;
  background: #fff;
  padding: 5px;
}
.training-portfolio-fees__name {
  width: 30%;
}
.training-portfolio-fees__price {
  width: 50%;
}
.training-portfolio-fees__discount {
  width: 70%;
}

.training-pill .training-pill-type {
  font-size: 16px;
  border: 1px solid black;
  margin: 6px 10px;
  padding: 5px 10px;
}
.training-pill .training-pill-type__1 {
  background: lightblue;
}
.training-pill .training-pill-type__2 {
  background: lightblue;
}
.training-pill .training-pill-type__Fundamental {
  background: lightyellow;
}
.training-pill .training-pill-type__Advanced {
  background: lightyellow;
}
.training-pill--showrequest .training-pill__request {
  display: none;
}
.training-pill__submitcancel {
  display: none;
}
.training-pill--showrequest .training-pill__submitcancel {
  display: block;
}
.training-pill__item.added .training-pill__actions-add {
  display: none;
}
.training-pill__item.added .training-pill__actions-remove {
  display: block;
}
.training-pill__actions {
  display: none;
}
.training-pill--showrequest .training-pill__actions {
  display: block;
}
.training-pill__actions-remove {
  display: none;
}

.live-trainings .card-faq__header {
  position: relative;
}
.live-trainings__actions-free {
  position: absolute;
  top: -13px;
  right: -110px;
  border: 1px solid #EB4765;
  padding: 0px 5px;
  color: #EB4765;
  background: yellow;
  width: 100px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .live-trainings__actions-free {
    font-size: 12px;
    top: -23px;
    right: -90px;
    width: 60px;
  }
}

#search-page.projectvacancies .search-input-group {
  display: none;
}

.organisation-filter {
  display: none;
}
#search-page.organisations .organisation-filter {
  display: block;
}

.project-filter {
  display: none;
}
#search-page.project .project-filter {
  display: block;
}

.dtaScheduleImage {
  display: none;
}
.dtaScheduleImage--selected {
  display: block;
}

.reload-data {
  display: none;
}
.reload-data--open {
  display: block;
}

.shortlisted-companies__type {
  display: flex;
  flex-wrap: wrap;
  line-height: 23px;
  margin-top: 10px;
  padding-left: 20px;
}
.shortlisted-companies__type-index {
  flex: 0 0 2%;
  max-width: 2%;
}
.shortlisted-companies__type-name {
  flex: 0 0 90%;
  max-width: 90%;
}

/*# sourceMappingURL=style.css.map */
