
.thesaas-sections-split .section,
.thesaas-sections-split .main-content .topbar,
.thesaas-sections-split .main-content .site-footer {
  margin: 30px 50px 100px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
}

.thesaas-sections-split .main-content .topbar {
  position: static;
}

.thesaas-sections-split .main-content .topbar .topbar-toggler {
  display: none;
}

.thesaas-sections-split .section-info {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 60px;
}

.thesaas-sections-split.topbar-reveal .main-content .topbar-nav {
  display: none;
}

@media (max-width: 768px) {

  .thesaas-sections-split .section,
  .thesaas-sections-split .main-content .site-footer {
    margin: 30px 0 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

}

.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container,
.lity-iframe .lity-container,
.lity-vimeo .lity-container,
.lity-youtube .lity-container {
    /*max-width: 650px !important;*/
}

.chat-message-container {
  
}

.chat-inputbar {
  width: 100%;
  background-color: #EBECF3;
  padding: 40px 25px;
}

.chat-inputbar-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transition: bottom .3s cubic-bezier(.55,0,.1,1);
}

.chat-paragraph {
  font-size: 25px !important
}

.form-control-input-text
{
    border-color: transparent !important;
    background-color: transparent !important;
    font-family: "Source Sans Pro",Helvetica,Arial,Sans-Serif;
    color: #696A75;
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: 0;
    transition: .2s cubic-bezier(.55,0,.1,1);
    font-weight: 300;
    background-color: inherit;
}

.form-control-input-text:focus
{
    background-color: transparent !important;
    border-color: transparent !important;
}

.form-control-chat {
    border-color: transparent !important;
    background-color: transparent !important;
    border-radius: 2px;
    color: #696A75;
    padding: 5px 12px;

    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: 0;
    transition: .2s cubic-bezier(.55,0,.1,1);
    font-weight: 300;

    /*font-size: 14px;
    line-height: inherit;*/
    -webkit-transition: 0.2s linear;
    /*transition: 0.2s linear;*/
}

.form-control-chat:focus {
    /*color: #464a4c;*/
    background-color: transparent !important;
    border-color: transparent !important;
    outline: 0;
}

.button-chat {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 160px;
  outline: 0;
  border: 0;
  min-height: 69px;
  height: 69px;
  line-height: 69px;
  padding: 0 30px;
}

.button-chat-sm {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 160px;
  outline: 0;
  border: 0;
  min-height: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
}

.bot-avatar-chat {
  width: 26px;
  height: 26px;
  margin-top: 8px;
  margin-right: 10px;
}

.user-avatar-chat {
  width: 26px;
  height: 26px;
  margin-top: 8px;
}


@media only screen and (max-width: 767px) {
  .chat-inputbar {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .form-control-chat {
    font-size: 1.3rem;
    line-height: 1.75rem;
    padding: 5px 0px !important;
    width: 60% !important;
  }
  .button-chat {
    min-width: 0px;
    line-height: 1rem;
    min-height: 49px;
    height: 49px;
  }

  .button-chat-sm {
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    border-radius: 100px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 160px;
    outline: 0;
    border: 0;
    min-height: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
  }

  .chat-paragraph {
    font-size: 19px !important
  }

  .bot-avatar-chat {
    width: 26px;
    height: 26px;
    margin-top: 2px;
    margin-right: 10px;
  }

  .user-avatar-chat {
    width: 26px;
    height: 26px;
    margin-top: 2px;
  }
}

.loader {
  border: 16px solid #3686be;
  border-radius: 50%;
  border-top: 16px solid white;
  border-bottom: 16px solid white;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  max-width:100%; 
  max-height:100%; 
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.swiper-wrapper-presentation {
  padding-bottom: 0px !important;
}

.swiper-wrapper-presentation-mobile {
  padding-bottom: 0px !important;
}

.swiper-slide-presentation {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.swiper-container-custom {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-gray {
  background-color: #EBECF3;
}

.bg-about {
  background-image: url(/site1/img/bg-spotlight.jpg);
  background-size: cover;
  /*background-position: center center;*/
}

.bg-how {
  background-image: url(/site1/img/bg-light.png);
  background-size: cover;
  /*background-position: center center;*/
}

.modal {
  overflow: auto !important;
  padding-right: 0 !important;
}

body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

.modal-open .topbar {
  right: 0px;
}

@media (min-height: 770px) {
  .cover-hand {
    align-self: center !important;
  }
}

@media (min-width: 1200px) {
  .first-message-container {
    margin-left: -10px;
  }

  .topbar-brand-chat {
    margin-left: -7px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .first-message-container {
    margin-left: -10px;
  }

  .first-message-container h1 {
    font-size: 35px !important;
    line-height: 1.2;
  }

  .btn-group-lg > .btn, .btn-lg {
    font-size: 11px;
    padding: 7px 26px;
  }

  .topbar-brand-chat {
    margin-left: -7px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .first-message-container h1 {
    font-size: 35px !important;
    line-height: 1.2;
  }

  .topbar-brand-chat {
    margin-left: -7px;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  
}
@media (min-width: 320px) and (max-width: 360px) {
  
}
@media all and (max-width: 320px) {
  
}

.message-container:last-child {
  margin-bottom: 15%;
}
