@font-face {
  font-family: SergoeUI;
  src: url("../fonts/segoeui.ttf");
}
@font-face {
  font-family: SergoeUI;
  src: url("../fonts/segoeuib.ttf");
  font-weight: bold;
}
.range-slider {
  display: inline-block;
  padding: 0 10px;
  height: 20px;
  width: 130px;
}

.range-slider.disabled {
  opacity: 0.5;
}

.range-slider-inner {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
}

.range-slider-rail,
.range-slider-fill {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  border-radius: 2px;
  transform: translateY(-50%);
}

.range-slider-rail {
  width: 100%;
  background-color: #e2e2e2;
}

.range-slider-fill {
  background-color: #21fb92;
}

.range-slider-knob {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  height: 20px;
  width: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.range-slider-hidden {
  display: none;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a.button {
  display: block;
  min-width: 130px;
  padding: 5px 20px;
  color: #FFFFFF;
  font-weight: bold;
  background: linear-gradient(90deg, #b11116, #ea3b40);
  text-align: center;
}
a.button.empty {
  background: #FFFFFF;
  color: #b11116;
  font-weight: normal;
  border: 1px solid #b11116;
}

button {
  cursor: pointer;
}

h1 {
  margin: 0;
  font-size: 1.5rem;
}

h2 {
  margin: 0;
  font-size: 1.125rem;
  color: #b11116;
}

h3 {
  margin: 0 0 7px;
  font-size: 1rem;
  text-transform: uppercase;
}

.text-mute {
  color: #959595;
}

.text-red {
  color: #b11116;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: #fafafa;
  font-size: 0.875rem;
  font-family: "SergoeUI", sans-serif;
}

.content {
  width: 90vw;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
}
.overlay.open {
  display: block;
}
.overlay .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  z-index: 100;
  width: 90vw;
  max-width: 500px;
  padding: 55px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overlay .modal h3 {
  color: #b11116;
  text-transform: initial;
}
.overlay .modal .text-mute {
  text-align: center;
  margin: 25px 0 40px;
  max-width: 330px;
}
.overlay .modal a {
  width: 100%;
  max-width: 210px;
  margin-bottom: 10px;
  padding: 5px 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 99px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
  transition: height 0.5s linear;
  z-index: 1000;
}
@media screen and (max-width: 991.98px) {
  header {
    height: 58px;
  }
}
header.open {
  height: 350px;
}
header .content {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
header .hamburger-menu {
  display: none;
  position: absolute;
  top: 9px;
  right: 20px;
}
@media screen and (max-width: 991.98px) {
  header .hamburger-menu {
    display: block;
  }
}
header .hamburger-menu .bar1, header .hamburger-menu .bar2, header .hamburger-menu .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}
header .hamburger-menu.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
header .hamburger-menu.change .bar2 {
  opacity: 0;
}
header .hamburger-menu.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
header .logo-box {
  height: 99px;
}
@media screen and (max-width: 991.98px) {
  header .logo-box {
    height: 58px;
  }
}
@media screen and (max-width: 991.98px) {
  header .logo-box {
    width: 100%;
    background-position: left center;
  }
}
header .logo-box .logo {
  display: block;
  background: url("../images/logo.png") no-repeat center center;
  background-size: contain;
  width: 150px;
  height: calc(100% - 20px);
  margin-top: 20px;
}
@media screen and (max-width: 991.98px) {
  header .logo-box .logo {
    height: calc(100% - 10px);
    margin-top: 10px;
  }
}
header .menu-items {
  height: calc(100% - 10px);
  margin: 10px 10px 0;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991.98px) {
  header .menu-items {
    width: 100%;
    height: initial;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}
header .menu-items .menu-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 20px;
}
@media screen and (max-width: 1199.98px) {
  header .menu-items .menu-item {
    margin: 0 15px;
  }
}
@media screen and (max-width: 991.98px) {
  header .menu-items .menu-item {
    height: initial;
    width: 100%;
    padding: 10px 0;
  }
}
header .menu-items .menu-item a {
  text-align: center;
  color: #000000;
}
header .menu-items .menu-item a:hover {
  color: #b11116;
}
header .menu-items .menu-item.active {
  border-bottom: 1px solid #b11116;
}
@media screen and (max-width: 991.98px) {
  header .menu-items .menu-item.active {
    border: none;
  }
}
header .menu-items .menu-item.active a {
  color: #b11116;
}
@media screen and (max-width: 991.98px) {
  header .menu-items .menu-item.active a {
    text-decoration: underline;
  }
}
header .right-content {
  display: flex;
  height: calc(100% - 10px);
  margin: 10px 0 0 55px;
}
@media screen and (max-width: 1199.98px) {
  header .right-content {
    margin-left: 20px;
  }
}
@media screen and (max-width: 991.98px) {
  header .right-content {
    width: 100%;
    flex-direction: column;
    margin: 0;
  }
}
header .right-content .language-select {
  position: relative;
  height: 100%;
  margin-right: 26px;
}
@media screen and (max-width: 991.98px) {
  header .right-content .language-select {
    height: initial;
    margin: 0;
  }
}
header .right-content .language-select .language-active {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 17px;
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  header .right-content .language-select .language-active {
    display: none;
  }
}
header .right-content .language-select .language-active:after {
  content: "";
  position: absolute;
  background: url("../images/caret.png");
  height: 4px;
  width: 7px;
  top: calc(50% - 2px);
  right: 0;
}
header .right-content .language-select .language-dropdown {
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
}
@media screen and (max-width: 991.98px) {
  header .right-content .language-select .language-dropdown {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: initial;
  }
}
header .right-content .language-select .language-dropdown .language-dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
}
header .right-content .language-select .language-dropdown .language-dropdown-item:hover {
  background-color: lightgray;
}
@media screen and (max-width: 991.98px) {
  header .right-content .language-select .language-dropdown .language-dropdown-item:hover {
    background-color: initial;
    color: #b11116;
  }
}
header .right-content .language-select .language-dropdown .language-dropdown-item.active {
  color: #b11116;
}
header .right-content .language-select:hover .language-dropdown {
  display: block;
}
@media screen and (max-width: 991.98px) {
  header .right-content .language-select:hover .language-dropdown {
    display: flex;
  }
}
header .right-content .name {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 70px);
  margin: 35px 0;
  padding: 0 25px 0 35px;
  border-left: 1px solid #000000;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  header .right-content .name {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991.98px) {
  header .right-content .name {
    height: initial;
    margin: 0;
    padding: 10px 0;
    border: none;
    text-align: center;
  }
}
header .right-content .name a {
  color: #959595;
}
header .right-content .logout {
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  header .right-content .logout {
    height: 36px;
  }
}
header .right-content .logout .logout-icon {
  display: block;
  height: 100%;
  width: 16px;
  background: url("../images/logout-icon.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 991.98px) {
  header .right-content .logout .logout-icon {
    height: 16px;
    margin: 10px auto;
  }
}
header .view-profile {
  display: none;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
  margin-top: 1px;
  padding: 10px 0;
}
@media screen and (max-width: 767.98px) {
  header .view-profile {
    display: block;
  }
}
header .view-profile .content {
  justify-content: space-between;
}
header .view-profile .content .name {
  text-transform: uppercase;
  font-weight: bold;
}
header .view-profile .content a {
  color: #b11116;
}

main {
  margin-top: 80px;
  padding: 68px 0 26px;
  min-height: calc(100vh - 100px - 303px);
}
@media screen and (max-width: 991.98px) {
  main {
    margin-top: 59px;
    padding: 20px 0;
    min-height: calc(100vh - 59px - 200px);
  }
}
main > .text-mute {
  color: #363636;
}
main .content {
  display: flex;
}
main .content .profile {
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  margin-top: 40px;
  background: #FFFFFF;
  border: 1px solid #eeeeee;
}
@media screen and (max-width: 991.98px) {
  main .content .profile {
    width: 200px;
  }
}
@media screen and (max-width: 767.98px) {
  main .content .profile {
    display: none;
  }
}
main .content .profile .profile-image {
  margin-bottom: 20px;
}
main .content .profile .profile-image .img {
  display: block;
  margin: -40px auto 0;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}
main .content .profile .profile-top-content {
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}
main .content .profile .profile-top-content .name {
  padding: 16px 10px 12px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
}
main .content .profile .profile-top-content .split {
  padding: 40px 0;
}
main .content .profile .profile-top-content .split div {
  height: 1px;
  width: 80px;
  margin: auto;
  background: #b11116;
}
main .content .profile .profile-top-content .bottom-text {
  font-weight: bold;
  margin-bottom: 25px;
}
main .content .profile .profile-top-content .bottom-text.languages {
  font-weight: normal;
  display: flex;
  justify-content: center;
}
main .content .profile .profile-top-content .bottom-text.languages .language {
  padding: 0 5px;
  border-right: 1px solid #000000;
  color: #000000;
}
main .content .profile .profile-top-content .bottom-text.languages .language:last-of-type {
  border: none;
}
main .content .profile .profile-top-content .bottom-text.languages .language.active, main .content .profile .profile-top-content .bottom-text.languages .language:hover {
  color: #b11116;
}
main .content .profile .profile-bottom-content {
  text-align: center;
}
main .content .profile .profile-bottom-content .box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
}
main .content .profile .profile-bottom-content .box .progress-bar {
  width: 100%;
  max-width: 200px;
  height: 5px;
  margin: 10px auto;
  background: #e1e1e1;
}
main .content .profile .profile-bottom-content .box .progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #b11116, #ea3b40);
}
main .content .profile .profile-bottom-content .box a {
  color: #b11116;
  font-size: 0.75rem;
}
main .content .profile .profile-bottom-content .box.no-progress {
  padding: 35px 20px 15px;
}
main .content .profile .profile-bottom-content .box.no-progress span {
  font-size: 1rem;
  margin-bottom: 2px;
}
main .content .profile .profile-bottom-content .box.no-progress.active {
  padding-bottom: 35px;
}
main .content .profile .profile-bottom-content .box.no-progress.active span {
  color: #b11116;
  font-weight: bold;
}
main .content .profile .profile-bottom-content .profile-view-more {
  padding: 20px 10px;
}
main .content .profile .profile-bottom-content .profile-view-more .view-more {
  background: url("../images/caret-red.png") no-repeat center center;
  height: 7px;
  width: 13px;
  margin: auto;
  cursor: pointer;
}
main .content .main-content {
  margin: 40px 0 0 60px;
  flex-grow: 1;
}
@media screen and (max-width: 991.98px) {
  main .content .main-content {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  main .content .main-content {
    margin-left: 0;
  }
}
main .content .main-content .main-content-heading {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .content .main-content .main-content-heading h1 {
  margin-bottom: 10px;
}
main .content .main-content .main-content-heading .back {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: initial;
  flex-grow: 1;
  text-align: right;
  margin-bottom: 10px;
  width: 100%;
}
main .content .main-content .main-content-heading .back a {
  font-weight: bold;
  color: #b11116;
  cursor: pointer;
}
main .content .main-content .heading-spliter {
  margin: 15px 0 25px;
  height: 1px;
  width: 100%;
  background: #e1e1e1;
}
main .content .main-content .category-selector {
  background-color: #FFFFFF;
  margin: 85px 0 55px;
  display: flex;
  flex-wrap: wrap;
}
main .content .main-content .category-selector .category-selector-item {
  padding: 15px 30px;
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 1199.98px) {
  main .content .main-content .category-selector .category-selector-item {
    padding: 15px;
  }
}
@media screen and (max-width: 991.98px) {
  main .content .main-content .category-selector .category-selector-item {
    width: 100%;
  }
}
main .content .main-content .category-selector .category-selector-item.active {
  color: #b11116;
  font-weight: bold;
  border-color: #b11116;
}
main .content .main-content .category-selector .category-selector-item:hover {
  color: #b11116;
  border-color: #b11116;
}
main .content .main-content .category-selector .flex-last-item {
  border-bottom: 1px solid #cccccc;
  flex-grow: 1;
}
main .content .main-content .category-selector-content {
  width: 100%;
  display: none;
}
main .content .main-content .category-selector-content.active {
  display: block;
}
main .content .main-content .category-selector-content .category-heading {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
main .content .main-content .category-selector-content .category-heading h2 {
  text-transform: uppercase;
  padding-left: 28px;
  color: #b11116;
  width: initial;
}
main .content .main-content .category-selector-content .category-heading .heading-button {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  margin-bottom: 10px;
}
main .content .main-content .category-selector-content h2 {
  margin: 0 0 10px;
  padding: 0;
  color: #000000;
  width: 100%;
}
main .content .main-content h2 {
  margin: 50px 0 30px;
  padding-left: 28px;
}
main .content .main-content .nav-bar-box {
  margin-top: 30px;
  border: 1px solid #eeeeee;
  border-bottom: 1px solid lightgrey;
  background: #FFFFFF;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
main .content .main-content .nav-bar-box .menu-item {
  display: inline-block;
  padding: 18px 20px 15px;
}
main .content .main-content .nav-bar-box .menu-item:first-child {
  padding-left: 30px;
}
main .content .main-content .nav-bar-box .menu-item:hover {
  cursor: pointer;
  color: #b11116;
}
main .content .main-content .nav-bar-box .active {
  border-bottom: 1px solid #b11116;
  color: #b11116;
}
main .content .main-content .main-content-box {
  display: flex;
  padding: 18px 20px 15px 28px;
  border: 1px solid #eeeeee;
  background: #FFFFFF;
  margin-bottom: 15px;
}
@media screen and (max-width: 575.98px) {
  main .content .main-content .main-content-box {
    flex-wrap: wrap;
  }
}
main .content .main-content .main-content-box.kai {
  padding: 28px 30px 25px;
  margin-bottom: 0;
}
main .content .main-content .main-content-box.kai .left,
main .content .main-content .main-content-box.kai .right {
  display: block;
  max-width: 185px;
  flex-grow: 0;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
main .content .main-content .main-content-box.kai .left {
  text-align: left;
}
main .content .main-content .main-content-box.kai .right {
  text-align: right;
}
@media screen and (max-width: 575.98px) {
  main .content .main-content .main-content-box.kai .left, main .content .main-content .main-content-box.kai .right, main .content .main-content .main-content-box.kai .center {
    width: 100%;
    max-width: unset;
  }
}
main .content .main-content .main-content-box.kai .center {
  flex-grow: 1;
}
main .content .main-content .main-content-box.slider {
  flex-wrap: wrap;
}
main .content .main-content .main-content-box.slider span {
  padding-left: 0;
}
main .content .main-content .main-content-box .left {
  flex-grow: 1;
}
main .content .main-content .main-content-box .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 10px;
}
main .content .main-content .main-content-box .right .finished {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}
main .content .main-content .main-content-box .right .finished .item {
  padding: 0 15px;
  font-size: 1rem;
  border-right: 1px solid #000000;
  text-transform: uppercase;
}
main .content .main-content .main-content-box .right .finished .item:last-of-type {
  padding-right: 0;
  border-right: none;
}
main .content .main-content .main-content-box .right .finished .item:first-of-type {
  padding-left: 0;
}
main .content .main-content .main-content-box .right .download {
  position: relative;
  color: #b11116;
  font-weight: bold;
  text-align: right;
  padding-right: 50px;
  width: 100%;
}
main .content .main-content .main-content-box .right .download:after {
  content: "";
  position: absolute;
  background: url("../images/caret-red.png");
  width: 13px;
  height: 7px;
  right: 20px;
  top: 7px;
}
@media screen and (max-width: 575.98px) {
  main .content .main-content .main-content-box .right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0 0;
  }
}
main .content .main-content .bottom-buttons {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 15px 0 50px;
}
main .content .main-content .bottom-buttons a {
  margin: 0 0 10px 10px;
}

footer {
  background: #FFFFFF;
  height: 303px;
}
@media screen and (max-width: 991.98px) {
  footer {
    height: 200px;
  }
}
footer .content {
  display: flex;
  justify-content: flex-end;
}
footer .content .contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  max-width: 960px;
}
footer .content .contact .top {
  width: 100%;
  padding: 0 0 20px 30px;
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 767.98px) {
  footer .content .contact .top {
    padding-left: 0;
  }
}
footer .content .contact .bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 23px 0 0 30px;
}
@media screen and (max-width: 767.98px) {
  footer .content .contact .bottom {
    padding-left: 0;
  }
}
footer .content .contact .bottom .text {
  padding-top: 5px;
}
footer .content .contact .bottom .icons {
  display: flex;
}
footer .content .contact .bottom .icons .icon {
  margin-left: 23px;
  height: 33px;
  width: 33px;
}
footer .content .contact .bottom .icons .icon.fb {
  background: url("../images/logo-fb.png") no-repeat center center;
}
footer .content .contact .bottom .icons .icon.linkedin {
  background: url("../images/logo-linkedin.png") no-repeat center center;
}
footer .content .contact .bottom .icons .icon.insta {
  background: url("../images/logo-insta.png") no-repeat center center;
}

.overlay .modal {
  transform: translate(0%, -50%) !important;
}

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