/* Global */

body {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  margin: 0;
  padding: 0;
}

/* Forms */
input[type="email"] {
  width: 100%;
  padding: 5px 10px;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
  font-size: 1rem;
}
input[type="email"]:focus,
input[type="email"].focus {
  border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}

input[type="text"],
select {
  width: 96%;
  padding: 5px 10px;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
  font-size: 1rem;
}
input[type="text"]:focus,
input[type="text"].focus {
  border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}

select {
  width: 100%;
  background-color: #fff;
}

.form {
  display: flex;
  flex-direction: column;
}

.form label {
  margin-top: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.form__button {
  text-align: center;
  margin-top: 26px;
}

.profile__card {
  line-height: 1.5;
}

.message-success {
  color: #00bd67;
  text-align: center;
  width: 100%;
}

.message-error {
  color: #c0392b;
  text-align: center;
  width: 100%;
}

/* Buttons & links */

.button {
  display: inline-block;
  padding: 10px 18px;
  margin: 5px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 2px;
  text-decoration: none;
  font-size: 16px;
}

.button--primary {
  background-color: #00bd67;
  color: #fff;
}

.button--primary:hover,
.button--primary:active {
  background-color: #1f744d;
  color: #fff;
}

.button--secondary {
  background-color: #eff4f3;
  color: #333 !important;
}

.button--secondary:hover,
.button--secondary:active {
  background-color: #c1c1c1;
  color: #fff;
}

.text-link {
  text-decoration: none;
  font-weight: bolder;
  color: #fff;
}

.btn-link {
  font-weight: lighter;
  color: #00bd67;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: -1px;
  cursor: pointer;
}

/* Home */

.home__header {
  text-align: center;
  margin-bottom: 250px;
}

.home__logo {
  height: auto;
  width: 250px;
  margin-bottom: 120px;
  margin-top: 20px;
}

.home__headline {
  font-family: "Bree Serif", "Georgia", serif;
  font-weight: normal;
  font-size: 2.6rem;
  margin: 0;
}

.home__subtitle {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  margin: 10px 0;
  text-align: center;
}

.home__actions {
  margin-top: 20px;
  text-align: center;
}

.home__subtitle--inversed {
  color: #fff;
}

.home__description {
  background: -webkit-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: -moz-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: -o-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  color: #fff;
  padding-bottom: 80px;
}

.home__container {
  width: 100%;
  max-width: 960px;
  margin: auto;
}

.home__screenshot {
  width: 100%;
  margin-top: -200px;
  margin-bottom: 0;
}

.home__text {
  padding: 0 15%;
  font-size: 20px;
  text-align: justify;
}

.home__steps {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 60px 0;
}

.home__steps-column {
  width: 33.3%;
  float: left;
  text-align: center;
  margin-bottom: 50px;
}

.home__steps-logo {
  margin-top: 20px;
  width: 80%;
  height: auto;
}

.home__steps-description {
  padding: 0 10px;
}

.home__references {
  padding-top: 80px;
  background-color: #eff4f3;
  padding-bottom: 200px;
}

.home__references-column {
  width: 25%;
  float: left;
  text-align: center;
}

.home__reference-logo {
  margin-top: 20px;
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.home__integration {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding-top: 80px;
}

.home__integration-column {
  width: 33.3%;
  float: left;
  text-align: center;
}

.home__integration a {
  color: #00bd67;
  text-decoration: none;
  font-weight: bold;
}

.home__integration a:hover {
  color: #1f744d;
  text-decoration: none;
  font-weight: bold;
}

.home__integration-image {
  margin-top: 20px;
  width: 80%;
  height: auto;
}

.home__integration-description {
  padding: 0 50px;
}

.home__line {
  width: 70px;
  height: 40px;
  border-bottom: 1px solid #c1c1c1;
  margin: auto;
  margin-bottom: 50px;
}

.home__line--inversed {
  border-bottom: 1px solid #fff;
}

@media (max-width: 768px) {
  .home__logo {
    height: auto;
    width: 200px;
    margin-bottom: 80px;
    margin-top: 20px;
  }

  .home__headline {
    font-family: "Bree Serif", "Georgia", serif;
    font-weight: normal;
    font-size: 2.2rem;
    margin: 0;
  }

  .home__subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    margin: 10px 0;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home__text {
    padding: 0 20px;
    font-size: 18px;
    text-align: left;
  }

  .home__steps-column,
  .home__references-column,
  .home__integration-column {
    width: 100%;
    float: none;
    text-align: center;
  }
}

/* Footer */

.footer {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #ddd;
  margin-top: 80px;
  font-weight: 300;
  padding: 64px 0;
}

.footer__container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
}

.footer__links {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: flex-end;
  flex: 1;
  justify-content: flex-end;
}

.footer__link {
  margin-left: 16px;
}

.footer__love {
  flex: 1;
}

.footer__links-and-social {
  text-align: right;
}

.footer__logo {
  width: 150px;
  filter: grayscale(100%);
}

.footer a {
  color: #00bd67;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  color: #1f744d;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column-reverse;
  }

  .footer__links-and-social {
    text-align: center;
  }

  .footer__links {
    display: flex;
    list-style: none;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .footer__love {
    text-align: center;
  }

  .footer__link {
    margin: 0 8px;
  }

  .footer__logo {
    display: none;
  }
}

/* Profile */

.profile {
  background-color: #eff4f3 !important;
  width: 100%;
}

.profile__background {
  background: -webkit-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: -moz-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: -o-linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  background: linear-gradient(141deg, #00bd67 0%, #2cb5e8 100%);
  height: 150px;
}

.profile__logo {
  height: auto;
  width: 250px;
  margin: auto;
  display: block;
  margin-bottom: 50px;
}

.profile__card {
  max-width: 560px;
  display: block;
  padding: 30px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  margin: auto;
  border-radius: 3px;
  margin-top: -100px;
  margin-bottom: 100px;
}

.profile__form {
  margin-top: 50px;
}

.profile__input {
  width: 60% !important;
  padding: 10px 10px !important;
}

.profile__button {
  width: 30% !important;
  border: 0 !important;
  margin-top: -3px;
}

@media (max-width: 768px) {
  .profile__input {
    width: 90% !important;
    padding: 10px 10px !important;
    margin: auto;
    display: inherit;
  }

  .profile__button {
    width: 200px !important;
    margin: auto;
    margin-top: 10px;
    border: 0 !important;
    display: inherit;
  }
}

/* Errors */

.error__title {
  text-align: center;
}

.error__subtitle {
  text-align: center;
}

.error__action {
  text-align: center;
}

/* Wallet  */
.hidden {
  display: none;
}

.privateKeyPlaceholder {
  background-color: #eee;
  padding: 16px;
  margin-top: 8px;
  word-wrap: break-word;
}

.form__confirmation {
  margin-top: 22px;
}

.form__confirmation label {
  font-weight: normal !important;
}

/* Icons svg */
/* -----
SVG Icons - svgicons.sparkk.fr
----- */

.svg-icon {
  width: 2em;
  height: 2em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #00bd67;
}

.svg-icon circle {
  stroke: #00bd67;
  stroke-width: 1;
}

.svg-icon:hover circle {
  stroke: #1f744d;
  stroke-width: 1;
}

.svg-icon:hover rect {
  fill: #1f744d;
}

.currency-switch {
  display: flex;
  align-items: center;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1f744d;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #1f744d;
}
input:focus + .slider {
  box-shadow: 0 0 1px #1f744d;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.currency {
  font-weight: 500;
  color: #707070;
  font-size: 18px;
  padding: 8px;
}

.pricing__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pricing__title-select {
  font-size: 18px;
  color: #707070;
}

.pricing__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}

@media (max-width: 768px) {
  .pricing__plans {
    grid-template-columns: 1fr;
  }
}

.pricing__plan {
  text-align: center;
  box-shadow: 0 0.8px 1.6px rgba(0, 0, 0, 0.01),
    0 1.9px 3.6px rgba(0, 0, 0, 0.014), 0 3.2px 6.3px rgba(0, 0, 0, 0.017),
    0 5.1px 10px rgba(0, 0, 0, 0.02), 0 7.9px 15.5px rgba(0, 0, 0, 0.023),
    0 12.4px 24.1px rgba(0, 0, 0, 0.026), 0 20.5px 40px rgba(0, 0, 0, 0.03),
    0 41px 80px rgba(0, 0, 0, 0.04);
}

.pricing__plan p {
  margin: 0;
  padding: 16px;
}

.pricing__plan-title {
  border-bottom: 2px solid rgb(250, 250, 250);
  font-size: 18px;
  font-weight: 700;
}

.pricing__plan:first-of-type .pricing__plan-title {
  color: #00bd67;
}

.pricing__plan:first-of-type .pricing__plan-button {
  background-color: #00bd67 !important;
}

.pricing__plan:first-of-type .pricing__plan-button:hover {
  background-color: #00a85d !important;
}

.pricing__plan:first-of-type .pricing__plan-button:active {
  background-color: #009652 !important;
}

.pricing__plan:last-of-type .pricing__plan-title {
  color: #2cb5e8;
}

.pricing__plan:last-of-type .pricing__plan-button {
  background-color: #2cb5e8 !important;
}

.pricing__plan:last-of-type .pricing__plan-button:hover {
  background-color: #0d93c4 !important;
}

.pricing__plan:last-of-type .pricing__plan-button:active {
  background-color: #04759e !important;
}

.pricing__plan-price {
  font-size: 24px;
  padding-bottom: 4px !important;
  color: #707070;
}

.pricing__plan-equivalent {
  border-bottom: 2px solid rgb(245, 245, 245);
  padding-top: 0 !important;
  color: #04759e;
}

.pricing__plan-button {
  width: 85% !important;
  margin-bottom: 16px;
}


