/* CSS Document */
#contentContainer{
    font-family: 'Open Sans', sans-serif;
}
#contentLeftColumn,
#contentFullWidth{
    font-size: 1.2em;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    color: #333333;
}

h1#pageTitle{
    font-size: 26px !important;
    font-weight: bold !important;
    color: #175896;
    margin-bottom: 30px;
}

.event-date{
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    display: block;
    margin-bottom: 30px;
}

.event-date a i{
    color: #348dc0;
}

.action-button{
    width: 251px;
    height: 45px;
    border-radius: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #2d8fbc;
    color: #2d8fbc;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 300ms ease-in-out;
}

.action-button:hover{
    background: #1c5880;
    border-color: #1c5880;
    color: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.action-button.green{
    background: #3cb54c;
    border-color: #3cb54c;
    color: white;
}
.action-button.green:hover{
    background: #2b8036;
    border-color: #2b8036;
}

.action-button.red{
    background: #dd141c;
    border-color: #dd141c;
    color: white;
}

.action-button.red .closed-registration:after{
    font-family: "Font Awesome 5 Pro";
    content: "\f30d";
    margin-left: 8px;
}

.action-button.red .waiting-list{
    font-weight: normal;
    text-transform: none;
}

i.gray{
    color: #72828b;
}

hr{
    background: #c2c2c2;
    border: none;
    height: 1px;
    margin:30px 0;
}

.time-location span{
    margin-right: 40px;
}
.time-location span:last-child{
    margin-right: 0;
}

#action-message{
	width: 300px;
	height: 150px;
	display: flex;
	position: fixed;
	top: 50%;
	left: 50%;
	background: #222;
	color: white;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.24rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	margin-top: -75px;
	margin-left: -150px;
	display: none;
}

.action-message-close{
	position: absolute;
	color: white;
	text-decoration: none;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
