@import '../../assets/styles/colors';
@import '../../assets/styles/rsfonts';
.ff-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: $modal_overlay_background;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ff-modal-content {
  background: $white;
  position: relative;
  max-width: 600px;
  width: 100%;
  border-radius: 5px;

  .ff-modal-close-icon {
    cursor: pointer;
  }
  .ff-modal-header {
    display: flex;
    justify-content: space-between;
    color: $white;
    align-items: center;
    background-color: $primary;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    .ff-modal-header-title {
      @extend .fontPoppinsRegularLg;
    }
  }
}
