/*

*/
@font-face {
	font-family: Raleway; src: url('font/webfonts/raleway_thin-webfont.ttf');
} 

h1,h3,h4 {
	font-family: Raleway;
}

html, body
{
    height: 100%;
}


/*
	main page
*/
.background_main{
  background: #ECECEC;
}


.circle{
	width:250px;
	height:250px;
	border-radius:125px;
	font-size:40px;
	color:white;
	line-height:250px;
	text-align:center;
	background:#00B16A;
	margin:10px;
 	box-shadow: 6px 6px 10px grey;
	font-family: Raleway;
}

.circle:hover{text-decoration:none;background:#3FC380}

.header {
   	width: 100%;
	height:80px;
	background-color:#00B16A;
	position: fixed;
	top: 0;
	margin: auto;
	text-align:center;
	overflow: hidden;
	box-shadow: 1px 1px 5px grey;
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto; }

.placeHolder{
	height:80px;
}

  .menu{
    margin: auto;
    width: 80%;
    height:50%;
    display: table;
    }
    
   .menuItem{
    	float:left;
        width: 25%;
        height:100%;
        margin-top:10px;
        display: table-cell;
        text-align:center;
       	vertical-align: center;
    }


.main_container{
	margin-top:100px;
	height:80%;
	width:100%;
	margin-left: auto;
    	margin-right: auto;
}

.content {
    height: 100%;
    width:90%;
    margin: 0 auto;
    padding:20px;
    background:white;
}
/*
a,a:link,a:visited
			{
				 font-family: Century Schoolbook L;
				 color: white;
				 text-decoration: none;
				 font-weight: bold;
				 font-size: 22px;
			 }
			a:hover{
			 font-family: Century Schoolbook L;
			 color: white;
			 text-decoration: none;
			 font-weight: bold;
			 font-size: 24px;
			}

#menuButton{
	background:black;
 	font-size: 22px;
}
*/
/*

 	New tour page

*/

.new_tour_container {
    height: 100%;
    width:80%;
    margin: 0 auto;
}

label {
	font-family: Raleway;
	color: black; 
}

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.ui-datepicker-header {
background:#00B16A;
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
  text-shadow: 1px -1px 0px #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #111;
}

.ui-datepicker-prev, .ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url('imgs/arrow.png');
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden;
}

.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}


.ui-datepicker th {
  text-transform: uppercase;
  font-size: 10pt;
  padding: 8px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0);
}



.ui-datepicker {
  background: #00B16A;
}


.ui-datepicker tbody td {
  padding: 0;
  border-right: 1px solid #bbb;
}

.ui-datepicker a {
color:black;
  text-decoration: none;
}

.ui-datepicker table {
  width: 100%;
}



/*
	tour editor page
*/

button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#tableTourEditor{
	padding:20px;
	width:100%;
	background-color: white;

}

/*
	map page
*/
#fullscreenMap{
	height:100%;
	position:relative;
	overflow:hidden;
}


/*
	map and video page
*/
.container{
    width: 100%;
    height:100%;
    background: grey;
    display: table
}

#video{
    width: 100%;
    height:50%;
    margin : auto;
   
}

#map{
    height:50%;
    width: 100%;
    margin : auto;
}

.clear{
    clear: both;
}






/* 


	The switch - the box around the slider


 */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




