/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.3;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a {
  text-decoration: none;
}

/*
  10. Create a root stacking context
*/
.clickable {
  cursor: pointer;
}

.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

#root,
#__next {
  isolation: isolate;
}

.sub-header {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.14);
  width: 100%;
  background: #ffffff;
  height: -moz-max-content;
  height: max-content;
}
.sub-header.fixed-header {
  position: fixed;
  top: 0;
  z-index: 1000;
}
.sub-header .container {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.sub-header .logo-gr {
  display: inline-block;
  height: 60px;
}
.sub-header .logo-gr img {
  height: 100%;
}
.sub-header .menu-main {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-header .menu-main li {
  float: left;
  position: relative;
  display: block;
}
.sub-header .menu-main li:hover ul {
  display: block;
}
.sub-header .menu-main li.language {
  background-image: url(./../images/icons/language.svg);
  background-repeat: no-repeat;
  background-position: left;
  padding: 22px 28px;
  padding-left: 25px;
}
.sub-header .menu-main li.language select {
  outline: none;
  border: unset;
  font-weight: bold;
  cursor: pointer;
}
.sub-header .menu-main li a {
  color: #000;
  padding: 22px 28px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  outline: 0;
  line-height: 1.42857143;
  text-transform: uppercase;
  display: block;
}
.sub-header .menu-main li.active a, .sub-header .menu-main li:hover a {
  color: #006885;
}
.sub-header .menu-main li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 200px;
  z-index: 3;
  background: #006885;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  border: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}
.sub-header .menu-main li ul li {
  float: left;
  width: 100%;
  max-width: 100%;
}
.sub-header .menu-main li ul li a {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
  color: #ffffff !important;
  white-space: nowrap;
  clear: both;
}

.filter-form {
  margin-top: 40px;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 16px;
}
.filter-form .constrain .item-select {
  width: -moz-max-content;
  width: max-content;
  background-color: #e7eef6;
  padding: 4px;
  border-radius: 4px;
  gap: 3px;
  min-width: 120px;
}
.filter-form .constrain .item-select.passenger {
  margin-left: 16px;
}
.filter-form .constrain .item-select .text {
  text-wrap: nowrap;
  font-size: 14px;
}
.filter-form .fields {
  margin-top: 12px;
}
.filter-form .fields .icon {
  color: #868691;
}
.filter-form .fields .route {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter-form .fields .route .swap:hover {
  cursor: pointer;
}
.filter-form .fields .route .swap:hover .icon {
  color: #29292e;
}
.filter-form .fields .route .route-from,
.filter-form .fields .route .route-to {
  flex: 1;
}
.filter-form .fields .field-item {
  height: 50px;
  border: 1px solid rgba(23, 23, 23, 0.1019607843);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter-form .fields .field-item:hover {
  border-color: #ffa301;
}
.filter-form .fields .field-item .text {
  font-size: 14px;
}
.filter-form .fields .field-item .group-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.filter-form .fields .field-item .group-date .from-date,
.filter-form .fields .field-item .group-date .to-date {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter-form .fields .field-item .group-date .to-date {
  margin-left: 10px;
}
.filter-form .fields .field-item .vertical-divider {
  width: 1px;
  height: 20px;
  background-color: #d3d3d3;
}
.filter-form .fields .search-button {
  border-radius: 8px;
  background-color: #ffa301;
  color: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.filter-form .fields .search-button .icon {
  color: #ffffff;
}

footer {
  background: url(./../images/footer-bg.jpg) no-repeat top center;
  background-size: cover;
  padding: 50px 0px 20px 0px;
  display: inline-block;
  width: 100%;
  float: left;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  font-weight: 300;
}
footer .title-white-18 {
  font-size: 18px;
  color: #fff;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffa301;
}
footer .menu-bottom,
footer .menu-footer {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  width: 100%;
}
footer .menu-footer li {
  font-weight: 400;
}
footer .menu-footer li a {
  color: #fff;
}
footer .menu-footer li a:hover {
  color: #ffa301;
}
footer .dis-in-100 {
  display: inline-block;
  width: 100%;
}
footer .text-yellow-20 {
  color: #ffa301;
  font-size: 20px;
  line-height: 21px;
  font-weight: 600;
}
footer .icon-home {
  background: url(./../images/icons/address.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-plane {
  background: url(./../images/icons/plane.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-email {
  background: url(./../images/icons/email.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-phone {
  background: url(./../images/icons/icon-phone.png) no-repeat 0px 5px;
  padding: 3px 0px 0px 23px;
}
footer .newsletter {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0px 59px 0px 0px;
  margin-top: 20px;
}
footer .newsletter .txtEmail {
  height: 45px;
  width: 100%;
  font-style: italic;
  padding: 0px 0px 0px 10px;
  color: #000;
}
footer .newsletter .btn-newsletter {
  background: #ffa301;
  height: 45px;
  border: 0px;
  width: 60px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #000;
}
footer .mgt20 {
  margin-top: 20px;
}
footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #688b94;
  margin: 30px 0px 0px 0px;
  padding: 25px 0px 0px 0px;
}
footer .bottom-footer img {
  height: 50px;
  width: auto;
}
footer .bottom-footer .company-info p {
  margin-bottom: 3px;
}
footer .socials-right {
  float: right;
  padding: 10px 0px;
}
footer .icon-fb {
  display: inline-block;
  height: 25px;
  width: 28px;
  background: url(./../images/fb.png) no-repeat 0px 0px;
  background-size: 100% 100%;
}
footer .icon-yt {
  display: inline-block;
  height: 25px;
  width: 28px;
  background: url(./../images/yt.png) no-repeat 0px 0px;
  background-size: 100% 100%;
  margin-left: 4px;
}/*# sourceMappingURL=common.css.map */