.dd-hide {
  display: none !important;
}

.dd-m-button {
  overflow: hidden;
  position: relative;
}

.dd-m-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 3s all ease-in-out;
  transition: 3s all ease-in-out;
}

.dd-m-button.is-loading {
  height: 30px;
  color: transparent;
}

.dd-m-button.is-loading:after {
  display: block;
  width: 100%;
}

.dd-m-button.is-success {
  background-color: #14c68e;
  color: #fff;
}

.dd-m-button.is-success:hover {
  -webkit-transform: none;
          transform: none;
  cursor: default;
}

.dd-m-button.is-success:after {
  content: none;
}

.dd-m-button.is-error {
  background-color: #F36;
  color: #fff;
}

.dd-m-button.is-error:hover {
  -webkit-transform: none;
          transform: none;
  cursor: default;
}

.dd-m-button.is-error:after {
  content: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #2f3542 inset;
  -webkit-transition: none;
  transition: none;
  background: #0000;
  border-radius: 0 4px 4px 0;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.youtube:hover .play-button {
  background-color: red;
}

.youtube .play-button {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:hover {
  background-color: red;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: #0000 #0000 #0000 #fff;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
}

.youtube img,
.youtube .play-button {
  cursor: pointer;
}

.youtube > img,
.youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.youtube > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.has-error .help-block {
  display: block !important;
}

.has-success .help-block {
  display: none !important;
}

.dd-l-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 60px;
}

@media (min-width: 768px) {
  .dd-l-header-social {
    width: 160px;
  }
}

.dd-l-header-social .extra-social-links {
  display: none !important;
}

@media (min-width: 768px) {
  .dd-l-header-social .extra-social-links {
    display: inline-block !important;
  }
}

.dd-l-header-social .extra-social-links__whatsapp {
  display: inline-block !important;
}

.dd-l-header-social-list {
  margin: 0;
  padding: 0;
}

.dd-l-header__login {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media (min-width: 768px) {
  .dd-l-header__login {
    width: 160px;
  }
}

.dd-l-header__login a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.2s color ease-in;
  transition: 0.2s color ease-in;
}

.dd-l-header__login a:hover {
  color: #00d5c3;
}

.dd-l-header__login a span {
  display: none;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .dd-l-header__login a span {
    display: inline-block;
  }
}

.dd-l-header__login a .fa {
  font-size: 24px;
}

