* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: #010101;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #34d16e;
}
button {
  border: none;
}
h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}
h3 {
  font-size: 35px;
  font-weight: 400;
  margin: 0;
}
h4 {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
}
h5 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
p {
  line-height: 1.7;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
strong {
  font-weight: bold;
}
input {
  border: none;
}
input:focus {
  outline: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="password"],
textarea,
select,
.textarea,
.editor__textarea {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid rgba(41,98,182,0.2);
  border-radius: 2px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus,
.textarea:focus,
.editor__textarea:focus {
  border: 1px solid #0077e2;
  outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.textarea {
  border: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
.text-center {
  text-align: center;
}
.section {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-top: 100px;
  }
}
.section__title {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 35px;
  }
}
.article {
  margin-top: 100px;
}
.article__text {
  max-width: 750px;
  font-size: 17px;
  margin: 10px auto 0 auto;
  text-align: center;
}
.article__btn {
  height: 45px;
  line-height: 45px;
  padding: 0px 30px;
  border-radius: 2px;
  display: table;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background-color: #34d16e;
}
.article__btn:hover {
  background-color: #116035;
}
.notification__error {
  position: absolute;
  top: 75px;
  right: 15px;
  width: 275px;
  z-index: 999;
  background-color: #f00;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.column {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nowrap {
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top {
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.middle {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.bottom {
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.stretch {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.left {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.around {
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.header {
  height: 60px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: rgba(105,106,119,0.1) 0px 2px 4px;
  box-shadow: rgba(105,106,119,0.1) 0px 2px 4px;
}
.header.header-not {
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 80px;
}
.header.header-border {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #f1f1f1;
}
.header.header--transparent {
  background-color: rgba(255,255,255,0);
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0px;
    z-index: 12;
  }
}
.header-container {
  height: 60px;
  line-height: 60px;
}
@media (max-width: 768px) {
  .header-container {
    z-index: 11;
  }
}
.header-container.header-container--not {
  height: 80px;
  line-height: 80px;
}
.header-menu-not {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-menu-not {
    display: block;
  }
}
.header-screen {
  display: none;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #fff;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  position: fixed;
  outline: 0px;
  z-index: 2;
}
.header-screen-list {
  margin-top: 30px;
}
.header-screen-list li {
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}
.header-screen-list li a {
  color: #010101;
}
.header-screen-list li:nth-child(n+2) {
  margin-top: 15px;
}
.header-screen-content {
  width: 100%;
  position: relative;
  padding: 50px;
}
.header-menu-close {
  position: absolute;
  top: 40px;
  right: 40px;
}
.header-logo__img {
  width: 20px;
  height: 25px;
}
.header-logo__name {
  margin: 0 0 0 7px;
  font-size: 17px;
  font-weight: 600;
  color: #34d16e;
}
.header-payment {
  font-weight: 400;
  line-height: 1.7;
  text-align: right;
  color: #010101;
}
.header-payment:hover {
  text-decoration: underline;
}
.header-payment.header-payment--transparent {
  color: #fff;
}
.header-payment__icon {
  margin: 0 5px;
}
.header-transparent {
  display: none;
}
@media (max-width: 768px) {
  .header-transparent {
    display: block;
    width: 100%;
    height: 100%;
    left: 100%;
    top: 56px;
    position: fixed;
    background: #fff;
    z-index: 2;
    text-align: center;
  }
}
.header-transparent__item {
  font-size: 20px;
  font-weight: 300;
  margin: 10px auto;
  color: #000;
}
.header-items-item {
  width: 100%;
  margin: 10px auto;
}
.header-items-item:hover {
  background: #34d16e;
}
.icons {
  display: none;
}
@media (max-width: 768px) {
  .icons {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
  }
}
.menu-transparent {
  width: 100%;
  height: 10%;
  background: #34d16e;
}
.menu-transparent:after {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
  position: absolute;
  width: 100%;
  content: "";
  background: #34d16e;
  top: 24px;
  height: 10%;
}
.menu-transparent:before {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
  position: absolute;
  width: 100%;
  content: "";
  background: #34d16e;
  top: 5px;
  height: 10%;
}
.header-items-transparent {
  align-item: center;
  z-index: 3;
}
@media (max-width: 768px) {
  .header-items {
    display: none;
  }
}
.header-item {
  margin: 0 0 0 20px;
  font-weight: 400;
}
.header-item.header-item--comunity {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.header-item.header-item--comunity:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.header-item.header-item--comunity:hover .header-menu {
  display: block;
}
.header-item:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.header-item.header-item--user {
  margin: 0;
  padding: 0 0 0 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.header-item.header-item--user:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.header-item.header-item--user:hover .header-user {
  display: block;
}
.header-menu {
  display: none;
  position: absolute;
  left: -25px;
  right: 0px;
  top: 80%;
  -webkit-box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  text-align: center;
  width: 150px;
  font-size: 13px;
  background: #fff;
  padding: 10px 0px;
  z-index: 2;
}
.header-menu:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: 100%;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  left: 78%;
  background: #fff;
  border-radius: 3px 0px 0px;
}
.header-user {
  display: none;
  position: absolute;
  right: 0px;
  top: 100%;
  -webkit-box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  text-align: center;
  width: 200px;
  font-size: 13px;
  background: #fff;
  padding: 10px 0px;
  z-index: 2;
}
.header-user:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: 100%;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  left: 90%;
  background: #fff;
  border-radius: 3px 0px 0px;
}
.header-menu__item {
  float: none;
  display: block;
  color: #010101;
  font-weight: 400;
  color: #010101;
  line-height: 1.7;
}
.header-menu__item:hover {
  font-weight: 400;
  background-color: rgba(190,210,241,0.5);
}
.header-menu__item a {
  display: block;
  padding: 10px;
  color: #010101;
}
.header-item__menu {
  display: block;
  padding-right: 8px;
}
.header-item__link {
  color: #010101;
}
.header-button {
  background-color: #34d16e;
  color: #fff;
  font-weight: 400;
  width: 122px;
  height: 38px;
  line-height: 38px;
  display: block;
  text-align: center;
  margin-left: 20px;
  border-radius: 2px;
}
.header-button.header-button--block {
  display: block;
  margin-left: 0;
  color: #fff;
  width: 200px;
  height: 45px;
  line-height: 45px;
}
.header-button:hover {
  background-color: #116035;
}
.header-button.header-button--line {
  background-color: #fff;
  border: 1px solid #34d16e;
  color: #34d16e;
}
.header-button.header-button--line:hover {
  background-color: #34d16e;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header-button {
    display: none;
  }
}
.header-user__img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .header-user__img {
    margin-right: 5px;
  }
}
.header-user__username {
  margin: 0px 8px;
}
@media screen and (max-width: 768px) {
  .header-user__username {
    display: none;
  }
}
.header-user__photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #34d16e;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.header-user-info {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
}
.header-user-info__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.header-user-info__photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #34d16e;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.header-user-info__username {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.7;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}
.header-user-info__name {
  margin: 0;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}
.header-exam__text {
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.header-exam__svg {
  display: block;
  margin: 0 15px;
}
.header-exam__time {
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: #f05;
  width: 46px;
}
.footer {
  background-color: #fff;
  margin-top: 150px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.footer-left {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .footer-left {
    width: 275px;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.footer-logo__img {
  width: 20px;
}
.footer-logo__name {
  font-size: 17px;
  font-weight: 500;
  margin-left: 5px;
  color: #34d16e;
}
.footer__text {
  font-size: 14px;
  margin: 15px 0;
}
@media screen and (max-width: 768px) {
  .footer__text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-social {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.footer-social-item {
  display: block;
  background-color: #4a4a4a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 33px;
  text-align: center;
}
.footer-social-item:nth-child(n+2) {
  margin-left: 10px;
}
.footer-right {
  padding-left: 120px;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .footer-right {
    display: none;
  }
}
.footer-item__title {
  font-size: 15px;
  font-weight: 500;
}
.footer-item-list {
  margin-top: 20px;
}
.footer-item-list__option:nth-child(n+2) {
  margin-top: 12px;
}
.footer-item-list__option a {
  color: #010101;
}
.footer-item-list__option a:hover {
  text-decoration: underline;
}
.discussions {
  padding: 1rem 0 3rem 0;
  margin-top: 5rem;
}
.discussions .container {
  max-width: 750px;
}
.discuss__back {
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #010101;
  cursor: pointer;
}
.discuss__back__login {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #010101;
  cursor: pointer;
}
.discuss__filters {
  padding: 0.5rem;
}
.discuss__filter {
  padding: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.discuss__filter.active {
  text-decoration: underline;
}
.discuss__header {
  padding: 1rem 0;
}
.discuss__header_title {
  font-weight: bold;
  margin-right: 0.5rem;
}
.discuss__number {
  background-color: #f00;
  padding: 0.05rem 0.25rem;
  color: #fff;
  border-radius: 2px;
}
.discuss__input {
  padding: 1rem;
  background-color: #fff;
  width: 100%;
  border-radius: 0.25rem;
  margin-bottom: 2rem;
  cursor: text;
  border: 1px solid #ccc;
}
.discuss__placeholder {
  color: #b8b8bf;
}
.discuss__input_img {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  border-radius: 50%;
}
#js-cancelar__discussion {
  cursor: pointer;
}
.discuss {
  padding: 1.5rem 1rem;
  border-top: 1px solid #ccc;
  cursor: pointer;
}
.discuss:hover {
  background-color: #f5f5f5;
}
.discuss__img {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-right: 0.75rem;
  border-radius: 50%;
}
.discuss__title {
  font-size: 1.0667rem;
  margin-right: 0.25rem;
}
.discuss__time {
  font-size: 0.86667rem;
  color: #010101;
  font-style: italic;
}
.discuss__operations {
  display: none;
}
@media screen and (min-width: 480px) {
  .discuss__operations {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
}
.discuss__faces {
  margin-right: 0.75rem;
}
.discuss__faces img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.discuss__resolved {
  color: #008000;
  display: inline-block;
  font-size: 20px;
  padding: 0 0.4687rem;
  margin-right: 0.75rem;
}
.discuss__more {
  padding: 2rem 0;
  cursor: pointer;
}
.discuss__more span {
  padding: 0 0.15rem;
}
.discuss_detail {
  padding: 2rem 0;
}
.discuss_detail__like {
  color: #010101;
  border: 1px solid #010101;
  padding: 0.75rem;
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
}
.discuss_detail__like.active {
  color: #f00;
  border-color: #f00;
}
.discuss_detail__number {
  padding-top: 0.75rem;
  font-size: 1.15rem;
  font-weight: bold;
  color: #010101;
}
.discuss_detail__number.active {
  color: #f00;
}
.discuss_detail__question {
  margin-left: 1rem;
  width: 100%;
}
.discuss_detail__title {
  margin: 0;
}
.discuss_detail__description {
  line-height: 1.35rem;
}
.discuss_detail__operations small {
  margin-left: 0.75rem;
  font-size: 0.8rem;
}
.discuss_detail__img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.discuss_detail__author {
  font-weight: bold;
}
.discuss_detail__time {
  font-style: italic;
  color: #010101;
}
.response__link,
.discuss_detail__link {
  text-decoration: underline;
  cursor: pointer;
}
.responses {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
#js-detail__discuss {
  border-bottom: 1px solid #fff;
}
.discuss_detail__content {
  width: 100%;
}
.responses__total {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.responses__number {
  background-color: #ff0;
  color: #fff;
  margin-left: 0.75rem;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
}
.response {
  padding: 1rem;
  margin: 1rem 0;
}
.response:hover {
  background-color: #ccc;
}
.response__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.response__check {
  font-size: 24px;
  margin-top: 0.75rem;
  color: #ececec !important;
  background-color: #fff !important;
  border: none !important;
  cursor: pointer !important;
}
.response__check:hover {
  color: rgba(0,128,0,0.4);
}
.response__check.active {
  border: 1px solid #008000 !important;
  background-color: #fff !important;
  color: #008000 !important;
}
.response__body {
  margin-left: 0.75rem;
  width: 100%;
}
.response__author_name {
  font-weight: bold;
}
.response__time {
  font-style: italic;
  color: #010101;
  margin-left: 0.75rem;
}
.response__operations small {
  margin-right: 0.75rem;
  font-size: 0.8rem;
}
.comments {
  margin: 1rem 0;
  background: #fafafa;
  padding: 1rem;
  border-radius: 2px;
  max-width: 500px;
  position: relative;
}
.comments .comment {
  padding: 1rem 0 0.5rem 0;
  border-bottom: 1px solid #ccc;
}
.comment__form {
  margin: 0.75rem 0;
  background-color: #fafafa;
}
.comment__img {
  width: 25px;
  height: 25px;
}
.comment__content {
  margin-left: 0.5rem;
  font-size: 0.95rem;
}
.comment__content p {
  margin: 0.25rem 0;
}
.comment__content small {
  font-weight: 400;
}
.discuss_detail__like:hover {
  color: rgba(255,0,85,0.55);
  border-color: rgba(255,0,85,0.55);
}
.discuss__icon__select {
  font-weight: bold;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.triangle-up {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 0;
  height: 0;
  border-bottom: 7.5px solid #fafafa;
  border-right: 7.5px solid transparent;
  border-left: 7.5px solid transparent;
}
.class {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .class {
    margin-top: 100px;
  }
}
.class-return {
  margin-bottom: 10px;
}
.class-return__text {
  display: block;
  color: #00b8f5;
  font-weight: 500;
  margin-left: 5px;
}
.class-module {
  border: 1px solid #f1f1f1;
  padding: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .class-module {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.class-module-left {
  width: 60%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .class-module-left {
    width: 100%;
    padding-right: 0;
  }
}
.class-module-right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .class-module-right {
    margin-top: 20px;
    width: 100%;
  }
}
.class-module__title {
  font-size: 20px;
  font-weight: 600;
}
.class-resource {
  margin-top: 12px;
}
.class-resource-item {
  padding: 8px 0;
}
.class-resource-item__name {
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
  color: #010101;
}
.class-resource-item__name:hover {
  text-decoration: underline;
}
.class-resource-item__name.class-resource-item__name--not {
  font-size: 13px;
  margin-left: 0;
  color: #4a4a4a;
}
.class-resource__title {
  font-size: 18px;
  font-weight: 500;
}
.class-video {
  border: 1px solid #f1f1f1;
}
.class-course {
  border: 1px solid #f1f1f1;
  padding: 15px;
}
.class-course-video {
  margin-top: 15px;
}
.class-course__frame {
  margin: 0;
}
.class-course__frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.class-course__title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.class-course-preview {
  width: 220px;
  height: 120px;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(#34d16e, #00b8f5);
  background-image: -moz-linear-gradient(#34d16e, #00b8f5);
  background-image: -o-linear-gradient(#34d16e, #00b8f5);
  background-image: -ms-linear-gradient(#34d16e, #00b8f5);
  background-image: linear-gradient(#34d16e, #00b8f5);
}
@media screen and (max-width: 768px) {
  .class-course-preview {
    display: none;
  }
}
.class-course-preview__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  margin: 0 auto;
  text-align: center;
  line-height: 45px;
}
.class-course-preview__circle svg {
  margin-left: 5px;
}
.class-course-info {
  width: calc(100% - 220px);
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .class-course-info {
    width: 100%;
    padding-left: 0;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.class-course-info-content {
  width: calc(100% - 230px);
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .class-course-info-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.class-course__name {
  font-size: 25px;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .class-course__name {
    text-align: center;
  }
}
.class-course__chapter {
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .class-course__chapter {
    text-align: center;
  }
}
.class-course__btn {
  width: 230px;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #34d16e;
  border: 1px solid #34d16e;
}
.class-course__btn:hover {
  background-color: #34d16e;
  color: #fff;
}
.class__load {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.classes {
  margin-top: 20px;
}
.classes-item {
  border: 1px solid #f1f1f1;
  padding: 15px;
  margin-bottom: 10px;
}
.classes-exam {
  margin: 10px 0 40px 0;
}
.class-exam__btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  display: block;
  background-color: #34d16e;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.class-exam__btn.class-exam__btn--approved {
  border: 2px solid #00b8f5;
  background-color: #fff;
  color: #00b8f5;
  cursor: auto;
}
.class-exam__btn.class-exam__btn--not {
  border: 2px dashed #4a4a4a;
  background-color: #fff;
  color: #4a4a4a;
  cursor: auto;
}
.classes-item-header {
  padding-top: 8px;
}
.classes-item-chapters {
  margin-top: 12px;
}
.classes-item-chapter {
  padding: 8px;
  cursor: pointer;
}
.classes-item-chapter:hover {
  background-color: #a7ebc0;
}
.classes-item-chapter.classes-item-chapter--select {
  background-color: #a7ebc0;
}
.classes-item-chapter__view {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #4a4a4a;
  background-color: #fff;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.classes-item-chapter__view.classes-item-chapter__view--complete {
  background-color: #34d16e;
  border: 1px solid #34d16e;
}
.classes-item-chapter__name {
  font-size: 15px;
  font-weight: 400;
  margin-left: 8px;
  color: #010101;
}
.classes-item__title {
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}
.classes-item__total {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #747678;
  text-align: left;
}
.exam {
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.exam__title {
  font-size: 30px;
  font-weight: 600;
  max-width: 700px;
}
.exam__subtitle {
  font-size: 18px;
  font-weight: 500;
}
.exam__img {
  width: 75px;
  margin: 20px 0;
}
.exam__text {
  font-size: 15px;
  text-align: center;
  margin: 20px 0;
}
.exam__btn {
  background-color: #34d16e;
  color: #fff;
  font-weight: 500;
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 2px;
  font-size: 16px;
  display: block;
  cursor: pointer;
}
.exam__btn:hover {
  background-color: #116035;
}
.exam-list {
  margin: 0 auto;
}
.exam__number {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50%;
  color: #4a4a4a;
  border: 2px solid #4a4a4a;
  margin: 0 8px 0 8px;
  cursor: pointer;
}
.exam__number.exam__number--active {
  background-color: #4a4a4a;
  color: #fff;
}
.exam__number:hover {
  background-color: #4a4a4a;
  color: #fff;
}
.exam-question {
  margin: 40px auto;
}
.exam-question__state {
  font-size: 17px;
  font-weight: 600;
  color: #34d16e;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}
.exam-question__name {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.exam-options {
  margin: 0 auto 20px auto;
}
.exam-btns {
  margin: 0 auto;
}
.exam-option {
  margin-top: 15px;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #e9edf1;
  cursor: pointer;
  border-radius: 2px;
}
.exam-option:hover {
  background-color: #e9edf1;
}
.exam-option.exam-option--success {
  border-color: #33d374;
  color: #33d374;
}
.exam-option__number {
  padding: 10px 15px;
  border-right: 1px solid #e9edf1;
  font-size: 14px;
  font-weight: 400;
}
.exam-option__text {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
}
.exam-inputs {
  margin-bottom: 15px;
}
.exam__input {
  width: 48%;
  height: 45px;
  padding: 10px;
}
.exam-noti {
  text-align: center;
}
.exam-noti__img {
  margin: 0 auto 15px auto;
}
.exam-noti__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.exam-noti__text {
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
}
.exam-noti__btn {
  display: block;
  width: 250px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  background-color: #34d16e;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  border-radius: 2px;
  margin: 0 auto;
}
.exam-noti__btn:hover {
  background-color: #27aa57;
}
.exam-noti__user {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px 0;
}
.exam-failure {
  width: 48%;
  padding: 15px;
  border: 1px solid #c3cad0;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 300;
  font-size: 15px;
}
.exam-failure.exam-failure--error {
  border: 1px solid #d0021b;
}
.exam-failure.exam-failure--success {
  border: 1px solid #11cda3;
}
.modale {
  display: none /* Hidden by default */;
  position: fixed /* Stay in place */;
  z-index: 1000000 /* Sit on top */;
  left: 0;
  top: 0;
  width: 100% /* Full width */;
  height: 100% /* Full height */;
  overflow: hidden /* Enable scroll if needed */;
  background-color: rgba(0,0,0,0.8) /* Black w/ opacity */;
  overflow-y: auto;
}
.modale--payment {
  display: none /* Hidden by default */;
  position: fixed /* Stay in place */;
  z-index: 1000000 /* Sit on top */;
  left: 0;
  top: 0;
  width: 100% /* Full width */;
  height: 100% /* Full height */;
  overflow: hidden /* Enable scroll if needed */;
  background-color: rgba(0,0,0,0.8) /* Black w/ opacity */;
  overflow-y: auto;
}
.modal-contente {
  margin: auto;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}
.modal-contente.modal-contente--half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .modal-contente.modal-contente--half {
    width: 90%;
  }
}
.modal-contente.modal-contente--payment {
  width: 290px;
  margin-top: 4rem;
  position: relative;
}
.modal-contente__process--white {
  margin: 0 auto;
  width: 40%;
  background-color: #fff;
  border: 1px solid #d7e9df;
  border-radius: 4px;
}
.modal-contente__image {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.modale__image {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 80;
  left: 0;
  right: 0;
  top: 0;
}
.modale__background {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  filter: none;
  z-index: 81;
  background-color: #0e1849;
  opacity: 0.85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85);
}
.modale__background.modale__background--white {
  background-color: #fff;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.modale-contente-section {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 90;
}
.modale-contente-section__close {
  color: #aaa;
  float: right;
  font-size: 28px;
  padding-right: 10px;
  font-weight: 500;
  position: absolute;
  right: 20px;
}
.modale-contente-section__close.modale-contente-section__close--payment {
  font-size: 18px;
  right: 0px;
  top: 5px;
}
.modale-contente-section__close:hover,
.modale-contente-section__close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modale-contente-section-half__image {
  width: 100%;
  height: 100%;
  padding: 40px 50px 0 50px;
}
.modale-contente-section-all {
  width: 100%;
}
.modale-contente-section-half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .modale-contente-section-half.modale-contente-section--right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .modale-contente-section-half.modale-contente-section--left {
    display: none;
  }
}
.modale-contente-section-half-content {
  text-align: center;
  padding: 40px 50px;
}
@media screen and (max-width: 425px) {
  .modale-contente-section-half-content {
    padding: 40px 10px;
  }
}
.modale-contente-section-half-content__image {
  width: 50%;
}
.modale-contente-section-half__title {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.modale-contente-section-half__title.modale-contente-section-half__title--black {
  color: #1b2432;
}
.modale-contente-section-half__userPhoto {
  padding: 20px 0 10px 0;
}
.modale-contente-section-half__slogan {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
  color: #fff;
}
.modal-contente__process {
  position: absolute;
  top: 40%;
  width: 100%;
}
.modal-contente__text {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  z-index: 1000001;
}
.modal-content-header {
  padding: 1rem;
  border-bottom: 1px solid #d7e9df;
  position: relative;
}
.modal-content-header__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1b2432;
}
.modal-content-header__close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #aaa;
  font-size: 1.3rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #aaa;
}
.modal-content-header__close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.course {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .course {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.course-right {
  width: 320px;
  border: 1px solid #f1f1f1;
  padding: 20px;
  position: sticky;
  top: 0;
}
.course-right.course-right--v3 {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .course-right {
    width: 100%;
    position: initial;
  }
}
.course-left {
  width: calc(100% - 320px);
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .course-left {
    width: 100%;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.course__title {
  font-size: 35px;
  font-weight: 600;
}
.course__text {
  font-size: 15px;
  margin: 30px 0;
  text-align: left;
  line-height: 2;
}
.course__text.course__text--v3 {
  margin: 15px 0 15px 0;
}
@media screen and (max-width: 768px) {
  .course__text {
    text-align: center;
  }
}
.course-items {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .course-items {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.course-items-level {
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
  color: #34d16e;
}
.course-items-level span {
  display: block;
  margin-left: 8px;
}
.course-items-li {
  width: 30%;
  font-size: 15px;
  font-weight: 300;
  margin-top: 15px;
}
.course-items-li span {
  display: block;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .course-items-li {
    width: 49%;
  }
}
@media screen and (max-width: 425px) {
  .course-items-li {
    width: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.course-items-li__title {
  font-weight: 600;
}
.course__btn {
  width: 250px;
  height: 45px;
  line-height: 45px;
  background-color: #34d16e;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  text-align: center;
  border-radius: 2px;
}
.course__btn:hover {
  background-color: #116035;
}
@media screen and (max-width: 768px) {
  .course__btn {
    margin: 0 auto;
  }
}
.course-sticky {
  display: block;
}
.course-sticky.course-sticky--none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .course-sticky.course-sticky--none {
    display: block;
  }
}
.course-sticky-thanks__title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.course-sticky-thanks__text {
  text-align: center;
  font-size: 14px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.course-sticky-header {
  position: relative;
}
.course-sticky__img {
  width: 24px;
  max-height: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.course-sticky__img.course-sticky__img--v3 {
  width: 100%;
  max-height: initial;
  height: auto;
}
.course-sticky-sale {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .course-sticky-sale {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.course-sticky-sale__price {
  display: inline-block;
  font-size: 13px;
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .course-sticky-sale__price {
    margin-left: 0;
    font-size: 17px;
  }
}
.course-sticky-sale__offer {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .course-sticky-sale__offer {
    font-size: 30px;
  }
}
.course-sticky-sale__btn {
  width: calc(100% - 100px);
  height: 45px;
  line-height: 45px;
  background-color: #34d16e;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  text-align: center;
  border-radius: 2px;
}
.course-sticky-sale__btn:hover {
  background-color: #34d16e;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .course-sticky-sale__btn {
    width: 100%;
  }
}
.course-sticky-form {
  border-top: 1px solid #eaeaea;
  padding: 20px;
}
.course-sticky-form__title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.course-sticky__title {
  font-size: 18px;
  font-weight: 600;
  margin-left: 15px;
}
.course-sticky-body {
  margin: 25px 0;
}
.course-sticky-item:nth-child(n+2) {
  margin-top: 12px;
}
.course-sticky-item span {
  display: block;
  margin-left: 8px;
}
.course-sticky-footer__btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  color: #34d16e;
  border: 1px solid #34d16e;
  font-weight: 500;
  font-size: 15px;
  display: block;
  text-align: center;
  border-radius: 2px;
}
.course-sticky-footer__btn:hover {
  background-color: #34d16e;
  color: #fff;
}
.course__description {
  font-size: 15px;
  text-align: justify;
  margin: 0;
  line-height: 2;
}
.course__description.course__description--v3 {
  margin-top: 15px;
}
.course-section {
  margin-top: 35px;
}
.course-section__title {
  font-size: 22px;
  font-weight: 600;
}
.course-section-teacher {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 15px;
}
.course-section-teacher-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.course-section-teacher-body__text {
  margin: 5px 0 0 0;
  font-size: 14px;
}
.course-section-teacher-body {
  width: calc(100% - 70px);
  margin-left: 15px;
}
.course-section-teacher-body__title {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}
.course-skills {
  margin-top: 5px;
}
.course-skill {
  margin-top: 10px;
}
.course-skill span {
  font-size: 15px;
  margin-left: 12px;
  display: inline-block;
  width: calc(100% - 15px);
}
.course-temary {
  margin-top: 10px;
}
.course-temary-item {
  margin: 20px 0;
  cursor: pointer;
}
.course-temary-item:nth-child(n+2) {
  margin-top: 15px;
}
.course-temary-item-header {
  margin-bottom: 10px;
}
.course-temary-item-header:hover {
  text-decoration: underline;
}
.course-temary-item__name {
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
.course-temary-item-chapters {
  display: none;
  padding: 0 10px;
}
.course-temary-item-chapters:nth-child(1) {
  display: block;
}
.course-temary-item__chapter {
  padding: 8px 0 8px 0;
  font-size: 15px;
}
.course-project {
  margin-top: 10px;
}
.course-project__img {
  width: 48%;
}
.courses {
  margin: 30px 0px;
}
.courses-filter {
  width: 250px;
  padding-right: 30px;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .courses-filter {
    display: none;
    padding-right: 0;
  }
}
.courses-filter-content {
  width: 100%;
  background-color: #f1f1f1;
  padding: 15px;
}
.courses-filter-list {
  margin-top: 10px;
  height: 450px;
  overflow-y: scroll;
  cursor: pointer;
}
.courses-filter-list::-webkit-scrollbar-thumb {
  background-color: #494d55;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.courses-filter-list::-webkit-scrollbar {
  background-color: #f1f1f1;
  height: 5px;
  width: 6px;
}
.courses-filter__item {
  padding: 10px;
  font-weight: 400;
}
.courses-filter__item.courses-filter__item--select {
  background-color: #a7ebc0;
  color: #34d16e;
}
.courses-filter__item:hover {
  color: #34d16e;
}
.courses-filter__name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.courses-list {
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .courses-list {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .courses-list {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.courses-item {
  width: 220px;
  padding: 20px;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  margin-bottom: 20px;
}
.courses-item.course-item--v2 {
  padding: 0px;
}
.courses-item-figure {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
}
.courses-item__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 80px;
  height: 21px;
  background-color: #808080;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 21px;
  font-size: 10px;
}
.courses-item__tag.courses-item__tag--premium {
  background-color: #f5a623;
}
.courses-item__tag.courses-item__tag--free {
  background-color: #34d16e;
}
.courses-item__img {
  height: 73px;
  max-width: 90px;
}
.courses-item__img.courses-item__img--v2 {
  width: 100%;
  height: auto;
  max-width: initial;
}
.courses-item__title {
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0;
  color: #010101;
}
.courses-item__title.courses-item__title--v2 {
  margin: 0;
}
.courses-item__body {
  padding: 15px;
}
.courses-item-btn {
  width: 100%;
  height: 34px;
  line-height: 34px;
  border: 1px solid #34d16e;
  border-radius: 2px;
}
.courses-item-btn:hover {
  background-color: #34d16e;
  color: #fff;
}
.courses-item-btn:hover g {
  fill: #fff;
}
.courses-item-btn__name {
  font-weight: 300;
  padding-right: 5px;
}
.courses-item-items {
  margin-left: 30px;
}
.courses-item-items.courses-item-items--v2 {
  margin: 8px 0px 12px 0px;
}
.courses-item-level:nth-child(n + 2) {
  margin-top: 5px;
}
.courses-item-level__name {
  margin-left: 5px;
  font-size: 12px;
}
.certificate {
  margin-bottom: 50px;
}
.certificate__btn {
  display: block;
  width: 220px;
  height: 50px;
  line-height: 50px;
  background-color: #34d16e;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
}
.certificate__btn:hover {
  background-color: #22954c;
}
.certificate__btn.certificate__btn--line {
  border: 1px solid #34d16e;
  background-color: #fff;
  color: #34d16e;
  margin-left: 15px;
}
.certificate__btn.certificate__btn--line:hover {
  background-color: #34d16e;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .profile {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.profile-user {
  padding-top: 30px;
}
.profile-user-section {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .profile-user-section {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.profile-user-left {
  width: 30%;
  border: 1px solid #f1f1f1;
  padding: 20px;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .profile-user-left {
    width: 100%;
    position: initial;
  }
}
.profile-user-intro__img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.profile-user-intro__img.profile-user-intro__img--not {
  background-color: #34d16e;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 70px;
  color: #fff;
}
.profile-user-intro__name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
}
.profile-user-intro__username {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  display: block;
}
.profile-user-intro__status {
  display: block;
  padding: 8px 45px;
  margin: 15px 0;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 2px;
}
.profile-user-intro__status.profile-user-intro__status--pro {
  background-color: #ecaa3d;
}
.profile-user-intro__status.profile-user-intro__status--basic {
  background-color: #a5aeae;
}
.profile-user-intro__link {
  font-size: 13px;
  font-weight: 400;
  color: #0077e2;
}
.profile-user-intro__link:hover {
  text-decoration: underline;
}
.profile-user-course__title {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .profile-user-courses {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.profile-user-courses-item {
  width: 280px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #f1f1f1;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .profile-user-courses-item {
    width: 100%;
  }
}
.profile-user-courses-item__img {
  width: 50px;
}
.profile-user-courses-item__btn {
  padding: 5px 10px;
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: #34d16e;
  border-radius: 2px;
  margin-right: 10px;
}
.profile-user-courses-item__btn:hover {
  background-color: #27aa57;
}
.profile-user-courses-item__btn.profile-user-courses-item__btn--next {
  border: 0;
  padding: 0;
  color: #34d16e;
  background-color: #fff;
  margin-right: 0;
}
.profile-user-courses-item__btn.profile-user-courses-item__btn--next:hover {
  text-decoration: underline;
}
.profile-user-courses-item-content {
  width: calc(100% - 50px);
  padding-left: 15px;
}
.profile-user-courses-item__name {
  font-size: 18px;
  font-weight: 500;
}
.profile-user-courses-item-btns {
  margin-top: 10px;
}
.profile-user-right {
  width: 70%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .profile-user-right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }
}
.profile-user-medium {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .profile-user-medium {
    width: 100%;
    margin-bottom: 20px;
  }
}
.profile-user-half {
  width: 50%;
}
.profile-user-third {
  width: 30%;
}
.profile-user__title {
  font-size: 18px;
  font-weight: 600;
}
.profile-user__text {
  margin: 8px 0;
  font-size: 15px;
}
.profile-user__label {
  font-size: 15px;
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.profile-user__photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
}
.profile-user__error {
  font-size: 12px;
  font-weight: 400;
  display: block;
  color: #d0021b;
  margin-top: 5px;
  text-align: left;
  margin-bottom: 0;
}
.profile-user__input {
  width: 100%;
  height: 50px;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 15px;
  border: 1px solid rgba(41,98,182,0.2);
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
}
.profile-user__input__div {
  width: 50px;
}
.profile-user__input__value {
  height: 48px;
  width: calc(100% - 50px);
  border: 0px !important;
}
.profile-user__btn {
  width: 100%;
  height: 50px;
  text-align: center;
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 15px;
  border: 1px solid rgba(41,98,182,0.2);
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  background-color: #34d16e;
  color: #fff;
  cursor: pointer;
}
.profile-user__btn:hover {
  background-color: #27aa57;
}
.profile-user__textarea {
  width: 100%;
  height: auto;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 15px;
  border: 1px solid rgba(41,98,182,0.2);
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
}
.profile-user__social {
  width: 100%;
  height: 50px;
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  border-radius: 2px;
}
.profile-user__social.profile-user__social--fb {
  background-color: #3b5998;
}
.profile-user__social.profile-user__social--tw {
  background-color: #55acee;
}
.profile-user__social.profile-user__social--not {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  cursor: not-allowed;
}
.profile {
  margin: 5rem auto;
}
@media screen and (max-width: 700px) {
  .profile-content {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.profile__intro {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
  box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
  padding: 50px 2rem 1.5rem 2rem;
  min-width: 250px;
  border: 1px solid #eaeaea;
}
@media screen and (max-width: 700px) {
  .profile__courses_approved {
    padding-top: 3rem;
  }
}
.profile__intro_img {
  position: absolute;
  left: 50%;
  top: -37.5px;
  margin-left: -37.5px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.profile__intro_img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}
.profile__intro_img span {
  width: 85px;
  height: 85px;
  line-height: 85px;
  background-size: cover;
  background-position: center center;
  font-size: 1.6rem;
}
.profile__intro_names {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.5rem 0;
  color: #34d16e;
}
.profile__intro_username {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 100;
  display: block;
  color: #1b2432;
}
.profile__intro_country {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 100;
  display: block;
  color: #525f7f;
  padding: 0.8rem 0 0 0;
}
.profile__intro_country .profile__intro_country--edit {
  color: #525f7f;
  font-size: 1rem;
  font-style: italic;
  text-decoration: underline;
}
.profile__intro_status {
  display: block;
  padding: 0.25rem 1.5rem;
  margin: 1rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
}
.profile__intro_status.profile__intro_status--pro {
  background-color: #ecaa3d;
}
.profile__intro_status.profile__intro_status--basic {
  background-color: #a5aeae;
}
.profile__courses {
  margin-left: 1rem;
  margin-right: 0rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
  width: 100%;
  max-width: 600px;
}
.profile__course {
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  padding: 1.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
.profile__course img {
  width: 50px;
  height: 50px;
  margin-right: 0.75rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.profile__course h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.profile__course h3 a {
  color: #1b2432;
}
.profile__course p {
  font-size: 1rem;
  color: #1b2432;
  font-weight: 100;
  line-height: 1.6;
}
.profile__course span {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.profile__course:hover {
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
.profile__course-items {
  padding-top: 0.5rem;
}
@media screen and (max-width: 340px) {
  .profile__course-items {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -o-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -o-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.profile__course_link {
  color: #8898aa;
  text-decoration: underline;
  font-weight: 100;
  font-size: 1rem;
  line-height: 18px;
  font-weight: 100;
  display: block;
  padding-top: 0.5rem;
}
.profile__course_certificate {
  background-color: #34d16e;
  color: #fff;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  transition-duration: 0.5s;
  font-weight: 100;
}
.profile__course_certificate .icon-checkmark {
  color: #fff;
}
.profile__form_intro {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.profile__form_intro span {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #fff;
  background-color: #ff0;
  margin-left: 0.75rem;
}
.profile__circle {
  width: 10px;
  height: 10px;
  background-color: #ff0;
  border-radius: 50%;
}
.profile__form {
  max-width: 650px;
  margin: 1rem auto;
}
.profile__form .one-half {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .profile__form .one-half {
    width: 50%;
  }
}
.profile__form label {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 100;
  color: #1b2432;
}
.profile__form input {
  font-size: 1rem;
  border: 1px solid #525f7f;
  -webkit-box-shadow: inset 0 3px 7px #f6f7f7;
  box-shadow: inset 0 3px 7px #f6f7f7;
  color: #525f7f;
  width: 100%;
  background-color: #fff;
  display: block;
  padding: 0.7rem;
  border-radius: 4px;
}
.profile__form input.error {
  border: 1px solid #d0021b;
}
.profile__form input:focus {
  border: 1px solid #525f7f;
}
.profile__form input.profile__form-button {
  width: 280px;
  background-color: #34d16e;
  color: #fff;
  font-size: 1.07rem;
  font-weight: 500;
  text-align: center;
  height: 40px;
  line-height: 40px;
  padding: 0;
  -webkit-box-shadow: initial;
  box-shadow: initial;
  border: 0;
}
.profile__form input.profile__form-button:hover {
  cursor: pointer;
  background-color: #34ba73;
}
.profile__form_username {
  padding: 0.5rem 0.75rem;
  background-color: #010101;
  font-weight: normal;
}
.profile__form_twitter,
.profile__form_facebook {
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-align: center;
}
.profile__form_twitter.active,
.profile__form_facebook.active {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  cursor: not-allowed;
}
.profile__form_facebook {
  background-color: #00f;
}
.profile__form_twitter {
  background-color: #00f;
}
.profile__form_btn {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 1rem;
  font-size: 1.1rem;
}
.profile__subtitle {
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1b2432;
}
.profile__course_approved {
  border: 1px solid #008000;
}
.profile__course_none {
  border: 1px solid #d0021b;
}
.profile__course_not_approved {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.profile__course_not_approved:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.profile-complete__title {
  color: #1b2432;
  font-size: 1.9rem;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.profile-complete__title.profile-complete__title--form {
  font-size: 1.35rem;
}
.profile-complete__line {
  width: 100%;
  height: 1px;
  margin: 1rem 0 0.5rem 0;
  background-color: #e4e8ec;
}
.profile-complete__line.profile-complete__line--form {
  margin: 10px 0;
}
.profile-complete-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #1b2432;
  display: block;
  padding-bottom: 0.6rem;
}
.profile-complete-form label.profile-complete-form-label--lineal {
  padding-bottom: 0;
  padding-left: 0.8rem;
}
.profile-complete-form h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b2432;
  display: block;
  padding-bottom: 0.6rem;
}
.profile-complete-form p {
  margin: 0;
  font-size: 1rem;
  color: #1b2432;
  line-height: 1.7;
}
.profile-complete-form select {
  display: block;
  padding: 0.8rem;
  background-color: #e6eff2;
  height: 44px;
  border: 1px solid #e6eff2;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
}
.profile-complete-form legend {
  padding: 2rem 0;
}
.profile-complete-form input,
.profile-complete-form textarea {
  display: block;
  padding: 0.8rem;
  background-color: #d8e6eb;
  border: 1px solid #d8e6eb;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
}
.profile-complete-form input.profile-complete-form-textarea__notresize,
.profile-complete-form textarea.profile-complete-form-textarea__notresize {
  resize: none;
  overflow: hidden;
}
.profile-complete-form input.profile-complete-form__active,
.profile-complete-form textarea.profile-complete-form__active {
  border: 1px solid #34d16e;
  background-color: #fff;
}
.profile-complete-form input:focus,
.profile-complete-form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #34d16e;
  background-color: #fff;
  color: #1b2432;
}
.profile-complete-form input.profile-complete-form__button--form,
.profile-complete-form textarea.profile-complete-form__button--form {
  height: 45px;
  line-height: 45px;
  color: #fff;
  background-color: #34d16e;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0;
  cursor: pointer;
  text-align: center;
}
.profile-complete-form input.profile-complete-form__button--form:hover,
.profile-complete-form textarea.profile-complete-form__button--form:hover {
  background-color: #5393fb;
  border: 1px solid #5393fb;
}
.profile-complete-form input.profile-complete-form__button,
.profile-complete-form textarea.profile-complete-form__button {
  width: 200px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  background-color: #34d16e;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0;
  cursor: pointer;
}
.profile-complete-form input.profile-complete-form__button:hover,
.profile-complete-form textarea.profile-complete-form__button:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.profile-complete-form input[type="color"] {
  height: 44px;
}
.profile-complete-form__figure {
  width: 100%;
  height: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: 0;
}
.profile-complete-form__figure img {
  width: 100%;
  height: 100%;
}
.profile-complete-form__section-tooltipe__image {
  width: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.profile-complete-form__section-tooltipe__card {
  padding-top: 0.5rem;
}
.profile-complete-form__section-tooltipe__card--description {
  padding-left: 0.3rem;
}
.profile-complete-form__section-tooltipe__title {
  margin: 0;
  color: #a0a8af !important;
  line-height: 1.1 !important;
  text-align: left !important;
  padding-bottom: 0 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}
.profile-complete-form__section-tooltipe__text {
  margin: 0 !important;
  color: #a0a8af !important;
  line-height: 1.1 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  font-weight: 100 !important;
  text-align: left !important;
  font-size: 13px !important;
}
.profile-complete-form-twin {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.profile-complete-form-twin input.profile-complete-form__disabled {
  text-align: right;
  border-radius: 4px 0 0 4px;
  width: 146px;
  color: #1b2432;
  border: 1px solid #34d16e;
  border-right: 0;
}
.profile-complete-form-twin input.profile-complete-form__active {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
.profile-complete-form-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 2rem 0;
}
.profile-complete-form__section {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 1.5rem;
  text-align: left;
}
.profile-complete-form__section.profile-complete-form__section--paddingTop {
  padding-top: 0.5rem;
}
.profile-complete-form__section.profile-complete-form__section--paddingTop--form {
  padding-top: 1rem;
}
@media screen and (max-width: 600px) {
  .profile-complete-form__section {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.profile-complete-form__section__question {
  margin-bottom: 0.6rem;
  margin-left: 0.5rem;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  background-color: #34d16e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.profile-complete-form-quarter {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
}
.profile-complete-form-quarter.profile-complete-form-quarter-lineal {
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.profile-complete-form-tooltipe {
  position: relative;
}
.profile-complete-form-half {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 48%;
}
@media screen and (max-width: 600px) {
  .profile-complete-form-half {
    width: 100%;
    padding-bottom: 1rem;
  }
}
.profile-complete-form-full {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.profile__form_photo {
  width: 120px;
  height: 120px;
  margin-right: 0.75rem;
  border-radius: 4px;
}
.profile-complete__message {
  color: #525f7f;
  font-size: 15px;
  font-weight: 200;
  text-align: center;
}
.profile-complete__slogan {
  max-width: 470px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  color: #1b2432;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile-complete__slogan {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .profile-complete__slogan {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 320px) {
  .profile-complete__slogan {
    font-size: 1rem;
  }
}
.modal {
  z-index: 999999 !important;
}
.modal-dialog {
  width: 300px !important;
}
.modal-dialog.modal-dialog--shared {
  width: 400px !important;
}
.modal-body {
  padding: 50px 30px !important;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.modal__logo {
  width: 30px;
  margin: 0 auto 15px auto;
  display: block;
}
.modal__title {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-social {
  margin: 30px 0 0 0;
  width: 100%;
}
.modal__text {
  display: block;
  font-size: 14px;
  margin: 20px 0;
  text-align: center;
  font-weight: 400;
}
.modal__form {
  width: 100%;
}
.modal__input {
  width: 100%;
  margin-bottom: 10px;
  height: 45px;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
}
.modal__input.modal__input--btn {
  background-color: #34d16e;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: 45px;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}
.modal__input.modal__input--btn:hover {
  background-color: #27aa57;
}
.modal__input::placeholder {
  font-size: 15px;
  font-weight: 300;
}
.modal__recovery {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: block;
  text-decoration: underline;
  color: #4a4a4a;
  margin-top: 5px;
}
.login {
  max-width: 300px;
  margin: 0 auto;
}
.login-link {
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}
.login-link__text {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #010101;
}
.login-link__next {
  display: block;
  margin-left: 5px;
  font-size: 15px;
  color: #108eff;
  font-weight: 500;
}
.modal-social__item {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.modal-social__item.modal-social__item--fb {
  background-color: #3b5998;
}
.modal-social__item.modal-social__item--fb:hover {
  background-color: #2f477a;
}
.modal-social__item.modal-social__item--tw {
  background-color: #55acee;
}
.modal-social__item.modal-social__item--tw:hover {
  background-color: #1a8fe8;
}
.modal-shared {
  margin: 50px auto;
  background-color: #fff;
  max-width: 400px;
  padding: 30px;
  position: relative;
  text-align: center;
  z-index: 999999;
}
.modal__login {
  max-width: 300px;
  margin: 2.5rem auto 1rem auto;
}
.modal__social {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  z-index: 999999;
}
.modal__social p {
  max-width: 300px;
  margin: 2rem auto;
  font-size: 1.1rem;
}
.modal__social_content {
  background-color: #fff;
  width: 500px;
  padding: 2rem 2rem 3rem 2rem;
  margin: 10% auto;
  position: relative;
  text-align: center;
  border-radius: 2px;
  z-index: 999999;
}
.modal__social_close {
  position: absolute;
  color: #010101;
  right: 1rem;
  top: 0.75rem;
}
.modal__fade {
  background-color: #000;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.home-header {
  margin-top: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home-header {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 80px;
    padding-bottom: 0;
  }
}
.home-header-right {
  width: 65%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .home-header-right {
    width: 100%;
    padding-right: 0px;
    margin-top: 30px;
  }
  .home-header-right h1 {
    text-align: center;
  }
  .home-header-right p {
    text-align: center;
  }
}
.home-header-left {
  width: 35%;
  position: relative;
}
.home-header__text {
  margin: 20px 0;
  font-size: 22px;
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .home-header__text {
    font-size: 18px;
    margin: 10px 0;
  }
}
.home-header__btn {
  width: 250px;
  height: 50px;
  line-height: 50px;
  background-color: #34d16e;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  display: block;
  text-align: center;
  border-radius: 2px;
}
.home-header__btn:hover {
  background-color: #116035;
}
@media screen and (max-width: 768px) {
  .home-header__btn {
    margin: 0 auto;
  }
}
.home-header-left-content {
  width: 100%;
}
.home-header__img {
  width: 87%;
}
.home-header__shadow {
  position: absolute;
  width: 87%;
  height: 100%;
  z-index: -1;
  background-color: #a7ebc0;
  top: 50px;
  bottom: 0;
  right: 0;
}
.benefits {
  margin: 30px 0 0 0;
}
.benefits-item {
  margin-top: 15px;
  width: 26%;
}
@media screen and (max-width: 768px) {
  .benefits-item {
    width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .benefits-item {
    width: 100%;
  }
}
.benefits-item__title {
  margin: 20px 0 10px 0;
  font-size: 17px;
  font-weight: 500;
}
.benefits-item__text {
  margin: 0;
  text-align: center;
}
.blogs {
  margin-top: 30px;
}
@media screen and (max-width: 580px) {
  .blogs {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.blogs-item {
  border: 1px solid #f1f1f1;
  width: 265px;
  margin-bottom: 20px;
}
.blogs-item__img {
  width: 100%;
  height: 190px;
}
.blogs-item-body {
  padding: 15px;
}
.blogs-item-footer {
  border-top: 1px solid #f1f1f1;
  padding: 5px 15px;
  color: #010101;
}
.blogs-teacher__image {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.blogs-teacher__name {
  display: block;
  margin-left: 5px;
  font-size: 12px;
}
.blogs-item__name {
  font-size: 17px;
  font-weight: 500;
  color: #010101;
  text-align: center;
}
.blogs-item__description {
  margin: 0;
  color: #010101;
  text-align: center;
}
.blog {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.blog h1 {
  font-size: 28px;
  margin: 0.5rem 0 2rem 0;
}
.blog h1::after {
  content: "";
  width: 50px;
  height: 4px;
  display: block;
  margin-top: 1rem;
}
.blog h3 {
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
}
.tutorials {
  margin-top: 30px;
}
@media screen and (max-width: 580px) {
  .tutorials {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.tutorials-item {
  width: 263px;
  margin-bottom: 30px;
}
.tutorials-item__img {
  width: 100%;
  height: 190px;
}
.tutorials-item__img img {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border: 2px;
}
.tutorials-item__name {
  color: #010101;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin: 10px 0 0 0;
}
.tutorials-item__name:hover {
  text-decoration: underline;
}
.tutorials-item__teacher {
  font-size: 13px;
  margin: 0;
}
.tutorial {
  margin-bottom: 30px;
}
.tutorial-author {
  margin-top: 10px;
}
.tutorial-author__name {
  font-size: 15px;
  font-weight: 400;
  display: block;
}
.tutorial-author__img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 8px 0 8px;
}
.tutorial-container {
  margin-top: 30px;
  width: 100%;
}
.tutorial-content {
  margin-top: 20px;
  color: #010101;
  font-weight: 300;
}
.tutorial-content h2 {
  font-weight: 500;
}
.tutorial-content h3 {
  font-weight: 500;
}
.tutorial-content h4 {
  font-weight: 500;
  color: #010101;
}
.tutorial-content h2 {
  margin: 15px 0;
}
.tutorial-content h3 {
  margin: 12px 0;
}
.tutorial-content h4 {
  margin: 8px 0;
}
.tutorial-content strong {
  font-weight: 500;
}
.tutorial-content p {
  font-size: 14px;
  line-height: 1.7;
}
.tutorial-content p>code {
  background-color: #fff;
  padding: 10px;
  border-radius: 2px;
}
.tutorial-content p:nth-child(1) {
  font-weight: 500;
  font-size: 15px;
}
.tutorial-content a {
  color: #34d16e;
}
.tutorial-content blockquote {
  padding: 10px;
  margin: 10px;
  font-size: 15px;
  text-style: italic;
}
.tutorial-content ul,
.tutorial-content ol {
  padding-left: 25px;
}
.tutorial-content li {
  margin: 8px 0;
  font-size: 15px;
}
.tutorial-content ul li {
  list-style: square;
}
.tutorial-content ol li {
  list-style: decimal;
}
.tutorial-content img {
  max-width: 100%;
}
.tutorial-content td {
  padding: 8px 14px;
}
.tutorial__description {
  margin: 0 0 15px 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}
.tutorial-sidebar {
  width: 275px;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .tutorial-sidebar {
    display: none;
  }
}
.tutorial-body {
  width: calc(100% - 275px);
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .tutorial-body {
    width: 100%;
    padding-right: 0;
  }
}
.tutorial__img {
  width: 100%;
}
.tutorial-social {
  margin: 0 0 15px 0;
  padding: 15px 0 15px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.tutorial-social__title {
  font-size: 18px;
  font-weight: 600;
}
.tutorial-social__text {
  margin: 10px 0;
  font-size: 15px;
}
.tutorial-creator {
  margin-top: 25px;
  padding: 20px;
  background-color: rgba(52,210,109,0.15);
}
.tutorial-creator__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.tutorial-creator-body {
  width: calc(100% - 50px);
  padding-left: 20px;
}
.tutorial-creator__name {
  font-size: 16px;
  font-weight: 500;
}
.tutorial-creator__text {
  margin: 5px 0;
}
.tutorial-creator__social {
  color: #0e61ee;
  font-weight: 400;
  font-size: 14px;
}
.tutorial-comments {
  margin-top: 25px;
  margin-bottom: 25px;
}
.tutorial-sidebar__social {
  padding: 10px;
  margin-bottom: 15px;
}
.tutorial-sidebar__social h4 {
  font-weight: 600;
  margin: 0 0 5px 0;
  font-size: 15px;
}
.tutorial-sidebar__youtube {
  border: 2px solid #d0021b;
  color: #d0021b;
}
.tutorial-sidebar__facebook {
  border: 2px solid #3b5998;
  color: #3b5998;
}
.tutorial-sidebar__twitter {
  border: 2px solid #55acee;
  color: #55acee;
}
.tutorial-recommend {
  border: 1px solid #f1f1f1;
  padding: 15px;
}
.tutorial-recommend__title {
  font-size: 15px;
  font-weight: 600;
}
.tutorial-recommend-list {
  margin-top: 10px;
}
.tutorial-recommend-item:nth-child(n+2) {
  margin-top: 5px;
}
.tutorial-recommend-item__title {
  font-size: 14px;
  font-weight: 400;
  color: #010101;
}
.tutorial-recommend-item__title:hover {
  text-decoration: underline;
}
.tutorial-recommend-item__date {
  font-size: 13px;
  color: #aaa;
}
.tvs {
  margin-top: 30px;
}
@media screen and (max-width: 580px) {
  .tvs {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.tvs-item {
  width: 265px;
  margin-bottom: 20px;
}
.tvs-item_img {
  display: block;
  width: 100%;
  height: 160px;
  position: relative;
}
.tvs-item_img img {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.tvs-item__name {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
  color: #010101;
}
.tvs-item__name:hover {
  text-decoration: underline;
}
.tvs-item__play {
  width: 40px;
  height: 40px;
  top: 60px;
  left: 120px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}
.tvs-item-teacher {
  margin-top: 10px;
}
.tvs-item-teacher__img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.tvs-item-teacher__name {
  font-size: 12px;
  display: block;
  margin-left: 5px;
}
.tv {
  margin-bottom: 50px;
}
.tv-body {
  margin-top: 30px;
  border: 1px solid #f1f1f1;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .tv-body {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
  }
}
.tv-left {
  width: 70%;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .tv-left {
    width: 100%;
    padding-right: 0;
  }
}
.tv-right {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .tv-right {
    width: 100%;
    margin-top: 30px;
  }
}
.tv__title {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tv__title {
    font-size: 25px;
  }
}
.tv__text {
  font-size: 15px;
  margin: 10px 0 0 0;
}
.tv-video {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.tv-video-player {
  width: 100%;
  background-color: #fff;
}
.tv-video-responsive {
  margin: 0;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
}
.tv-video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.tv-author__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.tv-author-info {
  width: calc(100% - 40px);
  padding-left: 20px;
}
.tv-author__name {
  font-size: 16px;
  font-weight: 500;
}
.tv-author__description {
  font-size: 14px;
  margin: 5px 0 0 0;
}
.tv-social {
  margin-top: 15px;
  border-top: 1px solid #f1f1f1;
  padding: 15px 0;
}
.tv-social__title {
  font-size: 18px;
  font-weight: 600;
}
.tv-social-btn {
  margin-top: 15px;
}
.tv-social-btn__circle {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #000;
}
.tv-social-btn__circle:nth-child(n+2) {
  margin-left: 8px;
}
.tv-social-btn__circle.tv-social-btn__circle--facebook {
  background-color: #3b5998;
}
.tv-social-btn__circle.tv-social-btn__circle--twitter {
  background-color: #1dcaff;
}
.tv-social-btn__circle.tv-social-btn__circle--linkendin {
  background-color: #007ab6;
}
.tv-social-btn__circle.tv-social-btn__circle--googlePlus {
  background-color: #d0021b;
}
.tv-social-btn__circle svg {
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  line-height: norma;
}
.subs {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .subs {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -o-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.subs-left {
  width: 60%;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .subs-left {
    width: 100%;
    padding-right: 0;
  }
}
.subs-right {
  width: 40%;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .subs-right {
    width: 100%;
    position: initial;
  }
}
.subs-price {
  border: 1px solid #f1f1f1;
  padding: 20px;
}
.subs-price__title {
  font-size: 20px;
  font-weight: 600;
}
.subs-price__text {
  margin: 10px 0 0 0;
  font-size: 14px;
  text-align: left;
}
.subs-price-info {
  margin-top: 15px;
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}
.subs-price-info__total {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
.subs-price-info__mount {
  margin: 0;
  font-size: 20px;
  text-align: right;
  font-weight: 600;
}
.subs-price-info__price {
  display: block;
  margin-right: 10px;
}
.subs-price-info__money {
  width: 75px;
  text-align: left;
  display: block;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 300;
}
.subs-benefit {
  margin-top: 15px;
  border: 1px solid #f1f1f1;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .subs-benefit.subs-benefit--top {
    display: none;
  }
}
.subs-benefit.subs-benefit--bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .subs-benefit.subs-benefit--bottom {
    display: block;
  }
}
.subs-benefit__title {
  font-size: 20px;
  font-weight: 600;
}
.subs-benefit-item {
  margin-top: 10px;
}
.subs-benefit-item__name {
  font-size: 14px;
  font-weight: 500;
}
.subs-benefit-item__text {
  font-size: 13px;
  margin: 5px 0 0 0;
}
.subs-menu {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .subs-menu {
    margin-top: 50px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.subs-menu-item.subs-menu-item--opacity {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.subs-menu-item__circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #4a4a4a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-align: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.subs-menu-item__title {
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .subs-menu-item__title {
    font-size: 16px;
  }
}
.subs-menu-item__next {
  margin: 0 20px 0 20px;
}
.subs-login,
.subs-pay {
  padding-top: 30px;
}
.subs-login__text,
.subs-pay__text {
  margin: 20px 0;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .subs-login__text,
  .subs-pay__text {
    font-size: 15px;
  }
}
.subs-login-social__btn {
  display: block;
  text-align: center;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.subs-login-social__btn.subs-login-social__btn--fb {
  background-color: #3b5998;
}
.subs-login-social__btn.subs-login-social__btn--fb:hover {
  background-color: #2f477a;
}
.subs-login-social__btn.subs-login-social__btn--tw {
  background-color: #55acee;
}
.subs-login-social__btn.subs-login-social__btn--tw:hover {
  background-color: #1a8fe8;
}
.subs-login-social-item:nth-child(n+2) {
  margin-top: 15px;
}
.subs-form-item {
  position: relative;
}
.subs-form-item.subs-form-item--margin {
  margin-top: 15px;
}
.subs-form-item__input,
.subs-pay-form-item__input {
  width: 100%;
  height: 50px;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 15px;
  border: 1px solid rgba(41,98,182,0.2);
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
}
.subs-form-item__input.subs-form-item__input--btn,
.subs-pay-form-item__input.subs-form-item__input--btn {
  background-color: #34d16e;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.subs-form-item__input.subs-form-item__input--btn:hover,
.subs-pay-form-item__input.subs-form-item__input--btn:hover {
  background-color: #27aa57;
}
.subs-form-item__input::placeholder,
.subs-pay-form-item__input::placeholder {
  font-weight: 400;
  color: #010101;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #c7c7c7;
}
.subs-form-item__input:focus,
.subs-pay-form-item__input:focus {
  outline: none;
  border: 1px solid #0077e2;
}
.subs-form__text {
  text-align: center;
  margin: 17px 0 0 0;
  font-size: 15px;
  font-weight: 300;
}
.subs-form__text a {
  color: #108eff;
  font-weight: 500;
}
.subs-pay-item:nth-child(n+2) {
  margin-top: 10px;
}
.subs-pay-item__radio {
  width: 20px;
  height: 20px;
}
.subs-pay-item-logos {
  margin-left: 10px;
}
.subs-pay-item__img {
  margin-left: 5px;
  width: 50px;
}
.subs-pay-form-item {
  position: relative;
}
.subs-pay-form-item.subs-pay-form-item--margin {
  margin-top: 15px;
}
.subs-pay-form-item__label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.subs-pay-form-item-left {
  width: 65%;
}
.subs-pay-form-item-right {
  width: 30%;
}
.subs-pay-form-item-left-medium {
  width: 48%;
}
.subs-pay-form-item-relative {
  position: relative;
}
.subs-pay-form-item__circle {
  background-color: #0077e2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-top: 5px;
}
.subs-pay-form__text {
  font-size: 15px;
}
.subs-pay-form.subs-pay-form--margin {
  margin-top: 15px;
}
.tooltipe {
  display: none;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 5px #e3e9eb;
  box-shadow: inset 0 0 5px #e3e9eb;
  border-radius: 5px;
  padding: 12px;
  color: #fff;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  font-size: 12px;
  width: 250px;
  text-align: center;
  right: 0;
  bottom: 30px;
  cursor: pointer;
}
.subs-pay-tooltipe__img {
  width: 40px;
}
.subs-pay-tooltipe-info {
  width: calc(100% - 40px);
  padding-left: 15px;
}
.subs-pay-tooltipe__title {
  font-size: 13px;
  font-weight: 500;
  color: #4a4a4a;
  text-align: left;
}
.subs-pay-tooltipe__title__text {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #4a4a4a;
  text-align: left;
}
.subs-pay-tooltipe-item {
  margin-top: 15px;
}
.pricings {
  margin-top: 30px;
}
@media screen and (max-width: 940px) {
  .pricings {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pricing {
  width: 290px;
  border: 1px solid #f1f1f1;
  padding: 60px 25px;
}
.pricing.pricing--select {
  border: 2px solid #34d16e;
  position: relative;
}
@media screen and (max-width: 940px) {
  .pricing:nth-child(n+2) {
    margin-top: 20px;
  }
}
.pricing__flag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #a7ebc0;
  color: #34d16e;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  height: 25px;
  line-height: 25px;
}
.pricing-header__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-header__text {
  font-size: 13px;
}
.pricing-header__text:nth-child(n+2) {
  margin-bottom: 5px;
}
.pricing-body {
  margin: 20px 0;
}
.pricing-body__money {
  font-size: 18px;
  font-weight: 700;
}
.pricing-body__cost {
  font-size: 50px;
  font-weight: 700;
}
.pricing-body__name {
  font-size: 14px;
  font-weight: 400;
  margin-left: 15px;
}
.pricing-footer {
  margin-bottom: 35px;
}
.pricing-footer__title {
  font-size: 16px;
  font-weight: 500;
}
.pricing-benefits {
  margin-top: 12px;
}
.pricing-benefits__item:nth-child(n+2) {
  margin-top: 10px;
}
.pricing__btn {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #34d16e;
  border: 1px solid #34d16e;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
}
.pricing__btn:hover {
  background-color: #34d16e;
  color: #fff;
}
.pricing__btn.pricing__btn--select {
  border: 0;
  background-color: #34d16e;
  color: #fff;
}
.pricing__btn.pricing__btn--select:hover {
  background-color: #116035;
}
.form-item {
  margin-top: 15px;
}
.form-one {
  width: 100%;
}
.form-two {
  width: 49%;
}
.form-three {
  width: 30%;
}
.form__label {
  font-size: 15px;
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.form__input {
  height: 45px;
  width: 100%;
  border: 1px solid rgba(41,98,182,0.2);
  padding: 15px;
}
.form__search {
  height: 45px;
  color: #fff;
  background-color: #34d16e;
  border: 0px;
}
.form__select {
  height: 45px;
  width: 100%;
  border: 1px solid rgba(41,98,182,0.2);
}
.form__textarea {
  height: auto;
  width: 100%;
  border: 1px solid rgba(41,98,182,0.2);
  padding: 15px;
}
.form__check {
  font-size: 15px;
  display: block;
  font-weight: 500;
  margin-left: 8px;
}
.form-preview__img {
  margin-top: 15px;
  height: 80px;
}
.admin-header {
  margin-bottom: 30px;
}
.admin-header__right {
  margin-right: 15px;
}
.admin-header__title {
  font-size: 34px;
  font-weight: 600;
}
.admin-header__error {
  font-size: 13px;
  font-weight: 500;
  color: #f00;
  display: block;
  margin-bottom: 15px;
}
.admin-header__text {
  font-size: 18px;
  margin: 10px 0;
}
.admin-header__btn {
  height: 45px;
  line-height: 45px;
  width: 200px;
  background-color: #34d16e;
  border-radius: 2px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.admin-header__btn:hover {
  background-color: #22954c;
}
.admin-table {
  border: 1px solid #f1f1f1;
  margin-bottom: 10px;
}
.admin-table-item {
  padding: 15px 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.admin-table-item.admin-table-item--two {
  width: 70%;
}
.admin-table-item.admin-table-item--two.admin-table-item--options {
  width: 30%;
}
.admin-table-item.admin-table-item--three {
  width: 40%;
}
.admin-table-item.admin-table-item--three.admin-table-item--options {
  width: 20%;
}
.admin-table-item.admin-table-item--four {
  width: 28%;
}
.admin-table-item.admin-table-item--four.admin-table-item--options {
  width: 16%;
}
.admin-table-item.admin-table-item--five {
  width: 22%;
}
.admin-table-item.admin-table-item--five.admin-table-item--options {
  width: 12%;
}
.admin-table-item.admin-table-item--seven-all {
  width: 14.2857142857%;
}
.admin-table-item.admin-table-item--eight {
  width: 11.5%;
}
.admin-table-item.admin-table-item--eight.admin-table-item--options {
  width: 8%;
}
.admin-table-item.admin-table-item--ten {
  width: 10.5%;
}
.admin-table-item.admin-table-item--ten.admin-table-item--options {
  width: 5.5%;
}
.admin-table__list {
  margin: 20px 0;
}
.admin-table__pag {
  cursor: pointer;
  margin: 0 10px;
}
.admin-table-four {
  width: 25%;
}
.admin-table-body {
  padding: 15px 10px;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
}
.admin-table-body.admin-table-body--two {
  width: 70%;
}
.admin-table-body.admin-table-body--two.admin-table-body--options {
  width: 30%;
}
.admin-table-body.admin-table-body--three {
  width: 40%;
}
.admin-table-body.admin-table-body--three.admin-table-body--options {
  width: 20%;
}
.admin-table-body.admin-table-body--four {
  width: 28%;
}
.admin-table-body.admin-table-body--four.admin-table-body--options {
  width: 16%;
}
.admin-table-body.admin-table-body--five {
  width: 22%;
}
.admin-table-body.admin-table-body--five.admin-table-body--options {
  width: 12%;
}
.admin-table-body.admin-table-body--seven--all {
  width: 14.2857142857%;
}
.admin-table-body.admin-table-body--eight {
  width: 11.5%;
}
.admin-table-body.admin-table-body--eight.admin-table-body--options {
  width: 8%;
}
.admin-table-body.admin-table-body--ten {
  width: 94.5%;
}
.admin-table-body.admin-table-body--ten.admin-table-body--options {
  width: 5.5%;
}
.admin-table-body__option {
  margin: 0 10px;
  position: relative;
  cursor: pointer;
}
.admin-table-body__option:hover {
  fill: #34d16e;
}
.admin-table-body__option.admin-table-body__option--menu:hover .admin-table-menu {
  display: block;
}
.admin-table-menu {
  display: none;
  position: absolute;
  right: -25px;
  top: 100%;
  -webkit-box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  box-shadow: rgba(0,0,0,0.15) 1px 1px 4px;
  text-align: center;
  width: 150px;
  font-size: 13px;
  background: #fff;
  padding: 10px 0px;
  z-index: 2;
}
.admin-table-menu:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: 100%;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  box-shadow: rgba(0,0,0,0.05) -1px -1px 0px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  left: 78%;
  background: #fff;
  border-radius: 3px 0px 0px;
}
.admin-table-menu-item {
  float: none;
  display: block;
  padding: 12px;
  color: #010101;
  font-size: 13px;
  font-weight: 400;
}
.admin-table-menu-item:hover {
  background-color: #ccc;
}
.admin {
  padding: 2rem 0;
}
.admin-header-filter-item {
  width: 300px;
}
.admin-input {
  height: 35px;
  border-radius: 4px;
  background-color: #fff;
  color: #1b2432;
}
.admin-add__section {
  padding: 10px 0 5px 0;
}
.admin-add__name {
  margin: 0;
}
.admin-add__name.admin-add__name--marginRight {
  margin-right: 10px;
}
.admin-add__link {
  cursor: pointer;
  text-decoration: underline;
}
.admin-add__link:hover {
  font-weight: 400;
}
.admin-add__button {
  display: block;
  color: #0e61ee;
  font-weight: 100;
  font-size: 15px;
  background-color: #fff !important;
  border: 1px solid #0e61ee !important;
  width: 230px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  padding: 0px !important;
}
.admin-add__button:hover {
  background-color: #0e61ee !important;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
.box {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  width: 100%;
  margin-bottom: 1rem;
}
.box-section {
  padding: 20px;
  border: 1px solid #f1f1f1;
  margin-bottom: 30px;
}
.box-section__title {
  font-size: 20px;
  font-weight: 600;
}
.box-section__subtitle {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin: 10px 0 0 0;
}
.box-section-list {
  margin-top: 10px;
}
.box-section-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding: 12px;
  cursor: pointer;
}
.box-section-item:hover {
  background-color: #a7ebc0;
}
.box-section-item__name {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-left: 8px;
  color: #010101;
}
.box-content {
  padding: 1rem;
}
.admin-header-return {
  margin: 1rem 0;
  cursor: pointer;
}
.admin-header-return:hover .admin-header-return__text {
  color: #3073ae;
}
.admin-header-return:hover .admin-header-return__icon--path {
  fill: #3073ae;
}
.admin-header-return__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.admin-header-return__text {
  color: #97a3a6;
  font-size: 15px;
  font-weight: 500;
  padding-left: 0.3rem;
  vertical-align: top;
}
.box-two {
  width: 50%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-two.box-two--plus {
  width: 70%;
}
.box-two.box-two--minus {
  width: 30%;
}
.box-three {
  width: 33.333%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-three.box-three--plus {
  width: 50%;
}
.box-three.box-three--minus {
  width: 25%;
}
.box-four {
  width: 25%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-four.box-four--plus {
  width: 35%;
}
.box-four.box-four--minus {
  width: 23.33%;
}
.box-five {
  width: 20%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-five.box-five--plus {
  width: 30%;
}
.box-five.box-five--minus {
  width: 18%;
}
.box-six {
  width: 16.66%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-six.box-six--plus {
  width: 25%;
}
.box-six.box-six--minus {
  width: 15%;
}
.box-seven {
  width: 14.28%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-seven.box-seven--plus {
  width: 20%;
}
.box-seven.box-seven--minus {
  width: 13.33%;
}
.box-eight {
  width: 12.5%;
  border-left: 1px solid #d7e9df;
  border-right: 1px solid #d7e9df;
}
.box-eight.box-eight--plus {
  width: 15%;
}
.box-eight.box-eight--minus {
  width: 12.14%;
}
.box-title {
  display: block;
  color: #010101;
  font-weight: 500;
  background-color: #e8e8e8;
  padding: 1rem;
}
.box-title.box-title--notcolor {
  background-color: #fff;
  font-size: 18px;
}
.box-item {
  position: relative;
  display: block;
  color: #010101;
  padding: 1rem;
  border-top: 1px solid #f1f1f1;
}
.box-item.box-item--flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.box-item--admin:hover {
  color: #3073ae;
  font-weight: 500;
}
.box-item-selection {
  width: 100%;
}
.box-item-menu {
  display: none;
  z-index: 1;
  background-color: #fff;
  position: absolute;
  left: -4rem;
  right: 0%;
  top: 80%;
  width: 150px;
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.15);
  background: #fff;
  text-align: center;
  padding: 0.5rem 0;
}
.box-item-menu__item {
  float: none;
  display: block;
  padding: 0.7rem 1.1rem;
  color: #1b2432;
  font-size: 0.95rem;
  font-weight: 200;
}
.box-item-menu__item:hover {
  font-weight: 500;
  color: #1b2432 !important;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: #ccc;
}
.box-item-selection-option {
  cursor: pointer;
}
.box-item-selection-option:hover .box-item-selection-option__item--path {
  fill: #3073ae;
}
.box-item-selection-option__item {
  width: 20px;
  margin: 0 10px;
}
.box-item-selection--menu {
  float: left;
  margin: 0;
  position: relative;
}
.box-item-selection--menu:hover .box-item-menu {
  display: block;
}
.box-item-selection-option__image {
  margin: 0 auto;
  height: 20px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.box-form {
  width: 100%;
  padding: 1rem;
}
.admin-header__return {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: #b8b8b8;
  text-align: left;
  padding-bottom: 1rem;
  cursos: pointer;
}
.admin-header__return:hover {
  color: #3a4dad;
}
.admin-header-add__pluss {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 15px;
  color: #34d16e;
  background-color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: block;
  margin-right: 0.5rem;
}
.admin-header-add {
  background-color: #34d16e;
  color: #fff;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: 'proxima-nova';
  min-width: 180px;
}
.admin__container__1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}
.admin__menu {
  background-image: -webkit-linear-gradient(270deg, #1f2a64, #3a4dad);
  background-image: -moz-linear-gradient(270deg, #1f2a64, #3a4dad);
  background-image: -o-linear-gradient(270deg, #1f2a64, #3a4dad);
  background-image: -ms-linear-gradient(270deg, #1f2a64, #3a4dad);
  background-image: linear-gradient(180deg, #1f2a64, #3a4dad);
  margin: 0;
  padding: 0 4rem;
  height: 60px;
}
.admin__links {
  width: 100%;
}
.admin__links ul {
  margin: 0;
  padding: 0;
}
.admin__links a {
  text-decoration: none;
}
.admin__links li {
  list-style: none;
}
.admin__logo__name {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-left: 0.5rem;
}
.admin__logo {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 25px;
  margin: 0;
}
.admin__logo img {
  height: 25px;
}
.admin__items {
  text-decoration: none;
  font-weight: 200;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  margin: 0 0.3rem 0 0;
  cursor: pointer;
}
.admin__items a {
  text-decoration: none;
  color: #fff;
}
.admin__items.active {
  border: 0px;
  border-radius: 2px;
  padding: 0.5rem 2rem;
  background-color: rgba(255,255,255,0.25);
}
.admin__home {
  padding: 4rem;
}
.admin__fondo {
  background-color: #f5f7f9;
}
.admin__section__cursos {
  background-color: #fff;
  margin-bottom: 2rem;
}
.admin__section__list {
  margin: 0;
  padding: 0;
}
.admin__section__list li {
  padding: 1rem;
  border-bottom: 1px solid #d9dde1;
}
.admin__section__list a {
  font-size: 0.9rem;
  color: #000;
}
.admin__section__list a:hover {
  color: #203bcb;
}
.admin__title__detail {
  color: #000;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.admin__title__filter {
  color: #000;
  font-size: 1rem;
  padding-right: 0.5rem;
}
.admin__title__options {
  width: 150px;
  color: #000;
}
.admin__btn {
  background-color: #11cda3;
  color: #fff;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  display: inline-block;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  padding: 0 2rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  border: none;
  cursor: pointer;
  font-family: 'proxima-nova';
  text-transform: uppercase;
}
.admin__btn:hover {
  background-color: #0ea482;
}
.admin__btn.btn__medium {
  height: 35px;
  line-height: 35px;
  font-size: 13.5px;
}
.admin__btn.btn__small {
  height: 30px;
  line-height: 30px;
  font-size: 13.5px;
}
.admin__btn.btn__blue {
  background-color: #a2bcd1;
  color: #000;
  font-size: 1.1rem;
}
.admin__section__title__detail {
  background-color: #fff;
  padding: 1.8rem 1rem;
  border-radius: 2px;
}
.admin__detail {
  padding: 2rem 0;
}
.admin__detail__content {
  background-color: #fff;
  border-radius: 2px;
}
.table__admin {
  width: 100%;
  border-collapse: collapse;
}
.table__head__admin {
  background-image: -webkit-linear-gradient(270deg, #cecbcb, #d8d8d8);
  background-image: -moz-linear-gradient(270deg, #cecbcb, #d8d8d8);
  background-image: -o-linear-gradient(270deg, #cecbcb, #d8d8d8);
  background-image: -ms-linear-gradient(270deg, #cecbcb, #d8d8d8);
  background-image: linear-gradient(180deg, #cecbcb, #d8d8d8);
  text-align: center;
}
.table__head__item__admin {
  padding: 0.5rem 0;
}
.table__head__item__admin strong {
  color: #000;
}
.table__body__admin {
  border: 1px solid #d9dde1;
  text-align: center;
}
.table__body__admin td {
  padding: 0.8rem 0;
  width: 20%;
  color: #000;
}
.table__body__admin td.active {
  font-weight: 400;
  cursor: pointer;
}
.table__body__admin td.active:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: #108eff;
}
.table__body__admin select {
  color: #000;
  width: 150px;
}
.admin__rigth__modal {
  width: 400px;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid #bcc7cd;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: none;
  overflow: scroll;
}
.admin__modal__content {
  text-align: center;
  margin: 2rem 1.5rem 1.5rem 2rem;
}
.admin__image__modal {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin: 0;
}
.admin__image__modal img {
  background-size: cover;
  width: 50px;
  height: 50px;
  background-position: center center;
}
.admin__infouser__modal {
  padding-left: 2rem;
}
.admin__infouser__modal h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
}
.admin__infouser__modal h4 {
  margin: 0.6rem 0 0 0;
  font-size: 0.9rem;
  font-weight: 200;
  color: #000;
}
.admin__close__modal {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0 1rem;
  cursor: pointer;
  color: #546672;
}
.admin__infouser__items {
  padding: 3rem 0 1.5rem 0;
  margin: 0;
}
.admin__infouser__items li {
  list-style: none;
  color: #3673d9;
  border: 1px solid #3673d9;
  width: 90px;
  font-size: 1rem;
  font-weight: 200;
  padding: 0.3rem 0;
  margin: 0 0.3rem;
  border-radius: 2px;
  cursor: pointer;
}
.admin__infouser__items li.active {
  background-color: #3673d9;
  color: #fff;
  font-weight: 400;
}
.admin__infouser__items li.active a {
  color: #fff;
}
.admin__infouser__items a {
  text-decoration: none;
}
.admin__personal__info {
  margin-top: 2rem;
}
.admin__personal__info h3 {
  text-align: left;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}
.admin__personal__info ul {
  margin: 0;
  text-align: left;
}
.admin__personal__info ul li {
  list-style: none;
  color: #000;
  border: 1px solid #e3e9eb;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.admin__personal__info__title {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
}
.admin__personal__info__content {
  font-size: 0.95rem;
  color: #000;
  font-weight: 200;
}
.admin__personal__info__content select {
  color: #000;
  width: 150px;
}
.admin__title__select {
  color: #000;
  width: 150px;
  margin-left: 1rem;
}
.admin-from {
  padding: 2rem 0;
  text-align: center;
}
.admin-from__item {
  padding: 1rem 0;
  width: 100%;
}
.admin-from__item__label {
  width: 30%;
  color: #4a4a4a;
  text-align: right;
  display: block;
  padding: 0 1rem;
  font-size: 16px;
}
.admin-from__item__input {
  width: 70%;
  color: #4a4a4a;
  text-align: left;
  display: block;
  padding: 0.5rem;
  border-radius: 2px;
}
.admin-from__item__input.button {
  color: #fff;
  background-color: #3673d9;
  padding: 0.6rem 3.5rem;
  font-weight: 400;
  border-radius: 4px;
  font-size: 16px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  line-height: 25px;
}
.admin-from__item__input.button:hover {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.fr-toolbar {
  position: initial !important;
}
.fr-box {
  position: initial !important;
}
.fr-sticky-dummy {
  display: none !important;
}
.fr-wrapper {
  position: initial !important;
}
.oops {
  background-attachment: fixed;
  text-align: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
}
.oops::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.oops-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0px;
}
.oops-fixed {
  position: relative;
  width: 100%;
  height: 100%;
}
.oops__title {
  font-size: 80px;
  font-weight: 700;
  color: #34d16e;
}
.oops__text {
  font-size: 20px;
  margin: 0 0 20px 0;
}
.oops__btn {
  width: 250px;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
  background-color: #34d16e;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin: 0 auto;
  display: block;
}
.oops__btn:hover {
  background-color: #22954c;
}
.faqs {
  margin-top: 30px;
}
.faq {
  border: 1px solid #f1f1f1;
  padding: 25px;
  cursor: pointer;
}
.faq:hover {
  background-color: #d7f6e2;
}
.faq:nth-child(n+2) {
  margin-top: 20px;
}
.faq__title {
  font-size: 18px;
  font-weight: 500;
}
.faq__text {
  display: none;
  margin: 15px 0 0 0;
  font-size: 15px;
}
.testimonials {
  margin-top: 30px;
}
.testimonial {
  width: 320px;
  margin-top: 25px;
  font-size: 14px;
  border: 1px solid #f1f1f1;
  padding: 20px;
}
.testimonial-text {
  margin: 20px 0px;
  text-align: center;
  font-size: 15px;
}
.testimonial-text-user__name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.testimonial-text-user__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.carrers {
  margin: 30px 0px;
}
@media screen and (max-width: 940px) {
  .carrers {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.carrers-item {
  border: 1px solid #f1f1f1;
  padding: 20px;
  position: relative;
  max-width: 430px;
}
@media screen and (max-width: 940px) {
  .carrers-item:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .carrers-item {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .carrers-item-link {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.carrers-item__img {
  width: 90px;
}
.carrers-item-content {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .carrers-item-content {
    padding-left: 0;
    margin-top: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.carrers-item__title {
  font-size: 18px;
  font-weight: 500;
  color: #010101;
}
.carrers-item__text {
  margin: 8px 0px;
  color: #010101;
}
@media screen and (max-width: 768px) {
  .carrers-item__text {
    text-align: center;
  }
}
.carrers-item-status__name {
  font-size: 12px;
  margin-left: 5px;
  display: block;
  color: #010101;
}
.carrers-item__active {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  line-height: 20px;
  color: #34d16e;
  background-color: #a7ebc0;
  padding: 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}
.carrers-item__active.carrers-item__active--not {
  background-color: #b86ff8;
  color: #9013fe;
}
@media screen and (max-width: 768px) {
  .carrer {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.carrer-right {
  width: 300px;
  border: 1px solid #f1f1f1;
  padding: 25px;
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
}
@media screen and (max-width: 768px) {
  .carrer-right {
    width: 100%;
    position: initial;
  }
}
.carrer-form {
  margin-top: 20px;
}
.carrer-form-sale__text {
  margin: 0 10px 0 0;
  font-size: 20px;
  font-weight: 600;
}
.carrer-form-sale__mount {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  text-decoration: line-through;
}
.career-form-relative {
  position: relative;
  width: 100%;
}
.carrer-form__input {
  margin-bottom: 20px;
  width: 100%;
  height: 30px;
  background: #fff;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 0;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #cacaca !important;
  font-family: 'Montserrat', sans-serif;
}
.carrer-form__input::placeholder {
  font-weight: 400;
  color: #cacaca;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.carrer-form__input:focus {
  outline: none;
  border-bottom: 1px solid #34d16e !important;
}
.carrer-form__input--absolute {
  width: 60px;
  height: 29px;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 0 !important;
  text-align: center;
}
.carrer-form__input--padding {
  padding: 10px 0px 10px 70px;
}
.carrer-form__input--select {
  padding: 0;
}
.carrer-form__price {
  font-size: 30px;
  font-weight: 800;
  color: #f0064b;
  text-align: center;
}
.carrer-form__btn {
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0 20px 0;
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #34d16e;
}
.carrer-form__btn:hover {
  background-color: #22954c;
}
.carrer-form__btn.carrer-form__btn--border {
  border: 1px solid #34d16e;
  color: #34d16e;
  margin: 0 0 0 0;
  background-color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}
.carrer-form__btn.carrer-form__btn--border:hover {
  background-color: #34d16e;
  color: #fff;
}
.carrer-form__title {
  font-size: 18px;
  font-weight: 600;
  color: #34d16e;
  text-align: center;
}
.carrer-left {
  width: calc(100% - 300px);
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .carrer-left {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
}
.carrer-cover {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: -webkit-linear-gradient(270deg, #000, #000);
  background-image: -moz-linear-gradient(270deg, #000, #000);
  background-image: -o-linear-gradient(270deg, #000, #000);
  background-image: -ms-linear-gradient(270deg, #000, #000);
  background-image: linear-gradient(180deg, #000, #000);
}
.carrer-cover__img {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-size: cover;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.carrer-header {
  vertical-align: middle;
  position: relative;
  z-index: 88;
  padding: 50px 30px;
}
@media screen and (max-width: 768px) {
  .carrer-header {
    padding: 20px;
  }
}
.carrer__subtitle {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
}
.carrer__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .carrer__title {
    font-size: 40px;
    text-align: center;
  }
}
.carrer-info {
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .carrer-info {
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.carrer-info-item:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .carrer-info-item:nth-child(n+2) {
    margin-left: 0;
  }
}
.carrer-info-item__name {
  display: block;
  margin-left: 8px;
  color: #fff;
  font-weight: 500;
}
.carrer__text {
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .carrer__text {
    text-align: center;
  }
}
.carrer-article {
  margin-top: 50px;
}
.carrer-feature {
  margin-top: 20px;
  width: 46%;
}
@media screen and (max-width: 425px) {
  .carrer-feature {
    width: 100%;
  }
}
.carrer-feature-info {
  width: calc(100% - 32px);
  padding-left: 15px;
}
.carrer-feature__title {
  font-size: 16px;
  font-weight: 500;
}
.carrer-feature__text {
  font-size: 15px;
  margin: 5px 0 0 0;
}
.carrer-temary-item {
  width: 100%;
  border: 1px solid #f1f1f1;
  margin-top: 20px;
  padding: 20px;
  cursor: pointer;
}
.carrer-temary-item__name {
  font-size: 17px;
  font-weight: 500;
}
.carrer-temary-classes {
  padding: 15px 15px 0 15px;
}
.carrer-temary-class {
  margin-top: 10px;
}
.carrer-temary-class__name {
  font-size: 15px;
  font-weight: 400;
}
.carrer-testimonial {
  margin-top: 20px;
  width: 48%;
}
@media screen and (max-width: 425px) {
  .carrer-testimonial {
    width: 100%;
  }
}
.carrer-testimonial__text {
  margin: 10px 0;
  font-size: 15px;
}
.carrer-testimonial__img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.carrer-testimonial__name {
  font-size: 15px;
  font-weight: 500;
  margin-left: 8px;
}
.carrer-project__text {
  margin: 20px 0 0 0;
  font-size: 15px;
}
.carrer-faq {
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  padding: 15px;
}
.carrer-faq:hover {
  background-color: #d7f6e2;
}
.carrer-faq-name__text {
  font-size: 18px;
  font-weight: 500;
}
.carrer-faq__text {
  font-size: 15px;
  margin: 10px 0 0 0;
}
.carrer-project {
  margin-top: 20px;
}
.carrer-project-item {
  width: 48%;
}
.carrer-project-item__img {
  width: 100%;
}
.career-info {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.career-info__title {
  font-size: 40px;
  text-align: center;
}
.career-info-btns {
  margin: 50px auto 50px auto;
}
.career-info__btn {
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  background-color: #34d16e;
  color: #fff;
}
.career-info__btn:hover {
  background-color: #22954c;
}
.career-info__btn.career-info__btn--line {
  margin-left: 20px;
  background-color: #fff;
  border: 1.5px solid #34d16e;
  color: #34d16e;
}
.career-info__btn.career-info__btn--line:hover {
  background-color: #34d16e;
  color: #fff;
}
.career-info-list {
  margin: 0 auto;
  text-align: center;
}
.career-info-item {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 12px;
}
.career-info-item__text {
  font-size: 15px;
  font-weight: 400;
}
.career-info-item__text.career-info-item__text--before {
  margin-left: 10px;
  text-decoration: line-through;
}
.job__main {
  margin: 3rem 0;
}
.job__header img {
  margin-right: 1rem;
  max-width: 60px;
}
.job__header h1 {
  margin-top: 0;
}
.job__salary {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f5a623;
}
.job__btn-primary {
  background-color: #5ccb79;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-weight: bold;
  display: inline-block;
}
.job__description {
  margin: 2rem 0;
}
.job__description p {
  margin: 1rem 0;
}
.job__description ul {
  margin-left: 1.5rem;
}
.job__description ul li {
  list-style: initial;
}
.job__skills,
.job__summary {
  margin-left: 1rem;
  margin-bottom: 2rem;
}
.job__skills li,
.job__summary li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e1e1e1;
}
.saleswrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-linear-gradient(rgba(191,99,31,0.9), rgba(1,1,1,0.9)), #cd6a2e url("https://devcodepro.s3.us-west-2.amazonaws.com/img/fondo/halloween-2017.jpg") no-repeat center center fixed;
  background: -moz-linear-gradient(rgba(191,99,31,0.9), rgba(1,1,1,0.9)), #cd6a2e url("https://devcodepro.s3.us-west-2.amazonaws.com/img/fondo/halloween-2017.jpg") no-repeat center center fixed;
  background: -o-linear-gradient(rgba(191,99,31,0.9), rgba(1,1,1,0.9)), #cd6a2e url("https://devcodepro.s3.us-west-2.amazonaws.com/img/fondo/halloween-2017.jpg") no-repeat center center fixed;
  background: -ms-linear-gradient(rgba(191,99,31,0.9), rgba(1,1,1,0.9)), #cd6a2e url("https://devcodepro.s3.us-west-2.amazonaws.com/img/fondo/halloween-2017.jpg") no-repeat center center fixed;
  background: linear-gradient(rgba(191,99,31,0.9), rgba(1,1,1,0.9)), #cd6a2e url("https://devcodepro.s3.us-west-2.amazonaws.com/img/fondo/halloween-2017.jpg") no-repeat center center fixed;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
}
.sales__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sales__container {
    padding: 0 20px;
  }
}
.sales__info {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.sales__title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sales__title {
    font-size: 50px;
  }
}
.sales__text {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto 1rem auto;
  max-width: 700px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sales__text {
    font-size: 18px;
  }
}
.sales__last {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  color: #f00;
  display: block;
}
.sales__price {
  font-size: 70px;
  font-weight: 700;
  color: #f25b00;
  margin: 0 0 1rem 0;
}
.sales__btn {
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  font-size: 18px;
  background-color: #34d16e;
  cursor: pointer;
  width: 300px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}
.sales__btn:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.shopping__optional {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin: 1rem auto;
  display: block;
  max-width: 350px;
  text-rendering: optimizeLegibility;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
[role="button"] {
  cursor: pointer;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  -webkit-transform: translate(0, -25%);
  -moz-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 50px auto;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
  box-shadow: 0 3px 9px rgba(0,0,0,0.5);
  -webkit-background-clip: padding-box;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px 30px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 50px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
