.header-fixed {
	background-color: #f26f26;
    box-shadow: 0 1px 1px #ccc;
    padding: 20px 40px;
    min-height: 80px;
    color: #ffffff;
    box-sizing: border-box;
    top: -100px;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

	-webkit-transition:top 0.3s;
	transition:top 0.3s;
}

.header-fixed .header-limiter {
	max-width: 1200px;
	text-align: center;
	margin: 0 auto;
}

/*	The header placeholder. It is displayed when the header is fixed to the top of the
	browser window, in order to prevent the content of the page from jumping up. */

.header-fixed-placeholder{
	height: 80px;
	display: none;
}

/* Logo */

.header-fixed .header-limiter h1 {
	float: left;
	font: normal 28px Cookie, Arial, Helvetica, sans-serif;
	line-height: 40px;
	margin: 0;
}

.header-fixed .header-limiter h1 span {
	color: #5383d3;
}


/* The navigation links */

.header-fixed .header-limiter a {
	color: #ffffff;
	text-decoration: none;
}

.header-fixed .header-limiter nav {
	/* font:21px Arial, Helvetica, sans-serif; */
	line-height: 40px;
    float: right;
    font-weight: bold;
}

.header-fixed .header-limiter nav a{
	display: inline-block;
	padding: 0 5px;
	text-decoration:none;
	color: #ffffff;
	opacity: 0.9;
}

.header-fixed .header-limiter nav a:hover{
	opacity: 1;
}

.header-fixed .header-limiter nav a.selected {
	color: #608bd2;
	pointer-events: none;
	opacity: 1;
}

.company-logo{
    background-image: url(/assets/logo.png);
    background-position: center;
    background-repeat: no-repeat;
}

/* Fixed version of the header */

.page-content{
    margin-top: 100px;
}

#main{
    margin-top: 25px;
}

body.fixed .header-fixed {
	padding: 10px 40px;
	height: 50px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

body.fixed .header-fixed-placeholder {
	display: block;
}

body.fixed .header-fixed .header-limiter h1 {
	font-size: 24px;
	line-height: 30px;
}

body.fixed .header-fixed .header-limiter nav {
	line-height: 28px;
	font-size: 13px;
}


/* Making the header responsive */

@media all and (max-width: 600px) {

	.header-fixed {
		padding: 20px 0;
	}

	.header-fixed .header-limiter h1 {
		float: none;
		margin: -8px 0 10px;
		text-align: center;
		font-size: 24px;
		line-height: 1;
	}

	.header-fixed .header-limiter nav {
		line-height: 1;
		float:none;
	}

	.header-fixed .header-limiter nav a {
		font-size: 13px;
	}

	body.fixed .header-fixed {
		display: none;
    }

    .page-content{
        margin-top: 117px;
    }

}


/* CUSTOM CSS FOR THE SELECTORS/IMAGE etc... */

html{
    font-family: "Verdana"
}

.title{
    text-align: center;
    font-weight: bold;
}

label{
    font-size: 14px;
    transition: all .2s ease-in-out;
}

.option{
    cursor: pointer !important;
}

.focused{
    color:#f2b73e;
    font-size: 11px !important;
    text-shadow: 1px 1px #e9e9e9;
}

#yc_person_selector,#yc_eventtype_selector,#yc_timezone_selector{
    padding: 12px;
}

select{
    padding: 5px;
    margin: 0;
    width: 200px;
    text-align: center;
    border: 1px solid #d2d2d2;
    border-radius: 15px;
    box-shadow: 2px 2px 3px 1px #e4e4e4;
    cursor: pointer;
}

.selectize-input{
    width: 300px !important;
    margin-top: 5px !important;
}

.focus-selectize{
	border: 3px solid #f26f26 !important;
}

@media(max-width: 1030px){
    .yc_settings{
        display: block !important;
        margin-left: 0 !important;
    }

    #yc_person_thumbnail{
        margin-left: auto;
        margin-right: auto;
    }

    #yc_person_selector,#yc_eventtype_selector,#yc_timezone_selector{
        width: 97% !important;
    }

    .selectize-input{
        width: 93% !important;
    }

}