@font-face {
  font-family: avenir;
  src: url('../assets/fonts/AvenirNextLTPro-Regular.woff');
}

.error-msg {
  display: none;
  color: #FF9900;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#header {
  background-color: #FF9900;
  display: flex;
}

#header .logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

#header .logo img {
  height: 30px;
  width: auto;
}

#header.mobile .logo img {
  height: 20px;
}

#header .nav {
  margin-left: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-family: 'Open Sans';
}

#header.mobile .nav {
  font-size: 8px;
  margin-left: 5px;
}

#header .nav > div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  display: flex;
  color: #CDCDCD;
}

#header .nav > div.complete {
  color: #FFF;
  border-color: #FFF;
}

#header .nav > div .number {
  line-height: 2px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-color: inherit;
  border-radius: 50%;
  margin-right: 5px;
}

#header.mobile .nav > div .number {
  display: none;
}

footer {
  background: #FF9900;
  color: #FFF;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Open Sans Condensed';
}

#settings {
  font-family: 'Open Sans Condensed';
  height: 50px;
  background: #454545;
  color: #B2B2B2;
  display: flex;
}

#settings > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#settings .from {
  flex-basis: 5%;
}

#settings .pickup, #settings .dropoff {
  flex-basis: 20%;
  color: #FFF;
  font-size: 15px;
  font-family: 'Open Sans';
  cursor: pointer;
}

#settings .pickup:hover, #settings .dropoff:hover {
  color: #FF9900;
}

.context-menu-item {
  font-family: 'Open Sans Condensed';
}

.context-menu-item.context-menu-hover {
  background-color: #FF9900 !important;
}

#settings .date-start, #settings .date-end {
  flex-basis: 20%;
  color: #FFF;
  border-left: 1px solid #555;
  border-right: 1px solid #555;
}

#settings .date-start .date, #settings .date-end .date {
  font-size: 45px;
}

#settings .date-start > div, #settings .date-end > div {
  margin-left: 5px;
}

#settings .date-start .day, #settings .date-end .day {
  font-size: 15px;
}

#settings .date-start .month, #settings .date-end .month {
  font-size: 15px;
}

#settings .to {
  flex-basis: 5%;
}

#settings .btn-change {
  flex-basis: 10%;
  display: flex;
  flex-direction: column;
}

#settings .btn-change a {
  color: #FFF;
}

#cars-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  padding-bottom: 0;
}

.car-item {
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans';
  color: #000;
  background: #F1F1F1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  width: 550px;
}

.car-item.unavailable .image img {
  filter: grayscale(1);
}

.car-item.unavailable {
  color: #888;
}

.car-item.unavailable .type .message {
  /* color: #000; */
}

.car-item .type {
  color: #FF9900;
  font-size: 15px;
  padding: 20px;
  padding-bottom: 0;
  height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.car-item .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  padding-bottom: 0;
}

.car-item .model {
  font-size: 30px;
  font-family: avenir;
}

.car-item .price {
  font-size: 20px;
}

.car-item .price > span {
  font-size: 17px;
}

.car-item .label {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  padding-top: 0;
}

.car-item .image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  height: 230px;
}

.car-item .image img {
  /* width: 100%; */
  /* height: auto; */
  height: 100%;
  width: auto;
}

.car-item .specs {
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  padding: 25px;
}

.car-item .specs > div {
  flex-basis: 33.33%;
  display: flex;
  padding: 5px 0;
}

.car-item .specs > div img {
  margin-right: 10px;
  margin-left: 20px;
}

@keyframes move-left {
  from {
    margin-left: 0;
    width: 50px;
  }
  to {
    margin-left: 7.5px;
    width: 42.5px;
  }
}
@keyframes move-right {
  from {
    margin-right: 0;
    width: 50px;
  }
  to {
    margin-right: 7.5px;
    width: 42.5px;
  }
}

.btn-choose {
  display: inline-flex;
  justify-content: center;
  background: #FF9900;
  color: #FFF;
  font-size: 20px;
  padding: 15px;
  font-family: 'Open Sans Condensed';
  width: 520px;
  cursor: pointer;
}

.btn-choose span {
  font-size: 14px;
  line-height: 28px;
}

#user-details, #car-details {
  background: #F1F1F1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  width: 800px;
  padding: 30px;
  margin-bottom: 30px;
}

#user-details {
  margin-top: 30px;
}

#user-details .label-title, #car-details .label-title {
  color: #FF9900;
  font-family: 'Open Sans Condensed';
  font-size: 22px;
}

#user-details .details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

#user-details .details > div {
  display: flex;
  flex-direction: column;
  margin: 7px 0;
}

#user-details .details > div .label {
  font-family: 'Open Sans';
  margin-bottom: 5px;
  font-size: 15px;
}

#user-details .details > div input[type="text"] {
  width: 400px;
  padding: 10px 5px;
  font-size: 16px;
  color: #333;
  font-family: Arial;
  outline: none;
  border: 1px solid #666;
  background-color: #f1f1f1;
  font-family: 'Open Sans';
}

#user-details .details .phonetype {
  flex-direction: row;
  font-size: 10px;
  width: 400px;
}

#user-details .details .phonetype > div {
  margin-right: 20px;
}

#user-details .details .phonetype input {
  margin-right: 5px;
}

#user-details .details > div input:focus {
  background: #FFF;
}

#user-details select {
  width: 300px;
  background: #FFF;
  border: none;
}

#user-details .btn-continue {
  padding: 10px;
  font-family: 'Open Sans Condensed';
  border: 1px solid #FF9900;
  color: #FF9900;
  font-size: 25px;
  background: #F1F1F1;
  display: inline-flex;
  cursor: pointer;
  border-radius: 3px;
}

#user-details .btn-continue:hover {
  background-color: #FF9900;
  color: #FFF;
}

#user-details .btn-continue-spacer {
  width: 1px;
  height: 56px;
  display: none;
}

#car-details .details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#car-details .details .model {
  display: flex;
  font-size: 30px;
  font-family: avenir;
}

#car-details .details .image {
  height: 230px;
}

#car-details .details .image img {
  height: 100%;
  width: auto;
}

#car-details .total-price {
  padding: 10px;
  font-family: 'Open Sans Condensed';
  font-size: 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  /* align-items: center; */
}

#car-details .total-price > div, #car-details .price {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'Open Sans Condensed';
  font-size: 20px;
}

#car-details .total-price .price, #car-details .price .day-price {
  font-size: 25px;
}

#car-details .total-price span, #car-details .day-price span {
  font-size: 20px;
}

#car-details .btn-complete-order {
  padding: 10px;
  font-family: 'Ubuntu Condensed';
  border: 1px solid #FF9900;
  color: #FF9900;
  font-size: 25px;
  background: #F1F1F1;
  display: inline-flex;
  cursor: pointer;
}

#car-details .btn-complete-order:hover {
  background-color: #FF9900;
  color: #FFF;
}

#car-details .btn-complete-order.disabled {
  border-color: #666;
  color: #666;
}

#car-details .btn-complete-order.disabled:hover {
  border-color: #666;
  color: #666;
  background-color: #F1F1F1;
  cursor: not-allowed;
}

#reservation {
  display: flex;
  flex-direction: column;
}

#reservation .page-title {
  font-size: 27px;
  font-family: 'Ubuntu Condensed';
  display: flex;
  padding: 20px 0;
}

#reservation .basic-info {
  display: flex;
  flex-direction: row;
  font-family: 'Open Sans';
  padding: 15px;
  border-top: 1px solid #CCC;
}

#reservation .basic-info > div {
  white-space: nowrap;
  text-align: center;
}

#reservation .basic-info .label-from, #reservation .basic-info .label-to {
  flex-basis: 100px;
  text-align: left;
  font-weight: bold;
}

#reservation .basic-info .pickup, #reservation .basic-info .dropoff {
  width: 250px;
  color: #343434;
}

#reservation .basic-info .date-from, #reservation .basic-info .date-to {
  width: 300px;
  color: #343434;
}

#reservation .car-info {
  border: 1px solid #CCC;
  background: #F1F1F1;
  font-family: 'Open Sans';
}

#reservation .car-info .model {
  font-size: 30px;
  font-family: avenir;
  padding: 20px;
  padding-bottom: 0;
}

#reservation .car-info .type {
  color: #FF9900;
  font-size: 15px;
  padding: 20px;
  padding-bottom: 0;
}

#reservation .car-info .image {
  height: 120px;
  display: flex;
  justify-content: center;
}

#reservation .car-info .image img {
  height: 180%;
  width: auto;
}

#reservation .car-info .carpet {
  width: 100%;
  background-color: #FF9900;
  height: 100px;
}

.payment {
  background: #FFF;
  border: 1px solid #CCC;
  font-family: 'Open Sans';
  margin: 15px 0;
  padding: 20px;
}

.payment .label {
  font-size: 25px;
  color: #333;
  font-family: 'Ubuntu Condensed';
  cursor: pointer;
}

.payment .label span {
  font-size: 17px;
  color: #FF9900;
}

.payment .choice {
  color: #000;
  padding: 10px;
  margin: 10px;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 47px;
  border-radius: 3px;
}

.payment .choice .amount {
  font-size: 35px;
  font-family: 'Open Sans Condensed';
}

.payment .choice.active {
  background: #FF9900;
  color: #FFF;
}

#btn-new-reservation {
  display: table;
  color: #FFF;
  padding: 3px;
  background: #FF9900;
  border: 1px solid #FFF;
  font-size: 13px;
  font-family: 'Open Sans';
  align-self: center;
  margin: 0 20px;
  text-decoration: none;
  cursor: pointer;
}

.label-success {
  color: #FFF;
  align-self: center;
  margin-left: 20px;
  font-family: 'Ubuntu Condensed';
  flex: 1;
}

.datepicker-container {
  font-family: 'Ubuntu Condensed';
}