/* The Modal (background) */
.contato-modal .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.contato-modal .modal.active {
	display: block;
}

/* Modal Content */
.contato-modal .modal-content {
  background: rgba(51, 51, 204, 0.9);
  padding: 20px;
  width: 50%;
  top: 0%;
  min-height: calc(100vh - 100px);
  position: absolute;
  right: 0%;
  padding: 4rem;
  margin-right: -900px;
}

/* The Close Button */
.contato-modal .close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 1;
  cursor: pointer;
}

.contato-modal .redes-sociais svg {
  background-color: #33D49E;
  color: #3333CC;
  border-radius: 50%;
}

.contato-modal .redes-sociais a {
  background-color: #33D49E;
  padding: 0.3rem;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
}

.contato-modal .redes-sociais li {
  list-style: none;
  display: flex;
}

@media only screen and (max-width: 640px) {
	.contato-modal .modal-content {
		width: 100%;
    	height: 100%;
		padding-left: 2rem;
    	padding-right: 2rem;
	}
	
	.contato-modal .close {
		position: absolute;
		top: 9px;
		right: 9px;
	}
}