﻿html, body {
    background-color: #eee;
    box-sizing: border-box;
    font-size: 62.5%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #eee;
    color: black;
    font-family: sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: auto;
}


*, *:before, *:after {
    box-sizing: inherit;
}

button {
    cursor: pointer;
    height: 2.5rem;
    margin-left: 4px;
    vertical-align: middle;
    padding: 0 12px;
    white-space: nowrap;
}

input, select {
    height: 2.5rem;
    line-height: 2.5rem;
    vertical-align: middle;
    margin-left: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

dd, dt, dl, ol, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
    margin-bottom: 2.5rem;
    border-collapse: separate;
    border-spacing: 5px;
}

th, td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
    white-space: nowrap;
}

    th:first-child, td:first-child {
        padding-left: 0;
    }

    th:last-child, td:last-child {
        padding-right: 0;
    }

.box {
    background-color: rgb(245, 245, 245);
    border-color: #E7E7E7;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset;
    padding: 7px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    margin: 0;
    min-height: 20px;
    overflow: auto;
}

.header-logo {
    max-width: 100%;
}

.panels {
    display: block;
    width: 100%;
}

.panel {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    width: 100%;
}

.panel-header {
    background-color: #63666A;
    border-radius: 6px;
    box-shadow: inset 0px 0px 0px 4px rgba(0,0,0,0.1);
    padding: 10px;
    color: white;
    margin: 0;
    font-weight: 400;
}

.panel-content {
    margin: 3px;
    padding: 15px;
    overflow: hidden;
}

.panel-item {
    margin: 0 0 20px 0;
}

    .panel-item:last-child {
        margin: 0;
    }

.panel-footer {
    padding: 0 15px 15px 15px;
    overflow: hidden;
    text-align: right;
}

.footer {
    color: #999;
    padding: 0 20px;
    font-size: small;
}

.modal {
    align-items: center;
    background-color: rgba(169,169,169, 0.7);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 98;
}

.modal-content {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    margin: auto;
    min-width: 200px;
    z-index: 999;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    padding: 1.6rem;
}

.modal-body {
    font-size: 1.6rem;
    margin: 0;
    padding: 1.6rem;
}

.progress {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    margin: auto;
    max-width: 600px;
    padding: 1.6rem;
}

.progress-header {
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
}

.progress-bar {
    animation: progress-bar-stripes 2s linear infinite;
    background-color: #428bca;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    height: 20px;
    line-height: 20px;
    transition: width 0.6s ease;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.cookiejar {
    background: rgba(0,106,161, 0.5);
    border-radius: 5px;
    bottom: 0;
    left: 0;
    padding: 7px;
    position: fixed;
    width: 350px;
    z-index: 100;
}

.cookiejar-button {
    background-color: #78Be20;
    float: right;
}

.menu-item {
    background-color: #333;
    clear: both;
    color: white;
    display: block;
    float: right;
    padding: 15px;
    width: 100%;
}

.menu {
    background-color: rgba(169,169,169, 0.7);
    height: 100vh;
    right: 0px;
    position: absolute;
    top: 0px;
    width: 100vw;
    z-index: 99;
}

.menu-button {
    clear: both;
    position: relative;
    float: right;
    height: 38px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 0px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
}

    .menu-button:hover {
        background-color: #888;
    }

.menu-button-bar {
    background-color: #333;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin-bottom: 4px;
}

.advertisement-image {
    width: 100%;
}

.segment-header {
    background-color: #999;
    font-weight: bold;
    font-size: 1rem;
    padding: .2em .6em .4em;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    display: inline;
}

.segment-items {
    display: flex;
    margin-bottom: 10px;
}

.segment-item {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.segment-item-header {
    vertical-align: top;
    display: inline-block;
    width: 33.33%;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.segment-item-description {
    display: inline-block;
    width: 66.66%;
    margin: 0
}

.passenger-item {
    margin-bottom: 4px;
}

.passenger-item-header {
    display: inline-block;
    width: 33%;
    white-space: nowrap;
}

.passenger-item-value, .passenger-item-input {
    display: inline-block;
    width: 67%;
}

.passenger-item-value {
    font-weight: bold;
}


.booking-item {
    margin-bottom: 4px;
}

.booking-item-header {
    display: inline-block;
    width: 33%;
    white-space: nowrap;
}

.booking {
    width: 100%;
}

td .passenger-item-value, td .passenger-item-input {
    display: block;
    width: auto;
}

td .passenger-item-input-number {
    width: 70px;
}


td .passenger-item-value {
    font-weight: normal;
}

.passenger-item-inputlist {
    vertical-align: top;
}

.passenger-item-inputitem {
    display: inline-block;
    margin-right: 1rem;
}

.passenger-item-description {
    color: #828282;
    font-size: small;
    width: 67%;
    margin-left: 33%;
}

.booking-item-description {
    color: #828282;
    font-size: small;
    width: 67%;
    margin-left: 33%;
}


.day, .month {
    margin-right: 4px;
}

.year {
    width: 60px;
}

.btn {
    background-color: #3276b1;
    border: 1px solid transparent;
    border-color: #285e8e;
    border-radius: 4px;
    color: #fff;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    user-select: none;
}

    .btn:hover {
        opacity: 0.85;
    }

    .btn:focus {
        border-color: black;
    }

    .btn[disabled] {
        color: #ddd;
        cursor: default;
        opacity: 0.85;
    }
.external-itinerary-container{
    text-align:center;
}

.document {
    padding: 5px 0;
}

.document-description {
    display: inline-block;
    width: 50%;
}

.document-button {
    display: inline-block;
    text-align: right;
    width: 50%;
}

.payment-header, .payment-item {
    width: 50%;
    display: inline-block;
}

.payment-link {
    text-align: right;
}

.strong {
    font-weight: bold;
}

.languages {
    text-align: right;
}

.login {
    max-width: 768px;
    margin: auto;
}

.login-description {
    font-size: 1rem;
    color: #63666A;
    margin-bottom: 20px;
}

.login-header {
    color: #777;
    font-size: 1.33rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.login-email, .login-button, .logout-button {
    display: block;
    height: 4rem;
    margin-bottom: 10px;
    margin-left: 0;
    padding: 10px;
    width: 100%;
}

.login-button, .logout-button {
    font-size: 1.1rem;
}

.login-form {
    max-width: 330px;
    margin: auto;
}

.logout-button {
    max-width: 330px;
    margin:auto;
}

.text-right {
    text-align: right;
}

.map-content {
    height: 400px;
}

.error {
    background-color: #d9534f;
    color: white;
}

.success {
    background-color: lightgreen;
    color: darkgreen;
}


.agency-message, .agency-address {
    padding: 19px;
}

.address-name {
    font-weight: bold;
}

.agency-address-label {
    width: 20%;
    display: inline-block;
}

.address-row {
    height: 1.5rem;
}

.address-newsletter {
    margin-top: 15px;
}

.address-newsletter-button {
}

.message-subject, .message-subject-header, .message-subject-input, .message-body, .message-body-header, .message-body-text {
    display: block;
    width: 100%;
}

.message-body-text {
    height: 100px;
}

.message-button {
    display: block;
    float: right;
    margin-top: 15px;
}

.messagehistory-header {
    font-size: 1rem;
}

.messagehistory {
    width: 100%;
}

.messagehistory-item {
    display: block;
    width: 100%;
    margin: 10px;
}

.messagehistory-item-header {
    border: 1px solid #bce8f1;
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    color: #31708f;
    padding: 10px;
    cursor: pointer;
}

.messagehistory-item-title {
    font-weight: bold;
}

.messagehistory-item-content {
    border: 1px solid #bce8f1;
    color: #31708f;
    padding: 10px;
}

.messagehistory-agencymessage {
    background-color: #d6e9c6;
}

.messagehistory-usermessage {
    background-color: #d9edf7;
}

.invalid {
    box-shadow: 0 0 1.5px 1px red;
}


@media (max-width: 767px) {
    .is-hidden-sm {
        display: none;
    }

    .panel:not(.is-active) {
        display: none;
    }

    .advertisements {
        order: 100;
    }

    .segment-items {
        display: block;
    }
}

@media (min-width: 768px) {
    .menu-item {
        width: 35%;
        position: relative;
        right: 0;
    }

    .mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    body {
        margin: 0 calc(40% - 409.6px);
    }

    .advertisements {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
    }

    .advertisement {
        width: 32%;
    }

    .passengers > .panel-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .passenger {
        width: 48%;
    }

    .documents, .payments, .agency-address, .agency-message {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 8px);
    }

    .payments, .agency-message {
        float: right;
    }

    .right {
        float: right;
    }

    .booking-item-header {
        width: 16%;
    }
}

.flag {
    width: 30px;
}

.color_itinerary {
    background-color: #006ba6;
}

.color_passengers {
    background-color: #00a3ad;
}

.color_grouppassengers {
    background-color: purple;
}

.color_addons {
    background-color: orange;
}

.color_pretrips {
    background-color: #0074A5;
}

.color_upcomingtrips {
    background-color: #00A848;
}

.color_documents {
    background-color: #78Be20;
}

.color_payments {
    background-color: #5e2751;
}

.color_agency {
    background-color: #63666A;
}

.color_messagehistory {
    background-color: #63666A;
}

.color_logout {
    background-color: #d9534f;
    color: white;
}

.color_closemenu {
    background-color: #d9534f;
    color: white;
}

.color_notfound {
    background-color: #0074A5;
    color: white;
}

.fullrow {
    width: 100%;
}

.sharelink {
    border-radius: 10px;
    padding: 20px;
    z-index:100;
}

.menu-item i {
    padding-right: 5px
}

.menu-icon {
    display: inline-block;
    width: 33px;
}
