.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
	margin-top: 41px;
}

.modal-notification {
	font-size: 20px;
	color: #a4b300;
}

.modal-container {
    padding: 16px;
}

.modal-title {
	color: #a4b300;
	font-size: 20px;
	font-weight: bold;
	width: 100%;
	border-bottom: 1px solid #a4b300;
	margin-bottom: 10px;
}

.modal-content {
    margin: 5px auto;
	max-width: 700px;
	border: 3px solid #5a5a5a;
}

.close {
    position: absolute;
    right: 50px;
    top: 50;
    font-size: 35px;
    font-weight: bold;
	cursor: pointer;
	color: #5a5a5a;
}

.btn-login {
	margin-top: 6px;
	width: 100%;
    padding: 10px 18px;
    border: 2px solid #5a5a5a;
	cursor: pointer;
	color: #5a5a5a;
	font-weight: bold;
	background-color: #a4b300;
}
.btn-login:HOVER {
	color: #fff;
	border-color: #fff;
}

.btn-cancel {
    width: auto;
    padding: 10px 18px;
    background-color: #5a5a5a;
	border: 1px solid #a4b300;
	color: #fff;
	cursor: pointer;
	margin: 5px;
}
.btn-cancel:hover {
	background-color: #a4b300;
	border-color: #fff;
}

.btn-plain {
	text-align: center;
	background-color: transparent;
	color: #5a5a5a;
	border: none;
	cursor: pointer;
}
.btn-plain:HOVER {
	color: #a4b300;
}

.participants {
	padding: 5px;
	border: 2px solid #5a5a5a;
	width: 620px;
	overflow: auto;
}

.participant-select {
	display: none;
}

.participant-select + label {
	padding: 0px;
	height: 60px;
	width: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background-color: #5a5a5a;
	display: inline-block;
	cursor: pointer;
}
.participant-select:checked + label {
	padding: 0px;
	height: 60px;
	width: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background-color: #a4b300;
	display: inline-block;
	cursor: pointer;
}

.participant-select-image {
	height: 51px;
	width: 51px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 4px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	border-width: 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}