@charset "UTF-8";

/*========================================================
  Support panel
=========================================================*/

.spanel-label {
  cursor: pointer;
  margin-top: 3px;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

.spanel-label:hover {
  opacity: 1;
}

.panel-checkbox {
  display: none;
}

.support_panel {
  background: #eee;
  height: auto;
  max-height: 0;
  -webkit-transition: max-height .2s ease-out;
  transition: max-height .2s ease-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, .4) inset;
}

#support_p:checked + .support_panel {
  margin-top: 0;
  max-height: 1000px;
  -webkit-transition: max-height .4s ease-out;
  transition: max-height .4s ease-out;
}

#sliding_panel.opened {
  margin-top: 0;
}

.support_panel .container {
  padding: 15px;
}

#close_sliding_panel {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 0;
  background: #CCC;
  padding: 40px 10px 10px 10px;
}

#close_sliding_panel:hover {
  background: #ddd;
}

.support-info {
  margin-top: 5px;
}

.support-panel-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  color: #000;
  font-weight: 400;
  background: rgba(0, 0, 0, .08);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
}

#support_p:checked + .support_panel .support-panel-close {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.support-panel-close:hover {
  background: rgba(0, 0, 0, .15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .15);
}


/*========================================================
  Form response / alerts
=========================================================*/

.cf_response {
  display: none;
  padding-left: 15px;
  padding-right: 15px;
}

#notification_container .alert {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
}

#notification_container .close::before {
  content: "\00d7";
  color: #000;
  outline: none;
}

#notification_container .close {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 15px;
  opacity: 1;
}


/*========================================================
  Contact form base
=========================================================*/

.mailform {
  position: relative;
  text-align: left;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.mailform fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.mailform * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/*========================================================
  Labels / spacing
=========================================================*/

.mailform label {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #fff;
}

.mailform label:first-child {
  margin-top: 0;
}

@media (max-width: 1365px) {
  .mailform label {
    margin-top: 30px;
  }
}


/*========================================================
  Inputs / textarea
=========================================================*/

.mailform label input,
.mailform label input[type="text"],
.mailform label input[type="email"],
.mailform label input[type="tel"],
.mailform label select,
.mailform label textarea {
  display: block;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  outline: none;
  font-size: 16px;
  padding: 12px 14px;
  line-height: 22px;
  color: #555;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
}

.mailform label input:focus,
.mailform label input[type="text"]:focus,
.mailform label input[type="email"]:focus,
.mailform label input[type="tel"]:focus,
.mailform label select:focus,
.mailform label textarea:focus {
  color: #555;
  background-color: #fff;
  border-color: #02bfd1;
  outline: none;
  box-shadow: 0 0 0 1px #02bfd1;
}

.mailform label textarea {
  resize: vertical;
  overflow: auto;
  min-height: 200px;
}


/*========================================================
  Placeholders
=========================================================*/

.mailform label input::placeholder,
.mailform label input[type="text"]::placeholder,
.mailform label input[type="email"]::placeholder,
.mailform label input[type="tel"]::placeholder,
.mailform label textarea::placeholder {
  color: #8787ff;
  opacity: 1;
  font-style: italic;
}

.mailform label input::-webkit-input-placeholder,
.mailform label input[type="text"]::-webkit-input-placeholder,
.mailform label input[type="email"]::-webkit-input-placeholder,
.mailform label input[type="tel"]::-webkit-input-placeholder,
.mailform label textarea::-webkit-input-placeholder {
  color: #8787ff;
  opacity: 1;
  font-style: italic;
}

.mailform label input::-moz-placeholder,
.mailform label input[type="text"]::-moz-placeholder,
.mailform label input[type="email"]::-moz-placeholder,
.mailform label input[type="tel"]::-moz-placeholder,
.mailform label textarea::-moz-placeholder {
  color: #8787ff;
  opacity: 1;
  font-style: italic;
}

.mailform label input:-ms-input-placeholder,
.mailform label input[type="text"]:-ms-input-placeholder,
.mailform label input[type="email"]:-ms-input-placeholder,
.mailform label input[type="tel"]:-ms-input-placeholder,
.mailform label textarea:-ms-input-placeholder {
  color: #8787ff;
  opacity: 1;
  font-style: italic;
}


/*========================================================
  Template mailform placeholder overlay
  Some versions of this template inject .mfPlaceHolder spans.
=========================================================*/

.mfPlaceHolder {
  font: inherit;
  cursor: text;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 14px;
  line-height: 22px;
  color: #8787ff;
  opacity: 1;
  font-style: italic;
  pointer-events: none;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

*:-webkit-autofill ~ .mfPlaceHolder,
.mfPlaceHolder.state-1 {
  opacity: 0;
  visibility: hidden;
}


/*========================================================
  Hidden honeypot support
=========================================================*/

.mailform .form-honeypot,
.mailform .honeypot,
.mailform [aria-hidden="true"] input[name="email-confirm"] {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/*========================================================
  Validation states
=========================================================*/

.ui-state-error {
  border: 1px solid #EB3034 !important;
  position: relative;
}

.ui-state-valid {
  border: 1px solid #0EAB55 !important;
  position: relative;
}

.ui-state-error + span::after,
.ui-state-valid + span::after {
  font-family: 'icomoon';
  font-size: 15px;
  position: absolute;
  right: 12px;
  top: 10px;
  display: block;
  z-index: 1;
}

.ui-state-error + span::after {
  content: "\e01b";
  color: #EB3034;
}

.ui-state-valid + span::after {
  content: "\e013";
  color: #0EAB55;
}

.mfValidation {
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: absolute;
  text-align: right;
  top: auto;
  left: auto;
  bottom: 100%;
  right: 5px;
  padding: 0;
  margin: 0;
  min-height: 0;
  width: 240px;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  color: #15dde4;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 998;
}

.mfValidation.show {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.mfValidation.hide,
.mfValidation.valid {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .mfValidation {
    text-align: right;
    top: auto;
    left: auto;
    bottom: 100%;
    right: 0;
    background: none;
    padding: 0;
    margin: 0 0 3px;
    min-height: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .mfValidation:before {
    display: none;
  }
}


/*========================================================
  Mail form controls / submit progress
=========================================================*/

.mfControls {
  margin-top: 40px;
  word-spacing: 10px;
  text-align: center;
}

.mfControls > * {
  word-spacing: normal;
  margin-bottom: 5px;
}

.mfControls .btn2 {
  border-color: #878787;
}

.mfProgress {
  position: relative;
}

.mfProgress .cnt,
.mfProgress .loader {
  -moz-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.mfProgress .loader {
  opacity: 0;
  text-align: center;
  letter-spacing: 10px;
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.mfProgress .loader,
.mfProgress .loader:before,
.mfProgress .loader:after {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}

.mfProgress .loader:before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}

.mfProgress.sending .cnt,
.mfProgress.fail .cnt,
.mfProgress.success .cnt {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}

.mfProgress.sending .loader,
.mfProgress.fail .loader,
.mfProgress.success .loader {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mfProgress.sending .loader:before {
  -webkit-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  -moz-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  -ms-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  -o-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.mfProgress .msg {
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
  position: absolute;
  padding: 10px;
  border-radius: 0;
  font-size: 16px;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 50%;
  width: 230px;
  margin-left: -115px;
  margin-top: 20px;
  color: #fff;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.mfProgress .msg:before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translate(50%, 0%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #111 transparent;
}

.mfProgress.fail .msg,
.mfProgress.success .msg {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.mfProgress.fail .msg {
  background: #F44336;
}

.mfProgress.fail .msg:before {
  border-color: transparent transparent #F44336 transparent;
}

.mfProgress.success .msg {
  background: #2E7D32;
}

.mfProgress.success .msg:before {
  border-color: transparent transparent #2E7D32 transparent;
}


/*========================================================
  Mail form icons
=========================================================*/

.mfIcon {
  position: absolute;
  text-align: center;
  top: 12px;
  right: 10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #FFF;
  font: 400 20px/24px "material-design";
}

.mfIcon span:before,
.mfIcon span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -10px;
  -moz-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.mfInput input[name='phone'] ~ .mfIcon span:before,
.mfInput select[name='phone'] ~ .mfIcon span:before,
.mfInput textarea[name='phone'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='email'] ~ .mfIcon span:before,
.mfInput select[name='email'] ~ .mfIcon span:before,
.mfInput textarea[name='email'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='name'] ~ .mfIcon span:before,
.mfInput select[name='name'] ~ .mfIcon span:before,
.mfInput textarea[name='name'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='message'] ~ .mfIcon,
.mfInput select[name='message'] ~ .mfIcon,
.mfInput textarea[name='message'] ~ .mfIcon {
  display: none;
}

.mfInput input:-webkit-autofill ~ .mfIcon span:before,
.mfInput textarea:-webkit-autofill ~ .mfIcon span:before {
  color: #2D2D2D;
}


/*========================================================
  Autofill cleanup
=========================================================*/

.mailform input:-webkit-autofill,
.mailform input:-webkit-autofill:hover,
.mailform input:-webkit-autofill:focus,
.mailform textarea:-webkit-autofill,
.mailform textarea:-webkit-autofill:hover,
.mailform textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #555;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}


/*========================================================
  Animation
=========================================================*/

@-ms-keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-50px) scale(0.3);
  }

  50% {
    transform: translateX(0) scale(1);
  }

  75% {
    transform: translateX(50px) scale(0.3);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@-o-keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-50px) scale(0.3);
  }

  50% {
    transform: translateX(0) scale(1);
  }

  75% {
    transform: translateX(50px) scale(0.3);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@-webkit-keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-50px) scale(0.3);
  }

  50% {
    transform: translateX(0) scale(1);
  }

  75% {
    transform: translateX(50px) scale(0.3);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@-moz-keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-50px) scale(0.3);
  }

  50% {
    transform: translateX(0) scale(1);
  }

  75% {
    transform: translateX(50px) scale(0.3);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-50px) scale(0.3);
  }

  50% {
    transform: translateX(0) scale(1);
  }

  75% {
    transform: translateX(50px) scale(0.3);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}