/**
* Switch
*/
input[type="checkbox"].radio.switch {
	height: 0;
	width: 0;
	visibility: hidden;
}

label.switch {
	cursor: pointer;
	width: 35px;
	height: 16px;
	display: inline-block;
	background: #aa0000;
	border-radius: 100px;
	position: relative;
}

label.switch:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

input.radio.switch:checked + label.switch {
	background: green;
}

input.radio.switch:checked + label.switch:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

label.switch:active:after {
	width: 20px;
}

div.center {
	width: 100%;
	float: none;
	text-align: center;
}

.worldgo-main h2 {
	margin-top: 1.5em;
	margin-bottom: 0;
	text-decoration: none;
	border: none;
	width: 99%;
}

.worldgo-main .main_block {
	display: block;
	width: 240px;
	min-height: 59px;
	margin-bottom: 5px;
	margin-right: 5px;
	border-radius: 5px;
	position: relative;
	padding: 10px 10px 8px;
	float: left;
	color: #000000;
	background: linear-gradient(to bottom, #684e31 0%,#e4d47c 100%);
}

.worldgo-main .main_block h2,
.worldgo-main .main_block h2 a
 {
	display: block;
	margin-top: 0;
	color: #ffffff;
}

.worldgo-main .main_block h2 a:hover
 {
	color: #ffffff !important;
}

#search_film ul.dropdown-contents {
	max-height: 400px;
}
