/* file requested: /App_themes/default/T4E/css/my-own-switch.css */
/* file resolved: /App_themes/default/T4E/css/my-own-switch.css */
.switch-container {

	margin: 10px auto;
	width: 95%;
	}

.switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 100px;
	height: 30px;
	margin:0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	border-radius: 9px;
	padding-top: 0;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	margin-top: 20px;
  box-sizing:content-box;
}

.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
  box-sizing:content-box;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 18px;
	text-transform: uppercase;
	background: rgba(243,240,242,1);
	background: -moz-linear-gradient(top, rgba(243,240,242,1) 0%, rgba(249,249,249,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(243,240,242,1)), color-stop(100%, rgba(249,249,249,1)));
	background: -webkit-linear-gradient(top, rgba(243,240,242,1) 0%, rgba(249,249,249,1) 100%);
	background: -o-linear-gradient(top, rgba(243,240,242,1) 0%, rgba(249,249,249,1) 100%);
	background: -ms-linear-gradient(top, rgba(243,240,242,1) 0%, rgba(249,249,249,1) 100%);
	background: linear-gradient(to bottom, rgba(243,240,242,1) 0%, rgba(249,249,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f0f2', endColorstr='#f9f9f9', GradientType=0 );
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	 box-sizing:content-box;
}

.switch-label[data-on], .switch-label[data-off] {
	font-size: 18px;
}

label.select-length-stay, label.select-country-origin,  label.select-country-destination  {
	width: 98%;
}

select#length-of-stay, select#country-origin, select#country-destination  {
	width: 100%;
}

.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
 	 box-sizing:content-box;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #aaaaaa;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #FFFFFF;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: rgba(84,185,73,1);
	background: -moz-linear-gradient(top, rgba(84,185,73,1) 0%, rgba(98,214,83,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(84,185,73,1)), color-stop(100%, rgba(98,214,83,1)));
	background: -webkit-linear-gradient(top, rgba(84,185,73,1) 0%, rgba(98,214,83,1) 100%);
	background: -o-linear-gradient(top, rgba(84,185,73,1) 0%, rgba(98,214,83,1) 100%);
	background: -ms-linear-gradient(top, rgba(84,185,73,1) 0%, rgba(98,214,83,1) 100%);
	background: linear-gradient(to bottom, rgba(84,185,73,1) 0%, rgba(98,214,83,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54b949', endColorstr='#62d653', GradientType=0 );
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 25px;
	height: 25px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #fff);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #fff);
	border-radius: 100%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
	margin-left: 74px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}


.switch-container label.label-switch {

	 padding-top: 0px;
	 font-size: 18px;
}
.switch-container label.control-label {

	padding-top: 0px;
	color:#939594;
    font-size: 18px;
    font-weight: normal;
}
.switch-container div.form-group {

	border-top: solid 1px #a6a6a6;
	padding-top: 25px;
	margin-left: 15px;
}
/* Transition
============================================================ */
.switch-label, .switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}