/*
* Import font from Google Fonts
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/*
* CSS reset
*/
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a, button {
  cursor: revert;
}

menu, ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

.cf::after, .header-button::after, .menu::after {
  content: "";
  clear: both;
  display: table;
}

/*
* Main CSS
*/
html {
  background: #0a0b3c;
}

body {
  font-family: "Dm Sans";
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  background: #d2ebfe;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 70px;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

input,
select,
textarea {
  display: inline-block;
  background-color: transparent;
  border: 0px;
  padding: 0;
  margin: 0;
}

* {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

::-webkit-input-placeholder {
  color: #838392;
  opacity: 1;
}

::-moz-placeholder {
  color: #838392;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #838392;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #838392;
  opacity: 1;
}

::placeholder {
  color: #838392;
  opacity: 1;
}

header {
  background: rgb(15, 16, 84);
  background: -webkit-gradient(linear, left top, right top, from(rgb(15, 16, 84)), to(rgb(25, 41, 189)));
  background: linear-gradient(90deg, rgb(15, 16, 84) 0%, rgb(25, 41, 189) 100%);
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
header .oxyfi-x {
  display: block;
  float: left;
  width: auto;
  height: 30px;
  margin: 20px 0 0 20px;
}
header a.logout {
  display: inline-block;
  padding-right: 30px;
  background: url("../graphics/logout-icon.svg") center right no-repeat;
  background-size: auto 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}
header .header-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
  font-size: 15px;
}
header .header-columns .navigation-toggle {
  background: transparent url("../graphics/menu-icon.svg") center center no-repeat;
  background-size: auto 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  height: 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
header .header-columns .navigation-toggle.opened {
  background-image: url("../graphics/close-icon.svg");
}
header .header-columns .trip-info {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
header .header-columns .trip-info span {
  display: inline-block;
  padding-left: 19px;
  background-size: auto 15px;
  background-repeat: no-repeat;
  background-position: center left;
}
header .header-columns .trip-info span.train-number {
  background-image: url("../graphics/train-icon-white.svg");
  margin-right: 10px;
}
header .header-columns .trip-info span.vehicle-id {
  background-image: url("../graphics/id-icon-white.svg");
  padding-left: 14px;
}
header .header-columns .count-flow-toggle {
  border: 1px solid #a6d8fd;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 20px 0 auto;
}
header .header-columns .count-flow-toggle a {
  display: inline-block;
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
  border-radius: 6px;
}
header .header-columns .count-flow-toggle a.selected {
  background: #a6d8fd;
  color: #0f1054;
}

.sub-header {
  background-color: #1a2bc3;
}
.sub-header .passenger-counting-select-stops-wrapper {
  height: 85px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#405ad3), to(#405ad3));
  background-image: linear-gradient(#405ad3, #405ad3);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1px 100%;
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop,
.sub-header .passenger-counting-select-stops-wrapper .next-stop {
  cursor: pointer;
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop .heading,
.sub-header .passenger-counting-select-stops-wrapper .next-stop .heading {
  font-size: 13px;
  margin-bottom: 5px;
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop .value,
.sub-header .passenger-counting-select-stops-wrapper .next-stop .value {
  line-height: 1.1;
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop .value span,
.sub-header .passenger-counting-select-stops-wrapper .next-stop .value span {
  /*max-width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  display: block;					*/
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop .value {
  position: relative;
  /*&:after {
  	content: url('../graphics/arrow-down-icon.svg') no center center ;
  	display: block;
  	background: linear-gradient(90deg, rgba(26,43,195,0) 0%, rgba(25,42,191,1) 50%, rgba(25,41,189,1) 100%);
  	width: 40px;
  	height: 25px;
  	position: absolute;
  	top: 0;
  	right: 19px;
  }*/
}
.sub-header .passenger-counting-select-stops-wrapper .previous-stop .value span {
  padding-right: 18px;
  background: url("../graphics/arrow-down-icon.svg") no-repeat center right/auto 12px;
}
.sub-header .passenger-counting-select-stops-wrapper .next-stop {
  text-align: right;
}
.sub-header .passenger-counting-select-stops-wrapper .next-stop span {
  margin-left: auto;
}

.footer {
  background-color: #1a2bc3;
  padding: 0 20px;
  height: 85px;
}
.footer .footer-buttons {
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 20px;
}
.footer .footer-buttons .button {
  padding-left: 0;
  padding-right: 0;
}

.inner-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-block;
  font-weight: 600;
  background-color: #506ce2;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  padding: 13px 26px;
  cursor: pointer;
}
.button.button-positive {
  background: #b2ef68;
  color: #0f1054;
}
.button.button-alt1 {
  background: #b6dbf6;
  color: #0f1054;
}
.button.button-alt2 {
  background: #141c85;
  color: #fff;
}

.page-content {
  padding: 20px;
  color: #0f1054;
  height: 100%;
  -webkit-transition: padding 200ms;
  transition: padding 200ms;
}
.page-content.inner-wrapper {
  max-width: 840px;
}
.page-content.center-vertically {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.page-content.show-final-boarding-info {
  padding-bottom: 60px;
}
.page-content.no-margins {
  padding: 0;
}

.page-content-wrapper {
  position: relative;
  height: calc(100dvh - 70px); /* Window height minus header height */
}
.page-content-wrapper.page-passenger-counting {
  height: calc(100dvh - 240px); /* Window height minus header, sub header and footer height */
}
.page-content-wrapper.page-passenger-flow {
  height: calc(100dvh - 195px); /* Window height minus header, passenger count and footer height */
  background: url("../graphics/background1.jpg") no-repeat center center/cover;
}
.page-content-wrapper.page-end-trip {
  height: calc(100dvh - 155px); /* Window height minus header and footer height */
  overflow: auto;
}
.page-content-wrapper.page-end-trip .page-content {
  height: auto;
}

.page-login-screen,
.page-trip-details {
  background: url("../graphics/background1.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
}
.page-login-screen .page-content,
.page-trip-details .page-content {
  height: auto;
}
.page-login-screen form,
.page-trip-details form {
  padding: 0 20px;
}
.page-login-screen h1,
.page-trip-details h1 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #fff;
}
.page-login-screen .button,
.page-trip-details .button {
  display: block;
  margin-top: 20px;
  width: 100%;
  padding: 15px;
}
.page-login-screen .message-wrapper,
.page-trip-details .message-wrapper {
  background: rgb(80, 108, 206);
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  line-height: 1.3;
  position: relative;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  max-height: 0;
  opacity: 0;
  margin: 0;
}
.page-login-screen .message-wrapper.visible,
.page-trip-details .message-wrapper.visible {
  max-height: 1000px;
  opacity: 1;
  margin-top: 20px;
}
.page-login-screen .message-wrapper.arrow-down:after, .page-login-screen .message-wrapper.arrow-up:after,
.page-trip-details .message-wrapper.arrow-down:after,
.page-trip-details .message-wrapper.arrow-up:after {
  content: "";
  background: rgb(80, 108, 206);
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
}
.page-login-screen .message-wrapper.arrow-up:after,
.page-trip-details .message-wrapper.arrow-up:after {
  bottom: auto;
  top: 0;
}
.page-login-screen .message-wrapper.negative-message, .page-login-screen .message-wrapper.negative-message.arrow-down:after, .page-login-screen .message-wrapper.negative-message.arrow-up:after,
.page-trip-details .message-wrapper.negative-message,
.page-trip-details .message-wrapper.negative-message.arrow-down:after,
.page-trip-details .message-wrapper.negative-message.arrow-up:after {
  background: #a43e3e;
}
.page-login-screen .message-wrapper.positive-message, .page-login-screen .message-wrapper.positive-message.arrow-down:after, .page-login-screen .message-wrapper.positive-message.arrow-up:after,
.page-trip-details .message-wrapper.positive-message,
.page-trip-details .message-wrapper.positive-message.arrow-down:after,
.page-trip-details .message-wrapper.positive-message.arrow-up:after {
  background: #6d943d;
}
.page-login-screen .message-wrapper .message,
.page-trip-details .message-wrapper .message {
  padding: 12px;
}
.page-login-screen .input-wrapper,
.page-trip-details .input-wrapper {
  background: #fff;
  background-size: 20px auto;
  background-position: center left 15px;
  background-repeat: no-repeat;
  color: #0f1054;
  border-radius: 6px;
  margin-top: 20px;
  text-align: left;
  padding-left: 50px;
}
.page-login-screen .input-wrapper.email-input,
.page-trip-details .input-wrapper.email-input {
  background-image: url("../graphics/email-icon.svg");
}
.page-login-screen .input-wrapper.password-input,
.page-trip-details .input-wrapper.password-input {
  background-image: url("../graphics/password-icon.svg");
}
.page-login-screen .input-wrapper.id-input,
.page-trip-details .input-wrapper.id-input {
  background-image: url("../graphics/id-icon.svg");
}
.page-login-screen .input-wrapper.train-input,
.page-trip-details .input-wrapper.train-input {
  background-image: url("../graphics/train-icon.svg");
}
.page-login-screen .input-wrapper input,
.page-trip-details .input-wrapper input {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
}

.boarding-types .boarding-type {
  background: #1a2bc3;
}
.boarding-types .boarding-type.disembark {
  border-top: 1px solid #162198;
}
.boarding-types .boarding-type .select-stop-list-items {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  height: 0;
}
.boarding-types .boarding-type .boarding-header {
  color: #fff;
  padding: 22px 20px 0 20px;
  height: 85px;
  position: relative;
  cursor: pointer;
}
.boarding-types .boarding-type .boarding-header:after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #162198 url("../graphics/arrow-right-icon-white.svg") no-repeat center center/auto 15px;
}
.boarding-types .boarding-type .boarding-header .type {
  font-size: 13px;
  margin-bottom: 5px;
}
.boarding-types .boarding-type .boarding-header .value {
  line-height: 1.1;
}
.boarding-types .boarding-type.opened .select-stop-list-items {
  height: calc(100dvh - 365px);
}
.boarding-types .boarding-type.opened .boarding-header:after {
  background-image: url("../graphics/arrow-down-icon.svg");
}

.counter-ui-wrapper {
  background: #fff;
  border-radius: 15px;
  height: 100%;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  overflow: hidden;
  line-height: 1;
}
.counter-ui-wrapper .add-passenger,
.counter-ui-wrapper .remove-passenger,
.counter-ui-wrapper .passenger-count {
  position: relative;
}
.counter-ui-wrapper .add-passenger .row-content,
.counter-ui-wrapper .remove-passenger .row-content,
.counter-ui-wrapper .passenger-count .row-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-53%);
          transform: translateY(-53%);
}
.counter-ui-wrapper .add-passenger,
.counter-ui-wrapper .remove-passenger {
  background: #1a2bc3;
  color: #fff;
  cursor: pointer;
}
.counter-ui-wrapper .add-passenger {
  height: 30%;
}
.counter-ui-wrapper .passenger-count {
  height: 50%;
}
.counter-ui-wrapper .passenger-count input {
  border: 5px solid transparent;
  width: 90%;
  border-radius: 10px;
  /*&:focus,
  &:active {
  	border-color: #a6d8fd;				
  }*/
}
.counter-ui-wrapper .remove-passenger {
  height: 20%;
}

nav {
  position: fixed;
  top: 70px;
  height: calc(100dvh - 70px); /* Window height minus header height */
  left: 0;
  width: 100%;
  background: url("../graphics/background1.jpg") center center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 40;
}
nav.closed {
  -webkit-transform: translateY(-100dvh);
          transform: translateY(-100dvh);
}
nav .inner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
nav .menu-item {
  display: block;
  border-radius: 8px;
  background: #a6d8fd;
  color: #0f1054;
  font-weight: 600;
  padding: 15px 20px;
  font-size: 20px;
  position: absolute;
  left: 40px;
  right: 40px;
}
nav .menu-item.end-trip {
  background-size: auto 25px;
  background-position: top 20px center;
  background-repeat: no-repeat;
  background-image: url("../graphics/finish-icon.svg");
  text-align: center;
  padding-top: 55px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
nav .menu-item.logout {
  background: #162198;
  color: #fff;
  background-size: auto 20px;
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-image: url("../graphics/logout-icon.svg");
  bottom: 40px;
}

.final-boarding-info,
.passenger-flow-count {
  background: rgb(15, 16, 84);
  color: #fff;
  line-height: 40px;
  font-size: 15px;
  padding: 0 20px;
  margin: 20px -20px 0 -20px;
  text-align: center;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 200ms;
  transition: height 200ms;
}

.passenger-flow-count-wrapper {
  background: rgb(15, 16, 84);
}

.passenger-flow-count {
  text-align: left;
  height: 40px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px;
  grid-template-columns: 1fr 50px;
}
.passenger-flow-count .value {
  font-weight: 600;
  text-align: right;
}

.page-content.show-final-boarding-info .final-boarding-info {
  height: 40px;
}

.screen-modal-overlay {
  background: rgba(26, 43, 195, 0.85);
  position: fixed;
  top: 0;
  left: -300dvw;
  width: 100dvw;
  height: 100dvh;
  z-index: 100;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 0;
  margin: 0;
}
.screen-modal-overlay .modal-content {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  height: 100dvh;
  width: 100dvw;
  opacity: 0;
}
.screen-modal-overlay.opened {
  -webkit-animation-name: modal_overlay_open;
          animation-name: modal_overlay_open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /*&:not(.with-animation) {
  	left: 0;
  	opacity: 1;
  	.modal-content {
  		transform: scale(1);
  		opacity: 1;
  	}
  }*/
}
.screen-modal-overlay.opened .modal-content {
  -webkit-animation-name: modal_content_open;
          animation-name: modal_content_open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.screen-modal-overlay.closed {
  -webkit-animation-name: modal_overlay_close;
          animation-name: modal_overlay_close;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  left: 0;
  opacity: 1;
  /*&:not(.with-animation) {
  	left: -300dvw;
  	opacity: 0;

  	.modal-content {
  		transform: scale(0.9);
  		opacity: 0;
  	}
  }*/
}
.screen-modal-overlay.closed .modal-content {
  -webkit-animation-name: modal_content_close;
          animation-name: modal_content_close;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.screen-modal-overlay .close-modal-button {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: transparent url("../graphics/close-modal-icon.svg") no-repeat center center/auto 30px;
}

@-webkit-keyframes modal_content_open {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes modal_content_open {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes modal_content_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
}
@keyframes modal_content_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
}
@-webkit-keyframes modal_overlay_open {
  0% {
    opacity: 0;
    left: 0;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes modal_overlay_open {
  0% {
    opacity: 0;
    left: 0;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-webkit-keyframes modal_overlay_close {
  0% {
    opacity: 1;
    left: 0;
  }
  99% {
    opacity: 0;
    left: 0;
  }
  100% {
    left: -300dvw;
  }
}
@keyframes modal_overlay_close {
  0% {
    opacity: 1;
    left: 0;
  }
  99% {
    opacity: 0;
    left: 0;
  }
  100% {
    left: -300dvw;
  }
}
.modal-inner {
  background: #fff;
  padding: 10px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 8px;
  color: #0f1054;
}
.modal-inner h2 {
  font-size: 20px;
  padding: 20px 10px 10px 10px;
}
.modal-inner p {
  padding: 10px 10px 30px 10px;
}
.modal-inner .buttons-wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 10px;
}
.modal-inner .buttons-wrapper .button {
  padding: 13px 10px;
  font-size: 15px;
}

.position-bottom-left,
.position-bottom-right,
.position-bottom-center {
  bottom: 70px;
  top: auto;
  -webkit-transform: none;
          transform: none;
}
.position-bottom-left:after,
.position-bottom-right:after,
.position-bottom-center:after {
  content: "";
  background: #fff;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: -6px;
}

.position-bottom-left:after {
  left: 70px;
}

.position-bottom-right:after {
  right: 70px;
}

.position-bottom-center:after {
  right: calc(50% - 7px);
}

.select-stop-list {
  background: #d2ebfe;
  border-radius: 8px;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  /*.stop-area {
  	position: absolute;
  	top: calc(50% - 60px);
  	left: 20px;
  	right: 20px;
  	height: 60px;
  	background: rgba(255, 255, 255, 0.5);
  }*/
}
.select-stop-list .select-stop-list-header {
  background: #fff;
  color: #0f1054;
  font-weight: 600;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  /*&:before {
  	content: '';
  	background: #fff;
  	width: 20px;
  	height: 20px;
  	transform: rotate(45deg);
  	position: absolute;
  	top: -7px;
  	left: 20px;
  }*/
}
.select-stop-list .select-stop-list-header .previous-stop,
.select-stop-list .select-stop-list-header .close-modal,
.select-stop-list .select-stop-list-header .next-stop {
  padding: 0 0 0 35px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  background: transparent url("../graphics/arrow-left-icon.svg") no-repeat center left 20px/auto 10px;
}
.select-stop-list .select-stop-list-header .close-modal {
  background-image: none;
  text-align: center;
  padding: 0;
}
.select-stop-list .select-stop-list-header .next-stop {
  padding: 0 35px 0 0;
  text-align: right;
  background-image: url("../graphics/arrow-right-icon.svg");
  background-position: center right 20px;
}
.select-stop-list .select-stop-list-items-wrapper {
  position: relative;
  height: calc(100% - 50px);
}
.select-stop-list .select-stop-list-items {
  height: 100%;
  font-size: 22px;
}
.select-stop-list .select-stop-list-items .select-stop-list-item {
  padding: 15px;
  margin: 0 20px;
}
.select-stop-list .select-stop-list-items:before, .select-stop-list .select-stop-list-items:after {
  height: calc(50vh - 90px);
}

.select-stop-list-items {
  text-align: center;
  color: #0f1054;
  font-size: 19px;
  overflow: auto;
  background: #d2ebfe;
}
.select-stop-list-items:before, .select-stop-list-items:after {
  content: "";
  height: 2vh;
  display: block;
}
.select-stop-list-items .select-stop-list-item {
  padding: 10px;
  margin: 0 15px;
  border-radius: 8px;
  cursor: pointer;
}
.select-stop-list-items .select-stop-list-item.final-stop, .select-stop-list-items .select-stop-list-item.disabled {
  opacity: 0.5;
  font-style: italic;
}
.select-stop-list-items .select-stop-list-item.selected {
  background: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.page-end-trip {
  text-align: center;
}
.page-end-trip h1 {
  font-size: 22px;
  margin-bottom: 15px;
}
.page-end-trip .end-trip-summary {
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1055;
  margin-bottom: 20px;
}
.page-end-trip .end-trip-summary h2 {
  padding: 10px 0;
}
.page-end-trip .end-trip-summary .numbers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
}
.page-end-trip .end-trip-summary .numbers > div {
  background: #141c85;
  padding: 25px 0 30px 0;
}
.page-end-trip .end-trip-summary .numbers .value {
  font-size: 52px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-end-trip .end-trip-rating {
  background: #a1c9e8;
  border-radius: 10px;
  color: #0f1055;
  padding: 20px;
  margin-bottom: 20px;
}
.page-end-trip .end-trip-rating .stars {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  max-width: 250px;
  margin: 15px auto 0 auto;
}
.page-end-trip .end-trip-rating .stars .star {
  text-align: center;
  opacity: 0.2;
  cursor: pointer;
}
.page-end-trip .end-trip-rating .stars .star.selected {
  opacity: 1;
}
.page-end-trip .end-trip-rating .stars .star span {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("../graphics/star-icon.svg") no-repeat center center/auto 35px;
}
.page-end-trip .end-trip-comment textarea {
  background: #fff;
  border-radius: 10px;
  text-align: left;
  width: 100%;
  display: block;
  padding: 20px;
  height: 65px;
}
@media screen and (min-height: 615px) {
  .page-end-trip .end-trip-comment textarea {
    height: calc(100dvh - 557px);
  }
}