@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v22-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v22-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v22-latin_latin-ext-700.woff2') format('woff2');
}
:root {
  font-size: 62.5%;
}
@media only screen and (max-width: 479px) {
  html {
    overflow-x: hidden;
  }
}
body {
  position: relative;
  background: #000025;
  overflow-x: hidden;
  margin: auto;
  display: block;
  color: #000000;
  font-family: 'Poppins';
  font-size: 16px;
  /*musí zustat*/
  height: 100vh;
}
body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg.png') no-repeat center center fixed;
  z-index: 0;
}
p {
  font: 400 1.6rem/2.4rem 'Poppins';
  color: #000025;
}
h1 {
  font: 700 4.4rem/5.6rem 'Poppins';
  color: #000025;
}
h2 {
  font-family: 'Poppins';
  font-weight: 700;
  color: #000000;
}
h3 {
  font-family: 'Poppins';
  font-weight: 700;
  color: #000000;
}
label {
  font-family: 'Poppins';
  font-weight: 700;
  color: #000000;
}
ul {
  list-style-type: none;
}
a {
  color: #c621cc;
  text-decoration: none;
}
a:hover {
  color: #7f0b85;
  text-decoration: none;
}
b,
strong {
  font-weight: 700;
}
.uk-form-label {
  font-size: 16px;
}
.fxw {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.abcen {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.fx {
  display: -webkit-box;
  display: flex;
}
.fxi {
  display: -webkit-inline-box;
  display: inline-flex;
}
.fxc {
  -webkit-box-pack: center;
  justify-content: center;
}
.fxa {
  -webkit-box-align: center;
  align-items: center;
}
.fxcol {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.fxspace {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.fxe {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.time {
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.shadow {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  font: 500 1.6rem/2rem 'Poppins';
  color: #000025;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: -3px;
  width: 20px;
  height: 20px;
  border: 2px solid #7f0b85;
  background: #ffffff;
  border-radius: 0px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: -3px;
  width: 20px;
  height: 20px;
  border: 2px solid #7f0b85;
  background: #7f0b85;
  border-radius: 0px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: -1px;
  left: 5px;
  font-size: 17px;
  line-height: 1.2;
  color: #ffffff;
  transition: all 0.2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #999999;
  background-color: #dddddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999999;
}
[type="checkbox"]:disabled + label {
  color: #aaaaaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 2px solid #7f0b85;
}
/*checkbox*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #000025;
}
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #000025;
}
::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, var(--border-color, #ffffff)), color-stop(0.86, var(--border-color, #c621cc)));
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
}
.form-label fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-label fieldset span.error {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font: 400 12px/13px 'Poppins';
  color: #ce1419;
}
.form-label fieldset label {
  position: absolute;
  top: 1.1rem;
  left: 1.8rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
  font-size: 1.3rem;
  color: #a7a7a7;
}
.form-label fieldset input:focus {
  outline: 0;
  background: #000025;
}
.form-label fieldset textarea:focus {
  outline: 0;
  background: #000025;
}
.form-js-label fieldset input[data-empty="false"] + label,
.form-js-label fieldset input:focus + label,
.form-js-label fieldset input[data-empty="false"] + span + label,
.form-js-label fieldset input:focus + span + label {
  font-size: 12px '!important';
  line-height: 1.4rem '!important';
  -webkit-transform: translate3d(0, -3rem, 0);
  transform: translate3d(0, -3rem, 0);
  padding: 3px;
  border-radius: 3px;
}
.form-js-label fieldset textarea[data-empty="false"] + label,
.form-js-label fieldset textarea:focus + label,
.form-js-label fieldset textarea[data-empty="false"] + span + label,
.form-js-label fieldset textarea:focus + span + label {
  font-size: 12px '!important';
  line-height: 1.4rem '!important';
  -webkit-transform: translate3d(0, -3rem, 0);
  transform: translate3d(0, -3rem, 0);
  padding: 3px;
  border-radius: 3px;
}
.form-js-label fieldset input::placeholder-shown + label {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.form-js-label fieldset input:not(:placeholder-shown):valid + label {
  font-size: 12px '!important';
  line-height: 1.4rem '!important';
  -webkit-transform: translate3d(0, -2rem, 0);
  transform: translate3d(0, -2rem, 0);
  padding: 3px;
  border-radius: 3px;
}
.button {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font: 400 1.6rem/2rem 'Poppins';
  color: #ffffff;
  text-transform: uppercase;
  background: #c621cc;
  border: 0;
  height: 3.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  border-radius: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  padding: 0 2rem;
  margin: 0;
}
.button:hover {
  background: #7f0b85;
  color: #ffffff;
}
.button.done {
  background: #29a853;
  color: #ffffff;
}
.button.done:hover {
  background: #29a853;
  color: #ffffff;
}
.container {
  max-width: 97%;
  width: 100%;
  margin: auto;
}
section.login {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  height: 100vh;
}
section.login > picture {
  display: block;
  height: 100%;
}
section.login > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.login .container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
section.login .container .logo {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 18.1rem;
  width: 100%;
  height: 11rem;
  margin: auto;
  margin-bottom: 3rem;
}
section.login .container .logo > picture {
  display: block;
  height: 100%;
}
section.login .container .logo > picture > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.login .container .loginPanel {
  position: relative;
  width: 100%;
  max-width: 39rem;
  background: #f9f9f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3rem 4.7rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  margin: auto;
}
section.login .container .loginPanel h1 {
  font: 700 2rem/3rem 'Poppins';
  color: #000025;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}
section.login .container .loginPanel form fieldset {
  display: block;
  margin-bottom: 2rem;
}
section.login .container .loginPanel form fieldset input {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
  border: 0;
  border-bottom: 1px solid #c621cc;
  background: transparent;
  outline: 0;
  padding: 1rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
section.login .container .loginPanel form fieldset label {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
}
section.login .container .loginPanel form p {
  text-align: center;
}
footer .end {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 1;
}
footer .end p {
  font: 400 1.4rem/2rem 'Poppins';
  color: #ffffff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
footer .end p a {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 2.5rem;
  width: 100%;
  height: 2.7rem;
  top: 1rem;
  display: inline-block;
  text-decoration: none '!important';
  margin-left: 0.5rem;
}
footer .end p a > picture {
  display: block;
  height: 100%;
}
footer .end p a > picture > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.topPanel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2.8rem 0 2rem;
  z-index: 3;
}
section.topPanel .container .uk-grid > div .logo {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 18.1rem;
  width: 100%;
  height: 11rem;
}
section.topPanel .container .uk-grid > div .logo > picture {
  display: block;
  height: 100%;
}
section.topPanel .container .uk-grid > div .logo > picture > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.topPanel .container .uk-grid > div .logoutPanel a {
  position: relative;
  font: 400 1.4rem/2rem 'Poppins';
  color: #ffffff;
  text-decoration: none '!important';
}
section.topPanel .container .uk-grid > div .logoutPanel a i {
  display: inline-block;
  font-size: 2rem;
  color: #ffffff;
  margin-right: 1rem;
}
section.topPanel .container .uk-grid > div .logoutPanel a span {
  position: relative;
  display: inline-block;
}
section.topPanel .container .uk-grid > div .logoutPanel a span:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  section.topPanel .container .uk-grid > div .logoutPanel a span {
    display: none;
  }
}
section.topPanel .container .uk-grid > div .logoutPanel a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 479px) {
  section.topPanel .container .uk-grid > div:last-of-type {
    -webkit-box-align: start;
    align-items: flex-start;
  }
}
section.extractProjects {
  height: 78vh;
}
section.extractProjects .container {
  height: 100%;
}
section.extractProjects .container .panel {
  position: relative;
  background: #f9f9f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4rem 5rem;
  -webkit-border-radius: 4.7rem;
  -moz-border-radius: 4.7rem;
  border-radius: 4.7rem;
  height: 100%;
  overflow: auto;
}
@media only screen and (max-width: 479px) {
  section.extractProjects .container .panel {
    padding: 4rem 2rem;
  }
}
section.extractProjects .container .panel h1 {
  font: 700 3rem/4.5rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 4rem;
}
section.extractProjects .container .panel .uk-grid > div .projects {
  position: relative;
  z-index: 1;
}
section.extractProjects .container .panel .uk-grid > div .projects .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.5rem 2.5rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  margin-bottom: 2rem;
  background: #ffffff;
}
@media only screen and (max-width: 479px) {
  section.extractProjects .container .panel .uk-grid > div .projects .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
section.extractProjects .container .panel .uk-grid > div .projects .row h3 {
  font: 700 1.6rem/2.4rem 'Poppins';
  color: #000025;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
section.extractProjects .container .panel .uk-grid > div .projects .row .col a {
  position: relative;
  display: inline-block;
  text-decoration: none '!important';
}
section.extractProjects .container .panel .uk-grid > div .projects .row .col a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #c621cc;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  z-index: 1;
}
section.extractProjects .container .panel .uk-grid > div .projects .row .col a:hover:before {
  width: 100%;
}
section.extractProjects .container .panel .uk-grid > div .projects .row .col a.delete:before {
  content: none;
}
section.extractProjects .container .panel .uk-grid > div .projects .row .col a i {
  color: #c621cc;
  font-size: 2rem;
}
section.extractProjects .container .panel .uk-grid > div .projects .add {
  text-align: right;
}
section.extractProjects .container .panel .uk-grid > div .contactPanel {
  position: relative;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2rem 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
section.extractProjects .container .panel .uk-grid > div .contactPanel h2 {
  font: 700 2rem/3rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 2rem;
}
section.extractProjects .container .panel .uk-grid > div .contactPanel p {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 1rem;
  border-bottom: 1px solid #c621cc;
  margin-top: 0;
  margin-bottom: 2rem;
}
section.extractProjects .container .panel .uk-grid > div .contactPanel p.end {
  text-align: right;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
section.extractProjects .container .panel:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55.8rem;
  height: 45rem;
  background: url('../images/bird.png') no-repeat center center;
  z-index: 0;
}
.uk-modal-dialog {
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
}
.uk-modal-dialog form fieldset {
  display: block;
  margin-bottom: 2rem;
}
.uk-modal-dialog form fieldset input {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
  border: 0;
  border-bottom: 1px solid #c621cc;
  background: transparent;
  outline: 0;
  padding: 1rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.uk-modal-dialog form fieldset input:focus,
.uk-modal-dialog form fieldset input:active,
.uk-modal-dialog form fieldset input:hover {
  -webkit-box-shadow: none;
  outline: 0;
  background: transparent;
}
.uk-modal-dialog form fieldset label {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
}
section.detailProject {
  height: 78vh;
}
section.detailProject .container {
  height: 100%;
}
section.detailProject .container .menu {
  position: relative;
  max-width: 50rem;
  top: -8.699999999999999rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 0;
  margin: auto;
  margin-bottom: 0;
  z-index: 4;
}
@media only screen and (max-width: 479px) {
  section.detailProject .container .menu {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}
section.detailProject .container .menu li {
  margin: 0 1rem;
}
section.detailProject .container .menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none '!important';
  font: 400 1.4rem/2rem 'Poppins';
  color: #ffffff;
}
section.detailProject .container .menu li a i {
  display: inline-block;
  font-size: 2rem;
  color: #ffffff;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  section.detailProject .container .menu li a span {
    display: none;
  }
}
section.detailProject .container .menu li a:hover {
  color: #c621cc;
}
section.detailProject .container .menu li a:hover i {
  color: #c621cc;
}
section.detailProject .container .menu li.uk-active a {
  color: #c621cc;
}
section.detailProject .container .menu li.uk-active a i {
  color: #c621cc;
}
section.detailProject .container .uk-switcher {
  position: relative;
  background: #f9f9f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4rem 5rem;
  -webkit-border-radius: 4.7rem;
  -moz-border-radius: 4.7rem;
  border-radius: 4.7rem;
  height: 100%;
  overflow: auto;
  margin-top: -2.4rem;
}
@media only screen and (max-width: 479px) {
  section.detailProject .container .uk-switcher {
    padding: 4rem 2rem;
  }
}
section.detailProject .container .uk-switcher .panel > h1,
section.detailProject .container .uk-switcher .panel h2 {
  font: 700 3rem/4.5rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel {
  position: relative;
  padding-left: 8rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 3rem;
  bottom: 0;
  margin: auto;
  width: 0.5rem;
  height: 85%;
  background: #7f0b85;
  z-index: 1;
}
@media only screen and (max-width: 360px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel:before {
    top: -7px;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.5rem 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1199px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
@media only screen and (max-width: 375px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase {
    padding: 1.5rem 1.5rem;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col {
  width: 100%;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col h3 {
  font: 700 2rem/3rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col h3 span {
  font: 400 1.4rem/3rem 'Poppins';
  color: #000025;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col p {
  font: 400 1.4rem/1.8rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col p:last-of-type {
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col:last-child {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  width: 65%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col:last-child {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col:last-child .button {
  margin-left: 1rem;
}
@media only screen and (max-width: 1199px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase .col:last-child .button {
    margin-bottom: 1rem;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: -6.7rem;
  width: 3.7rem;
  height: 3.7rem;
  background: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #7f0b85;
  z-index: 2;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase.active:after {
  content: "";
  position: absolute;
  top: 3.2rem;
  left: -6rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #7f0b85;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:nth-child(1) {
  background: #C3C1EF;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:nth-child(2) {
  background: #B9E3F8;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:nth-child(3) {
  background: #F6E5B5;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:nth-child(4) {
  background: #FCA6C8;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .phasePanel .phase:nth-child(5) {
  background: #CBF8D5;
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.5rem 2.5rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  margin-bottom: 2rem;
  background: #ffffff;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem 0;
  border-bottom: 1px solid #7f0b85;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row h3 {
  font: 700 1.6rem/2.4rem 'Poppins';
  color: #000025;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col .checkbox {
  margin-right: 1rem;
}
@media only screen and (max-width: 399px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col .checkbox {
    margin-bottom: 0.5rem;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col a {
  position: relative;
  display: inline-block;
  text-decoration: none '!important';
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #c621cc;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  z-index: 1;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col a:hover:before {
  width: 100%;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col a.delete:before {
  content: none;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row .col a i {
  color: #c621cc;
  font-size: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .listDocument .row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addDocPanel form p {
  text-align: right;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .newInfo {
  position: relative;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .newInfo .row {
  margin-bottom: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .newInfo .row h3 {
  font: 700 2rem/2.6rem 'Poppins';
  color: #000000;
  margin-top: 0;
  margin-bottom: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .newInfo .row form {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .newInfo .row form .checkbox {
  margin: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem 3rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  background: #ffffff;
  margin-bottom: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract h3 {
  font: 700 1.6rem/2.4rem 'Poppins';
  color: #000025;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col .checkbox {
  margin-right: 1rem;
}
@media only screen and (max-width: 399px) {
  section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col .checkbox {
    margin-bottom: 0.5rem;
  }
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col a {
  position: relative;
  display: inline-block;
  text-decoration: none '!important';
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #c621cc;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  z-index: 1;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col a:hover:before {
  width: 100%;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col a.delete:before {
  content: none;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .contract .col a i {
  color: #c621cc;
  font-size: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addContract {
  text-align: right;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel {
  position: relative;
  overflow: auto;
  height: 60vh;
  padding: 0 2rem 2rem 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel .row {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  background: #C3C1EF;
  margin-bottom: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel .row h3 {
  font: 700 1.6rem/2.4rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel .row p {
  font: 400 1.4rem/1.8rem 'Poppins';
  color: #000025;
  margin-top: 0;
  margin-bottom: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel .row:last-child {
  margin-bottom: 0;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .notePanel .row:nth-child(2n+0) {
  background: #CBF8D5;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset {
  display: block;
  margin-bottom: 2rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset input {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
  border: 0;
  border-bottom: 1px solid #c621cc;
  background: transparent;
  outline: 0;
  padding: 1rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset input:focus,
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset input:active,
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset input:hover {
  -webkit-box-shadow: none;
  outline: 0;
  background: transparent;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset textarea {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
  border: 0;
  border-bottom: 1px solid #c621cc;
  background: transparent;
  outline: 0;
  padding: 1rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset textarea:focus,
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset textarea:active,
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset textarea:hover {
  -webkit-box-shadow: none;
  outline: 0;
  background: transparent;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset label {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset label.button {
  position: relative;
  top: 0;
  left: 0;
  background: transparent;
  border: 1px solid #000025;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form fieldset span {
  display: block;
  margin-top: 1rem;
}
section.detailProject .container .uk-switcher .panel .uk-grid > div .addNotePanel form p {
  margin-top: 4rem;
  text-align: right;
}
section.detailProject .container .uk-switcher:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44rem;
  height: 35rem;
  background: url('../images/bird.png') no-repeat center center;
  background-size: contain;
  z-index: 0;
}
.uk-placeholder {
  border: 1px dashed #c621cc;
}
.drop-text {
  font: 400 1.4rem/2rem 'Poppins';
  color: #000025;
}
