.btn-fv-modal {
	box-sizing: border-box;
	font-family: 'Playfair Display', serif;
	font-size: 1.125em;
	width: auto;
	background-position: 94% 18px;
}

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

.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,.8);
  overflow: auto;
}

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

.modal-body {
	position: relative;
	background: #ffffff;
  padding: 30px 40px;
  color: #002d40;
}

.fv-modal-form .ctct-form-wrapper {
	margin-left: -15px;
	margin-right: -15px;
}

.fv-modal-form .ctct-form-description * {
	font-family: 'Playfair Display', serif;
	padding: 0 15px;
}

.fv-modal-form .ctct-form-description .modal-image {
	padding: 0;
    float: left;
    margin-right: 30px;
    height: 200px;
    width: auto;
    margin-top: -3px;
}

.fv-modal-form .ctct-form-field {
	float: left;
	width: 50%;
	padding-right: 15px;
	padding-left: 15px;
}

.fv-modal-form .ctct-form-field-submit {
	width: 100%;
	float; none;
}

.fv-modal-form .ctct-form * {
	box-sizing: border-box; 
}

.fv-modal-form .ctct-form-button,
.fv-modal-form .ctct-submit {
	box-sizing: border-box;
	display: block;
	height: 46px;
    line-height: 46px;
	background: #ce4851 url(../images/icon-arrow-white-right.svg) no-repeat 96% 20px;
    background-size: 16px 10px;
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.125em;
    width: 300px;
    margin: 20px auto 0;
    padding: 0 75px 0 25px;
}

.fv-modal-form .ctct-form-wrapper .error {
	border-color: #FF4136;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* 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;
  }
}

@media screen and (max-width: 640px) {
	.fv-modal-form .ctct-form-field {
		float: none;
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.modal-body {
	  padding: 15px 20px;
	}


	.fv-modal-form .ctct-form-description .modal-image {
		float: none;
		display: block;
		width: 100%;
		height: auto;
	}
	
	.fv-modal-form .ctct-form-button,
	.fv-modal-form .ctct-submit {
	    width: 100%;
	}
}
