.modal-atc__title--show-sm {
  display: none;
}
@media screen and (max-width:991px) {
  .show-desktop.modal {
    background-color: #585a5a;
  }
 .modal-atc .note {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

  }
  .modal-atc {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 999999; 
    transform: translateY(-120%);
    transition: all 0.33s ease;
    background-color: var(--c-light-grey);
  }
  .modal-atc__title--hide-sm {
    display: none;
  }
  .modal-atc__title--show-sm {
    display: block;
    padding: 1.6rem 1.6rem;
    color: var(--c-white);
    margin-bottom: 0;
  }
  .modal-atc.show, .show-modal .modal-atc{
    transform: translateY(0%);
  }
  .modal-atc__dialog {
    height: 100vh;
    overflow: auto;
  }
  .modal-atc__back {
    color: #ADADAD;
    font-size: 14px;
    line-height: 15px;
    position: relative;
    padding-left: 1.5rem;
  }
  .modal-atc .modal-atc__body {
    padding: 1.6rem 1.6rem;
    background-color: var(--c-light-grey);
  }
  .modal-atc .sm-color-light {
    color: #ADADAD;
  }
  .modal-atc__header {
    padding: 1.8rem 1.6rem 1rem 2.2rem;

  }

  .modal-atc__back:before {
    content: "";
    left: 0;
    top: 50%;
    z-index: 3;
    background-image: url(../../assets/icons/arrow-left.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    width: 0.6rem;
    height: 0.9rem;
    transform: translateY(-50%);
    position: absolute;

  }
}

@media screen and (min-width:992px) {
  .modal-atc__back {
    display: none;
  }
}