/* DIALOG FILTER */
#open-form-dialog,
.form-dialog-header {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-dialog {
    /*display: none;*/
    position: fixed;
    display: block;
    background: #FFFFFF;;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    padding: 0.938rem 1.5rem;
    z-index: -2;
    visibility: hidden;
    overflow-y: scroll;
    transition: all .3s ease;
  }
  .form-dialog.is-open {
    left: 0;
    z-index: 10;
    visibility: visible;
  }

  #open-form-dialog {
    display: block !important;
    text-decoration: underline;
    font-weight: 400;
    font-size: .9rem;
    color: #000000;
    cursor: pointer;
  }

  .form-dialog-header {
    display: flex !important;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  .form-dialog-header strong {
    font-size: 1.375rem;
    font-weight: 700;
  }

  #close-form-dialog {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../assets/close.png") no-repeat;
    background-size: 100%;
    cursor: pointer;
  }

  .hidden-y {
    overflow-y: hidden;
  }
}
