/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Preview-Modal +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
$theme-color: #0f9d58;

.custom-styles-overlay {
  background-color: rgba(yellow, .77);
}

.custom-styles-overlay,
.custom-styles-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-styles-modal-container {
  background: #222;
  color: white;
  margin-left: -25px;
  margin-top: 10px;
  width: 300px;
}

/*Scrolling*/
/*.ember-modal-dialog {
  width: 100vw;
  height: 100vh;
}*/
body.centered-modal-showing {
  overflow: hidden;
  z-index: 70;
}
.centered-scrolling-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 70;
}

.centered-scrolling-overlay {
  position: relative;
  height: auto;
  min-height: 100vh;
  padding: 0px 0px 0px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 70;
}

/* basic modal style (an example, this is not necessary for the centering)*/
.centered-scrolling-container {
  position: relative;
  background-color: white;
  min-width: 30em;
  min-height: 20em;
  padding: 0px 0px 0px 0px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
  box-shadow: 0px 4px 25px 4px rgba(0,0,0,0.30);
  z-index: 70;
}
