.notification-container-bottom-center,
.notification-container-bottom-left,
.notification-container-bottom-right,
.notification-container-center,
.notification-container-top-center,
.notification-container-top-left,
.notification-container-top-right {
  width: 325px;
  position: absolute;
  pointer-events: all;
}
.notification-container-bottom-center,
.notification-container-center,
.notification-container-top-center {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  left: calc(50% - 162.5px);
}
.notification-container-center {
  top: 20px;
  height: 100%;
  pointer-events: none;
}
.notification-container-center .center-inner {
  width: 325px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: all;
}
.notification-container-top-center {
  top: 20px;
}
.notification-container-bottom-center {
  bottom: 20px;
}
.notification-container-top-left {
  left: 20px;
  top: 20px;
}
.notification-container-top-right {
  right: 20px;
  top: 20px;
}
.notification-container-bottom-left {
  left: 20px;
  bottom: 20px;
}
.notification-container-bottom-right {
  bottom: 20px;
  right: 20px;
}
.notification-container-mobile-bottom,
.notification-container-mobile-top {
  pointer-events: all;
  position: absolute;
}
.notification-container-mobile-top {
  right: 20px;
  left: 20px;
  top: 20px;
}
.notification-container-mobile-bottom {
  right: 20px;
  left: 20px;
  bottom: 20px;
  margin-bottom: -15px;
}
.notification-default {
  border-left: 8px solid #0562c7;
}
.notification-default,
.notification-default .timer {
  background-color: #007bff;
}
.notification-default .timer-filler {
  background-color: #fff;
}
.notification-default .notification-close {
  background-color: #007bff;
}
.notification-success {
  border-left: 8px solid #1f8838;
}
.notification-success,
.notification-success .timer {
  background-color: #28a745;
}
.notification-success .timer-filler {
  background-color: #fff;
}
.notification-success .notification-close {
  background-color: #28a745;
}
.notification-danger {
  border-left: 8px solid #bd1120;
}
.notification-danger,
.notification-danger .timer {
  background-color: #dc3545;
}
.notification-danger .timer-filler {
  background-color: #fff;
}
.notification-danger .notification-close {
  background-color: #dc3545;
}
.notification-info {
  border-left: 8px solid #138b9e;
}
.notification-info,
.notification-info .timer {
  background-color: #17a2b8;
}
.notification-info .timer-filler {
  background-color: #fff;
}
.notification-info .notification-close {
  background-color: #17a2b8;
}
.notification-warning {
  border-left: 8px solid #ce9c09;
}
.notification-warning,
.notification-warning .timer {
  background-color: #eab000;
}
.notification-warning .timer-filler {
  background-color: #fff;
}
.notification-warning .notification-close {
  background-color: #eab000;
}
.notification-awesome {
  border-left: 8px solid #4c3fb1;
}
.notification-awesome,
.notification-awesome .timer {
  background-color: #685dc3;
}
.notification-awesome .timer-filler {
  background-color: #fff;
}
.notification-awesome .notification-close {
  background-color: #685dc3;
}
@-webkit-keyframes timer {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes timer {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.react-notification-root {
  position: fixed;
  z-index: 9000;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.notification-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 3px;
  margin-bottom: 15px;
  -webkit-box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.notification-item .timer {
  width: 100%;
  margin-top: 10px;
}
.notification-item .timer,
.notification-item .timer .timer-filler {
  height: 3px;
  border-radius: 5px;
}
.notification-item .notification-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.notification-item .notification-message {
  color: #fff;
  max-width: calc(100% - 15px);
  font-size: 14px;
  line-height: 150%;
  word-wrap: break-word;
  margin-bottom: 0;
  margin-top: 0;
}
.notification-item .notification-content {
  padding: 8px 15px;
  display: inline-block;
  width: 100%;
}
.notification-item .notification-close {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px;
}
.notification-item .notification-close:after {
  content: "\D7";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  left: 50%;
  top: 50%;
}
.notification-container-mobile-bottom .notification-item,
.notification-container-mobile-bottom .notification-parent,
.notification-container-mobile-top .notification-item,
.notification-container-mobile-top .notification-parent {
  max-width: 100%;
  width: 100%;
}
.notification-container-bottom-right .notification-parent,
.notification-container-top-right .notification-parent {
  margin-left: auto;
}
.notification-container-bottom-left .notification-parent,
.notification-container-top-left .notification-parent {
  margin-right: auto;
}
.notification-container-mobile-bottom .notification-parent,
.notification-container-mobile-top .notification-parent {
  margin-left: auto;
  margin-right: auto;
}

.notification {
  color: red;
}
.notification .timer {
  visibility: collapse;
}


.nav---7Ucj5 {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  padding: 14px 5%;
  z-index: 2;
}
.nav---7Ucj5 a {
  text-decoration: none;
}
.nav---7Ucj5 .mobNav---1git- {
  position: relative;
  -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;
  display: none;
}
.nav---7Ucj5 .mobNav---1git- svg {
  width: 16px;
}
.nav---7Ucj5 .mobNav---1git-::before {
  content: "";
  width: 37px;
  height: 37px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.192);
  display: inline-block;
  position: absolute;
}
.nav---7Ucj5 .logo---isVS3 img {
  width: auto;
  max-height: 70px;
}
.nav---7Ucj5 .link---2nsVs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.nav---7Ucj5 .link---2nsVs .isSelected---3xZ9k {
  border-bottom: 3px solid #2ebcfc;
}
.nav---7Ucj5 .link---2nsVs p {
  margin: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}
.nav---7Ucj5 .link---2nsVs p:hover {
  color: #2ebcfc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 767.98px) {
  .nav---7Ucj5 .logo---isVS3 img {
    width: auto;
    max-height: 50px;
  }
  .nav---7Ucj5 .mobNav---1git- {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .nav---7Ucj5 .link---2nsVs {
    display: none;
  }
}
.hideNavMenu---1HY1S {
  display: none !important;
}
.mobNavMenu---2JoYf {
  display: block;
  width: 275px;
  height: 100vh;
  max-height: 100vh;
  position: absolute;
  background-color: #222b34;
  z-index: 99999;
  left: auto;
  right: 0;
  top: 0;
  color: white;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c {
  max-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9000000;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c .hideMenuIcon---3RsZh {
  position: absolute;
  top: 45%;
  left: -30px;
  border: 1px solid #222b34;
  padding: 30px 10px;
  background-color: #222b34;
  border-radius: 10px 0 0 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c p {
  margin: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c .isSelected---3xZ9k {
  border-bottom: 3px solid #2ebcfc;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c .mobSocSeti---YeGbT {
  position: absolute;
  width: 100%;
  bottom: 0;
  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;
  text-align: center;
  padding: 14px 40px;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c .mobSocSeti---YeGbT svg {
  width: 34px;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c .mobSocSeti---YeGbT svg path {
  fill: white;
  width: 30px;
}
.mobNavMenu---2JoYf .mobNavContent---3uI4c div img {
  width: 220px;
  height: 60px;
  margin: 50px 28px 28px;
}

.back---1xAmV {
  background: url(/src/img/brandmark.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.back---1xAmV .pageTest---1UplZ {
  padding: 130px 15px;
  color: white;
  text-align: center;
}
.back---1xAmV .pageTest---1UplZ .title---lg32w {
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3.5em;
  line-height: 114%;
  margin-bottom: 20px;
}
.back---1xAmV .pageTest---1UplZ .text---b92BF {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.btn---3pjYQ {
  font-size: 12px;
  padding: 10px 30px;
  border-radius: 56px;
  font-weight: 600;
  line-height: 1.6;
  border: 2px solid;
  text-decoration: none;
  cursor: pointer;
}
.btn2---3LHdt {
  font-size: 12px;
  padding: 10px 26px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  background-color: #ff9800;
  border: 2px solid #ff9800;
  line-height: 1.6;
  letter-spacing: 1px;
}
.btn2---3LHdt:hover {
  background-color: #ffad33;
  border-color: #ffad33;
}
.btn3---3_00M {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  padding: 10px 15px;
  border: 1px solid #ddd;
  font-weight: 600;
  line-height: 1.5rem;
  margin-top: 10px;
}
.btn3---3_00M:hover {
  background-color: #4b545c;
  border-color: #4b545c;
}

.fullBlock---1ZP4y {
  padding: 0 10%;
}
.fullBlock---1ZP4y div {
  padding: 10px 0;
}
.fullBlock---1ZP4y div input {
  font-size: 16px;
  border: 1px solid #ccc;
  padding: 6px 10px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
}
.fullBlock---1ZP4y div input:focus {
  -webkit-box-shadow: 0 0 0 1px #1c86f2 inset;
          box-shadow: 0 0 0 1px #1c86f2 inset;
  border-color: 1px solid #ccc;
}
.fullBlock---1ZP4y div .titleBlock---2toO2 {
  font-family: Muli;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 4px 0;
  color: #43464b;
}
.fullBlock---1ZP4y div .titleBlock---2toO2 span {
  color: red;
}
.fullBlock---1ZP4y div .text---p84C8 {
  font-size: 13px;
  line-height: 1.3;
  margin: 8px 0 0 0;
  color: #6b7c93;
}

.footerContainer---2JTOm {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 10%;
  color: #989898;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.logo---2ZZ3R {
  font-size: 17.6px;
  color: #262D3F;
  line-height: 1.75rem;
  letter-spacing: 0.0625rem;
}
.left---2aioR {
  text-align: left;
  margin: 0 auto;
}
.middle---N6ieW {
  max-width: 600px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.middle---N6ieW li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.middle---N6ieW li a {
  color: #9B9B9B;
  font-size: 16px;
}
.middle---N6ieW li a:hover {
  color: #2ebcfc;
}
.right---2H1Ct {
  text-align: right;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.right---2H1Ct svg {
  color: #3f464c;
  cursor: pointer;
}
.facebook---Yr9A1 {
  padding-right: 16px;
}

.aside---2gOz7 {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
}
.aside---2gOz7 input {
  width: 100%;
  padding: 10px 10px 10px 30px;
  border: 1px solid #eee;
  border-radius: 5px;
  outline: none;
}
.aside---2gOz7 h3 {
  border-bottom: 1px solid #e5e5e5;
  padding: 5px 0;
  margin-top: 10px;
}
.aside---2gOz7 a {
  color: #2ebcfc;
  text-decoration: none;
  padding: 10px 5px;
  display: block;
}
.search---3o-2g {
  position: relative;
}
.icon---2x2Bq {
  position: absolute;
  top: 10px;
  left: 10px;
  color: gray;
}

.blog---2APhY {
  background-color: #f5f5f5;
}
.blog---2APhY .header---2d9uv {
  background-color: black;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.blog---2APhY .header---2d9uv p {
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3.5em;
  color: #ffffff;
  margin: 0 0 50px 5%;
}
.blogBody---1UwHn {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-column-gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 4rem;
}
.blogContent---KQu4_ {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
}
.blogContent---KQu4_ h2 {
  font-size: 2.5em;
  width: 100%;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}
.blogContent---KQu4_ a {
  color: #6B7C93;
  text-decoration: underline;
  font-size: 14px;
}
.blogContent---KQu4_ .header---2d9uv {
  margin-bottom: 2rem;
}
.blogContent---KQu4_ .title---2qB7Q {
  font-size: 24px;
}
.blogContent---KQu4_ .about---31b9m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #6B7C93;
  font-size: 14px;
}
.blogContent---KQu4_ .about---31b9m a {
  color: #8e9dae;
}
.blogContent---KQu4_ .content---e38lU {
  width: 100%;
  font-size: 16px;
  color: #6B7C93;
}
.blogContent---KQu4_ .image---1GatP {
  width: 100%;
  padding-top: 56%;
  height: 0;
  margin-bottom: 2rem;
}
.blogContent---KQu4_ .text---14Egn p {
  color: #6B7C93;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .blog---2APhY .unavailable---1GA7r {
    line-height: 1.3;
    font-size: 2.5em;
  }
  .blogBody---1UwHn {
    grid-template-columns: auto;
    margin: 1rem;
  }
}

.post---1l7pU {
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post---1l7pU a {
  color: #3c424f;
}
.post---1l7pU .header---O2OYG {
  margin-bottom: 2rem;
}
.post---1l7pU .title---1zxbr {
  font-size: 24px;
}
.post---1l7pU .title---1zxbr a {
  text-decoration: none;
}
.post---1l7pU .about---3-DhW {
  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;
  color: #6B7C93;
  font-size: 14px;
}
.post---1l7pU .about---3-DhW a {
  color: #8e9dae;
  text-decoration: underline;
  font-size: 14px;
}
.post---1l7pU .content---2ayTR {
  width: 100%;
  color: #6B7C93;
}
.post---1l7pU .image---2JecX {
  width: 260px;
  height: 260px;
  margin-right: 1rem;
  padding: 5px;
}
.post---1l7pU .text---2o88e {
  overflow: hidden;
  font-size: 16px;
  height: 160px;
}
.post---1l7pU .textHtml---GEJSX {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 125px;
  line-height: 25px;
}
.post---1l7pU .more---3theX {
  color: #2ebcfc;
  text-decoration: underline;
}

.ReactModal__Overlay {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
.ReactModal__Overlay--after-open {
  opacity: 1;
}
.ReactModal__Overlay-open {
  opacity: 1;
}
.ReactModal__Overlay--before-close {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
.ReactModal__Body--open {
  overflow: hidden;
}

.back---2WWUv {
  height: 100vh;
}
.back---2WWUv .flex---KSzHs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 12%;
}
.back---2WWUv .imgPreview---2dfuL > img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.back---2WWUv .imgPreview---2dfuL .img11---9lFJd {
  -webkit-animation-name: Im-1---2ROck;
          animation-name: Im-1---2ROck;
}
.back---2WWUv .imgPreview---2dfuL .img12---cQKVU {
  -webkit-animation-name: Im-2---Fb1CI;
          animation-name: Im-2---Fb1CI;
}
.back---2WWUv .imgPreview---2dfuL .img13---2kEQo {
  -webkit-animation-name: Im-3---3tpDi;
          animation-name: Im-3---3tpDi;
}
.back---2WWUv .imgPreview---2dfuL .img14---3ozN- {
  -webkit-animation-name: Im-4---319Uo;
          animation-name: Im-4---319Uo;
}
.back---2WWUv .imgPreview---2dfuL:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.726);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.back---2WWUv .imgPreview---2dfuL .img15---1jSUI {
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
  height: 150px;
}
.back---2WWUv .contant---23E0v {
  text-align: end;
}
.back---2WWUv .contant---23E0v p {
  color: white;
  margin-bottom: 20px;
}
.back---2WWUv .contant---23E0v .title---sfiTy {
  font-size: 48px;
}
.back---2WWUv .contant---23E0v .subTitle---1jh2Z {
  font-size: 18px;
}
.back---2WWUv .contant---23E0v .button---1xd3x > :first-child {
  margin-right: 30px;
  background-color: #f7f6bd;
  border-color: #f7f6bd;
}
.back---2WWUv .contant---23E0v .button---1xd3x > :first-child:hover {
  background-color: #fcfcd1;
  border-color: #fcfcd1;
}
.back---2WWUv .contant---23E0v .button---1xd3x > :last-child {
  background: none;
  color: white;
  border-color: white;
}
.back---2WWUv .contant---23E0v .button---1xd3x > :last-child:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.9);
}
@-webkit-keyframes Im-1---2ROck {
  from {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes Im-1---2ROck {
  from {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes Im-2---Fb1CI {
  from {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes Im-2---Fb1CI {
  from {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes Im-3---3tpDi {
  from {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes Im-3---3tpDi {
  from {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes Im-4---319Uo {
  from {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes Im-4---319Uo {
  from {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .back---2WWUv .flex---KSzHs {
    margin-right: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .back---2WWUv .flex---KSzHs .contant---23E0v {
    text-align: center;
  }
  .back---2WWUv .flex---KSzHs .contant---23E0v .button---1xd3x > :first-child {
    margin-right: 10px;
  }
  .back---2WWUv .imgPreview---2dfuL .img15---1jSUI {
    height: 50px;
    width: 100%;
  }
}

.form---2Sgva {
  max-width: 500px;
  background-color: #ffffff;
}
.form---2Sgva .label---2_yr2 {
  display: block;
  margin-bottom: 20px;
}
.form---2Sgva .label---2_yr2 span {
  display: block;
}
.form---2Sgva .label---2_yr2 .checkboxInput---1tIkZ {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.form---2Sgva .label---2_yr2 .textInput---39Bq9 {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
}
.form---2Sgva .checkbox---sd_SJ {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form---2Sgva .button---OxDoP {
  display: block;
  margin: 0 auto;
}
.form---2Sgva .closeIcon---VvXWU {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form---2Sgva .closeIcon---VvXWU svg {
  cursor: pointer;
}

.fullBlock---I63zL {
  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;
}
@media (max-width: 767.98px) {
  .fullBlock---I63zL {
    -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;
  }
  .fullBlock---I63zL .block---2PQb2 {
    margin: 0;
  }
}

.block---3TbS3 {
  padding: 32px;
  margin-bottom: 30px;
  max-width: 410px;
  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;
  text-align: center;
}
.block---3TbS3 .img---38m5B {
  padding: 25px;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(49, 52, 57, 0.3), 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px 0 rgba(49, 52, 57, 0.3), 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.block---3TbS3 .blue---3uF11 {
  background-color: #03a9f4;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.block---3TbS3 .orange---2qw_X {
  background-color: #ff9800;
}
.block---3TbS3 .purple---2hiDD {
  background-color: #8c239f;
}
.block---3TbS3 .purplesvg---2PL0M {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.block---3TbS3 svg {
  max-width: 64px;
  fill: white;
}
.block---3TbS3 .title---202tS {
  line-height: 1.5rem;
  letter-spacing: 2px;
  text-transform: none;
  color: #3c424f;
  margin-bottom: 16px;
}
.block---3TbS3 .text---3yEOQ {
  color: #6b7c93;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .block---3TbS3 {
    margin: 0;
  }
}

.joinBack---2bHsx {
  background-image: url(/src/img/3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: black;
}
.joinBack---2bHsx .joinBlock---OXIeA {
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.joinBack---2bHsx .joinBlock---OXIeA p {
  font-size: 40px;
  color: white;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}
.joinBack---2bHsx .joinBlock---OXIeA p span {
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .joinBack---2bHsx .joinBlock---OXIeA p {
    font-size: 30px;
  }
}

.about---319U2 {
  background-color: #cec89b;
}
.about---319U2 .aboutBlock---_luGo {
  width: 100%;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about---319U2 .aboutBlock---_luGo .text---3wyG7 {
  color: #3C424F;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 500px;
  margin-bottom: 15px;
}
.about---319U2 .aboutBlock---_luGo .text---3wyG7 :first-child {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
}
.about---319U2 .aboutBlock---_luGo .imgBlock---2wy1L {
  padding: 0 15px;
}
.about---319U2 .aboutBlock---_luGo .imgBlock---2wy1L img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .about---319U2 .aboutBlock---_luGo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .about---319U2 .aboutBlock---_luGo .text---3wyG7 :first-child {
    font-size: 30px;
  }
}

.titleBlock---1jOZj {
  text-align: center;
  padding: 0 15px;
}
.titleBlock---1jOZj .title---YAnoo {
  font-size: 40px;
  margin: 0 0 16px;
}
.titleBlock---1jOZj .text---bLnFX {
  font-size: 20px;
  font-weight: 300;
  margin: 32px;
}
.fullBlock---31NAj {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.fullBlock---31NAj .block---1eSzO {
  padding: 0 15px;
  text-align: center;
  margin-bottom: 32px;
  -webkit-flex-basis: 33%;
      -ms-flex-preferred-size: 33%;
          flex-basis: 33%;
}
.fullBlock---31NAj .block---1eSzO svg {
  width: 32px;
  height: 32px;
  fill: #16aff5;
  margin-bottom: -5px;
}
.fullBlock---31NAj .block---1eSzO svg path {
  fill: #16aff5;
}
.fullBlock---31NAj .block---1eSzO > div p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-left: 4px;
  display: inline-block;
}
.fullBlock---31NAj .block---1eSzO .text---bLnFX {
  color: #ff9800;
  letter-spacing: 2px;
}
@media (max-width: 767.98px) {
  .fullBlock---31NAj {
    -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;
  }
}

.fullBlock---2h7O4 {
  background-image: url(/src/img/back2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.fullBlock---2h7O4 .title---zdgeu {
  font-size: 40px;
  color: white;
  margin-bottom: 32px;
  text-align: center;
}
.fullBlock---2h7O4 .contactForm---3fAn7 {
  padding: 48px;
  background-color: white;
  width: 70%;
  margin: 0 auto;
}
.fullBlock---2h7O4 .contactForm---3fAn7 input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
}
.fullBlock---2h7O4 .contactForm---3fAn7 textarea {
  width: 100%;
  height: 220px;
  padding: 6px 10px;
  border: 1px solid #ccc;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .titleBlock---VQt9h {
  font-family: Muli;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 4px 0;
  color: #43464b;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .titleBlock---VQt9h span {
  color: red;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .nameBlock---4ATBy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .nameBlock---4ATBy div {
  width: 100%;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .nameBlock---4ATBy div > p {
  font-size: 13px;
  margin-top: 4px;
}
.fullBlock---2h7O4 .contactForm---3fAn7 .nameBlock---4ATBy div:first-child {
  margin-right: 20px;
}
.fullBlock---2h7O4 .contactForm---3fAn7 > div {
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .fullBlock---2h7O4 .contactForm---3fAn7 {
    width: 100%;
    padding: 20px;
  }
}

.nav---3kYn7,
.navInvisible---35Qzp {
  position: fixed;
  top: 50%;
  right: 0;
}
.navInvisible---35Qzp {
  width: 50px;
  height: 100px;
}
.circle---ekG1X {
  background-color: white;
  width: 10px;
  height: 10px;
  border: 2px solid black;
  border-radius: 50%;
  margin-left: 10px;
}
.circleWhite---3EpVv {
  background-color: white;
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
  margin-left: 10px;
}
.block---h4dv7 {
  width: 100px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2ebcfc;
  color: white;
  border-radius: 20px;
  border: 2px solid white;
  padding: 5px 10px;
  margin: 10px 0;
  cursor: pointer;
}
.blockEmpty---3Fjrq {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 5px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  cursor: pointer;
}

.icon---1v3iF {
  color: #0077b5;
  display: block;
  height: 40px;
  margin: 20px auto;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.icon---1v3iF:hover {
  color: #0094ba;
}

.logInform---1VD0a > .lable---3gsb5 {
  font-weight: 700;
  font-size: 2rem;
  margin: 30px 0;
}
.logInform---1VD0a > .labelTextInput---RIF4s {
  display: block;
  margin-top: 15px;
}
.logInform---1VD0a > .labelTextInput---RIF4s span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000000;
}
.logInform---1VD0a > .labelTextInput---RIF4s input {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
  padding: 10px 8px;
  margin-bottom: 15px;
  height: 50px;
  font-size: 1.2rem;
}
.logInform---1VD0a > .labelTextInput---RIF4s > .passwordInput---2HTmq {
  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;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
}
.logInform---1VD0a > .labelTextInput---RIF4s > .passwordInput---2HTmq > input {
  border: 1px transparent;
  margin-bottom: 0;
}
.logInform---1VD0a > .labelTextInput---RIF4s > .passwordInput---2HTmq > svg {
  margin: 0 10px;
  font-size: 20px;
}
.logInform---1VD0a > .labelCheckboxInput---11FUb {
  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;
  margin: 20px 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.logInform---1VD0a > .labelCheckboxInput---11FUb > span {
  font-size: 0.9rem;
}
.logInform---1VD0a > .labelCheckboxInput---11FUb > input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.logInform---1VD0a > .forgotButton---R39Xc {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin-top: 5px;
  cursor: pointer;
  text-align: right;
}
.logInform---1VD0a > .social---318-4 {
  margin-top: 40px;
}
.logInform---1VD0a > .social---318-4 > .label---2IZVy {
  text-align: center;
  font-size: 2rem;
}
.logInform---1VD0a button {
  display: block;
  width: 100%;
  margin: 40px 0 15px;
  background-color: #83735c;
  border-radius: 5px;
  border: 1px transparent;
  color: #ffffff;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
}
.logInform---1VD0a button:disabled {
  opacity: 0.5;
}
.modalContent---1TlTg .header---2I1nr {
  font-weight: 600;
  font-size: 1.7rem;
  margin: 20px 0;
}
.modalContent---1TlTg .input---1GUKb {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
  padding: 10px 8px;
  height: 50px;
  font-size: 1.2rem;
}
.modalContent---1TlTg .description---1XhZ1 {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin: 10px 0;
  color: #000;
}
.modalContent---1TlTg .buttonBlock---1TQsX {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modalContent---1TlTg .buttonBlock---1TQsX .resetButton---2M7fZ {
  background-color: #83735c;
  border-radius: 5px;
  border: 1px transparent;
  color: #ffffff;
  font-weight: 600;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
}
.cancelButton---3a18V {
  border: none;
  background-color: transparent;
  color: #83735c;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin: 15px 25px;
}
.successRecovery---2Xy-A svg {
  color: #01A100;
  display: block;
  margin: 0 auto;
  font-size: 50px;
}
.successRecovery---2Xy-A > .successMessage---3YfSH {
  display: block;
  margin-top: 20px;
}
.successRecovery---2Xy-A button {
  display: block;
  margin: 20px auto;
}
@media (max-width: 767.98px) {
  .logInform---1VD0a {
    padding: 0 10px;
    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;
  }
  .logInform---1VD0a .social---318-4 {
    margin-top: 20px;
  }
  .logInform---1VD0a .social---318-4 .label---2IZVy {
    font-size: 22px;
    margin: 0;
  }
  .logInform---1VD0a .label---2IZVy {
    font-size: 24px;
    margin: 30px 0 10px;
  }
  .logInform---1VD0a .labelTextInput---RIF4s {
    width: 100%;
  }
}
.captcha---19Qx3 {
  margin-top: 1rem;
}
.logButtons---2SEpa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}
.primaryLink---XF6Pn {
  margin: 40px 0 15px;
  text-align: right;
  border-radius: 5px;
  border: 1px transparent;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
  color: #03a9f4 !important;
  text-decoration: underline;
  cursor: pointer;
}

.signUpForm---3PiLD {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.signUpForm---3PiLD > .lable---7HTcz {
  font-weight: 700;
  font-size: 2rem;
  margin: 30px 0;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X {
  display: block;
  margin-top: 15px;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000000;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X input {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
  padding: 10px 8px;
  margin-bottom: 15px;
  height: 50px;
  font-size: 1.2rem;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X > .passwordInput---DaVoW {
  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;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X > .passwordInput---DaVoW > input {
  border: 1px transparent;
  margin-left: 1px;
  margin-bottom: 0;
}
.signUpForm---3PiLD > .labelTextInput---tQm6X > .passwordInput---DaVoW > svg {
  margin: 0 10px;
  font-size: 20px;
}
.signUpForm---3PiLD > .social---3UlMD {
  margin-top: 40px;
}
.signUpForm---3PiLD > .social---3UlMD > .label---2C4Wy {
  text-align: center;
  font-size: 2rem;
}
.signUpForm---3PiLD button {
  display: block;
  width: 100%;
  margin: 40px 0 15px;
  background-color: #83735C;
  border-radius: 5px;
  border: 1px transparent;
  color: #ffffff;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
}
@media (max-width: 767.98px) {
  .signUpForm---3PiLD {
    padding: 0 10px;
    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;
  }
  .signUpForm---3PiLD .social---3UlMD {
    margin-top: 20px;
  }
  .signUpForm---3PiLD .social---3UlMD .label---2C4Wy {
    font-size: 22px;
    margin: 0;
  }
  .signUpForm---3PiLD .label---2C4Wy {
    font-size: 24px;
    margin: 30px 0 10px;
  }
  .signUpForm---3PiLD .labelTextInput---tQm6X {
    width: 100%;
  }
}
.captcha---1ARMV {
  margin-top: 1rem;
}
.logButtons---1f_-p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}
.primaryLink---2lf0K {
  margin: 40px 0 15px;
  text-align: right;
  border-radius: 5px;
  border: 1px transparent;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
  color: #03a9f4 !important;
  text-decoration: underline;
  cursor: pointer;
}

.container---2KdHo {
  height: 100vh;
}
.container---2KdHo > .preview---3536p {
  background-color: #000000;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.container---2KdHo > .preview---3536p .previewText---qTlqf {
  color: #ffffff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 50px 5%;
}
.container---2KdHo > .preview---3536p .previewText---qTlqf > span {
  cursor: pointer;
}
.container---2KdHo > .preview---3536p .previewText---qTlqf > span:hover {
  color: #2ebcfc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.container---2KdHo > .preview---3536p .isSelected---1DNQv {
  border-bottom: 2px solid #2ebcfc;
}
.container---2KdHo > .formContainer---oSoe1 {
  width: 400px;
  background-color: #ffffff;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .container---2KdHo .formContainer---oSoe1 {
    width: 100%;
  }
  .container---2KdHo .preview---3536p {
    height: 200px;
  }
  .container---2KdHo .preview---3536p .previewText---qTlqf {
    font-size: 30px;
  }
}

.label {
  font-weight: 500;
  font-size: 1.3rem;
  margin: 20px 0 15px;
}
.textField {
  display: block;
}
.textField > span {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
}
.textField > input,
.textField > textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
  padding: 10px 8px;
  margin-bottom: 15px;
  height: 40px;
  font-size: 1.2rem;
}
.textField > textarea {
  height: 300px;
  resize: none;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.checkboxInput {
  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;
  margin-right: 25px;
}
.checkboxInput input {
  position: relative;
}
.checkboxInput input::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #b6b5b5;
  display: inline-block;
  background: white;
  position: absolute;
  top: -3px;
}
.checkboxInput input:checked::after {
  content: "";
  display: inline-block;
  height: 7px;
  width: 11px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 4px;
  color: #83735c;
}
.checkboxInput > input {
  margin-right: 8px;
}
.checkboxInput > span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  margin-left: 5px;
}
.inputWidth label {
  max-width: 300px;
}
.photoBlock {
  width: 200px;
  height: auto;
  margin-right: 25px;
}
.photoBlock > img {
  width: 200px;
  height: auto;
}
@media (max-width: 576px) {
  .inputWidth label {
    max-width: 100%;
  }
}

.userTypeCheckbox---16SCh {
  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;
}


.imgArea---E9e2o {
  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;
}
.imgArea---E9e2o .deletePhoto---376GY {
  margin-top: 10px;
  color: #d88c82;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.imgArea---E9e2o .deletePhoto---376GY:hover {
  color: #ff695f;
}
.fileField---130lE > .labelText---UhIsl {
  cursor: pointer;
}
.fileField---130lE > .labelText---UhIsl > .upload---11jke {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2ebcfc;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
}
.fileField---130lE > .labelText---UhIsl > .fileTypes---2w969 {
  color: #989898;
  font-size: 0.8rem;
}
.fileField---130lE > input {
  display: none;
}
.subBlock---2w8ck {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subBlock---2w8ck > label {
  -webkit-flex-basis: 47%;
      -ms-flex-preferred-size: 47%;
          flex-basis: 47%;
}
@media (max-width: 767.98px) {
  .subBlock---2w8ck > label {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}

.dropdown .dropdown-select__control:focus-within {
  border: 1px solid #e4cfb0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px;
}
.dropdown .dropdown-select__menu-list {
  padding: 0;
}
.dropdown .dropdown-select__option:active {
  background-color: rgba(228, 207, 176, 0.5);
}
.dropdown .dropdown-select__option--is-selected {
  background-color: #e4cfb0;
}
.dropdown .dropdown-select__option--is-focused {
  background-color: rgba(228, 207, 176, 0.2);
  color: #000000;
}
.dropdown .dropdown-select__indicator-separator {
  display: none;
}
.dropdown .dropdown-select__control svg {
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.dropdown .dropdown-select__control--menu-is-open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.requests---268ee .title---3OqBF {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
}
.requests---268ee .request_list---3MOTt .request_item---2MyBX {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.requests---268ee .request_list---3MOTt .request_item---2MyBX .organization_name---1mC5B {
  font-weight: 500;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
}
.requests---268ee .request_list---3MOTt .request_item---2MyBX .delete_button---usCP0 {
  cursor: pointer;
}
.requests---268ee .request_list---3MOTt .request_item---2MyBX .delete_button---usCP0:hover {
  color: red;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.degreeField---nBKs7 {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.degreeField---nBKs7 > input {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.33);
  border-radius: 5px;
  padding: 10px 8px;
  margin-bottom: 15px;
  height: 40px;
  font-size: 1.2rem;
}
.degreeField---nBKs7 svg {
  height: 20px;
  position: absolute;
  top: 40px;
  right: -25px;
  cursor: pointer;
}
.additionalButtons---3dvS6 {
  font-size: 0.8rem;
  color: #2ebcfc;
  font-weight: 600;
  text-decoration: underline;
  margin: -10px 0 10px;
  cursor: pointer;
}
.organizationItem---2SHZ_,
.educationItem---2FSb5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.educationItem---2FSb5 {
  width: 100%;
}
.organizationItem---2SHZ_ label {
  -webkit-flex-basis: 32%;
      -ms-flex-preferred-size: 32%;
          flex-basis: 32%;
}
@media (max-width: 767.98px) {
  .degreeField---nBKs7 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
  }
  .degreeField---nBKs7 svg {
    position: initial;
  }
  .organizationItem---2SHZ_ label {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
  .educationItem---2FSb5 > div {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.organizations---clvK_ .title---1ApK0 {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
}
.organizations---clvK_ .organizations_area---hff2N .organization_list---sYSY3 .organization_item---EdmL5 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}

.downloadCV---30-zz input {
  display: none;
}
.downloadCV---30-zz span {
  font-size: 0.8rem;
  color: #2ebcfc;
  font-weight: 600;
  text-decoration: underline;
  margin: -10px 0 10px;
  cursor: pointer;
}
.textarea----U7A_ {
  height: 200px !important;
}
.downloadItem---27_kl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.downloadItem---27_kl > a {
  margin-right: 10px;
  color: #2ebcfc;
  text-decoration: none;
}
.downloadItem---27_kl svg {
  cursor: pointer;
}

.accessLink---1EsC5 {
  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;
  border: 2px solid #2ebcfc;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.accessLink---1EsC5 > svg {
  color: #2ebcfc;
  font-size: 18px;
  z-index: 1000;
  top: 9px;
  left: 9px;
  cursor: pointer;
}
.accessLink---1EsC5 > input {
  margin-left: 10px;
  width: 100%;
  border: transparent;
  position: relative;
  display: block;
  padding: 5px 0;
  font-size: 1.1rem;
}
.accessLinkText---3zXAW > .generateLink---1BVk8 {
  color: red;
  cursor: pointer;
}
.changePasswordButton---2VcEh {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2ebcfc;
  padding: 5px 10px;
  border: 1px solid #2ebcfc;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
}
.changePasswordButton---2VcEh:hover {
  background: rgba(28, 134, 242, 0.05);
}

.editPage---3BYhy {
  width: 80%;
  margin: 0 auto 50px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.editPage---3BYhy > .saveButton---2NybH {
  width: 150px;
  margin: 40px 10px 15px 0;
  background-color: #83735c;
  border-radius: 5px;
  border: 1px transparent;
  color: #ffffff;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 15px 25px;
}
.editPage---3BYhy > .saveButton---2NybH:hover {
  background-color: #6d604e;
}
.editPage---3BYhy > .cancelButton---1WNkF {
  width: 150px;
  margin-top: 40px;
  border: 1px solid #83735c;
  color: #83735c;
  background-color: transparent;
  padding: 14px 25px;
  border-radius: 5px;
}
.editPage---3BYhy > .cancelButton---1WNkF:hover {
  color: #aa967a;
  border: 1px solid #aa967a;
}
.navStyle---3OCcE {
  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;
  position: relative;
  margin-top: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.navStyle---3OCcE button {
  background-color: transparent;
  padding: 8px 10px;
  border: 2px solid transparent;
  font-weight: 700;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  border-bottom: 2px solid transparent;
}
.navStyle---3OCcE button:hover {
  border-bottom: 2px solid #b3d4fc;
}
.navStyle---3OCcE > .selected---2TTVQ {
  border-bottom: 2px solid #10a7ea;
}
@media (max-width: 767.98px) {
  .editPage---3BYhy {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 12px;
  }
  .editPage---3BYhy > div > .fields---1rmxg > .textInput---3mzNd > textarea {
    height: 150px;
  }
  .editPage---3BYhy > .userNameBlock---1VddH,
  .editPage---3BYhy > .emailBlock---DV2Ny,
  .editPage---3BYhy > .personalDataBlock---31qwp,
  .editPage---3BYhy > .locationBlock---3AGod,
  .editPage---3BYhy > .educationBlock---AjFQp,
  .editPage---3BYhy > .organizationBlock---2aMBW {
    margin-bottom: 40px;
  }
  .editPage---3BYhy > .userNameBlock---1VddH > .fields---1rmxg,
  .editPage---3BYhy > .emailBlock---DV2Ny > .fields---1rmxg,
  .editPage---3BYhy > .personalDataBlock---31qwp > .fields---1rmxg,
  .editPage---3BYhy > .locationBlock---3AGod > .fields---1rmxg,
  .editPage---3BYhy > .educationBlock---AjFQp > .fields---1rmxg,
  .editPage---3BYhy > .organizationBlock---2aMBW > .fields---1rmxg {
    display: grid;
    grid-template-columns: 1fr;
  }
  .editPage---3BYhy .resumeBlock---2hqf8 > .fields---1rmxg > .DownloadCV---27_dG {
    margin-right: 10px;
  }
}

.profileContainer---18Rwv {
  background-color: #f5f5f5;
  min-height: 100vh;
}
.profileContainer---18Rwv > .preview---fOxfm {
  background-color: #000000;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}
.profileContainer---18Rwv > .preview---fOxfm > .title---3umVi {
  color: #ffffff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 50px 5%;
}
.toAppContainer---1OA-w {
  margin-top: 150px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.toAppContainer---1OA-w > .goToButton---Hz8JE {
  width: 250px;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  background-color: #1c86f2;
}
.toAppContainer---1OA-w > .goToButton---Hz8JE > a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .profileContainer---18Rwv > .preview---fOxfm {
    height: 200px;
  }
}

.payment---2Ik0y {
  text-align: center;
}
.payment---2Ik0y .services---LRvEd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
}
.payment---2Ik0y img {
  width: 150px;
}
.header---1jnbW {
  font-size: 1.1rem;
  position: relative;
  color: #6B7C93;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 0.7rem;
  font-weight: 600;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header---1jnbW .title---4ywgc {
  padding-top: 1rem;
}
.header---1jnbW .times---240X2 {
  color: #6B7C93;
  position: absolute;
  top: 3px;
  right: 0;
}
.header---1jnbW .times---240X2:hover {
  opacity: 0.7;
  cursor: pointer;
}
.downgrade---1_Kv6 {
  text-align: center;
}
.downgrade---1_Kv6 p {
  color: #6B7C93;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.pricingButton---3HkLb {
  color: #fff;
  background-color: #03a9f4;
  border-color: #03a9f4;
  letter-spacing: 0.04em;
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}
.pricingButton---3HkLb:hover {
  background-color: #2ebcfc;
  border-color: #2ebcfc;
  cursor: pointer;
}

.button---3Ca-s {
  color: #fff;
  background-color: #03a9f4;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
  border-radius: 5px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: Helvetica, Arial, "Open Sans", sans-serif;
  border: none;
}
.button---3Ca-s:hover {
  background-color: #2ebcfc;
  cursor: pointer;
}
.button---3Ca-s:disabled {
  background-color: #03a9f4;
  opacity: 0.5;
}

.form---1TV7Y {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.label---1noRP {
  min-width: 400px;
}
.title---2w6Hs {
  font-size: 1.1rem;
  color: #6B7C93;
  text-align: center;
  padding: 0.4rem;
}
.active---1uJ_v {
  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;
}
.error---3aKrv {
  color: #fff;
  padding: 0.55rem 1.5rem;
  margin-left: 1rem;
  background-color: #ffcdd2;
  line-height: 1.3;
  border-radius: 5px;
}
.success---1h3La {
  color: #fff;
  background-color: #1de9b6;
  padding: 0.55rem 1.5rem;
  line-height: 1.3;
  margin-left: 1rem;
  border-radius: 5px;
}

.pricingBlock---1-pcs {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0.5rem;
  max-width: 350px;
  padding: 24px 40px;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.11);
  border: 1px solid #E3E4E5;
  border-radius: 5px;
}
.pricingBlock---1-pcs .pricingTitle---QDeRb {
  font-weight: 600;
  text-transform: uppercase;
  color: #3C424F;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.pricingBlock---1-pcs .pricingPrice---i31EF {
  font-size: 3rem;
  line-height: 4rem;
  color: #3C424F;
  margin-bottom: 16px;
}
.pricingBlock---1-pcs .oldPrice---3FzTp {
  text-decoration: line-through;
  font-size: 2.5rem;
  opacity: 0.5;
}
.pricingBlock---1-pcs .pricingColor---3YGbW {
  font-size: 0.875em;
  line-height: 1rem;
  color: #FF9800;
  margin-bottom: 1rem;
}
.pricingBlock---1-pcs .pricingBilled---1LgCk {
  margin-bottom: 0.6rem;
  font-weight: 300;
  color: #6B7C93;
}
.pricingBlock---1-pcs .pricingText---k6hAB {
  color: #4a4a4a;
  font-weight: 400;
  line-height: 2rem;
}
.pricingBlock---1-pcs .pricingText---k6hAB::before {
  content: '\2713';
  color: #03a9f4;
  font-weight: 400;
  padding-right: 0.1rem;
  font-size: 0.75em;
  line-height: 2rem;
}
.pricingBlock---1-pcs .pricingButton---2BHhY {
  color: #fff;
  background-color: #03a9f4;
  border-color: #03a9f4;
  letter-spacing: 0.04em;
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}
.pricingBlock---1-pcs .pricingButton---2BHhY:hover {
  background-color: #2ebcfc;
  border-color: #2ebcfc;
  cursor: pointer;
}
.pricingBlock---1-pcs .pricingImg---2LrBS {
  font-size: 2.3rem;
  color: #FF9800;
  border: 2px solid #FF9800;
  border-radius: 100%;
  width: 82px;
  height: 82px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.darkThemeBlock---juBNZ {
  background-color: #000000;
}
.darkThemeBlock---juBNZ .pricingTitle---QDeRb,
.darkThemeBlock---juBNZ .pricingPrice---i31EF,
.darkThemeBlock---juBNZ .pricingText---k6hAB {
  color: white;
}
.darkThemeBlock---juBNZ .pricingButton---2BHhY {
  background-color: #FF9800;
  border-color: #FF9800;
}
.darkThemeBlock---juBNZ .pricingButton---2BHhY:hover {
  background-color: #ffad33;
  border-color: #ffad33;
}
.darkThemeBlock---juBNZ .pricingText---k6hAB::before {
  color: white !important;
}

.subtitle---TIUeP {
  font-size: 20px;
  margin-bottom: 4px;
}
.item---1-M4u {
  font-size: 18px;
  color: #848484;
  margin-bottom: 15px;
}
.subBlock---23m91 {
  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-bottom: 20px;
}
.subBlock---23m91 .sliderArrows---3hXFo {
  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;
}
.subBlock---23m91 .sliderArrows---3hXFo svg {
  font-size: 3rem;
  cursor: pointer;
}
.subBlock---23m91 .sliderContainer---PIBib {
  width: 80%;
}
.heading---3q1za {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 20px 0 15px;
}
.infoBlock---3kSKC {
  width: 100%;
  border-bottom: 1px solid rgba(18, 18, 18, 0.33);
  padding-bottom: 20px;
}
.subContainer---NKM-B {
  width: 90%;
  margin: 20px auto;
}
.buttonBack---1oEnc {
  width: 150px;
  border: 1px solid #83735c;
  color: #83735c;
  background-color: transparent;
  padding: 14px 25px;
  border-radius: 5px;
}
.buttonBack---1oEnc:hover {
  color: #aa967a;
  border: 1px solid #aa967a;
}
.deleteSubButton---1FAGF {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #fc2b2b;
  cursor: pointer;
}
.modalContent---99x4q .button---2CAIW {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 8px 10px;
  margin-right: 15px;
  cursor: pointer;
}
.modalContent---99x4q > .control---1gW8l {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.modalContent---99x4q > .control---1gW8l > .cancel---1Jyt2 {
  color: #1c86f2;
}
.modalContent---99x4q > .control---1gW8l > .delete---3jn4A {
  border: 1px solid #a11c1c;
  color: #a11c1c;
}
.modalContent---99x4q > .control---1gW8l > .delete---3jn4A:hover {
  background-color: #a11c1c;
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.profSubscBlock---3jerd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.profSubscBlock---3jerd .pricing---3QZml {
  width: 306px;
  margin: -8px;
}
.profSubscBlock---3jerd .leftBlock---1bEPz {
  width: 290px;
  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;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG {
  background-color: #fff;
  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;
  margin: 0.5rem;
  max-width: 350px;
  padding: 24px 40px;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.11);
  border: 1px solid #E3E4E5;
  border-radius: 5px;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .title---3vOqa {
  font-weight: 600;
  color: #3C424F;
  font-size: 1rem;
  margin-bottom: 16px;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .status---1Htwu {
  cursor: pointer;
  color: #fff;
  background-color: #1de9b6;
  border-color: #1de9b6;
  letter-spacing: 0.04em;
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .status---1Htwu .manage---3Dgm8 {
  display: none;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .status---1Htwu:hover {
  display: block;
  background-color: #83735c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .status---1Htwu:hover .active---9MBxP {
  display: none;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .status---1Htwu:hover .manage---3Dgm8 {
  display: block;
}
.profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG .price---3bvzr {
  font-size: 36px;
  color: #a11c1c;
  margin: 26px 0 36px;
  font-weight: 600;
}
.profSubscBlock---3jerd .right---2lPvw {
  margin-left: 20px;
}
.subtitle---2JbiN {
  font-size: 20px;
  margin-bottom: 4px;
}
.item---24iYk {
  font-size: 18px;
  color: #848484;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .profSubscBlock---3jerd {
    -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;
  }
  .profSubscBlock---3jerd .right---2lPvw {
    width: 100%;
  }
  .profSubscBlock---3jerd .leftBlock---1bEPz .left---1_RPG {
    width: 100%;
    margin-bottom: 20px;
  }
}

.slick-slide > div {
  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;
}

.profSubscription---3EtaL {
  margin-top: 20px;
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid rgba(18, 18, 18, 0.33);
}
.subscriptionTabs---23Zfh {
  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;
}
.subscriptionTabs---23Zfh .sliderArrows---2Szw3 {
  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;
}
.subscriptionTabs---23Zfh .sliderArrows---2Szw3 svg {
  font-size: 3rem;
  cursor: pointer;
}
.subscriptionTabs---23Zfh .sliderContainer---3hb5E {
  width: 80%;
}
.organization---1Vp3o {
  margin-top: 20px;
}
.organization---1Vp3o > .or---1jvwv {
  text-align: center;
  font-size: 2rem;
}
.organization---1Vp3o > .text---2Pta5 {
  margin-top: 20px;
  text-align: center;
}
.organization---1Vp3o > .emailField---pkN3Z {
  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;
  margin: 20px auto;
  width: 70%;
  min-width: 300px;
  border-radius: 10px;
  border: 1px solid rgba(18, 18, 18, 0.33);
  background-color: #ffffff;
  overflow: hidden;
}
.organization---1Vp3o > .emailField---pkN3Z > input {
  font-size: 2rem;
  width: 100%;
  border: 1px transparent;
  padding: 5px;
  border-radius: 10px;
}
.organization---1Vp3o > .emailField---pkN3Z > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 0 20px;
  height: 47px;
  line-height: 47px;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  background-color: #cccccc;
}
.organization---1Vp3o > .emailField---pkN3Z > div:hover {
  background-color: #03a9f4;
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.profileContainer---3qx-I {
  width: 80%;
  margin: 20px auto;
}
.profileContainer---3qx-I .title---1RZVH {
  position: relative;
}
.profileContainer---3qx-I .title---1RZVH > .editButton---26_zW {
  font-size: 1rem;
  cursor: pointer;
  color: #ffffff;
  background-color: #8a735a;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
}
.profileContainer---3qx-I .title---1RZVH > .editButton---26_zW:hover {
  background-color: #1c86f2;
  border-color: #1c86f2;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.profileContainer---3qx-I > .profile---2O9uf {
  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;
}
.profileContainer---3qx-I > .profile---2O9uf > .photo---2tPj8 {
  max-width: 300px;
}
.profileContainer---3qx-I > .profile---2O9uf > .photo---2tPj8 img {
  max-width: 290px;
  height: auto;
  max-height: 400px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 {
  margin-left: 20px;
  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;
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 .name---1MuqD {
  font-size: 2rem;
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 .company---jufpy {
  font-size: 0.8rem;
  color: #2ebcfc;
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 .summary---1eMil {
  margin-top: 20px;
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 .contacts---313MV {
  margin-top: 15px;
}
.profileContainer---3qx-I > .profile---2O9uf > .userData---2e8Y1 .contacts---313MV > p {
  color: #373737;
}
.goToButton---wcRth {
  width: 100%;
  border-radius: 10px;
  text-align: center;
  background-color: #1c86f2;
  cursor: pointer;
  margin-top: 1rem;
}
.goToButton---wcRth .link---1zZoy:hover {
  opacity: 0.7;
}
.goToButton---wcRth a,
.goToButton---wcRth p {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  padding: 15px 30px;
}
.goToButton-disable---1ijlZ {
  background-color: #cccccc;
  color: black;
}
@media (max-width: 767.98px) {
  .profileContainer---3qx-I {
    width: 92%;
  }
  .profileContainer---3qx-I .title---1RZVH .editButton---26_zW {
    background-color: #8a735a00;
    top: -70px;
    right: -5px;
  }
}
@media (max-width: 576px) {
  .profileContainer---3qx-I .profile---2O9uf .userData---2e8Y1 {
    text-align: center;
  }
  .profileContainer---3qx-I .profile---2O9uf .userData---2e8Y1 .name---1MuqD {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .profileContainer---3qx-I .profile---2O9uf .userData---2e8Y1 .goToButton---wcRth {
    width: 100%;
    margin-top: 10px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Helvetica, Arial, "Open Sans", sans-serif;
}
body {
  min-height: 100vh!important;
  cursor: default;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
div {
  font-family: Helvetica, Arial, "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5rem;
}
.container {
  max-width: 1232px;
  margin: 0 auto;
  padding: 80px 15px;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.StripeElement {
  display: block;
  margin: 10px 0 20px 0;
  max-width: 500px;
  padding: 10px 14px;
  font-size: 1em;
  font-family: 'Source Code Pro', monospace;
  -webkit-box-shadow: rgba(50, 50, 93, 0.14902) 0 1px 3px, rgba(0, 0, 0, 0.0196078) 0 1px 0;
          box-shadow: rgba(50, 50, 93, 0.14902) 0 1px 3px, rgba(0, 0, 0, 0.0196078) 0 1px 0;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: white;
}
.StripeElement--focus {
  -webkit-box-shadow: rgba(50, 50, 93, 0.109804) 0 4px 6px, rgba(0, 0, 0, 0.0784314) 0 1px 3px;
          box-shadow: rgba(50, 50, 93, 0.109804) 0 4px 6px, rgba(0, 0, 0, 0.0784314) 0 1px 3px;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
}
label {
  color: #6b7c93;
  font-weight: 300;
  letter-spacing: 0.025em;
}
.ReactModal__Content {
  max-width: 600px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* make sure to set some focus styles for accessibility */
:focus {
  outline: none;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}
/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}
/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
button,
input,
select,
textarea {
  color: #222;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
img {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}


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