/**
 * Basic CSS Media Query Template
 * TODO: I should probably use Sass...
 * Author: Michael Vieth
 * ------------------------------------------
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet 
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */
@media all and (max-width: 480px) {
  .frameOne,
  .frameTwo,
  .frameThree,
  .frameFour {
    min-width: 19rem;
  }
  .row {
    margin: 0;
    padding: 0;
  }
  .zalo-chat-widget {
    display: none;
  }
  .frameOne {
    margin: 0;
    padding: 0;
  }
  .frameTwo,
  .frameThree,
  .frameFour {
    padding: 0;
    margin: -1vh 0 0 0;
  }
  a.xem-ngay {
    position: absolute;
    bottom: 13%;
    right: 4%;
    display: inline-block;
    padding: 5px 15px;
    margin: 10px 0;
    color: #00a0be;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    border-radius: 40px;
    background: #ffffff;
    font-weight: bold;
    border: 3px solid #00a0be;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  a.xem-ngay:hover {
    color: #ffffff;
    background: #00a0be;
    border: 3px solid #ffffff;
  }
}

@media all and (max-width: 414px) {
}

@media all and (max-width: 394px) {
  a.xem-ngay {
    bottom: 13%;
    right: 2%;
  }
}

@media all and (max-width: 380px) {
}

@media all and (max-width: 375px) {
}

@media all and (max-width: 360px) {
  a.xem-ngay {
    bottom: 13%;
    right: 2%;
  }
}

@media all and (max-width: 320px) {
  a.xem-ngay {
    bottom: 11%;
    right: 2%;
  }
}
