.accessibility-box__item--voice__player { display: none; padding-bottom: 10px; }
.voice__control { margin-bottom: 10px; display: block; margin-left: auto; margin-right: auto; }
.voice__control:last-child { margin-bottom: 0; }
.voice__control--pause, .voice__control--resume { display: none; }

/*
* Newsletter modal
*/
body.modal-open {
	height: 100vh;
  	overflow-y: hidden;
}

.modal {
    position: absolute;
    z-index: 10000; 
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
  opacity: 0.9;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
	position: absolute;
    z-index: 9999;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1010px;
	background-color: #fff;
	text-align: center;
	padding: 35px;
	transform: translateY(-50%);
}

@media ( min-width: 992px ) {
	.modal-wrapper {
		padding: 80px 180px;
	}
}

.modal-transition {
  transition: all 0.3s 0.12s;
  opacity: 0;
}

.modal.is-visible .modal-transition {
  opacity: 1;
}

.modal h1 {
	color: #000000;
	font-family: "Museo Sans 100";
	font-size: 40px;
	margin-bottom: 30px;
}
.modal p {
	color: #202020;
	opacity: 0.9;
	font-family: "Museo Sans 300";
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 30px;
}
.modal button {
	border-radius: 28px;
	background-color: #0e4fec;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.21);
	color: #fff;
	font-size: 14px;
	letter-spacing: 2.36px;
	text-transform: uppercase;
	font-family: "Museo Sans 700";
	padding: 15px;
	width: 105px;
	text-align: left;
	position: relative;
}
.modal button:after {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	content: '';
	display: block;
	background: url("modal_close.svg") no-repeat;
	width: 13px;
	height: 12px;
}