@CHARSET "UTF-8";

#users-definition{
	color: blue;
    margin-top: 15px;
	text-decoration: underline;
  font-weight: 500;
    cursor: pointer;

}
span.users-modal{
	color: #6464ff;
	border-bottom: 1px dotted #6464ff;
	cursor: pointer;
	/* text-decoration: underline wavy; */
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    margin: 20px;
}
.modal-header h2{
	color: #000;
}
@media (min-width: 576px){
.modal-dialog {
    max-width: unset;
}

}

/* Modal Body */
.modal-body {
	padding: 2px 16px;
    margin: 20px;

}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    margin: 20px;
 }

 #modal-container{
    display:none;
    font-size: .8em;
	position: fixed;
    top: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.5);
    z-index:100000;
 }

#modal-container p{
	margin-bottom: 10px;
  color: unset;
}
#modal-container strong{
  font-weight: 600;
}
#modal-container  ul{
	line-height:1.2;
	margin: 1.5em 3em;
}
#modal-container  ul li{
    margin-bottom: 5px;
}
/* Modal Content */
.modal-content {
    background: rgba(255,255,255,1);
    padding: 10px 0 30px;
    margin: 40px auto;
    border:0px;
    width: 80%;
     box-shadow: 0 0 8px 5px rgba(70,70,70,0.4);
     border-radius: 5px;

    max-width:700px;

    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;

}
.close{
	float: right;
    size: 1.2em;
    background: #555;
    padding: 5px 7px 6px 8px;
    margin-right: -25px;
    margin-top: -20px;
    border-radius: 50%;
    border: 0px;
}

/* 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;}
}