html,
body {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
tt {
  font-family: "Anonymous Pro", monospace !important;
}
:root {
  --cy__lightgrey: #f3f6ff;
  --cy__darkgrey: #6f6f6f;
  --cy__blue: #36f;
  --cy__lightblue: #85a3ff;
  --cy__green: #0c9;
  --cy__disabled_green: rgba(0, 204, 153, 0.200);
  --cy__lightgreen: #defff7;
  --cy__red: #ff2020;
  --cy__orange: #ffc107;
  --cy__darkred: #8b0000;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.btn.btn:hover {
  background-position: right center;
}
.btn,
.btn a {
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn.login {
  margin-left: 5px;
}
.btn.login-mobile {
  margin-top: 5px;
}
.btn.spaceswitcher a {
  text-decoration: none;
  color: white;
  text-align: center;
}
.img.spaceswitcher {
  height: 27px;
  margin-top: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.btn.narrow {
  border-radius: 20px;
  padding: 6.5px 20px;
}
.btn.wide {
  border-radius: 25px;
  padding: 11.5px 20px;
}
.btn.primary {
  color: #fff;
  background-color: #36f;
  background-color: var(--cy__blue);
  background-size: 200% auto;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #36f), color-stop(50%, #36f), to(#0c9));
  background-image: linear-gradient(to right, #36f 0, #36f 50%, #0c9 100%);
}
.btn.danger {
  background-color: #ff2020;
  background-color: var(--cy__red);
}
.btn.warning {
  background-color: #ffc107;
  background-color: var(--cy__orange);
}
.btn.secondary {
  background-color: #0c9;
  background-color: var(--cy__green);
  color: #fff;
}
input {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 8px 8px;
  border-radius: 12px;
  outline: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 16px;
}
textarea {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 8px 8px;
  border-radius: 12px;
  outline: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 16px;
}
select {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 8px 8px;
  border-radius: 12px;
  outline: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 16px;
}
label.required::after {
  content: '*';
  color: inherit;
}
.cy__login_title {
  padding-bottom: 1em;
}
.cy__login label.required::after {
  content: '' !important;
  color: inherit;
}
input:focus,
input:hover {
  border: 1px solid #36f;
  border: 1px solid var(--cy__blue);
}
p.cy__err {
  color: #ff2020 !important;
  color: var(--cy__red) !important;
  height: auto !important;
}
p.cy__succ {
  color: #0c9 !important;
  color: var(--cy__green) !important;
  height: auto !important;
}
p.cy__notification {
  color: black !important;
  color: var(--cy__black) !important;
  height: auto !important;
}
h1.cy__succ {
  color: #0c9 !important;
  color: var(--cy__green) !important;
  height: auto !important;
}
select.cy__err {
  border: 1px solid #ff2020 !important;
  border: 1px solid var(--cy__red) !important;
}
textarea.cy__err {
  border: 1px solid #ff2020 !important;
  border: 1px solid var(--cy__red) !important;
}
input.cy__err {
  border: 1px solid #ff2020 !important;
  border: 1px solid var(--cy__red) !important;
}
.cy__forms label {
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
  color: #36f;
  color: var(--cy__blue);
}
label.cy__err {
  color: #ff2020 !important;
  color: var(--cy__red) !important;
}
body {
  position: relative;
}
.modal__shown {
  z-index: 25;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.modal__backdrop {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.3);
}
.modal__wrapper {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}
.modal {
  background-color: #fff;
  background-size: auto;
  box-shadow: 0px 0px 10px 5px rgba(51,102,255,0.18);
  border-radius: 12px;
  padding: 20px;
  margin: 15px;
  max-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
}
.modal.hasBackground {
  background: #f3f6ff;
  background-image: url("../img/logo_fade.png");
  background-position: 50% -160px;
}
.modal__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.modal__button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  padding: 0;
  height: 40px;
}
.modal__button__union {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  position: absolute;
}
.modal__title {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: visible;
}
.modal__title h2.highlighted {
  color: #36f;
  color: var(--cy__blue);
}
.modal__body {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
}
.modal__body .progressbar {
  margin-top: 20px;
}
.modal__body h2 {
  margin: 0;
}
.modal__body p {
  margin: 0;
}
.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y:hover > .ps__thumb-y,
.ps__thumb-y {
  background-color: #36f;
  background-color: var(--cy__blue);
}
.ps__rail-y {
  opacity: 1 !important;
}
.courses .ps__rail-y {
  margin-right: 5px;
}
.SumoSelect {
  width: 100%;
}
.SumoSelect:hover .SelectBox,
.SumoSelect:focus .SelectBox {
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18);
}
.SumoSelect .SelectBox {
  width: 100%;
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18) !important;
  border-radius: 12px;
  background-color: #fff;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.SumoSelect.open .SelectBox {
  border-radius: 12px 12px 0 0;
}
.SumoSelect .SelectBox label i {
  color: #36f;
  color: var(--cy__blue);
  background-image: none;
  margin-right: 15px;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.SumoSelect.open .SelectBox label i {
  -webkit-transform: rotateZ(180deg) rotateY(180deg);
          transform: rotateZ(180deg) rotateY(180deg);
}
.SumoSelect.open .optWrapper {
  margin-top: 10px;
  border-radius: 0 0 12px 12px;
  border: none;
  box-shadow: 0px 12px 20px 0px #336624 !important;
}

.sidebar {
  width: 25%;
  /*min-width: 250px;*/
  background-color: #defff7;
  background-color: var(--cy__lightgreen);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  /* margin-top: 30px; */
  /*border-radius: 0 12px 0 0;*/
  padding: 30px 30px 0 30px;
}

.sidebar__open {
  display: none;
}

.sidebar__close {
  display: none;
}


.sidebar.groups {
  border-radius: 0 12px 12px 0;
  padding: 0 30px 0 30px;
}

.sidebar.groups .month__title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  width: 100%;
  text-align: left;
}

.sidebar.groups h2 {
  margin-bottom: 10px;
  line-height: 28px;
}

.sidebar h2 {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
}

.sidebar .groups {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18);
  border-radius: 12px;
  padding: 20px 6px 20px 20px;
  margin: 30px 0;
  z-index: 2;
}

.sidebar .groups .grouplist {
  margin: 0;
  list-style: none;
  padding: 0;
  max-height: 250px;
  overflow: auto;
  position: relative;
}

.sidebar .groups .grouplist .group {
  margin: 5px 0;
  padding: 0;
}

.sidebar .groups .grouplist .group a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 0px;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.sidebar .groups .grouplist .group.active a {
  color: #36f;
  color: var(--cy__blue);
  margin-left: 10px;
}

@media screen and (max-width: 1400px) {
  .sidebar {
    padding: 30px 20px 0 20px;
    /*max-width: 425px;*/
  }
}

@media screen and (max-width: 1200px) {
  .sidebar .courses h2 {
    max-width: 100%;
  }
  .sidebar {
    padding: 30px 10px 0 10px;
    /*max-width: 330px;*/
  }
}

/* be careful when changing max-width, on react side tha same constant is used in the sidebar */
@media screen and (max-width: 992px) {
  .sidebar {
    position: absolute;
    left: 0;
    top: -150%;
    -webkit-transition: opacity 0.3s cubic-bezier(0.31, 0.04, 0.24, 0.99), top 0.5s cubic-bezier(0.31, 0.04, 0.24, 0.99), margin-top 0.3s linear, visibility 0.1s linear;
    transition: opacity 0.3s cubic-bezier(0.31, 0.04, 0.24, 0.99), top 0.5s cubic-bezier(0.31, 0.04, 0.24, 0.99), margin-top 0.3s linear, visibility 0.1s linear;
    z-index: 10;
    /*max-width: 100%;*/
    opacity: 0;
    padding-top: 15px;
    visibility: hidden;
    width: 100% !important;
  }
  .sidebar.open {
    top: 0;
    opacity: 1;
    margin-top: 0;
    visibility: visible;
  }
  .sidebar__open.hidden {
    display: none !important;
  }
  .sidebar__open {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #defff7;
    background-color: var(--cy__lightgreen);
    padding: 8px 12px;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    z-index: 11;
    margin-bottom: 15px;
  }
  .sidebar__open i {
    margin-left: 6px;
  }
  .sidebar.groups {
    height: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sidebar__close {
    display: block;
  }
  .sidebar__close .btn {
    color: #fff;
    padding: 11.5px 20px;
  }
  .sidebar__close .btn i {
    margin-left: 12px;
  }
}

.resizer {
  background-color: #f3f6ff;
}

.resizer[data-direction='horizontal'] {
  cursor: col-resize;
  height: auto;
  width: 4px;
  min-width: 4px;
}

.resizer[data-direction='vertical'] {
  cursor: row-resize;
  height: 4px;
  min-height: 4px;
  width: auto;
}

.toggler[state='off']:after {
  content: ">" !important;
}

.toggler[state='on']:after {
  content: "<"  !important;
}

.sidebar_toggler {
  width: 24px;
  height: 24px;
  position: relative;
  top: 20px;
  left: -12px;
  border: 53px;
  background-color: white;
  border-radius: var(--ds-border-radius-circle, 50%);
  box-shadow: rgba(9, 30, 66, 0.08) 0px 0px 0px 1px, rgba(9, 30, 66, 0.08) 0px 2px 4px 1px;
  outline: 0px;
  transition: background-color 100ms linear 0s, color 100ms linear 0s, opacity 350ms cubic-bezier(0.2, 0, 0, 1) 0s;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: black;
  color: var(--cy__black);
  z-index: 10;
}

.sidebar_toggler:hover {
  background-color: #f3f6ff;
  background-color: var(--cy__lightgrey);
  color: #36f !important;
  color: var(--cy__blue);
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255,255,255,0.851);
  z-index: 1;
  display: none;
}
.loader.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 64px;
  text-align: center;
}
.lds-ellipsis div {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
  -webkit-transition: background-color 0.6s ease-out;
  transition: background-color 0.6s ease-out;
}
.lds-ellipsis div:nth-child(1) {
  left: 0;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 0;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 35px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 70px;
  -webkit-animation: lds-ellipsis4 0.6s infinite;
          animation: lds-ellipsis4 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #36f;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #36f;
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #36f;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #36f;
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #36f;
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
    background-color: #1b95cf;
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #36f;
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
    background-color: #1b95cf;
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #1b95cf;
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
    background-color: #0c9;
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #1b95cf;
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
    background-color: #0c9;
  }
}
@-webkit-keyframes lds-ellipsis4 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #0c9;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #0c9;
  }
}
@keyframes lds-ellipsis4 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #0c9;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #0c9;
  }
}
.progressbar {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;

  & .label {
    display: flow;
    width: 100%;
  }

  & .status {
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    float: left;
  }

  & .percentage {
    font-weight: 500;
    line-height: 21px;
    text-align: right;
    float: right;
  }

  & .progress {
    width: 100%;
    height: 10px;
    background: #eaeaea;
    box-shadow: inset 0px 2px 4px rgba(0,0,0,0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }

  & .progress .line {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 34%;
    background-color: #0c9;
    background-color: var(--cy__green);
    -webkit-transition: 0.3s width ease-in-out;
    transition: 0.3s width ease-in-out;
  }
}


.notfound__title {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 144px;
  line-height: 150px;
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #36f;
}
.notfound__description {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  color: #36f;
}
.notfound__description_small {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
/* identical to box height */
  margin: 0;
  text-align: center;
  color: #000;
}
.home__link > span {
  color: white;
}

.home__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.notfound__root {
  background-image: url("../img/notfound_coder.svg");
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 295px;
}
@media screen and (max-width: 768px) {
  .notfound__title {
    padding-top: 25px;
    font-size: 100px;
    line-height: 110px;
  }
  .notfound__description {
    line-height: 28px;
    font-size: 20px;
  }
  .notfound__description_small {
    font-size: 16px;
  }
  .home__link > span {
    font-size: 14px;
    line-height: 28px;
    color: white;
  }
}

.eula {
  margin: 50px 50px 0 50px;
  display: grid;
}
.eula a {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.cy__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

@-webkit-keyframes moveClouds {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-55px);
            transform: translateX(-55px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveClouds {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-55px);
            transform: translateX(-55px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveCloudsDir2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  55% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveCloudsDir2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  55% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.cy__dashboard__forms {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cy__dashboard__forms .cy__forms {
  margin-left: 150px;
  /*margin: 0 30px;*/
  margin: 0 10px 0 10px;
  position: relative;
  /*max-width: 650px;*/
  width: 100%;
}
.cy__dashboard__forms .cy__forms > h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin: 30px 0 50px;
  width: 100%;
  text-align: center;
}
.cy__dashboard__forms .cy__forms .formSelector {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 0;
  margin: 0 0 30px 0;
}
.cy__dashboard__forms .cy__forms .formSelector .formitem {
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  text-align: center;
  font-weight: 700;
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.cy__dashboard__forms .cy__forms .formSelector .formitem::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #6f6f6f;
  background-color: var(--cy__darkgrey);
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cy__dashboard__forms .cy__forms .formSelector .formitem:first-of-type::after {
  border-radius: 12px 0 0 12px;
}
.cy__dashboard__forms .cy__forms .formSelector .formitem:last-of-type::after {
  border-radius: 0 12px 12px 0;
}
.cy__dashboard__forms .cy__forms .formSelector .formitem.active {
  color: #36f;
  color: var(--cy__blue);
}
.cy__dashboard__forms .cy__forms .formSelector .formitem.active::after {
  background-color: #36f;
  background-color: var(--cy__blue);
}
.cy__dashboard__forms .cy__forms .cy__form {
  width: 100%;
  position: relative;
}
.cy__dashboard__forms .cy__forms .cy__form.hidden {
  display: none;
}
.cy__dashboard__forms .cy__forms .form__groupdata .hw {
  width: -webkit-calc(50% - 15px);
  width: calc(50% - 15px);
  position: relative;
  margin-bottom: 20px;
}
.cy__dashboard__forms .cy__forms .form__groupdata individual_row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cy__dashboard__forms .cy__forms .form__groupdata .hw input {
  width: 100%;
}
.cy__dashboard__forms .cy__forms .cy__form .divider {
  width: 100%;
  height: 2px;
  background-color: #36f;
  background-color: var(--cy__blue);
  border-radius: 12px;
  margin-bottom: 20px;
}
.cy__dashboard__forms .cy__forms .form__evaluations .evaluation {
  width: 100%;
  position: relative;
}
.cy__dashboard__forms .cy__forms .form__evaluations .evaluation h3 {
  font-size: 14px;
  line-height: 21px;
  color: #36f;
  color: var(--cy__blue);
  font-weight: 500;
  margin-bottom: 20px;
}
.cy__dashboard__forms .cy__forms .form__evaluations .evaluation .rating {
  padding: 0 16px 16px;
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 20px;
}

.cy__dashboard__forms .cy__forms .buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.cy__formsWrapper {
  /*width: 100%;*/
  width: -webkit-calc(66% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  /*
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 100px;
  */
  margin: 0px 12px 0px 12px;
}
.cy__dashboard__forms .cy__link {
/*  margin-top: 230px;
  margin: 230px 30px 0 0;*/
  margin: 0px 30px 0 0;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
}
.cy__dashboard__forms .cy__link .link {
  width: 100%;
  border-radius: 12px;
  background-color: #f3f6ff;
  background-color: var(--cy__lightgrey);
  color: #36f;
  color: var(--cy__blue);
  padding: 15px;
  /*margin-bottom: 20px;*/
  word-break: break-all;
}
.cy__dashboard__forms .cy__link .link::after {
  content: "Link copied!";
  position: absolute;
  bottom: 100%;
  left: 0;
  color: #0c9;
  color: var(--cy__green);
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cy__dashboard__forms .cy__link .link.showtooltip::after {
  opacity: 1;
}
.cy__dashboard__forms .cy__link.hidden,
.cy__dashboard__forms .cy__pdfpreview.hidden {
  display: none;
}
.cy__dashboard__forms .cy__pdfpreview {
  /*margin-left: 150px;*/
  margin-top: 30px;
  width: 915px;
  height: 710px;
  object-fit: cover;
}
.cy__dashboard__forms .cy__pdfpreview img {
  width: 100%;
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18);
}
@media screen and (max-width: 1600px) {
  .cy__dashboard__forms .cy__forms {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cy__dashboard__forms .cy__link {
    /*max-width: 260px;*/
  }
}
@media screen and (max-width: 1400px) {
  /*.cy__formsWrapper {
    margin-left: 10px;
  }*/
  .cy__dashboard__forms .cy__forms {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .cy__dashboard__forms .cy__link {
    width: 100%;
    /*margin: 0 30px 30px;*/
    margin: 0 10px 0 10px;
    /*max-width: 650px;*/
  }
  .cy__dashboard__forms .cy__link .link a {
    word-break: unset;
  }
  .cy__dashboard__forms .cy__pdfpreview {
    /*max-width: 650px;*/
    /*margin: 0 30px;*/
    margin: 0 10px 0 10px;
  }
}
@media screen and (max-width: 1200px) {
  /*.cy__formsWrapper {
    margin-left: 10px;
  }*/
}
@media screen and (max-width: 992px) {
  .cy__formsWrapper {
    width: 100%;
    margin-left: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .cy__dashboard__forms .cy__forms .formSelector {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .cy__dashboard__forms .cy__forms .formSelector .formitem {
    width: 100%;
    margin-bottom: 16px;
  }
  .cy__dashboard__forms .cy__forms .form__groupdata individual_row {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .cy__dashboard__forms .cy__forms .form__groupdata .hw {
    max-width: 100%;
    width: 100%;
  }
  .cy__dashboard__forms .cy__forms .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .cy__dashboard__forms .cy__forms {
    margin: 0 15px;
  }
  .cy__dashboard__forms .cy__link {
    margin: 0 15px 30px;
  }
  .cy__dashboard__forms .cy__pdfpreview {
    margin: 0 15px;
  }
  .cy__dashboard__forms .cy__link .link {
    word-break: break-all;
  }
}

.cy__dashboard {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url("../img/logo_fade.png");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  text-align: center;
}
.cy__dashboard h1 {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  /*color: #36f;
  color: var(--cy__blue);*/
  color: black;
  /*color: var(--cy__green);*/
  text-align: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
}
.cy__dashboard h2 {
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.cy__dashboard select {
  margin-bottom: 30px;
  width: 50%;
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18) !important;
  border-radius: 12px;
  background-color: #fff;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}


.dashboard__charts {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #defff7;
  background-color: var(--cy__lightgreen);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
}


.dashboard__charts .chart {
  width: -webkit-calc(100% / 4 - 60px);
  width: calc(100% / 4 - 60px);
  margin: 15px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 12px 50px 10px rgba(51,102,255,0.18);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
          padding: 30px 20px 0;
}

.dashboard__charts .chart p {
    margin: 0 0 30px 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}

.dashboard__charts .chart .pie {
  margin: 0 25px;
}
.chart .pie {
  position: relative;
  width: 100%;
}
.chart .pie canvas {
  width: 100%;
  height: 100%;
}
.chart .pie .count {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}
.chart .pie .count_in_chart {
  margin-top: -23px;
}
.chart .pie .count .done {
  color: #0c9;
  color: var(--cy__green);
}
.chart .pie .count .group_done {
  color: #36f;
  color: var(--cy__blue);
}
.chart .pie .count .all {
  /*color: #0c9;
  color: var(--cy__green);*/
  color: darkgray;
}
.chart .pie .innerpie__1 {
  background-color: #f3f6ff;
  background-color: var(--cy__lightgrey);
  width: 120px;
  height: 60px;
  border-radius: 80px 80px 0 0;
  background: conic-gradient(from 15deg at 50%, at 120%, #f3f6ff, #f3f6ff, #0c9, #0c9);
  background: conic-gradient(from 15deg at 50% 120%, #f3f6ff, #f3f6ff, #0c9, #0c9);
  background: conic-gradient(from 15deg at 50%, at 120%, var(--cy__lightgrey), var(--cy__lightgrey), var(--cy__green), var(--cy__green));
  background: conic-gradient(from 15deg at 50% 120%, var(--cy__lightgrey), var(--cy__lightgrey), var(--cy__green), var(--cy__green));
  position: relative;
  z-index: 2;
}


.dashboard__charts .small {
  width: -webkit-calc(100% / 7 - 30px);
  width: calc(100% / 7 - 30px);
  padding: 10px 10px 0;
  margin-top: -webkit-calc((100% / 4 - 100% / 7) - 9px);
  margin-left: 5px;
  margin-right: 5px;
}

.dashboard__charts .small p {
  margin: 0 0 5px 0;
  font-size: 12px;
}

.dashboard__charts hr {
  width: 100%;
  border: hidden;
  margin-top: 0px;
  margin-bottom: 0px;
}

.dashboard__charts .separator {
  height: 4px;
}

.dashboard__charts .lesson_progress {
  width: 100%;
  display: contents;
}

.progressbar_title {
  text-align: left;
  font-size: 14px;
  margin-bottom: 12px;
}

.progressbar {
  align-items: baseline;
  margin-bottom: 2px;
}

.progression_progressbar {
  background-color: #ddd;
  align-items: baseline;
  margin-bottom: 3px;
}

.dashboard__charts div .reward_progressbar {
  width: 80%;
  height: 10px;
}

.dashboard__charts div .dashboard_progressbar {
  width: 55%;
  height: 10px;
}

.dashboard__charts .unit {
  color: darkred;
}

.dashboard__charts .progress_indicator {
  width: 50%;
  height: 10px;
}

.dashboard__charts .done {
  color: #0c9;
}

.dashboard__charts .all {
  color: darkgray;
}

.my_progress {
  background-color: #0c9;
  height:11px;
}

.cohort_progress {
  background-color: #36f;
}

.small .pie .count {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}


.dashboard__data {
  min-height: 100vh;
  width: 100%;
  max-width: 1290px;
  padding: 30px;
  background-color: #defff7;
  background-color: var(--cy__lightgreen);
  position: relative;
  margin: 0 auto;
  border-radius: 12px;
  margin-bottom: 100px;
}

@media screen and (max-width: 992px) {
  .dashboard__charts {
    width: -webkit-calc(100% - 24px);
    width: calc(100% - 24px);
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 768px;
    margin: 0 auto 30px;
  }
  .dashboard__charts .chart {
    width: -webkit-calc(100% / 2 - 170px);
    width: calc(100% / 2 - 170px);
    max-width: 288px;
  }
  .dashboard__data {
    width: -webkit-calc(100% - 24px);
    width: calc(100% - 24px);
    max-width: 768px;
    margin: 0 auto 100px;
    padding: 30px 15px;
  }
}

@media screen and (max-width: 576px) {
  .dashboard__charts .chart {
    width: 100%;
  }
  .dashboard__charts {
    width: 100%;
  }
  .dashboard__data {
    width: 100%;
  }
}

footer {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: #f3f6ff;
  background-color: var(--cy__lightgrey);
}
footer .f__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding: 50px 0;
}
footer .f__flex .f__logo {
  max-width: 150px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
footer .f__flex .f__logo img {
  width: 100%;
  object-fit: cover;
}
footer .f__flex .f__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 35px 0 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
footer .f__flex .f__nav a {
  font-size: 18px;
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  font-weight: 500;
  margin: 0 10px;
  text-decoration: none;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  will-change: color;
  padding: 5px;
}
footer .f__flex .f__nav a:hover {
  color: #36f;
  color: var(--cy__blue);
}
footer .f__flex .f__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
footer .f__flex .f__social li {
  margin: 0 10px;
}
footer .f__flex .f__social li a {
  color: #f3f6ff;
  color: var(--cy__lightgrey);
  background-color: #6f6f6f;
  background-color: var(--cy__darkgrey);
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
  will-change: background-color;
  text-decoration: none;
}
footer .f__flex .f__social li a:hover {
  background-color: #36f;
  background-color: var(--cy__blue);
}
footer .f__sub {
  width: 100%;
  background-color: #000;
}
footer .f__sub ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 12.5px 0;
}
footer .f__sub ul a {
  color: #6f6f6f;
  color: var(--cy__darkgrey);
  font-size: 14px;
  font-weight: 500;
  padding: 5px;
  margin: 10px;
  text-decoration: none;
}
header {
  width: 100%;
  position: relative;
  background-color: #f3f6ff;
  background-color: var(--cy__lightgrey);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 21;
}
header .h__logo {
    max-width: 150px;
  height: 60px;
  margin: 30px 65px 30px 30px;
}
header .h__logo img {
  width: auto;
  object-fit: cover;
}
header .h__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 30px;
}
header .h__flex ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
header .h__flex ul a {
  font-size: 18px;
  font-weight: 700;
  margin-right: 20px;
  padding: 0;
  color: #000;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  will-change: color;
  &.disabled {
    color: grey;
  }
}
header .h__flex ul li.active a {
  color: #36f !important;
  color: var(--cy__blue);
}
header .h__flex ul li.enabled a {
  color: black;
  color: var(--cy__black);
}
header .h__flex ul li.disabled a {
  color: grey !important;
  color: var(--cy__gray);
  /*pointer-events: none;
  cursor: default;*/
}
header .h__flex ul a.active {
  color: #36f;
  color: var(--cy__blue);
}
header .h__flex ul a:hover {
  color: #36f !important;
  color: var(--cy__blue);
}
header .h__login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .h__login .h__loggedin {
  margin-right: 50px;
  font-weight: 500;
  font-weight: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .h__login .h__loggedin span {
  margin-right: 8px;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
header .navbar-collapse .nav-item .nav-link {
  color: #36f;
  font-size: responsive 14px 18px;
  font-range: 320px 1200px;
}
header .hamburger {
  display: none;
  margin: 0 30px 0 auto;
}
.mobile__menu {
  display: none;
}
header .hamburger .hamburger-box {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
body.lock {
  overflow: hidden;
}
@media screen and (max-width: 1450px) {
  header .h__login .h__loggedin span {
    max-width: 250px;
  }
}
@media screen and (max-width: 1400px) {
  header .h__login .h__loggedin {
    margin-right: 10px;
  }
  header .h__flex ul a {
    margin-right: 18px;
  }
  header .h__login .h__loggedin {
    margin-right: 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  header .h__login .h__loggedin span {
    text-align: right;
    width: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
  }
  header .h__login .h__loggedin span b {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1200px) {
  header .h__logo {
    margin-right: 10px;
    margin-left: 8px;
  }
  header .h__flex ul a {
    margin-right: 18px;
  }
  header .h__login .h__loggedin span {
    max-width: 150px;
  }
  header .h__flex {
    padding-left: 4px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 1100px) {
  header .h__flex ul a {
    margin-right: 4px;
  }
}
@media screen and (max-width: 992px) {
  header.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  header .h__flex {
    display: none;
  }
  header .hamburger {
    display: block;
  }
  header.open .hamburger-box {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  header.open .hamburger .hamburger-box .hamburger-inner {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header.open .hamburger .hamburger-box .hamburger-inner:after {
    opacity: 0;
  }
  header.open ~ .mobile__menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 10;
    background-color: #f3f6ff;
    background-color: var(--cy__lightgrey);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mobile__menu p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
  }
  .mobile__menu p span:last-of-type {
    font-weight: 700;
    margin-left: 6px;
  }
  .mobile__menu nav ul {
    list-style: none;
    padding: 0;
    margin-top: 48px;
    text-align: center;
  }
  .mobile__menu nav ul {
    margin-bottom: 32px;
  }
  .mobile__menu nav ul a:hover {
    color: #36f;
    color: var(--cy__blue);
  }
  .mobile__menu nav ul li.active a {
    color: #36f;
    color: var(--cy__blue);
  }
  .mobile__menu nav ul a.active {
    color: #36f;
    color: var(--cy__blue);
  }
  .mobile__menu nav ul a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}

.cy__login {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  min-height: 630px;
  background-image: url("../img/logo_fade.png");
  background-position: 50% 120px;
  background-size: auto;
  background-repeat: no-repeat;
}
.cy__login .login__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.cy__login .login__flex h1 {
  width: 100%;
  color: #36f;
  color: var(--cy__blue);
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 20px;
  text-align: center;
}
.cy__login .login__flex form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 285px;
  text-align: center;
}
.cy__login .login__flex form button {
  margin-top: 10px;
}
.cy__login .login__flex form label {
  font-weight: 500;
  font-size: 14px;
}
.cy__login .login__flex form input {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
}
.cy__login .login__flex form input.password {
  padding-right: 30px;
}
.cy__login .login__flex form .toggle_password {
  float: right;
  margin-top: -77px;
  margin-left: 250px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.cy__login .login__flex form input::placeholder {
  color: lightgray;
  font-weight: 400;
  opacity: 1;
}
.cy__login .login__flex form p {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  height: 2em;
}
.cy__login .login__flex form p.cy__err {
  margin-top: -10px;
}
.cy__login .login__flex .login__bg {
  position: absolute;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.cy__login .forgotten__password form {
  display: block !important;
}

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