/* ====================
    Order process
==================== */

.order-form .error {
    border: solid 1px Red;
}

.order-form {
    margin-bottom: 100px;
}

.order-form h2 {
    margin-bottom: -5px;
    margin-top: 10px;
}

.order-form .row {
    margin-bottom: 15px;
}

.processNavigation {
    margin-bottom: 20px;
    height: 30px;
}
.processNavigation li {
    display: block;
    width: 25%;
    float: left;
    background: #f2f6fb;
    border-right: 1px solid #cedbed;
    padding: 3px 10px;
    cursor: pointer;
}
.processNavigation li.active {
    background: rgb(0, 51, 136) !important;
    color: #fff !important;
}
.processNavigation li:hover {
    background: rgb(0, 51, 136);
    color: #fff;
}

.processNavigation li.disabled,
.processNavigation li.disabled:hover {
    background: rgb(237, 237, 237);
    color: #AEAEAE;
    cursor: default;
}

table.tickets thead tr th {
    border-top: 1px dotted #e2e2e2 !important;
    background: transparent;
    color: #969696;
    font-size: 13px;
}
table.tickets th.price,
table.tickets td.price {
    text-align: right;
}
table.tickets tbody tr:last-child td {
    padding-bottom: 20px;
}
table.tickets tfoot tr td {
    border-top: 1px dotted #e2e2e2;
    background: transparent;
    color: #969696;
    font-size: 13px;
    padding-top: 20px;
    vertical-align: bottom;
}
table.tickets tfoot strong {
    font-size: 14px;
    color: #555555;
    font-weight: normal;
}
.no-margin .btn {
    margin-right: 0;
    margin-bottom: 10px;
}
.row.border-box {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px dotted #e2e2e2;
    border-bottom: 1px dotted #e2e2e2;
}

/* ====================
    mobile classes - orderProcess
==================== */



@media screen and (max-width: 768px) {
    .mobile-hidden-xs {
        display: none !important;
    }
    /* mobile table formatting */
    .table-responsive {
        border: none !important;
    }
    #orderProcessPersonalData table,
    #orderProcessFlight table {
        border: none;
    }
    #orderProcessPersonalData table td,
    #orderProcessFlight table td {
        height:100%;
        font-size: 14px;
    }
    #orderProcessPersonalData .table.tickets .mobile-column,
    #orderProcessFlight .table.flightplan .mobile-column {
        padding:0px;
        padding-top: 13px;
        width:100%;
    }
    #orderProcessPersonalData .table.tickets .mobile-column,
    #orderProcessFlight .table.flightplan .mobile-column {
        padding-bottom: 13px;
    }
    #orderProcessPersonalData .mobile-cell--half,
    #orderProcessFlight .mobile-cell--half {
        display: inline-block;
        position: relative;
        padding-left: 8px;
        width: calc(50% - 8px);
    }
    #orderProcessPersonalData .mobile-cell--full,
    #orderProcessFlight .mobile-cell--full {
        width: 100%;
        position: relative;
        padding-left: 8px;
    }
    #orderProcessFlight .mobile-cell--35 {
        display: inline-block;
        position: relative;
        vertical-align: top;
        padding: 8px 0px 8px 8px;
        width: calc(35% - 8px);
    }
    #orderProcessFlight .mobile-cell--65 {
        display: inline-block;
        position: relative;
        vertical-align: top;
        padding: 8px 0px 8px 8px;
        width: calc(65% - 8px);
    }
    /* border styles */
    #orderProcessPersonalData .table.tickets .mobile-column {
        border-top: 1px dotted #e2e2e2 !important;
    }
    /* orderProcessFlightSelection spezielle anpassungen */
    #orderProcessFlight .mobile-cellinfo {
        display: block;
        font-size: 13px;
        color: #969696;
    }
    #orderProcessFlight .table.tickets input[type=text]{
        width: 91%;
        float: right;
    }
    /*remove after layout is done*/
    #orderProcessFlight .table .col-sm-4{
        height: 48px !important;
    }

    #orderProcessFlight .ng-scope h3{
        margin-top: 80px;
    }
    #orderProcessPayment.ng-scope .table>tfoot>tr>td.info{
        background: transparent !important;
    }


}
@media screen and (min-width: 769px) {
    .mobile-visible-xs {
        display: none !important;
    }
}

.giftbox_info_popover {
    position: relative;
}

.giftbox_info_popover .info_popover {
    z-index: 9000;
    pointer-events: none;
    opacity: 0;
    transition: 300ms all;
    position: absolute;
    bottom: calc(100% + 15px);
    background-color: #fff;
    box-shadow: 0px 3px 4px rgba(0,0,0,0.1);
    padding: 15px;
    width: 400px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giftbox_info_popover .info_popover:after {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136,183,213,0);
    border-width: 15px;
    margin-top: -15px;
    left: 30px;
    bottom: -30px;
    border-top-color: #fff;
}

.giftbox_info_popover .info_popover:before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136,183,213,0);
    border-width: 19px;
    margin-top: -15px;
    left: 26px;
    bottom: -41px;
    border-top-color: rgba(0,0,0,0.1);
    -webkit-filter: blur(2px);
}

.giftbox_info_popover .info_popover img {
    margin: 0 10px;
}

.giftbox_info_popover.open .info_popover {
    opacity: 1;
    pointer-events: all;
}

.giftbox_info_popover.open .info_popover .info_popover_control {
    cursor: pointer;
    background-color: rgba(0,0,0, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.presentbox_info_label {
    cursor: pointer;
}

.popover_close_button {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0 15px;
    cursor: pointer;
    background-color: rgba(0,0,0,0, 0.2);
}

@media screen and (max-width: 769px) {
    .giftbox_info_popover .info_popover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        justify-content: space-around;
    }

    .popover_close_button {
        padding: 15px;
    }

    .giftbox_info_popover.open .info_popover .info_popover_control {
        padding: 20px;
    }
}
