.modal,
.modal-box {
  z-index: 1900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.8);
  overflow: auto;
  overflow-y:auto;
}

.modal-box {
  position: relative;
  width: 95%;
  margin: 50px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}


.header-jobs {
	padding: 10px 10px;
	background: #0b2b4c;
	color: #ffffff;
}

.modal-body {
	background: #ffffff;
	padding: 20px 20px;
	min-height: 400px;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
  z-index:2000;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

/* Aditional Styles */

p {
  line-height: 1.4em;
}

body {
  background: #B0BEC5;
}

.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
  z-index:2000;
}

.jobs-title {
font-size: 36px;
font-weight: bold;
}