* {
	box-sizing: border-box;
}
body {
	margin: 0px;
	/* font-family: 'TT Norms Pro', sans-serif; */
}

  
  .modal__main {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 150px;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(77, 77, 77, .7);
	transition: all .4s;
	z-index: 20;
  }
  
  .modal__main:target {
	visibility: visible;
	opacity: 1;
  }
  
  .modal-content {
	border-radius: 4px;
	position: relative;
	width: 500px;
	max-width: 90%;
	background: #fff;
	padding: 0.5em 2em 2em 2em;
  }
  
  .modal__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	
	a {
	  color: #585858;
	}
	i {
	  color: #d02d2c;
	}
  }
  .modal__close {
	position: absolute;
	top: 1em;
	right: 2em;
	color: #5C5A5A;
	text-decoration: none;
	padding: 2px 8px;
	background: #ffffff;
	border: 1px solid #000;
	border-radius: 10%;
  }

  .modal__image {
	border-radius: 10px; width: 100%;
  }

  .modal__footer__divider {
	width: 90%;
	color: #DBDBDB;
	border: 1px solid #DBDBDB;
  }

  .modal__subtext {
	text-align: center;
	margin: 10px 0px;
  }

  .modal__btn {
	width: 65%;
	font-size: large;
	font-weight: bold;
	display: inline-block;
	text-decoration: none;
	padding: 10px 25px;
	background-color: #393C5F;
	border-radius: 5px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
  }

  .modal__btn__alt {
	width: 65%;
	font-size: large;
	font-weight: bold;
	display: inline-block;
	text-decoration: none;
	padding: 10px 25px;
	background-color: #D37261;
	border-radius: 5px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
  }

  .google__btn {
	width: 40%;
  }

  .modal__support {
	color: #3B6F91 !important;
  }