/*$Id: modal.css 327 2023-01-21 19:37:43Z Szablac $*/
/* The Modal (background) */
.fcmodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Header */
.fcmodal-header {
  padding: 2px 16px;
  background-color: #1e2b37;
  color: white;
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

/* Modal Body */
.fcmodal-body {
  overflow: auto; /* Enable scroll if needed */
  padding: 2px 16px;
 }

/* Modal Footer */
.fcmodal-footer {
  padding: 16px;
  background-color: #1e2b37;
  color: white;  
  border-bottom-left-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
	display:flex;
}
.fcmodal-footer-button {
/*	flex: 1;*/
}
.fcmodal-footer-button:first-child {
	margin-right: 20px;
}

/* Modal Content */
.fcmodal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 10% from the top and centered */
  padding: 0px;
  border: 1px solid #888;
  border-radius: 0.25em;
  width: 80%; /* Could be more or less, depending on screen size */
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@media only screen and (min-width: 515px) {
  .fcmodal-content {
    width: 550px;
  }
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.fcclose {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 15px;
}

.fcclose:hover,
.fcclose:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.tip-wrap {
	max-width: 200px;
	padding: 3px 8px;
	/*color: #fff;*/
	text-align: center;
	text-decoration: none;
	background-color: #ffc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #D4D5AA;
	z-index: 100;
}

.tip-text {
	text-align: left;
	margin: 0;
	font-size: 100%;
}