/**
 * VanillePlugin CSS
 */
 .lessavantscontact-form-wrapper .title {
    color: #a055a1;
    font-weight: bold;
    font-size: 26px;
}

.lessavantscontact-form-wrapper .sub-title {
    color: #a055a1;
    display: block;
    font-size: 20px;
}

.lessavantscontact-form-wrapper {
    text-align: center;
    position: relative;
    width: 28rem;
    margin: auto;
}

.lessavantscontact-form-wrapper input {
    border-radius: 40px !important;
    height: 40px !important;
    width: 100% !important;
    border: 3px solid #97be3a !important;
    outline: none !important;
    padding: 5px 20px !important;
}

.lessavantscontact-form-wrapper input:focus {
    border: 3px solid #97be3a !important;
}

.lessavantscontact-form-wrapper button {
    width: 100%;
    color: white;
    background: #98c037;
    font-size: 18px;
    margin: 10px 0;
    padding: 5px 0;
    border-radius: 50px;
    border: 0;
    outline: none;
}

.lessavantscontact-form-wrapper button:hover {
    background: #779c1d;
}

.lessavantscontact-form-wrapper .result {
    max-height: 300px;
    margin-bottom: 20px;
    position: relative;
}

.lessavantscontact-form-wrapper .city-wrapper {
    list-style: none;
    text-align: left;
    margin: 0;
    background: aliceblue;
    padding: 10px;
    border-radius: 10px;
}

.lessavantscontact-form-wrapper .city-wrapper a {
    font-size: 20px;
    color: #28367f;
    font-weight: bold;
}

.lessavantscontact-form-wrapper .description {
    text-align: center !important;
    color: #68a31e;
    font-family: 'futura';
    font-size: 18px;
    font-weight: bold;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.lessavantscontact-form-wrapper .city-wrapper .message {
    margin: 0;
    text-align: center;
}

.lessavantscontact-form-wrapper form {
    margin-top: 30px;
}

.lessavantscontact-form-wrapper img {
    margin: auto;
    width: 84px;
    display: inline-block;
}

.lessavantscontact-form-wrapper .more .country {
    color: #99c134;
    font-size: 24px;
    font-weight: bold;
}

.lessavantscontact-form-wrapper .more a:after {
    display: none;
}

.lessavantscontact-form-wrapper .more p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px !important;
    color: #009EE0;
}

.lessavantscontact-form-wrapper .loader-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0.3, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.5, 0.3, 0.2, 1);
  background: rgba(250, 250, 250, 0.50);
  border-radius: 10px;
}
.lessavantscontact-form-wrapper .loader-wrapper .loader {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  -webkit-animation: scale 1s infinite;
  animation: scale 1s infinite;
  background: #ea1863;
}

.lessavantscontact-form-wrapper .loader-wrapper .message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 20px 0 0 -50px;
    text-align: center;
    color: #ea1863;
    font-size: 12px;
}

.lessavantscontact-form-wrapper .more a {
    text-decoration: none;
    border: 0;
    float: left !important;
}

@-webkit-keyframes scale {
  0% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(0.5); }
  100% { -webkit-transform: scale(1); }
}
@keyframes scale {
  0% { transform: scale(1); }
  50% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

/* Responsive */
@media only screen and (max-width: 1000px)
{
  .lessavantscontact-form-wrapper {
      width: 18rem !important;
  }
}
