input::placeholder {
    color: red;
}
/*===========================
  ALERTS css 
===========================*/
.alerts-title .title {
    font-size: 36px;
    line-height: 45px;
    color: var(--dark-3);
}
@media (max-width: 767px) {
    .alerts-title .title {
        font-size: 24px;
        line-height: 35px;
    }
}

/* Labels CSS */
.label {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 2px;
    display: inline-block;
    border: 1px solid transparent;
    background: transparent;
}
.label.rounded-full {
    border-radius: 50px;
    padding: 4px 12px;
}
.label.icon-left i {
    padding-right: 6px;
}
.label.icon-right i {
    padding-left: 6px;
}
.label.primary-label {
    background: var(--primary);
    color: var(--white);
}
.label.primary-label-outline {
    color: var(--primary);
    border-color: var(--primary);
}
.label.success-label {
    background: var(--success);
    color: var(--white);
}
.label.success-label-outline {
    color: var(--success);
    border-color: var(--success);
}
.label.info-label {
    background: var(--info);
    color: var(--white);
}
.label.info-label-outline {
    color: var(--info);
    border-color: var(--info);
}
.label.caution-label {
    background: var(--caution);
    color: var(--white);
}
.label.caution-label-outline {
    color: var(--caution);
    border-color: var(--caution);
}
.label.error-label {
    background: var(--error);
    color: var(--white);
}
.label.error-label-outline {
    color: var(--error);
    border-color: var(--error);
}
.label.accent-label {
    background: var(--accent);
    color: var(--white);
}
.label.accent-label-outline {
    color: var(--accent);
    border-color: var(--accent);
}
.label.secondary-label {
    background: var(--secondary);
    color: var(--white);
}
.label.secondary-label-outline {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Alerts CSS */
.alert {
    padding: 32px;
    padding-left: 0;
    border-radius: 4px;
    box-shadow: var(--shadow-2);
    position: relative;
    overflow: hidden;
}
.alert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.alert.alert-dismissible {
    padding: 12px 48px 12px 0;
}
.alert.alert-dismissible .alert-icon {
    padding: 0px 12px 0 36px;
    line-height: 1;
}
.alert.alert-dismissible .alert-message h5 {
    margin-bottom: 0px;
}
.alert.alert-dismissible .btn-close {
    background: none;
    padding: 1rem;
}
.alert.alert-dismissible .btn-close:focus-within,
.alert.alert-dismissible .btn-close:focus {
    box-shadow: none;
}
.alert.alert-dismissible .btn-close.dark i {
    color: var(--black);
}
.alert.alert-dismissible .btn-close i {
    color: var(--white);
    font-weight: 700;
}
.alert .alert-icon {
    padding: 32px;
}
.alert .alert-icon i {
    font-size: 20px;
    font-weight: 700;
}
.alert .alert-message h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.alert .alert-message p {
    color: var(--black);
    opacity: 0.88;
}
.alert.alert-primary-light {
    background: var(--primary-light);
}
.alert.alert-primary-light::before {
    background: var(--primary);
}
.alert.alert-primary-light .alert-icon {
    color: var(--primary);
}
.alert.alert-primary {
    background: var(--primary);
}
.alert.alert-primary::before {
    background: var(--primary-dark);
}
.alert.alert-primary .alert-icon {
    color: var(--white);
}
.alert.alert-primary .alert-message h5 {
    color: var(--white);
}
.alert.alert-primary .alert-message p {
    color: var(--white);
}
.alert.alert-accent-light {
    background: var(--accent-light);
}
.alert.alert-accent-light::before {
    background: var(--accent);
}
.alert.alert-accent-light .alert-icon {
    color: var(--accent);
}
.alert.alert-accent {
    background: var(--accent);
}
.alert.alert-accent::before {
    background: var(--accent-dark);
}
.alert.alert-accent .alert-icon {
    color: var(--white);
}
.alert.alert-accent .alert-message h5 {
    color: var(--white);
}
.alert.alert-accent .alert-message p {
    color: var(--white);
}
.alert.alert-secondary-light {
    background: var(--secondary-light);
}
.alert.alert-secondary-light::before {
    background: var(--secondary);
}
.alert.alert-secondary-light .alert-icon {
    color: var(--secondary);
}
.alert.alert-secondary {
    background: var(--secondary);
}
.alert.alert-secondary::before {
    background: var(--secondary-dark);
}
.alert.alert-secondary .alert-icon {
    color: var(--white);
}
.alert.alert-secondary .alert-message h5 {
    color: var(--white);
}
.alert.alert-secondary .alert-message p {
    color: var(--white);
}
.alert.alert-success-light {
    background: var(--success-light);
}
.alert.alert-success-light::before {
    background: var(--success);
}
.alert.alert-success-light .alert-icon {
    color: var(--success);
}
.alert.alert-success {
    background: var(--success);
}
.alert.alert-success::before {
    background: var(--success-dark);
}
.alert.alert-success .alert-icon {
    color: var(--white);
}
.alert.alert-success .alert-message h5 {
    color: var(--white);
}
.alert.alert-success .alert-message p {
    color: var(--white);
}
.alert.alert-info-light {
    background: var(--info-light);
}
.alert.alert-info-light::before {
    background: var(--info);
}
.alert.alert-info-light .alert-icon {
    color: var(--info);
}
.alert.alert-info {
    background: var(--info);
}
.alert.alert-info::before {
    background: var(--info-dark);
}
.alert.alert-info .alert-icon {
    color: var(--white);
}
.alert.alert-info .alert-message h5 {
    color: var(--white);
}
.alert.alert-info .alert-message p {
    color: var(--white);
}
.alert.alert-caution-light {
    background: var(--caution-light);
}
.alert.alert-caution-light::before {
    background: var(--caution);
}
.alert.alert-caution-light .alert-icon {
    color: var(--caution);
}
.alert.alert-caution {
    background: var(--caution);
}
.alert.alert-caution::before {
    background: var(--caution-dark);
}
.alert.alert-caution .alert-icon {
    color: var(--white);
}
.alert.alert-caution .alert-message h5 {
    color: var(--white);
}
.alert.alert-caution .alert-message p {
    color: var(--white);
}
.alert.alert-error-light {
    background: var(--error-light);
}
.alert.alert-error-light::before {
    background: var(--error);
}
.alert.alert-error-light .alert-icon {
    color: var(--error);
}
.alert.alert-error {
    background: var(--error);
}
.alert.alert-error::before {
    background: var(--error-dark);
}
.alert.alert-error .alert-icon {
    color: var(--white);
}
.alert.alert-error .alert-message h5 {
    color: var(--white);
}
.alert.alert-error .alert-message p {
    color: var(--white);
}
.alert.alert-dark-light {
    background: var(--light-3);
}
.alert.alert-dark-light::before {
    background: var(--dark-1);
}
.alert.alert-dark-light .alert-icon {
    color: var(--dark);
}
.alert.alert-dark {
    background: var(--dark-3);
}
.alert.alert-dark::before {
    background: var(--dark-1);
}
.alert.alert-dark .alert-icon {
    color: var(--white);
}
.alert.alert-dark .alert-message h5 {
    color: var(--white);
}
.alert.alert-dark .alert-message p {
    color: var(--white);
}

/* ======= Switch Buttons ========== */
.switch-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.switch-buttons > * {
    margin-right: 30px;
    margin-bottom: 30px;
}

.switch-btn {
    width: 54px;
    height: 32px;
    position: relative;
    cursor: pointer;
}
.switch-btn input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.switch-btn input:checked ~ .switch-body .slide .inactive-icon {
    display: flex;
}
.switch-btn input:checked ~ .switch-body .slide {
    right: auto;
    left: 2px;
}
.switch-btn input:checked ~ .switch-body .slide .active-icon {
    display: none;
}
.switch-btn .slide {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2px;
    top: 2px;
    transition: all 0.3s;
}
.switch-btn .slide .icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 4px;
}
.switch-btn .slide .inactive-icon {
    display: none;
    background: #e0e0e0;
    color: var(--dark-3);
}
.switch-btn .slide .active-icon {
    background: var(--primary);
}
.switch-btn .switch-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.08),
        0px 0.5px 2px rgba(96, 97, 112, 0.16);
    border-radius: 24px;
}

.switch-btn-text {
    width: auto;
    height: 32px;
    position: relative;
    cursor: pointer;
}
.switch-btn-text input:checked ~ .switch-body .slide-text .active {
    display: none;
}
.switch-btn-text input:checked ~ .switch-body .slide-text .inactive {
    display: flex;
}
.switch-btn-text input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.switch-btn-text input:checked ~ .switch-body .slide .inactive-icon {
    display: flex;
}
.switch-btn-text input:checked ~ .switch-body .slide {
    right: auto;
    left: 2px;
}
.switch-btn-text input:checked ~ .switch-body .slide .active-icon {
    display: none;
}
.switch-btn-text .switch-body .slide-text .inactive {
    display: none;
    padding-left: 36px;
    padding-right: 6px;
    color: var(--dark-3);
}
.switch-btn-text .slide-text .text {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.switch-btn-text .switch-body .slide-text .active {
    padding-right: 36px;
    padding-left: 6px;
    color: var(--primary);
}
.switch-btn-text .slide {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2px;
    top: 2px;
    transition: all 0.3s;
}
.switch-btn-text .slide .icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 4px;
}
.switch-btn-text .slide .inactive-icon {
    display: none;
    background: #e0e0e0;
    color: var(--dark-3);
}
.switch-btn-text .slide .active-icon {
    background: var(--primary);
}
.switch-btn-text .switch-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.08),
        0px 0.5px 2px rgba(96, 97, 112, 0.16);
    border-radius: 24px;
}

.switch-btn-secondary .slide .active-icon {
    background: var(--secondary);
}

.switch-btn-text-secondary .switch-body .slide-text .active {
    color: var(--secondary);
}
.switch-btn-text-secondary .slide .active-icon {
    background: var(--secondary);
}

.switch-btn-success .slide .active-icon {
    background: var(--success);
}

.switch-btn-text-success .switch-body .slide-text .active {
    color: var(--success);
}
.switch-btn-text-success .slide .active-icon {
    background: var(--success);
}

.switch-btn-error .slide .active-icon {
    background: var(--error);
}

.switch-btn-text-error .switch-body .slide-text .active {
    color: var(--error);
}
.switch-btn-text-error .slide .active-icon {
    background: var(--error);
}

/* ===== Buttons Css ===== */
.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.active.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.active.primary-btn-outline,
.primary-btn-outline:hover,
.primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
}
.deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

.primary-btn-link {
    color: var(--primary);
}
.active.primary-btn-link,
.primary-btn-link:hover,
.primary-btn-link:focus {
    color: var(--primary-dark);
}
.deactive.primary-btn-link {
    color: var(--dark-3);
    pointer-events: none;
}

.success-btn {
    background: var(--success);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.active.success-btn,
.success-btn:hover,
.success-btn:focus {
    background: var(--success-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.deactive.success-btn {
    background: var(--success-light);
    color: var(--dark-3);
    pointer-events: none;
}

.success-btn-outline {
    border-color: var(--success);
    color: var(--success);
}
.active.success-btn-outline,
.success-btn-outline:hover,
.success-btn-outline:focus {
    background: var(--success-dark);
    color: var(--white);
}
.deactive.success-btn-outline {
    color: var(--dark-3);
    border-color: var(--success-light);
    pointer-events: none;
}

.success-btn-link {
    color: var(--success);
}
.active.success-btn-link,
.success-btn-link:hover,
.success-btn-link:focus {
    color: var(--success-dark);
}
.deactive.success-btn-link {
    color: var(--dark-3);
    pointer-events: none;
}

.info-btn {
    background: var(--info);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.active.info-btn,
.info-btn:hover,
.info-btn:focus {
    background: var(--info-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.deactive.info-btn {
    background: var(--info-light);
    color: var(--dark-3);
    pointer-events: none;
}

.info-btn-outline {
    border-color: var(--info);
    color: var(--info);
}
.active.info-btn-outline,
.info-btn-outline:hover,
.info-btn-outline:focus {
    background: var(--info-dark);
    color: var(--white);
}
.deactive.info-btn-outline {
    color: var(--dark-3);
    border-color: var(--info-light);
    pointer-events: none;
}

.info-btn-link {
    color: var(--info);
}
.active.info-btn-link,
.info-btn-link:hover,
.info-btn-link:focus {
    color: var(--info-dark);
}
.deactive.info-btn-link {
    color: var(--dark-3);
    pointer-events: none;
}

.caution-btn {
    background: var(--caution);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.active.caution-btn,
.caution-btn:hover,
.caution-btn:focus {
    background: var(--caution-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.deactive.caution-btn {
    background: var(--caution-light);
    color: var(--dark-3);
    pointer-events: none;
}

.caution-btn-outline {
    border-color: var(--caution);
    color: var(--caution);
}
.active.caution-btn-outline,
.caution-btn-outline:hover,
.caution-btn-outline:focus {
    background: var(--caution-dark);
    color: var(--white);
}
.deactive.caution-btn-outline {
    color: var(--dark-3);
    border-color: var(--caution-light);
    pointer-events: none;
}

.caution-btn-link {
    color: var(--caution);
}
.active.caution-btn-link,
.caution-btn-link:hover,
.caution-btn-link:focus {
    color: var(--caution-dark);
}
.deactive.caution-btn-link {
    color: var(--dark-3);
    pointer-events: none;
}

.error-btn {
    background: var(--error);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.active.error-btn,
.error-btn:hover,
.error-btn:focus {
    background: var(--error-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.deactive.error-btn {
    background: var(--error-light);
    color: var(--dark-3);
    pointer-events: none;
}

.error-btn-outline {
    border-color: var(--error);
    color: var(--error);
}
.active.error-btn-outline,
.error-btn-outline:hover,
.error-btn-outline:focus {
    background: var(--error-dark);
    color: var(--white);
}
.deactive.error-btn-outline {
    color: var(--dark-3);
    border-color: var(--error-light);
    pointer-events: none;
}

.error-btn-link {
    color: var(--error);
}
.active.error-btn-link,
.error-btn-link:hover,
.error-btn-link:focus {
    color: var(--error-dark);
}
.deactive.error-btn-link {
    color: var(--dark-3);
    pointer-events: none;
}

.info-section {
    padding-top: 120px;
    padding-bottom: 120px;
}
.info-section ul {
    color: var(--primary-dark);
}

.processos-section {
    height: 400px;
    background: antiquewhite;
    background-image: url(../images/bg-04.jpg);
    background-size: cover;
    margin-top: 190px;
    padding-top: 100px;
}

.processos-section img {
    margin-top: -200px;
}

.processos-section .title-info {
    color: var(--primary);
    font-size: 2.8rem;
}

.processos-section .lead-info {
    color: #ffffff;
}

.demonstracao-section {
    height: 210px;
    background: antiquewhite;
    background-image: url(../images/bg-03.jpg);
    background-size: cover;
    margin-top: 250px;
    margin-bottom: 200px;
    padding-top: 0;
}

.demonstracao-section img {
    margin-top: -110px;
    margin-bottom: -42px;
}

.demonstracao-section .lead-info {
    color: #ffffff;
    font-size: 1.4rem;
    max-width: 480px;
}

.demonstracao-section a {
  font-size: 1rem;
  border-radius: 50px;
  padding: 5px 20px;
}

.title-info {
    color: var(--primary);
}

.lead-info {
    color: var(--primary-dark);
    font-weight: 400;
}

.footer-section {
    height: 628px;
    background: antiquewhite;
    background-image: url(../images/bg-02.jpg);
    background-size: cover;
    padding-top: 145px;
    padding-bottom: 145px;
}
.footer-section .features-content .features-title {
    font-size: 3rem;
    color: white;
}
.home-section {
    height: 811px;
    background: antiquewhite;
    margin-top: -90px;
    background-image: url(../images/bg-01.jpg);
    background-size: cover;
    padding-top: 220px;
    padding-bottom: 145px;
}
.home-section .features-image img {
    width: auto;
}
.home-section .features-content {
    text-align: left;
}
.home-section .features-content .features-title {
    color: var(--primary);
    font-size: 2.8rem;
}
.home-section .features-content .text {
    color: #ffffff;
}

@media (max-width: 992px) {
    .processos-section {
        height: 350px;
        margin-top: 130px;
        padding-top: 24px;
    }
    .processos-section img {
        margin-top: 0;
    }

    .processos-section .title-info {
        font-size: 2rem;
    }

    .demonstracao-section {
        height: 196px;
    }
    .demonstracao-section img {
        margin-top: -90px;
    }
    .demonstracao-section .lead-info {
        font-size: 1rem;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .processos-section {
        height: 464px;
        margin-top: 130px;
        padding-top: 60px;
        margin-bottom: 160px;
    }
    /* .processos-section img {
        margin-top: 0;
    }
    */

    .processos-section .title-info,
    .processos-section .lead-info {
        text-align: center;
    }
    
    .demonstracao-section img {
      display: none;
  }
    .demonstracao-section {
      padding-top: 40px;
      margin-top: 50px;
      margin-bottom: 20px;
  }

  .btn-contato{
    padding: 14px;
  }
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav-logo {
    width: 200px;
}

@media (max-width: 800px) {
    .nav-logo {
        width: 140px;
    }
}
@media (max-width: 1400px) {
    .home-section {
        height: 726px;
    }
    .home-section .features-content .features-title {
        font-size: 2.4rem;
    }
}
@media (max-width: 1200px) {
    .home-section {
        height: 642px;
    }
    .home-section .features-content .features-title {
        font-size: 2rem;
    }
    .home-section .features-content {
        text-align: center;
    }
}

/*===== FOOTER TWO =====*/
.footer-two {
    background-color: var(--light-2);
}
.footer-two .f-about {
    margin-top: 30px;
}
.footer-two .f-about .text {
    margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 1400px) {
    .footer-two .f-about {
        padding-right: 200px;
    }
}
.footer-two .footer-widget {
    padding-top: 70px;
    padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-two .footer-widget {
        padding-top: 40px;
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .footer-two .footer-widget {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}
.footer-two .footer-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    position: relative;
}
.footer-two .footer-support {
    padding-top: 21px;
}
.footer-two .footer-support span {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    font-weight: 500;
    margin-top: 9px;
    display: block;
}
@media (max-width: 767px) {
    .footer-two .footer-support span {
        display: block;
    }
}
.footer-two .social {
    padding-top: 27px;
}
.footer-two .social li {
    display: inline-block;
    margin-right: 15px;
}
.footer-two .social li:last-child {
    margin-right: 0;
}
.footer-two .social a {
    font-size: 18px;
    color: var(--dark-3);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.footer-two .social a:hover {
    color: var(--primary);
}
.footer-two .footer-link {
    margin-top: 32px;
}
.footer-two .footer-link ul {
    margin-top: 8px;
}
.footer-two .footer-link ul a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 16px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
    .footer-two .footer-link ul a {
        margin-top: 12px;
    }
}
.footer-two .footer-link ul a:hover {
    color: var(--primary);
}
.footer-two .footer-copyright {
    border-top: 1px solid var(--gray-4);
}
.footer-two .copyright {
    padding-bottom: 23px;
    padding-top: 13px;
}
.footer-two .copyright .text {
    color: var(--dark-3);
    margin-top: 10px;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 68px;
    /* height: 80px; */
}
.lds-ellipsis div {
    position: absolute;
    top: -12px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
