.modals {
    /*position: absolute;*/
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
   /* height: 100vh;*/
}

.modals.is-visible {
    visibility: visible;
}

.modals-overlay {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modals.is-visible .modals-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modals-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 32em;
  margin-left: -16em;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  border-radius: 10px;
}

.modals-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modals.is-visible .modals-transition {
  transform: translateY(0);
  opacity: 1;
}

.modals-header,
.modals-content {
  padding: 1em;
}

.modals-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.modals-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.modals-close:hover {
  color: #777;
}

.modals-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modals-content > *:first-child{margin-top: 0;}

.modals-content > *:last-child {margin-bottom: 0;}
.modals_title{font-family: Oswald, Arial, Helvetica, sans-serif;
font-size: 22px;
font-weight: bold;
line-height: 34px;
color: #666;
padding: 0px 0px 20px 0px;
text-transform: uppercase;
display: block;}
#add_review .btn {margin-left: 50px;}