/*
 * Multitabs (tabs + accordion)
*/
.multitabs {
    margin: 32px 0 0 0;
    padding: 0;
    list-style: none;
    height: 32px;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
}
.multitabs li {
    font-size: 1em;
    text-transform: uppercase;
    color: #CCCCCC;
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 0px 21px;
    height: 31px;
    line-height: 31px;
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    overflow: hidden;
    position: relative;
}
.multitab-last {
    border-right: 1px solid #e4e4e4;
}
.multitabs li:hover {
    background-color: #ffffff;
    color: #1446A0;
}
.multitabs li.active {
    background-color: #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    display: block;
}
.multitab-container {
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}
.multitab-content {
    padding: 0;
    display: none;
}
.multitab-content img {
    max-width: 100%;
    height: auto;
}

.multitab-drawer-heading,
.page-customise .multitab-drawer-heading {
    font-size: 1em;
    /* text-transform: uppercase;*/
    color: #1446A0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    background-color: #f8f8f8;
    border: 1px solid #e4e4e4;
    margin: 12px 0 0 0;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.multitab-drawer-heading:hover {
    background-color: #ffffff;
}
.multitab-drawer-heading:after {
    font-family: "FontAwesome";
    content: "\f078";
    float: right;

    -webkit-transition: all 300ms 0s ease-in-out;
    transition: all 300ms 0s ease-in-out;
}
.multitab-drawer-heading.multitab-active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.multitab-active {
    background-color: #f8f8f8;
    color: #1446A0;
}
.page-payment .multitab-drawer-heading,
.page-customise .multitab-drawer-heading {
    display: none;
}

.multitabs,
.page-customise .multitabs {
    display: none;
}

.holiday-details #accommodation,
.holiday-details #accommodation h1,
.holiday-details #facilities,
.holiday-details #facilities h1,
.holiday-details #resort,
.holiday-details #resort h1 {
    border-top: none;
}


@media screen and (max-width: 480px) {

    /* Accordion Payment Page */
    .page-payment .multitab-drawer-heading,
    .page-customise .multitab-drawer-heading {
        display: block;
    }
    .multitab-container {
        clear: both;
        float: none;
    }
}
