.trip-header {
  padding: 50px 0;
}

.trip-header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.trip-header .default-block {
  padding: 0;
}

.trip-images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 600px;
  margin: 0 30px 0 0;
}

.trip-images .trip-image {
  border-radius: 3px;
}

.trip-details > h1 {
  margin: 0 0 30px 0;
}

.trip-details > h6 {
  margin: 0 0 30px 0;
}

.trip-details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 30px 0;
  padding: 0;
}

.trip-details-list li {
  width: 50%;
  display: block;
  margin: 0 0 15px 0;
}

.trip-details-list li:last-child {
  margin: 0;
}

.trip-details-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 30px 0;
  padding: 0;
}

.trip-details-actions li {
  width: 50%;
  display: block;
  margin-bottom: 15px;
}

.trip-details-actions li a {
  max-width: 300px;
  display: block;
  padding: 30px 30px 30px 80px;
  background-repeat: no-repeat;
  background-position: 25px 50%;
  background-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
  border-top: solid 1px #ddd;
}

.trip-details-actions li.action-file a {
  background-image: url(../images/file.svg);
}

.trip-details-actions li.action-question a {
  background-image: url(../images/email.svg);
}

@media(max-width: 1199px) {
  .trip-header {
    padding: 25px 0;
  }

  .trip-images {
    max-width: 460px;
    margin-right: 20px;
  }

  .trip-details > h1,
  .trip-details-list,
  .trip-details > h6 {
    margin: 0 0 15px 0;
  }

  .trip-details-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .trip-details-actions li {
    width: 100%;
    margin: 0;
  }

  .trip-details-actions li a {
    padding: 15px 15px 15px 50px;
    background-position: 15px 50%;
    background-size: 25px;
  }
}

@media(max-width: 992px) {
  .trip-header > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .trip-images {
    max-width: 100%;
    margin: 0 0 30px 0;
  }

  .trip-details-list li {
    width: 100%;
  }

  .trip-details-actions li a {
    padding: 15px 15px 15px 35px;
    border: none;
    background-position: 0 50%;
  }
}