.sq-simple-dialog {
  position: fixed;
  z-index:$z-index-level-2ndtopest;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;

 
  &__overlay {
    position: absolute;
    z-index: $z-index-level-1;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.4);
  }
  &__outer-container {
    z-index: $z-index-level-2;
    background: rgba(0,0,0,.9);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    @media (min-width:$screen-md) {
      max-width: 600px;
      max-height: calc(100% - 100px);
    }
  }
  &__close {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  &__header {
    padding: 15px 15px 0 15px;
    border-bottom: solid 1px rgba(255,255,255, .5);
  }
  &__content {
    margin: 20px;
    overflow: auto;
    height: 100%;
    overflow: auto;
  }
  &__loader {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #232d39;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: $z-index-level-2ndtopest;
  }
}