.float{
	position:fixed;
	/* width:60px; */
	/* height:60px; */
	bottom:2rem;
	right:2rem;
	background-color:#fff; 
	/* color:#FFF; */
	/* border-radius:50px; */
	text-align:center;
    font-size:1.5rem;
	border-radius:50%;
 
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:0px;
}
 /* The Modal (background) */
 .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	flex-direction: column;
	width: 75%;
	max-width: 100%;
	max-height: 90vh;
	background-color: inherit;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	z-index: 20;
	padding: 2rem;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
  }
  .closed {
	display: none;
  }
  #modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	
	background: rgba(0, 0, 0, 0.6);
  }
  /* Modal Content/Box */
  .modal-content {
	background-color:inherit;
	margin:  auto; /* 15% from the top and centered */
	overflow: auto; /* Enable scroll if needed */
	max-height:70vh;
	 /* Could be more or less, depending on screen size */
  }
  .modal-header {
	display: flex;
	font-weight: bold!important;
	
  }
  .modal-header-text {
	flex-grow: 1;
  }
  /* The Close Button */
  .close {
	color: #aaa;
	margin: 0;
	padding: 0;
	font-size: 1rem;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  } 
  .badge {
    display: inline-block;
    min-width: 1em; /* em unit */
    padding: .3em; /* em unit */
    border-radius: 50% ;
    font-size: 20px;
    text-align: center;
    background: #1779ba;
    color: #fefefe;
}
@media screen and (max-width: 480px) {

	.float{
		bottom:1rem;
		right:1rem;		
	}
	.modal{width: 90%;}
}