@charset "utf-8";
@import "https://fonts.googleapis.com/css?family=Ubuntu:500";
/* normalize */ article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
html {
	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	text-rendering: optimizeLegibility;
  	font-family: sans-serif; /* 1 */
  	-ms-text-size-adjust: 100%; /* 2 */
  	-webkit-text-size-adjust: 100%; /* 2 */
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
button,
input,
select,
textarea {
	font-family: Arial, Helvetica, sans-serif;
}
body {
	font-size: 13px;
	color:#666;
	background-color: #EDEDED;
	margin: 0;
}
label,
button,
input,
optgroup,
select,
textarea,
figure {
  color: inherit;
  font: inherit;
  margin: 0;
}
input::-ms-clear {
    display: none;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
	margin: 0;
	font-weight: 500;
}
label {
	cursor: pointer;
	cursor: hand;
}
h1,
.h1 {
	font-size: 35px;
}
h2,
.h2 {
	font-size: 22px;
}
h3,
.h3 {
	font-size: 15px;
}
h4,
.h4 {
	font-size: 13px;
}

a {
	text-decoration: none;
	color: #88146A;
}
a:hover {
	color:#CCC;
}
p {
  margin: 0 0 1em 0;
  line-height: 1.428571429;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;

}
ul li {
	float:left;
}
button {
	outline: none;
}
.purple-txt {
	color:#88146A !important;
}
.blue-txt {
	color:#009EE0 !important;
}
.yellow-txt {
	color:#FFA81F !important;
}
.orange-txt {
	color:#FF5B00 !important;
}
.green-txt {
	color:#57AE5D !important;
}
.light-red-txt {
	color:#FA5A5A !important;
}
.grey-txt {
	color:#B7B7B7 !important;
}

.purple-bg {
	background-color:#88146A !important;
}
.blue-bg {
	background-color:#009EE0 !important;
}
.yellow-bg {
	background-color:#FFA81F !important;
}
.orange-bg {
	background-color:#FF5B00 !important;
}
.green-bg {
	background-color:#57AE5D !important;
}
.light-red-bg {
	background-color:#FA5A5A !important;
}
.grey-bg {
	background-color:#B7B7B7 !important;
}

select,
input[type='text'] {
	/*width: 100%;*/
	height: 34px;
	padding: 7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border:1px solid #BBB;
	line-height: normal;
}
select {
	line-height: 28px;
}
input[type='radio'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #FFF;
    border: 1px solid #88146A;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    outline: none !important;
    cursor: pointer;
  	cursor: hand;
}
input[type='radio']:hover {
    box-shadow: 0 0 5px 0px #CCC inset;
}
input[type='radio']:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin: 25% auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}
input[type='radio']:checked:before {
    background: #b62f93;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
/* Common */
.base-box {
  background-color: #FFF;
  padding: 30px;
  margin: 20px 0;
  width: 100%;
}
.no-bg {
	background:none !important;
}
.block-row {
  margin-left: -10px;
  margin-right: -10px;
}
.block-row:after,
.block-row:before,
.container:after,
.container:before {
  display: table;
  content: " ";
}
.block-row:after,
body:after {
	clear: both;
}
.hidden {
	visibility: hidden;
	overflow: hidden;
	width: 0 !important;
	height: 0;
	position: absolute;
	opacity: 0 !important;
	filter: alpha(opacity=0) !important;
}
.relative {
	position: relative;
}
.dnone {
	display: none;
}
.inline {
	display: inline-block;
}
.full-width {
	width: 100%;
}
.error-input {
	border: 2px solid red !important;
  	-webkit-box-shadow: 0px 0px 5px 0px rgba(138, 21, 108, 1);
  	-moz-box-shadow: 0px 0px 5px 0px rgba(138, 21, 108, 1);
  	box-shadow: 0px 0px 5px 0px rgba(138, 21, 108, 1);
  	background-color: rgb(255, 179, 179);
}
.circled {
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	border-radius: 50% !important;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.alink {
	color:#88146A;
	text-decoration: underline;
}
.tcell {
	display: table-cell !important;
}

.heading-md {
	color:#FFF;
	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
	font-size: 15px;
	/*font-weight: bold;*/
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
}
/* CSS Home page*/

.rei-header {
  width: 100%;
  z-index: 1;
  min-width: 320px;
}
.rei-header .top-bar {
  background-color: #FFF;
  width: 100%;
  height: 40px;
  min-width: 740px;
}
.rei-header .top-bar-inner, .rei-header .nav-bar-inner {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  position: relative;
}
.rei-header .top-bar-inner .col-left {
	float: left;
	padding: 10px;
}
.rei-header .top-bar-inner .col-right {
	float:right;
	padding: 6px 10px;
	position: relative;
}
.rei-header .top-bar-inner .col-right a {
	color:#676767;
	display: inline-block;
	line-height: 22px;
	margin: 0 7px;
}
.rei-header .top-bar-inner .col-right a.top-link-country .flags {
	margin-right: 5px;
}
.rei-header .top-bar-inner .col-right .lang-wrapper .selectdrop {
	height: 28px;
  	padding: 3px 7px;
}
.rei-header .top-bar-inner .col-right a.shopping-cart {
	margin-right: 0;
	vertical-align: middle;
}
.rei-header .top-bar-inner .col-right a:hover {
  color: #CCC;
}
.rei-header .top-bar-inner .col-right a.link-facebook {
  margin: 0 !important;
}
.rei-header .lang-wrapper, .rei-header .country-wrapper, .rei-header .logged-wrapper, .rei-header .not-logged-wrapper {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.rei-header .top-bar-inner .top-cart-total {
  color: #FF5B00;
  position: relative;
  font-weight: bold;
}
.rei-header .top-bar-inner .col-right a .icon-chevron-sm {
	margin: 6px;
}
.rei-header .top-bar-inner .col-left a {
	color:#676767;
	display: inline-block;
	line-height: 22px;
}
.rei-header .top-bar-inner .col-left a:hover {
	color:#CCC;
}
.rei-header .top-bar-inner .col-left a:nth-of-type(even) {
	margin: 0 15px;
}
.rei-header .nav-bar {
  width: 100%;
  max-width: 980px;
  padding: 18px 20px;
  position: absolute;
  z-index: 7;
}
.rei-header .main-top-bg {
	width: 100%;
  height: 653px;
  background: url(../images/train-bg.jpg) no-repeat center top #000;
}
.rei-header .rei-logo {
	display: inline-block;
	background: url(../images/sprite_REinc.png) no-repeat -30px -29px;
  	width: 206px;
  	height: 25px;
  	cursor: pointer;
  	cursor: hand;
}
.rei-header .rei-logo.ca {
  background-position: -421px -29px;
  width: 208px;
}
.rei-header ul.hnav a {
  text-transform: uppercase;
  font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
  font-size: 15px;
  /*font-weight: bold;*/
  color: #FFF;
}
.rei-header ul.hnav a:hover,
.rei-header ul.hnav a.active {
	color:#FFF;
}
.rei-header .search-input.open {
	max-width: 150px;
	width: 150px;
	opacity: 1;
	filter: alpha(opacity=100);
}
.rei-header .search-input {
	width: 0;
  	float: right;
  	opacity: 0;
  	filter: alpha(opacity=0);
  	outline: 0;
  	max-width: 0;
	-webkit-transition: all 0.2s linear;
   	-moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
}

.page-title {
  background-color: rgba(0,0,0,0.7);
  color: #FFF;
  padding: 20px 30px;
  width: 460px;
  margin-bottom: 80px;
}
.page-title h1 {
	font-size: 22px;
  	margin: 0 0 10px;
  	color: #FFF;
}

.page-title p {
	font-size: 15px;
}

.menu-search-box {
  /*width: 150px;*/
  position: relative;
}
.menu-search-box .btn-search {
  position: absolute;
  top: 6px;
  right: 5px;
  border: 0;
}
.meny-search-box .btn-search.icon-search-gray {
	top: 7px;
  	right: 6px;
}
ul.hnav2 {
	margin-left: 10px;
}
ul.hnav, ul.hnav2 {
	float:right;
}

ul.hnav li {
	padding: 5px 10px;
}

.top-fly-menu {
	position: absolute;
	z-index: 77;
	background-color: #FFF;
	color: #000;
	padding: 15px;
	-webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
	border: 1px solid #EEE;
	right: 15px;
	overflow: hidden;
}

/* End of header styles */
/* Change country dd */
.change-country-dropdown {
	display:none;
	width: 160px;
	margin-left: 20px;
}

/* Mobile styles */
.menu-mobile {
	visibility: hidden;
	width: 0;
}
.menu-mobile .icon-hamburger {
  	background-position: -888px -624px;
}
.hnav2 .icon-sm {
	margin: 0;
}
.rei-header .hnav2 .menu-search,
.rei-header .hnav2 .menu-cart,
.rei-header .hnav2 .menu-mobile {
	padding: 12px 12px;
	border-right:1px solid #2b3235;
	border-left:1px solid #4c575b;
	display:none;
}

/* --- */
/* Sprite styles */
.icon-mi,
.icon-sm,
.icon-md {
	float:left;
  	margin-right: 5px;
  	text-indent: -7777px;
}
.icon-mi {
	width: 10px;
  	height: 10px;
}
.icon-sm {
	width: 20px;
  	height: 20px;
}
.icon-md {
	width: 25px;
  	height: 25px;
}
.icon-right-sarrow {
	background: url(../images/sprite_REinc.png) no-repeat -145px -910px;
}
.icon-user {
	background: url(../images/sprite_REinc.png) no-repeat -399px -338px;
}

.icon-user-md {
	background: url(../images/sprite_REinc.png) no-repeat -743px -624px;
}
.icon-user-gray-md {
	background: url(../images/sprite_REinc.png) no-repeat -803px -678px;
}
.icon-user-sm {
	background: url(../images/sprite_REinc.png) no-repeat -401px -733px;
}
.icon-hamburger {
	background: url(../images/sprite_REinc.png) no-repeat -787px -624px;
}
.icon-chevron-sm {
	background: url(../images/sprite_REinc.png) no-repeat -256px -911px;
}
.icon-orange-cart {
  	background: url(../images/sprite_REinc.png) no-repeat -400px -679px;
}
.icon-white-cart {
  	background: url(../images/sprite_REinc.png) no-repeat -352px -679px;
}
.icon-facebook {
  	background: url(../images/sprite_REinc.png) no-repeat -638px -496px;
}
.icon-search-gray {
  	background: url(../images/sprite_REinc.png) no-repeat -538px -679px;
}
.icon-search-white {
  	background: url(../images/sprite_REinc.png) no-repeat -494px -679px;
}
.icon-plus-circle {
  	background: url(../images/sprite_REinc.png) no-repeat -128px -679px;
}
.icon-plus-circle-b {
	background: url(../images/sprite_REinc.png) no-repeat -30px -679px;
}
.icon-question {
	background: url(../images/sprite_REinc.png) no-repeat -31px -497px;
}
.icon-world {
	background: url(../images/sprite_REinc.png) no-repeat -83px -497px;
}
.icon-balance {
	background: url(../images/sprite_REinc.png) no-repeat -132px -496px;
}
.icon-star {
	background: url(../images/sprite_REinc.png) no-repeat -186px -497px;
}
.icon-hand-ticket {
	background: url(../images/sprite_REinc.png) no-repeat -238px -495px;
}
.icon-search-blue {
	background: url(../images/sprite_REinc.png) no-repeat -442px -677px;
}
.icon-seated-people {
	background: url(../images/sprite_REinc.png) no-repeat -292px -494px;
}
.icon-eiffel {
	background: url(../images/sprite_REinc.png) no-repeat -346px -495px;
}
.icon-gomobile {
	background: url(../images/sprite_REinc.png) no-repeat -395px -496px;
}
.icon-recycle {
	background: url(../images/sprite_REinc.png) no-repeat -438px -495px;
}
.icon-phone {
	background: url(../images/sprite_REinc.png) no-repeat -485px -497px;
}
.icon-camera {
	background: url(../images/sprite_REinc.png) no-repeat -535px -498px;
}

.icon-apple {
	background: url(../images/sprite_REinc.png) no-repeat -630px -678px;
}
.icon-android {
	background: url(../images/sprite_REinc.png) no-repeat -678px -677px;
}
.icon-facebook-gray {
	background: url(../images/sprite_REinc.png) no-repeat -429px -91px;
}
.icon-google-plus {
	background: url(../images/sprite_REinc.png) no-repeat -467px -91px;
}
.icon-twitter {
	background: url(../images/sprite_REinc.png) no-repeat -514px -92px;
}
.icon-plan-videos,
.icon-vap-account,
.icon-account-resources,
.icon-train-info,
.icon-account-trac {
 	float: left;
    margin-right: 5px;
    width: 25px;
    height: 25px;
	background: url(../images/sprite_REinc.png) no-repeat -850px -729px;
}
.icon-vap-account {
	background-position: -760px -730px;
}
.icon-account-resources {
	background-position: -719px -729px;
}
.icon-train-info {
	background-position: -895px -730px;
}
.icon-account-trac {
	background-position: -808px -728px;
}
.social-header .icon-twitter {
	background: none !important;
}
.icon-youtube {
	background: url(../images/sprite_REinc.png) no-repeat -611px -91px;
	width: 43px;
	height: 25px;
}
.icon-instagram {
	background: url(../images/sprite_REinc.png) no-repeat -561px -89px;
}
.icon-pinterest {
	background: url(../images/sprite_REinc.png) no-repeat -683px -89px;
}
.icon-calendar-grey {
	position: absolute;
  	right: 10px;
  	top: -3px;
  	width: 21px;
  	height: 21px;
  	background: url(../images/sprite_REinc.png) no-repeat -129px -729px;
  	cursor: pointer;
  	cursor: hand;
}
.icon-check-circle-big {
	background: url(../images/sprite_REinc.png) no-repeat -30px -556px;
  width: 31px;
  height: 34px;
  position: absolute;
  margin: -1px 0 0 -48px;
}
.icon-planmap {
	background: url(../images/sprite_REinc.png) no-repeat -934px -734px;
	width: 63px;
	height: 63px;
  position: absolute;
  margin: -1px 0 0 -78px;
}
.icon-mousebook {
	background: url(../images/sprite_REinc.png) no-repeat -926px -655px;
	width: 67px;
	height: 63px;
  position: absolute;
  margin: -1px 0 0 -78px;
}
.icon-railtravel {
	background: url(../images/sprite_REinc.png) no-repeat -934px -812px;
	width: 63px;
	height: 63px;
  position: absolute;
  margin: -1px 0 0 -78px;
}
.icon-questionmark {
	background: url(../images/sprite_REinc.png) no-repeat -721px -682px;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	margin: 0 5px;
}
/* Flags */
.footer-links-box .flags {
	margin-right: 5px;
}
.flags {
	background: url(../images/sprite_flags.png) no-repeat -60px -861px;
	width: 22px;
	height: 16px;
	float: left;
	margin-top: 2px;
}
.flags.epad {
  margin: 0 5px 0 12px;
}
.flags.usa {
	background-position: -60px -861px;
}
.flags.canada {
	background-position: 0 -840px;
}
.flags.mexico {
	background-position: -30px -924px;
}
.flags.argentina {
	background-position: 0 -252px;
}
.flags.bolivia {
	background-position: 0 -588px;
}
.flags.brazil {
	background-position: 0 -651px;
}
.flags.chile {
	background-position: 0 -945px;
}
.flags.colombia {
	background-position: 0 -987px;
}
.flags.ecuador {
	background-position: 0 -1365px;
}
.flags.peru {
	background-position: -30px -1617px;
}
.flags.paraguay {
	background-position: -30px -1596px;
}
.flags.uruguay{
	background-position: -60px -882px;
}
.flags.venezuela {
	background-position: -60px -966px;
}
.flags.australia {
	background-position: 0 -315px;
}
.flags.newzealand {
	background-position: -30px -1260px;
}
.flags.arabemirates {
	background-position: -60px -735px;
}
.flags.bahrain {
	background-position: 0 -399px;
}
.flags.israel {
	background-position: -30px -231px;
}
.flags.iraq {
	background-position: -30px -168px;
}
.flags.iran {
	background-position: -30px -147px;
}
.flags.kuwait {
	background-position: -30px -441px;
}
.flags.oman {
	background-position: -30px -1470px;
}
.flags.qatar {
	background-position: -30px -1722px;
}
.flags.saudiarabia {
	background-position: -30px -1932px;
}
.flags.yemen {
	background-position: -60px -1113px;
}
.flags.botswana {
	background-position: 0 -630px;
}
.flags.lesotho {
	background-position: -30px -546px;
}
.flags.malawi {
	background-position: -30px -735px;
}
.flags.namibia {
	background-position: -30px -1155px;
}
.flags.swaziland {
	background-position: -60px -357px;
}
.flags.southafrica {
	background-position: -60px -189px;
}
.flags.zambia {
	background-position: -60px -1134px;
}
.flags.zimbabwe {
	background-position: -60px -1155px;
}
.flags.brunei {
	background-position: 0 -672px;
}
.flags.china {
	background-position: 0 -966px;
}
.flags.hongkong {
	background-position: -30px -42px;
}
.flags.indonesia {
	background-position: -30px -126px;
}
.flags.india {
	background-position: -30px -105px;
}
.flags.japan {
	background-position: -30px -294px;
}
.flags.cambodia {
	background-position: 0 -798px;
}
.flags.korea {
	background-position: -30px -420px;
}
.flags.laos {
	background-position: -30px -483px;
}
.flags.myanmar {
	background-position: -30px -1113px;
}
.flags.malaysia {
	background-position: -30px -756px;
}
.flags.philipines {
	background-position: -30px -1638px;
}
.flags.singapore {
	background-position: -60px -63px;
}
.flags.thailand {
	background-position: -60px -525px;
}
.flags.taiwan {
	background-position: -60px -462px;
}
.flags.vietnam {
	background-position: -60px -987px;
}
.flags.others {
	background-position: -60px -1092px;
}
.flags.anguilla {
	background-position: 0 -168px;
}
.flags.barbuda {
	background-position: 0 -210px;
}
.flags.aruba {
	background-position: 0 -294px;
}
.flags.bahamas {
	background-position: 0 -378px;
}
.flags.barbados {
	background-position: 0 -441px;
}
.flags.belize {
	background-position: 0 -504px;
}
.flags.bermuda {
	background-position: 0 -546px;
}
.flags.bonaire {
	background-position: 0 0;
}
.flags.british {
	background-position: -60px -1008px;
}
.flags.cayman {
	background-position: 0 -882px;
}
.flags.costarica {
	background-position: 0 -1113px;
}
.flags.curacao {
	background-position: 0 0;
}
.flags.dominicanrepublic {
	background-position: 0 -1323px;
}
.flags.elsalvador {
	background-position: 0 -1407px;
}
.flags.grenada {
	background-position: 0 -1848px;
}
.flags.guadeloupe {
	background-position: 0 -1869px;
}
.flags.guam {
	background-position: 0 -1890px;
}
.flags.guatemala {
	background-position: 0 -1911px;
}
.flags.haiti {
	background-position: -30px 0;
}
.flags.honduras {
	background-position: -30px -21px;
}
.flags.jamaica {
	background-position: -30px -273px;
}
.flags.martinique {
	background-position: -30px -861px;
}
.flags.monserrat {
	background-position: 0 0;
}
.flags.netherlandsantilles {
	background-position: -30px -1239px;
}
.flags.nicaragua {
	background-position: -30px -1281px;
}
.flags.panama {
	background-position: -30px -1554px;
}
.flags.puertorico {
	background-position: -30px -1701px;
}
.flags.stkittsnevis {
	background-position: -60px -273px;
}
.flags.stlucia {
	background-position: -30px -1848px;
}
.flags.stvincentgrenadines {
	background-position: -60px -294px;
}
.flags.trinidadtobago {
	background-position: -60px -609px;
}
.flags.turkscaicos {
	background-position: -60px -693px;
}
.flags.virginislands {
	background-position: -60px -1029px;
}
.flags.belgium {
  background-position: 0 -483px;
}
.flags.germany {
  background-position: 0 -1743px;
}
.flags.spain {
  background-position: -60px -231px;
}
.flags.france {
  background-position: 0 -1638px;
}
.flags.italy {
  background-position: -30px -252px;
}
.flags.luxembourg {
  background-position: -30px -651px;
}
.flags.netherlands {
  background-position: -30px -1218px;
}
.flags.russia {
  background-position: -30px -1805px;
}
.flags.switzerland {
  background-position: -60px -399px;
}
.flags.united-kingdom {
  background-position: -60px -819px;
}
.flags.europe {
  background-position: 0px -1554px;
}
.block-row .col-12 .icontainer.block-row {
  min-height: 440px;
}

/* --- */
/* Carousel Home page */
.hp-carousel h3 {
	color:#88146A;
	margin: 5px 0;
}
.hp-carousel.deals h3 {
	color:#FFA81F;
}

.hp-carousel,
.blog-carousel,
.video-carousel,
.partners-carousel {
	position: relative;
    overflow: hidden;
    width: 100%;
}
.partners-carousel {
	width: 90%;
	margin-left: 10px;
}
.hp-carousel ul,
.blog-carousel ul,
.video-carousel ul,
.partners-carousel ul {
	width: 20000em;
    position: relative;
    margin: 0;
    padding: 0;
}

.hp-carousel figure img {
  max-width: 285px;
  width: 100%;
  max-height: 190px;
  height: auto;
  border: 1px solid #F7F7F7;
}
.hp-carousel li/*,
.blog-carousel li*/ {
  width: 100%;
  height: auto;
  max-width: 305px;
  padding: 10px 2px;
}
.blog-carousel li {
	max-width: 252px;
  	width: 100%;
  	margin: 4px 1px 3px;
}

.video-carousel li {
  width: 100%;
  height: auto;
  max-width: 585px;
  padding: 10px 12px;
}
.hp-carousel .center-box/*, .blog-carousel .center-box*/ {
	margin: 0 10px;
  	max-width: 285px;
  	width: 100%;
}
.hp-carousel .center-box > div,
.hp-carousel .center-box > p {
	margin: 0 0 1em 0;
	height: 54px;
  overflow: hidden;
  line-height: 1.428571429;
}
.hp-carousel .center-box > p:nth-of-type(n+2) {
  display: none;
}
.circled-pagination a.active {
  background-color: #88146A;
  color: #88146A;
}
.circled-pagination a {
  /* border: 1px solid; */
  margin: 2px;
  padding: 0 4px;
  -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
  background-color: #666;
  color: #666;
}
.circled-pagination {
  text-align: center;
  margin-top: 5px;
}
.inactive {
	display: none;
}
button.hpc-next.btn-base,
button.hpc-prev.btn-base {
	position: absolute;
  	top: 40%;
  	z-index: 77;
  	background: url(../images/sprite_REinc.png) no-repeat;
  	width: 30px;
  	height: 30px;
  	text-indent: -7777px;
  	border: 0;
  	filter:none !important;
}
button.hpc-next.btn-base {
  right: 15px;
  background-position: -934px -919px;
}
button.hpc-prev.btn-base {
  left: 15px;
  background-position: -934px -887px;
}
button.hpc-next.btn-base:hover {
	background-position: -935px -983px;
}
button.hpc-prev.btn-base:hover {
	background-position: -934px -952px;
}
/* Carousel partners */
.partners-carousel ul {
	margin-left: 30px;
}
.partners-carousel ul li {
	margin: 0 15px 0 0;
	width: 120px;
}
.partners-carousel ul li a,
.associations-carousel ul li a {
	display: block;
	text-indent: -7777px;
}
.logo-eurail {
	background: url(../images/sprite_logo_carrier.png) no-repeat -155px -416px;
	width: 80px;
	height: 35px;
}
.logo-eurostar {
	background: url(../images/sprite_logo_carrier.png) no-repeat -247px -414px;
  	width: 126px;
  	height: 38px;
}
.logo-tgv {
	background: url(../images/sprite_logo_carrier.png) no-repeat -155px -481px;
	width: 78px;
	height: 29px;
}
.logo-italo {
	background: url(../images/sprite_logo_carrier.png) no-repeat -265px -483px;
	width: 94px;
	height: 24px;
}
.logo-thalys {
	background: url(../images/sprite_logo_carrier.png) no-repeat -436px -543px;
	width: 106px;
	height: 28px;
}
.logo-swiss-travel {
	background: url(../images/sprite_logo_carrier.png) no-repeat -403px -749px;
	width: 129px;
	height: 24px;
}
.logo-sncf {
	background: url(../images/sprite_logo_carrier.png) no-repeat -644px -417px;
	width: 63px;
	height: 33px;
}
.logo-vsc {
  background: url(../images/sprite_logo_carrier.png) no-repeat -570px -741px;
  width: 74px;
  height: 38px;
}
.logo-tren-italia {
	background: url(../images/sprite_logo_carrier.png) no-repeat -386px -420px;
	width: 106px;
	height: 27px;
}
.logo-dbbahn {
	background: url(../images/sprite_logo_carrier.png) no-repeat -32px -421px;
	width: 92px;
	height: 25px;
}
.logo-eurail {
	background: url(../images/sprite_logo_carrier.png) no-repeat -155px -416px;
	width: 80px;
	height: 35px;
}
.logo-renfe {
	background: url(../images/sprite_logo_carrier.png) no-repeat -522px -416px;
	width: 92px;
	height: 35px;
}
.logo-thello {
	background: url(../images/sprite_logo_carrier.png) no-repeat -31px -483px;
	width: 92px;
	height: 25px;
}
.logo-frecciabianca {
	background: url(../images/sprite_logo_carrier.png) no-repeat -385px -487px;
	width: 93px;
	height: 17px;
}
.logo-frecciargento {
	background: url(../images/sprite_logo_carrier.png) no-repeat -508px -487px;
	width: 93px;
	height: 17px;
}
.logo-frecciarossa {
	background: url(../images/sprite_logo_carrier.png) no-repeat -635px -487px;
	width: 94px;
	height: 17px;
}
.logo-nsb {
	background: url(../images/sprite_logo_carrier.png) no-repeat -30px -540px;
	width: 54px;
	height: 35px;
}
.logo-sj {
	background: url(../images/sprite_logo_carrier.png) no-repeat -115px -538px;
	width: 53px;
	height: 37px;
}
.logo-obb {
	background: url(../images/sprite_logo_carrier.png) no-repeat -115px -538px;
	width: 53px;
	height: 37px;
}
.logo-tgv-lyria {
	background: url(../images/sprite_logo_carrier.png) no-repeat -311px -545px;
	width: 94px;
	height: 25px;
}
.logo-city-night-line {
	background: url(../images/sprite_logo_carrier.png) no-repeat -573px -548px;
	width: 109px;
	height: 18px;
}
.logo-cp {
	background: url(../images/sprite_logo_carrier.png) no-repeat -29px -608px;
	width: 65px;
	height: 35px;
}
.logo-atoc {
	background: url(../images/sprite_logo_carrier.png) no-repeat -120px -612px;
	width: 91px;
	height: 27px;
}
.logo-britrail {
	background: url(../images/sprite_logo_carrier.png) no-repeat -241px -613px;
	width: 92px;
	height: 24px;
}
.logo-ter {
	background: url(../images/sprite_logo_carrier.png) no-repeat -364px -608px;
	width: 69px;
	height: 34px;
}
.logo-interrail {
	background: url(../images/sprite_logo_carrier.png) no-repeat -460px -604px;
	width: 88px;
	height: 43px;
}
.logo-b {
	background: url(../images/sprite_logo_carrier.png) no-repeat -583px -608px;
	width: 53px;
	height: 35px;
}
.logo-interlink {
	background: url(../images/sprite_logo_carrier.png) no-repeat -667px -612px;
	width: 65px;
	height: 26px;
}
.logo-oe {
	background: url(../images/sprite_logo_carrier.png) no-repeat -30px -681px;
	width: 54px;
	height: 34px;
}
.logo-vr {
	background: url(../images/sprite_logo_carrier.png) no-repeat -112px -681px;
	width: 80px;
	height: 34px;
}
.logo-d {
	background: url(../images/sprite_logo_carrier.png) no-repeat -222px -681px;
	width: 52px;
	height: 34px;
}
.logo-pkp {
	background: url(../images/sprite_logo_carrier.png) no-repeat -303px -682px;
	width: 58px;
	height: 32px;
}
.logo-f {
	background: url(../images/sprite_logo_carrier.png) no-repeat -388px -681px;
	width: 53px;
	height: 34px;
}
.logo-pid {
	background: url(../images/sprite_logo_carrier.png) no-repeat -470px -681px;
	width: 77px;
	height: 35px;
}
.logo-jir {
	background: url(../images/sprite_logo_carrier.png) no-repeat -575px -677px;
	width: 43px;
	height: 43px;
}
.logo-hz {
	background: url(../images/sprite_logo_carrier.png) no-repeat -648px -676px;
	width: 44px;
	height: 44px;
}
.logo-sbb-cff-ffs {
	background: url(../images/sprite_logo_carrier.png) no-repeat -32px -755px;
	width: 93px;
	height: 11px;
}
.logo-cfl {
	background: url(../images/sprite_logo_carrier.png) no-repeat -157px -753px;
	width: 92px;
	height: 15px;
}
.logo-national-rail {
	background: url(../images/sprite_logo_carrier.png) no-repeat -279px -752px;
	width: 93px;
	height: 18px;
}
.logo-slovenske {
	background: url(../images/sprite_logo_carrier.png) no-repeat -561px -754px;
	width: 119px;
	height: 14px;
}

/* --- */
.container {
  max-width: 980px;
  width: 100%;
  min-width: 320px;
  margin: -540px auto 0;
  position: relative;
  z-index: 2;
}

.icontainer {
	clear: both;
	margin:0;
	padding: 25px 30px;
	background-color: #FFF;
}

.container .booking-widget-box {
  color:#FFF;
  width: 100%;
  padding: 20px 30px;
  min-height: 280px;
  background-color: #88146A;
  background: #c2369e;
  background: -moz-linear-gradient(top, #c2369e 0%, #88146a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2369e), color-stop(100%, #88146a));
  background: -webkit-linear-gradient(top, #c2369e 0%, #88146a 100%);
  background: -o-linear-gradient(top, #c2369e 0%, #88146a 100%);
  background: -ms-linear-gradient(top, #c2369e 0%, #88146a 100%);
  background: linear-gradient(to bottom, #c2369e 0%, #88146a 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#c2369e', endColorstr='#88146a', GradientType=0);
}

.container .booking-widget-footer .checked-box {
  position: relative;
  width: 33.3%;
  padding: 0 60px;
  float: left;
}
.container .booking-widget-footer .checked-box:first-child {
    padding-left: 72px;
}
.container .booking-widget-footer {
  width: 100%;
  display: inline-block;
  background-color: #B7B7B7;
  color: #FFF;
  padding: 20px;
}
.booking-widget-footer h3 {
  color: #FFF;
}
.horizontal-booking-widget .booking-top-nav {
	display: inline-block;
  	background-color: rgba(0,0,0,0.7);
  	margin-bottom: 0;
}
.horizontal-booking-widget .booking-top-nav li a {
	padding: 15px 20px;
	display: block;
	color: #FFF;
	font-size: 15px;
  	text-transform: uppercase;
  	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
}
.horizontal-booking-widget .booking-top-nav li a.active {
	background-color: #c2369e;
}
.container .welcome {
	text-align: center;
}
.container .welcome h1 {
	color:#88146A;
}
.container .welcome p {
  font-size: 16px;
  margin: 5px 88px;
}
.info-pbt-box .col-3 p {
	margin: 2px 0 10px 0;
}
.info-pbt-box .col-3 {
  min-height: 265px;
}
.info-pbt-box .plan h2, .info-pbt-box .plan ul li a {
  color: #ed6671;
}
.info-pbt-box .book h2, .info-pbt-box .book ul li a {
  color: #00aeef;
}
.info-pbt-box .travel h2, .info-pbt-box .travel ul li a {
  color: #8aaf51;
}
.info-pbt-box .col-4 .icontainer {
  padding-left: 100px;
  min-height: 343px;
}
.info-pbt-box ul li a {
	font-size: 15px;
	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
	line-height: 22px;
}
.info-pbt-box .pbt-list {
  display: inline-block;
}
.info-pbt-box .pbt-list li {
  padding: 5px 0;
}
.info-pbt-box .pbt-list .icon-md {
  margin: 2px 10px 0 0;
  height: 28px;
}
.media-box aside.col-3 {
  margin-left: 20px;
}
.media-box h2 {
	color:#88146A;
	margin-bottom: 20px;
}
.media-box h3 {
	color:#88146A;
	margin: 10px 0;
}
.blog-posts .center-box a {
	display: inline-block;
}
.blog-posts .center-box p {
  height: 55px;
  overflow: hidden;
}
.media-box .video-carousel iframe {
	max-width: 560px;
	/*max-height: 315px;*/
	width: 100%;
	height: 315px;
}
.blog-post-box img {
  	/*width: 250px;*/
  	max-height: 165px;
  	height: 100%;
}
.blog-posts figure {
    max-width: 250px;
    width: 100%;
    height: 165px;
    overflow: hidden;
}
/* Columns */

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	float:left;
	position: relative;
	min-height: 1px;
	padding: 10px;
}
.col-1 {
  width: 8.33333333%;
}
.col-2 {
  width: 16.66666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333333%;
}
.col-5 {
  width: 41.66666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33333333%;
}
.col-8 {
  width: 66.66666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333333%;
}
.col-11 {
  width: 91.66666667%;
}
.col-12 {
  width: 100%;
}

/* Spc functional */
.btns-hgroup {
	display: inline-block;
}
.btns-hgroup li a {
  color: #FFF;
  padding: 8px 15px;
  margin-right: 10px;
  -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  display: block;
  font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
  font-size: 15px;
  border: 1px solid #c4c1c1;
  background-color: #B7B7B7;
  background: -moz-linear-gradient(top, #d6d6d6 1%, #b7b7b7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#d6d6d6), color-stop(100%,#b7b7b7));
  background: -webkit-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: -o-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: -ms-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: linear-gradient(to bottom, #d6d6d6 1%,#b7b7b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#b7b7b7',GradientType=0 );
}

.btns-hgroup li a.active {
	border-color:#92006c;
	background: #c2369e;
  	background: -moz-linear-gradient(top, #c2369e 0%, #88146a 100%);
  	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2369e), color-stop(100%, #88146a));
  	background: -webkit-linear-gradient(top, #c2369e 0%, #88146a 100%);
  	background: -o-linear-gradient(top, #c2369e 0%, #88146a 100%);
  	background: -ms-linear-gradient(top, #c2369e 0%, #88146a 100%);
  	background: linear-gradient(to bottom, #c2369e 0%, #88146a 100%);
  	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#c2369e', endColorstr='#88146a', GradientType=0);
}
.btns-hgroup li a.deals {
	border-color: #dd8700;
  	background-color: #FFA81F;
  	background: -moz-linear-gradient(top, #ffa81f 1%, #e78d00 100%);
  	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffa81f), color-stop(100%,#e78d00));
  	background: -webkit-linear-gradient(top, #ffa81f 1%,#e78d00 100%);
  	background: -o-linear-gradient(top, #ffa81f 1%,#e78d00 100%);
  	background: -ms-linear-gradient(top, #ffa81f 1%,#e78d00 100%);
  	background: linear-gradient(to bottom, #ffa81f 1%,#e78d00 100%);
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa81f', endColorstr='#e78d00',GradientType=0 );
}
/* Buttons */
.btn-base {
  font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #B7B7B7;
  background: -moz-linear-gradient(top, #d6d6d6 1%, #b7b7b7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#d6d6d6), color-stop(100%,#b7b7b7));
  background: -webkit-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: -o-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: -ms-linear-gradient(top, #d6d6d6 1%,#b7b7b7 100%);
  background: linear-gradient(to bottom, #d6d6d6 1%,#b7b7b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#b7b7b7',GradientType=0 );
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 15px;
  border: 1px solid #c4c1c1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-base.orange {
	border:0;
	color: #FFF;
	padding: 12px 22px;
  	background-color: #FF5B00;
  	background: -moz-linear-gradient(top, #fc7529 1%, #e45403 100%);
  	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#fc7529), color-stop(100%,#e45403));
  	background: -webkit-linear-gradient(top, #fc7529 1%,#e45403 100%);
  	background: -o-linear-gradient(top, #fc7529 1%,#e45403 100%);
  	background: -ms-linear-gradient(top, #fc7529 1%,#e45403 100%);
  	background: linear-gradient(to bottom, #fc7529 1%,#e45403 100%);
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc7529', endColorstr='#e45403',GradientType=0 );
}
.btn-base.orange.hplink {
	display: inline-block;
}



/* Footer */
.rei-footer {
  width: 100%;
  background: url(../images/footer-bg.gif);
}

.footer-links-box {
  background-color: #333e42;
  max-width: 980px;
  width: 100%;
  margin: 60px auto;
  padding: 30px;
}
.footer-links-box .links-box {
	line-height: 20px;
}
.footer-links-box ul.links-box li {
  float: none;
  padding: 0px;
}
.footer-links-box .links-box.follow-us {
  max-width: 160px;
}
.footer-links-box .links-box.mobile {
  height: 50px;
}
.footer-links-box .links-box.mobile a.icon-android {
  display: none;
}
.footer-links-box a {
	color:#AAA;
	font-size: 12px;
	line-height: 18px;
}
.footer-links-box a:hover {
	color:#FFF;
}
.footer-links-box .newsletter-box input.inpt-newsletter {
	width: 200px;
	margin-left: 15px;
}
.footer-links-box .newsletter-box label, .footer-links-box .links-box li.header {
	font-size: 15px;
	color: #FFF;
	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
	/*font-weight: bold;*/
	margin: 10px 0 2px;
}
.footer-links-box .newsletter-box {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #CCC;
}
.rei-footer .footer-links-box .newsletter-box .selector {
	display: none;
}
.footer-links-col1, .footer-links-col2, .footer-country-box {
  float: left;
  min-width: 230px;
}
.footer-links-col3, .footer-links-col4, .footer-links-col5 {
  float: left;
  min-width: 150px;
}
.partners-box {
  border-top: 1px solid #CCC;
  margin-top: 25px;
  padding-top: 25px;
  width: 100%;
}

.bottom-foot {
  width: 100%;
  min-height: 70px;
  background-color: #88146a;
}
.bottom-foot p {
  margin: 0;
  padding: 25px;
  display: block;
  text-align: center;
  color: #FFF;
}
.bottom-foot p a {
  color: #FFF;
}
.bottom-foot p a:hover {
	color:#AAA;
}
.link-footer-deals {
	color: #FFA81F !important;
  	font-size: 15px !important;
  	font-family: 'Ubuntu', Arial, Helvetica,sans-serif;
  	margin-top: 5px;
  	display: block;
}
.link-footer-deals:hover {
	text-decoration: underline;
}
/* End of footer */
/* Top Language container styles */
#lang-container a, #logged-container a {
	color:#88146A;
	text-decoration: underline;
	text-transform: capitalize;
}
.rei-header #logged-container a {
	width: 100px;
}
#lang-container a:hover, #cc-container a:hover, #logged-container a:hover {
	text-decoration: none;
}
/* Top Country Currency Styles */
#cc-container ul li {
  margin: 2px 0;
}
#cc-container ul li a {
	color:#88146A;
	text-transform: capitalize;
	margin: 0 10px 0 0;
	line-height: normal;
}
#cc-container div div > ul > li a {
	text-decoration: underline;
}

#cc-container .cc-inner-list li a span.flags {
  margin: 0 4px 0 0;
}
#cc-container {
  width: 600px;
}
#cc-container .cc-top-nav li a {
	color:#FFF;
}
#cc-container ul.cc-inner-list {
	width: 478px;
}
#cc-container ul.cc-inner-list li {
  width: 33.3%;
}
#cc-container div div > ul > li {
	margin-top: 10px;
}
/* Booking Widget CSS */
.booking-widget-box h2 {
  	margin: 0 0 15px;
  	color: #FFF;
}
.booking-widget-box #trips .trip,
.booking-widget-box .country-trip {
  	margin-bottom: 20px;
}
.booking-widget-box .country-trip:first-child {
	margin-top: 8px;
}
.booking-widget-box .country-trip label {
	margin-bottom: 5px;
  	display: block;
}
.booking-widget-box .route-type-radio-group label,
.booking-widget-box .class-options label {
	 margin-right: 15px;
}
.booking-widget-box .route-type {
	margin: 15px 0;
}
.booking-widget-box .remove-trip a,
.booking-widget-box .remove-traveler a,
.booking-widget-box .remove-country a {
  	color: #FFF;
  	text-decoration: none;
  	font-weight: bold;
  	font-size: 12px;
  	margin: 0 5px;
}
.booking-widget-box .pad-left {
	margin-left: 18px;
}
.booking-widget-box .pad-right {
	margin-right: 18px;
}
.booking-widget-box .pad-righto {
	margin-right: 20px;
}
.booking-widget-box .pad-top {
	margin-top: 20px;
}
.booking-widget-box .pad-bottom {
	margin-bottom: 20px;
}
.booking-widget-box input,
.booking-widget-box select {
	color:#666;
}
.booking-widget-box label input {
	vertical-align: middle;
	margin-top: -3px;
}
.booking-widget-box .switch-fromto a {
	background: url(../images/sprite_REinc.png) no-repeat -355px -724px;
  	width: 17px;
  	height: 15px;
  	padding: 7px;
  	text-decoration: none;
}
.booking-widget-box .route-type input.city-input,
.booking-widget-box .traveler-type {
  width: 160px !important;
}
.booking-widget-box .route-type .departure-date input,
.booking-widget-box .route-type .return-date input {
	width: 130px !important;
}
.booking-widget-box input.datepicker {
	cursor: pointer;
	cursor: hand;
}
.booking-widget-box .route-type .time select {
	width: 100px !important;
	padding: 6px;
}
.booking-widget-box .age  {
	width: 80px;
}
.booking-widget-box .booking-box-footer {
	display: inline-block;
  	width: 100%;
  	float: right;
  	margin-top: -40px;
  	position: relative;
}
.booking-widget-box .booking-box-footer #fs-submit {
	position: absolute;
  	right: 10px;
  	bottom: -50px;
}
.booking-widget-box .interior-container h2 {
	margin: 15px 0;
}
.booking-widget-box .passes-box-submit {
  float: right;
  margin-top: -40px;
  position: relative;
  width: auto;
}

.booking-widget-box .add-buttons .add-leg,
.booking-widget-box .add-buttons .add-traveler,
.booking-widget-box .add-buttons .add-reservation-traveler {
	display: inline-block;
}
.booking-widget-box a {
	text-decoration: underline;
	cursor: pointer;
	cursor: hand;
	color:#FFF;
}
.booking-widget-box .passes-select {
	width: 380px;
	float: left;
}
.booking-widget-box .ui-autocomplete-input.combobox-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.booking-widget-box .combobox-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 0;
  padding-top: 7px;
  padding-bottom: 4px;
}
.booking-widget-box .combobox-toggle span {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
  	display: block;
  	font-size: 18px;
}
.booking-widget-box .passenger-select {
	display: inline-block;
  	width: 100%;
}
.booking-widget-box .passengers .add-buttons {
	margin-top: 7px;
}
.booking-widget-box .class-options {
	float:left;
	margin-top: 7px;
}

.booking-widget-box .passengers .dynamic .passenger {
	margin-bottom: 20px;
}
.booking-widget-box .passengers .dynamic .passenger:last-child {
	margin-bottom: 0;
}

.booking-widget-box #activities-box #activities > span {
	width: 200px;
  	display: inline-block;
}
.booking-widget-box #hotels-box #hotels .country,
.booking-widget-box #hotels-box #hotels .city {
	width: 230px;
	display: inline-block;
}
.booking-widget-box #hotels-box #hotels .check-in-date input,
.booking-widget-box #hotels-box #hotels .check-out-date input {
	width: 160px;
	display: inline-block;
}
.booking-widget-box #hotels-box #hotels .rooms-number {
	width: 118px;
	display: inline-block;
}
.booking-widget-box #hotels-box .hotel-passenger .interior-container > label {
	margin: 0 0 15px;
  	display: block;
}

.booking-widget-box .passes-box .country-select {
	width: 190px;
}
.booking-widget-box .passes-box .question {
	width: 120px;
}

.booking-widget-box .passes-box .pax-together .arePaxTogether {
	width: 320px;
	display: inline-block;
}
.booking-widget-box .passes-box .pax-together .arePaxTogether label {
	display: inline-block;
}
.booking-widget-box #booking-box,
.booking-widget-box .passes-box,
.booking-widget-box #activities-box,
.booking-widget-box #hotels-box {
	opacity:1;
	filter: alpha(opacity=100)
	-webkit-transition: opacity 0.2s linear;
   	-moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
     -o-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear;
}
.booking-widget-box .traveler-child-question {
	margin: 10px 0 0;
	display: inline-block;
}
.booking-widget-box  .traveler-euro-groups {
  	display: inline-block;
}
.traveler-euro-groups:before {
   width: 5px;
  height: 10px;
  content: '*';
  float: left;
  margin: -1px 8px 0 0px;
  font-size: 24px;
}
.booking-widget-box .saved-passengers {
  	margin-bottom: 15px;
}
.booking-widget-box .saved-passengers .help-text {
  margin-bottom: 10px;
}
.booking-widget-box .saved-passengers .checkbox {
  	display: inline-block;
  	margin-right: 10px;
  	margin-bottom: 5px;
}
/* Tooltip style */

.ui-tooltip, .arrow:after {
    background: #FFF;
  }
  .ui-tooltip {
    padding: 10px 20px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    box-shadow: 0 0 7px #333;
    position: absolute;
    z-index: 7777;
    color:#666;
    width: 300px;
  }
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }
/* Calendar style */
#ui-datepicker-div {
  background-color: #FFF;
  padding: 0;
  -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  color:#666;
  width: 190px;
  overflow: hidden;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
  background: url(../images/sprite_REinc.png) no-repeat;
  cursor: pointer;
  cursor: hand;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-next {
	background-position: -145px -900px;
  	right: 2px;
}
.ui-datepicker .ui-datepicker-next-hover {
	background-position: -331px -900px;
}
.ui-datepicker .ui-datepicker-prev {
	background-position: -96px -900px;
  	left: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	background-position: -282px -900px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;

}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-widget-header {
  border: 1px solid #4297d7;
  background: #5c9ccc;
  color: #fff;
  font-weight: bold;
  padding: 4px 7px;
}
.ui-widget-header a:hover {
  background-color: transparent;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
}

.ui-state-default, .ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #FFF;
  background: #dfeffc;
  font-weight: bold;
  color: #2e6e9e;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fad42e;
  background: #fbec88;
  color: #363636;
}
.ui-datepicker .ui-datepicker-unselectable .ui-state-default,
.ui-datepicker .ui-state-disabled .ui-state-default {
	border: 1px solid #FFF;
  	background: #EEE;
    color: #CCC;
}
.ui-helper-hidden-accessible {
	visibility: hidden;
	width: 0;
	height: 0;
	overflow: hidden;
  display: none;
}

.ui-menu .ui-menu-item {
  	position: relative;
  	margin: 0;
  	padding: 3px 1em 3px .4em;
  	cursor: pointer;
  	min-height: 0;
  	float: none;
  	border-bottom: 1px solid #EEE;
}
.ui-menu .ui-menu-item a {
	color:#88146A;
}
.ui-menu .ui-menu-item.ui-state-focus a {
	color: #FFF;
}
.ui-menu .ui-menu-item:hover,
.ui-menu .ui-menu-item a:hover {
	background-color: #88146A;
	color:#FFF;
}

.ui-menu {
  	list-style: none;
  	padding: 0;
  	margin: 0;
  	display: block;
  	outline: none;
  	background-color: #FFF;
  	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.ui-autocomplete {
	position: absolute;
  	z-index: 100;
  	max-height: 150px;
  	overflow: auto;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus, .ui-widget-content
.ui-state-focus, .ui-widget-header
.ui-state-focus {
	background-color: #88146A;
	color:#FFF !important;
}
.ui-widget-content {
  	box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

/* Mobile Custom */
.rei-header ul.hnav-mobile li a:hover {
	background-color: #3B464A;
}
ul.hnav-mobile li a {
	padding: 12px 20px;
  	display: block;
  	color:#d9d9d9;
  	font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
  	font-size: 15px;
}
ul.hnav-mobile li {
  	width: 100%;
  	border-bottom: 1px solid #5c6568;
}
ul.hnav-mobile li:last-child {
	border-bottom: 0;
}
ul.hnav-mobile {
  	position: absolute;
  	/*right: 51px;*/
  	top: 0;
  	background-color: #333e42;
  	width: 85%;
  	/*border: 1px solid #5c6568;*/
  	-webkit-transition: all 0.2s linear;
   	-moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
  	overflow: hidden;
  	height: 415px;
}
.hnav-mobile-overlay {
	position: absolute;
  	height: 800px;
  	width: 100%;
  	background-color: rgba(0,0,0,0.7);
  	top: 43px;
  	left: 0;
}
ul.hnav-mobile li.search-head {
	padding: 15px;
  	text-align: center;
  	min-width: 270px;
}
ul.hnav-mobile li span.icon-right-sarrow {
  float: right;
  margin: 5px 0;
}
ul.hnav-mobile li .yellow-txt span {
	background-position: -705px -910px;
}
.rei-goverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 76;
}
.mc-modal-content, .mc-modal-content * {box-sizing: content-box;-moz-box-sizing: initial;-webkit-box-sizing: initial;}
.mc-modal-content {
  max-width: 560px;
  width: auto !important;
}
.mc-modal-content #thickbox-choice-market h4 {
  word-wrap: break-word;
}
.agent-associations {
    max-width: 980px;
    width: 100%;
    margin: -40px auto 20px;
    padding: 30px 30px 45px;
    background-color: #333E42;
}
.associations-carousel {
    width: 88%;
    margin-left: 10px;
    margin-top: -8px;
}
.associations-carousel ul li {
    margin-right: 30px;
}
.logo-railteam {
    background: url(../images/agent-associations-sprite.png) no-repeat -7px -10px;
    width: 69px;
    height: 35px;
}
.logo-nationalrail {
    background: url(../images/agent-associations-sprite.png) no-repeat -103px -13px;
    width: 104px;
    height: 31px;
}
.logo-nta {
    background: url(../images/agent-associations-sprite.png) no-repeat -229px -10px;
    width: 106px;
    height: 30px;
}
.logo-ustoa {
    background: url(../images/agent-associations-sprite.png) no-repeat -361px -5px;
    width: 90px;
    height: 37px;
}
.logo-asta {
    background: url(../images/agent-associations-sprite.png) no-repeat -466px -8px;
    width: 60px;
    height: 31px;
}
.logo-acta {
    background: url(../images/agent-associations-sprite.png) no-repeat -550px -10px;
    width: 62px;
    height: 32px;
}
.logo-bsi {
  background: url(../images/agent-associations-sprite.png) no-repeat -644px -7px;
  width: 77px;
  height: 36px;
}
#select-country {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
}
#select-country select {
  margin: 10px 20px 0 0;
  float: left;
}
#select-country .country-select-label {
  display: inline-block;
  width: 100%;
}
/* Rountrip H. Booking Widget temp. fix */
.roundtrip-fix .route-type {
  display: inline-block;
  margin: 0;
}
.roundtrip-fix #route0 {
  display: inline-block;
}
.roundtrip-fix #route0 > span {
  float: left;
  margin-top: 15px;
}
.roundtrip-fix .pass-question-radio-group {
  float: left;
  width: 100%;
}
.roundtrip-fix .icon-calendar-grey {
  top: 6px;
  right: 7px;
}
.roundtrip-fix .switch-fromto {
    padding: 9px 4px;
}
.roundtrip-fix .arrival-city,
.roundtrip-fix .departure-date {
    margin-right: 22px;
}
/*  Pre-select travelers */
.bookingWidget_checkToggle {
  padding:0 !important;
  line-height: 17px !important;
}
.bookingWidget_checkIt {
  text-decoration:none !important;
  color:#FFF !important;
}
/* Responsive media queries */
@media only screen and (max-width: 990px) {
	.footer-country-box {
		display: none;
	}
	.change-country-dropdown {
		display: inline-block;
	}
	.newsletter-box form {
		display: inline-block;
	}
	.footer-links-box .links-box {
		width: 33.3%;
  		float: left;
	}
	.footer-links-col1,
	.footer-links-col2 {
		width: 50%;
	}
	.associations-carousel {
		float: none !important;
    	margin: 30px auto 0;
	}
	.associations-carousel ul {
		display: inline-block;
	}
	.associations-carousel ul li {
		float: none;
    	display: inline-block;
    	margin-bottom: 10px;
	}
	.agent-associations {
		padding-bottom: 35px;
	}
}
@media only screen and (max-width: 960px) {
	.rei-header .hnav2 .menu-mobile {
		visibility:visible;
		width: auto;
		display: block;
  		padding: 5px 10px;
  		border-width: 0;
	}
	.rei-header ul.hnav {
		display: none;
	}
	.partners-carousel ul li {
		width: 110px;
	}
	.rei-header .search-input {
		float:none;
		margin-right: 10px;
		width: 170px !important;
	}
	.rei-header .nav-bar-inner {
		position: initial;
	}

}
@media only screen and (max-width: 930px) {
	.info-pbt-box .col-4 .icontainer {
		padding-left: 30px;
		min-height: 340px;
	}
	.info-pbt-box .col-4 p {
	  margin-top: 35px;
	}
	.info-pbt-box .col-4 i {
	  margin-left: 0;
	}
	.info-pbt-box .col-4 h2 {
	  margin-left: 80px;
  	  margin-top: 15px;
	}
}
@media only screen and (max-width: 850px) {
	.booking-widget-box .add-buttons .add-leg {
		margin-top: 20px;
	}
  .hp-carousel h3 {
    min-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
	.horizontal-booking-widget {
		min-width: 720px;
	}
	.col-8.video-box {
  	  width: 100%;
	}
	.col-4.blog-post-box {
  	  width: 100%;
	}
	.info-pbt-box .col-4 .icontainer {
		min-height: 420px;
	}
	.container .booking-widget-footer .checked-box {
		padding: 0 50px;
	}
	.video-carousel li,
	.media-box .video-carousel iframe,
	.blog-carousel li {
		max-width: none;
		padding: 0;
	}
	.blog-carousel ul li .center-box p {
	  height: 72px;
	  overflow: hidden;
	}
	.blog-carousel ul li .center-box h3 {
	  height: 45px;
	  overflow: hidden;
	}
	.change-country-dropdown {
		margin-top: 15px;
	}
	.partners-carousel {
		margin-top: 10px;
		margin-left: 0;
	}
	.rei-header, body > .container {
		overflow-x: hidden;
	}
	.btns-hgroup li a {
  		margin-top: 5px;
	}
  .blog-carousel li {
    margin: 5px;
  }
}
@media only screen and (max-width: 640px) {
	.horizontal-booking-widget:not(.desk),
	.booking-widget-footer:not(.desk) {
		display: none !important;
	}
	.info-pbt-box .col-4 .icontainer {
		min-height: 460px;
	}
	.STTButton:not(.desk) {
		display: block;
		margin: 65px auto 10px;
	}
	.rei-header .main-top-bg {
		height: 300px;
  		min-width: 320px;
  		background-size: auto 120%;
  		background-position: 77% -65%;
	}
	.link-facebook,
	.lang-wrapper,
	.country-wrapper,
	.link-login,
	.logged-wrapper {
		display: none !important;
	}
	.rei-header .top-bar {
		display: none;
	}
	.rei-header .nav-bar {
		top:0;
		padding: 0;
  		background-color: #333e42;
  		min-width: 320px;
	}
	.rei-header .rei-logo {
		background-position: -248px -30px;
		width: 154px;
		margin: 9px;
	}
  .rei-header .rei-logo.ca {
    background-position: -650px -29px;
    width: 154px;
  }
	.rei-header ul.hnav2 {
		margin: 0;
		border-left: 1px solid #2b3235;
	}
	.rei-header .hnav2 .menu-search,
	.rei-header .hnav2 .menu-cart,
	.rei-header .hnav2 .menu-mobile {
		display: block;

	}
	.rei-header .menu-search-box {
		display: none;
	}
	.blog-carousel ul li .center-box h3 {
  		height: 35px;
  	}
  	ul.btns-hgroup.nav-sell-box {
  		width: 100%;
  	}
  	.rei-header .hnav2 .menu-mobile {
  		padding: 12px 15px;
  		border-width: 1px;
  	}
  	.page-title {
		width: auto;
  		margin: 10px;
  		text-align: center;
	}
	.page-title p {
		display: none;
	}
	.container .welcome p {
		margin: 5px 0;
		font-size: 13px;
	}
	.container .welcome h1 {
		font-size: 22px;
	}
	.container .welcome .col-12 {
		margin-top: -60px;
	}
	.container {
		overflow: hidden;
		margin-top: -250px;
	}
	.associations-carousel ul li {
		margin-right: 10px;
	}
}
@media only screen and (max-width: 568px) {

	.info-pbt-box {
		display: none;
	}
	.footer-links-box .links-box {
		float:none;
		width: 100%;
	}
	.footer-links-col1, .footer-links-col2, .footer-country-box {
		min-width: 150px;
	}
	.footer-links-box .newsletter-box {
		text-align: left;
	}
	.change-country-dropdown {
		margin-left: 0;
	}
	.footer-links-box .newsletter-box input.inpt-newsletter {
		margin-left: 0;
		margin-top: 10px;
	}
	.btns-hgroup li a {
		font-size: 12px;
		margin: 2px;
	}
	.btns-hgroup.nav-sell-box li {
	  	width: 50%;
	  	text-align: center;
	}
}

@media only screen and (max-width: 480px) {

	.hp-carousel li {
		padding: 10px 10px;
	}
	.hp-carousel .center-box {
		margin: 0;
	}
	button.hpc-prev.btn-base {
		left:10px;
	}
	button.hpc-next.btn-base {
		right: 10px;
	}
	.circled-pagination {
		margin-top: 10px;
		margin-bottom: 0;
	}
	.blog-post-box img {
	  width: 100%;
	  max-height: none;
	}
}
@media only screen and (max-width: 375px) {
	#thickbox-choice-market .btn {
		width: 110px !important;
		padding: 3px 5px 0 !important;
	}
}
@media only screen and (min-width: 375px){
	ul.hnav-mobile {
		width: 89%;
	}
}
@media only screen and (min-width: 960px) {
	ul.hnav-mobile, .hnav-mobile-overlay {
		display: none !important;
	}
}
@media only screen and (min-width: 640px) {
	.hnav-mobile-overlay {
		top:0;
	}
}
/* end */
