::placeholder {
    color: blue;
    font-size: 1.5em;
}

.sk-chase {
    margin: 100px auto 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
    display: none;
  }
  
  .sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; 
    animation: sk-chase-dot 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #3b5999;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
  .sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
  
  @keyframes sk-chase {
    100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4); 
    } 100%, 0% {
      transform: scale(1.0); 
    } 
  }

.sk-sl-form {
    width: 98%;
    margin: 0 auto;
    padding: 30px 15px;
}

.sk-sl-form h3 {
    font-weight: normal;
    font-size: 35px;
    line-height: 1.1;
    margin: 0 0 15px;
    color: #1E306E;
    text-align: center;
}

.sk-sl-form p {
    text-align: center;
}

.sk-sl-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.sk-sl-form input[type="text"]::placeholder {
    color: #999;
    font-size: 16px;
}

.sk-sl-form input[type="text"] {
    width: 640px;
    max-width: 98%;
    padding: 16px 15px;
    text-align: center;
    color: #555;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 17px;
}

.sk-sl-form input[type="submit"] {
    display: inline-block;
    margin: 20px auto;
    background: #26283f;
    border: none;
    color: #fff;
    padding: 20px 40px;
    font-size: 25px;
    line-height: normal;
    cursor: pointer;
    text-decoration: none;
}

.sk-sl-wrapper {
    display: flex;
    background: #f0f0f0;
    padding: 30px;
}

.sk-sl-col1 {
    width: 30%;
    background-color: #fff;
    padding: 15px;
}

.sk-sl-col2 {
    width: 70%;
    background-color: #fff;
    padding: 15px;
}

.sk-sl-addresses {
    height: 468px;
    overflow-x: auto;
}

.sk-sl-location {
    display: flex;
    padding: 10px 10px;
    border: 2px solid transparent;
    border-bottom: 1px solid #888;
    cursor: pointer;
}

.sk-sl-location.active {
    border: 2px solid #1E306E;
}

.sk-sl-location:hover {
    background-color: #f0f0f0;
}

.sk-sl-location:last-child {
    border-bottom: none;
}

.sk-sl-location__meta {
    width: 80%;
}

.sk-sl-location__meta h4 {
    color: #1E306E;
    margin: 0 0 5px;
}

.sk-sl-location__meta p {
    font-size: 15px;
}

.sk-sl-location__action {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.sk-sl-location__action .call, .sk-sl-location__action .whatsapp {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.sk-sl-location__action .call {
    color: #fff;
    background-color: #3b5999;
}

.sk-sl-location__action .whatsapp {
    color: #fff;
    background-color: #25D366;
}

.sk-sl-form-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width:768px) {
    .sk-sl-wrapper {
        flex-direction: column-reverse;
        padding: 5px;
    }

    .sk-sl-col1, .sk-sl-col2 {
        width: 100%;
        padding: 5px;
    }

}


