/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: Poppins-Bold;
  src: url("../fonts/poppins/Poppins-Bold.ttf");
}

@font-face {
  font-family: Poppins-Medium;
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: Raleway-Regular;
  src: url("../fonts/raleway/Raleway-Regular.ttf");
}

@font-face {
  font-family: Raleway-Black;
  src: url("../fonts/raleway/Raleway-Black.ttf");
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url("../fonts/raleway/Raleway-SemiBold.ttf");
}

@font-face {
  font-family: Raleway-Bold;
  src: url("../fonts/raleway/Raleway-Bold.ttf");
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #f1cc3d;
}

.img-responsive {
  width: 100%;
  clear: both;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder {
  color: transparent;
}
textarea:focus::-moz-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #acacac;
}
input:-moz-placeholder {
  color: #acacac;
}
input::-moz-placeholder {
  color: #acacac;
}
input:-ms-input-placeholder {
  color: #acacac;
}

textarea::-webkit-input-placeholder {
  color: #acacac;
}
textarea:-moz-placeholder {
  color: #acacac;
}
textarea::-moz-placeholder {
  color: #acacac;
}
textarea:-ms-input-placeholder {
  color: #acacac;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Raleway-Regular;
  font-size: 16px;
  color: #999999;
  line-height: 1.4;
}

.bo1 {
  border-bottom: 1px solid #999999;
}

.hov1:hover {
  border-color: #f1cc3d;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.wrap-login100 {
  width: 320px;
  margin-left: 500px;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(196, 188, 188, 0.3);
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.login100-form-title {
  max-width: 150px;
  padding-bottom: 30px;
  margin: auto;
}

/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login100-form-title {
  width: 100%;
  display: block;
}

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  padding-bottom: 20px;
}

.input100 {
  font-family: Raleway-SemiBold;
  font-size: 16px;
  line-height: 1.4;
  color: #686868;
  display: block;
  width: 100%;
  background: #e4e4e4;
  border-radius: 3px;
  padding: 15px 15px 15px 40px;
}

/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 3px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(241, 204, 61, 0.3);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
      box-shadow: 0px 0px 60px 20px;
      opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
      box-shadow: 0px 0px 60px 20px;
      opacity: 0;
  }
}

.symbol-input100 {
  font-size: 20px;
  color: #999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  top: 15px;
  left: 15px;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #f1cc3d;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Raleway-Regular;
  font-size: 14px;
  font-weight: 300;
  color: #7a6e66;
  line-height: 1.8;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  margin-bottom: 20px;
}

.label-checkbox100::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 50%;
  z-index: 2;
  left: 9px;
  top: 6px;
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #ffffff;
  background-color: #fff;
  box-shadow: 1px 1px 0px #d6b430;
}

.label-checkbox100 > svg {
  position: absolute;
  left: 0px;
  top: -3px;
  width: 26px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  width: 180px;
  display: flex;
  line-height: 0;
  transition: all 0.5s ease;
}

.login100-form-btn:hover {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

.login100-form-btn > svg {
  width: 100%;
}

/*------------------------------------------------------------------
[ Button sign in with ]*/
.btn-face,
.btn-twitter,
.btn-google,
.btn-yahoo,
.btn-linkedin,
.btn-foursquare {
  font-family: Raleway-Bold;
  font-size: 16px;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 20px) / 2);
  height: 40px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  margin: 5px;
}

.btn-face {
  color: #3b5998;
}

.btn-twitter {
  color: #3b5998;
}

.btn-google {
  color: #3b5998;
}

.btn-yahoo {
  color: #3b5998;
}

.btn-linkedin {
  color: #3b5998;
}

.btn-foursquare {
  color: #3b5998;
}

.btn-face i,
.btn-twitter i,
.btn-google i,
.btn-yahoo i,
.btn-linkedin i,
.btn-foursquare i {
  font-size: 20px;
  margin-right: 10px;
  padding-bottom: 1px;
}

.btn-face:hover,
.btn-twitter:hover,
.btn-google:hover,
.btn-yahoo:hover,
.btn-linkedin:hover,
.btn-foursquare:hover {
  border-color: #f1cc3d;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 3px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Raleway-SemiBold;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.error-message {
  font-size: 13px;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #f11c43;
  text-align: center;
}

#ajaxValidationMsg {
  background-color: #ffced0;
  color: #c74c51;
  font-size: 14px;
  border-radius: 3px;
  display: none;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
      top: 28px;
      left: 28px;
      width: 0;
      height: 0;
      opacity: 1;
  }
  100% {
      top: -1px;
      left: -1px;
      width: 58px;
      height: 58px;
      opacity: 0;
  }
}

#loaderLayer {
  background-color: #f6168e;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.fadeOutLogin {
  opacity: 0;
  animation: loginOutAnimation 3s ease;
}

@keyframes loginOutAnimation {
  0% {
      opacity: 1;
      transform: scale(1);
  }
  5% {
      transform: scale(0.5);
  }
  10% {
      transform: scale(0.8);
  }
  20% {
      transform: scale(1);
  }
  40% {
      opacity: 0;
  }
  100% {
      opacity: 0;
      transform: scale(0);
  }
}

.fadeInLogin {
  opacity: 1;
  animation: loginInAnimation 3s ease;
}

@keyframes loginInAnimation {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  5% {
      transform: scale(0.75);
  }
  10% {
      transform: scale(1);
  }
  20% {
      transform: scale(0.75);
  }
  60% {
      opacity: 1;
      transform: scale(1);
  }
}

.text_1 {
  position: absolute;
  left: -999px;
  top: 40px;
  width: 420px;
  opacity: 1;
  transition-timing-function: linear;
  transition-duration: 0.7s, 0.5s;
  transition-property: left, opacity;
  transition-delay: 0s, 0.4s;
}

.text_2 {
  position: absolute;
  left: -999px;
  top: 140px;
  width: 380px;
  opacity: 1;
  transition-timing-function: linear;
  transition-duration: 0.7s, 0.5s;
  transition-property: left, opacity;
  transition-delay: 0.3s, 0.4s;
}

.text_3 {
  position: absolute;
  left: -999px;
  top: 240px;
  width: 280px;
  opacity: 1;
  transition-timing-function: linear;
  transition-duration: 0.7s, 0.5s;
  transition-property: left, opacity;
  transition-delay: 0.6s, 0.4s;
}

.text_1.show {
  left: -600px;
  opacity: 1;
}

.text_2.show {
  left: -475px;
  opacity: 1;
}

.text_3.show {
  left: -530px;
  opacity: 1;
}

#loginSubmitBtn > input {
  display: none;
}

#loginSubmitBtn > svg:hover {
  cursor: pointer;
}

.contact100-form-checkbox {
  text-align: center;
}

.label-checkbox100 {
  display: inline-block;
}

/* Mobile devices */
@media (min-width: 320px) and (max-width: 480px) {
  img[class^="text_"] {
      display: none;
  }

  .wrap-login100 {
      margin: auto;
      box-shadow: none;
      border: none;
  }
}

/* iPads, Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .wrap-login100 {
      width: 320px;
      margin-left: 360px;
  }
  .text_1 {
      top: 70px;
      width: 300px;
  }

  .text_2 {
      top: 140px;
      width: 260px;
  }

  .text_3 {
      top: 215px;
      width: 200px;
  }

  .text_1.show {
      left: -375px;
  }

  .text_2.show {
      left: -280px;
  }

  .text_3.show {
      left: -322px;
  }
}

/* Small screens, laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .text_1.show {
      left: -560px;
  }

  .text_2.show {
      left: -430px;
  }

  .text_3.show {
      left: -485px;
  }
}

/* Desktops, large screens */
@media (min-width: 1025px) and (max-width: 1200px) {
}

/* Extra large screens, TV */
@media (min-width: 1201px) {
}


.login-get-into span {
  font-size: 16px;
  color: #8c816f;
  font-family: Raleway-Regular;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
}

.login-get-into span::before {
  content: "";
  width: 10px;
  display: block;
  border-top: 1px solid #d1cabf;
  margin-right: 8px;}

.login-get-into span::after {
  content: "";
  width: 10px;
  display: block;
  border-top: 1px solid #d1cabf;
  margin-left: 8px;
}

.login-get-into a svg {
  max-width: 100%;
}

.login-get-into a {
  display: block;
  width: 90%;
  margin: auto;
}