.cinemaModal {
  display: none;
  position: fixed;
  z-index: 10000000;
  left: 0;
  top: 0;
  padding-top: 100px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.6);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}
.cinemaModal-content {
  margin: auto;
  width: 70%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}
.cinemaModal-close {
  color: white;
  float: right;
  font-weight: bold;
}
.cinemaModal-close:hover,
.cinemaModal-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.cinemaModal-header {
  border-radius: 10px 10px 0 0;  
  padding: 10px 16px;
  background-image: linear-gradient(to right, #262626, #262626);
  color: #ccc;
  text-align: left;
}
.cinemaModal-body {
  background-image: linear-gradient(to right, #262626, #262626);
  color: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  text-align: left;
}
.cinemaModal-footer {
  border-radius: 0 0 10px 10px;
  padding: 10px 16px;
  background-image: linear-gradient(to right, #262626, #262626);
  color: #ccc;
  text-align: left;
}
.cinemaModal-submit {
  padding: 9px 10px;
  float: right;
  border-radius: 3px 0px 10px 3px;
}
.cinemaModal-submit:hover {
  cursor: pointer;
}
.cinemaModal-rand {
  width: 30px;
  background-color: #ccc !important;
  color: #000 !important;
  border: 0 !important;
  padding: 0 4px;
  border-radius: 3px;
}
.cinemaModal-message {
  background-image: linear-gradient(to right, #262626, #262626);
  color: #fff;
  margin: 0;
  padding: 10px 16px;
  height: 100px;
  width: 100%;
  border: none !important;
  font-size: 14px;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}
@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}
@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}