.hide {
    display: none;
}

/************/
/* Defaults */
/***********/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.ArnCarRentals {
    background: white none 0 0 repeat;
    margin: 0;
    font-size: 15px !important;
    line-height: 1.7em;
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    height: 100%;
}

/*background to fix floating footer*/
.ArnCarRentals.RootBody,
.ArnCarRentals.CancellationPage {
    background-color: var(--color-secondary);
}

.ArnCarRentals.CancellationPage main {
    padding: 25px 0;
    background-color: white;
}

.ArnCarRentals .hidden {
    display: none !important;
}

.ArnCarRentals h1 {
    font-size: 2em;
    margin: 0 0 5px;
}

.ArnCarRentals small,
.ArnCarRentals .small,
.ArnCarRentals h3.small {
    font-size: .9em;
    font-weight: 500;
    color: var(--text-primary);
}

.ArnCarRentals a, .ArnCarRentals a:link, .ArnCarRentals a:hover, .ArnCarRentals a:active, .ArnCarRentals a:focus {
    outline: none;
}

.ArnCarRentals input::-webkit-outer-spin-button,
.ArnCarRentals input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ArnCarRentals input[type=number] {
    -moz-appearance: textfield;
}

.ArnCarRentals textarea,
.ArnCarRentals input[type="text"],
.ArnCarRentals input[type="password"],
.ArnCarRentals input[type="datetime"],
.ArnCarRentals input[type="datetime-local"],
.ArnCarRentals input[type="date"],
.ArnCarRentals input[type="month"],
.ArnCarRentals input[type="time"],
.ArnCarRentals input[type="week"],
.ArnCarRentals input[type="number"],
.ArnCarRentals input[type="email"],
.ArnCarRentals input[type="url"],
.ArnCarRentals input[type="search"],
.ArnCarRentals input[type="tel"],
.ArnCarRentals input[type="color"],
.ArnCarRentals .uneditable-input {
    background-color: white;
    border: 1px solid var(--main-border);
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

.ArnCarRentals input {
    height: 48px;
    text-overflow: ellipsis;
    padding: 5px 10px;
    text-indent: 0;
    font-size: 1em;
}

.ArnCarRentals input:hover, .ArnCarRentals input:focus {
    border: 1px solid var(--color-primary);
}

.ArnCarRentals input::placeholder {
    color: #777;
    font-weight: 300;
}

.IE input[type=checkbox] {
    border: none;
}

.ArnCarRentals .checkbox {
    display: inline;
    height: 14px;
    min-height: 17px;
    width: 14px;
}

.ArnCarRentals input[type="checkbox"] {
    height: 24px;
    width: 24px;
    display: inline;
    float: left;
}

.ArnCarRentals input[type="checkbox"][disabled] {
    background: #818181;
    border: 0 none;
    outline: 0;
    position: relative;
}

.ArnCarRentals input[type="checkbox"][disabled]:before {
    content: "X";
    color: #bbb;
    width: 22px;
    height: 22px;
    font-size: 22px;
    position: absolute;
    left: 5px;
    top: 0;
}

.ArnCarRentals select {
    height: 48px;
    width: 100%;
    padding: 5px;
    background-position: calc(100% - 10px) 50%;
    background-image: url("//media.travsrv.com/appSkins/64/v6/themes/global/skins/images/icons/down-gray.svg?v=3");
    background-repeat: no-repeat;
    background-size: 12px;
    x-webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

.ArnCarRentals .arnHide {
    display: none !important;
}

.ArnCarRentals div.autocomplete {
    top: initial !important;
    left: initial !important;
    top: auto !important;
    left: auto !important;
}

/* Notification Messages */

.ArnCarRentals .FieldError {
    border: 1px solid var(--error-text) !important;
}

.ArnCarRentals .ErrorList {
    background-color: var(--error-background);
    border: 2px solid var(--error-text);
}

.ArnCarRentals .HasError input {
    border: 1px solid var(--error-text);
}

.ArnCarRentals .errors {
    border: 2px solid var(--error-text);
    max-width: 1280px;
    width: 100%;
    margin: 15px auto;
    padding: 15px;
}

.ArnCarRentals .errors li {
    max-width: 1280px;
    margin: 0 auto;
    font-weight: 700;
}

.ArnCarRentals .error label {
    color: var(--error-text);
    font-weight: 700;
}

.ArnCarRentals .error input {
    border: 1px solid var(--error-text);
}

.ArnCarRentals .hasMessages .messages {
    color: green;
    border: 1px solid green;
    background-color: var();
    list-style: none;
}

/* Main Content */

.ArnCarRentals .content-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    margin: 50px auto;
}

@media only screen and (max-width: 1280px) {
    .ArnCarRentals .content-container {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 800px) {
    .ArnCarRentals {
        background-color: white;
    }

    .ArnCarRentals .content-container {
        margin: 0 auto;
    }
}

/* Maintence */

.ArnCarRentals.MaintenanceBody {
    background-color: var(--light-background)
}

.ArnCarRentals.MaintenanceBody .maintenance.content-container {
    margin: 150px auto 15%;
    padding: 30px;
    background: white;
    border: 5px solid rgba(0, 0, 0, .05);
}

/**********/
/* Header */
/**********/

.ArnCarRentals #header.enterpriseHeader {
    position: static;
}

.ArnCarRentals .languageContainer,
.ArnCarRentals .enterpriseHeader .languageContainer {
    display: inline-block !important;
}

@media only screen and (max-width: 1280px) {
    .ArnCarRentals .container {
        max-width: 90%;
    }
}

/***************/
/* Root Search */
/***************/

.ArnCarRentals .root-search {
    padding: 200px 0;
    background-size: cover;
    background-position: center;
}

.ArnCarRentals .root-search h1 {
    width: 100%;
    margin: 0 0 15px;
}

.ArnCarRentals select {
    width: 100%;
    padding: 5px;
}

.ArnCarRentals .modify-search .search-container {
    background-color: transparent;
    padding: 0;
    margin: 0 auto;
}

.ArnCarRentals .search-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, .95);
    padding: 20px;
    max-width: 1280px;
}

.ArnCarRentals .search-container div {
    width: 16%;
    margin: 0 .5% 0 0;
    margin-top: auto;
    position: relative;
}

.ArnCarRentals .search-container div.keyword-pick-up-text, .ArnCarRentals .search-container div.keyword-drop-off-text {
    width: 23%;
    position: relative;
}

.ArnCarRentals ul.ui-autocomplete {
    z-index: 1;
    background-color: white;
    border: 1px solid var(--color-primary);
    border-top-color: var(--color-primary);
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: var(--color-primary);
    border-top-style: solid;
    border-top-width: 1px;
    padding: 15px;
    margin: 0;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, .175);
    border-top: 4px solid var(--color-primary);
    position: absolute !important;
}

.ArnCarRentals ul.ui-autocomplete li {
    list-style: none;
}

.ArnCarRentals ul.ui-autocomplete li:hover {
    background-color: var(--main-border);
}

.ArnCarRentals ul.ui-autocomplete li span {
    color: black;
    display: block;
    cursor: pointer;
}

.ArnCarRentals ul.ui-autocomplete li span:hover {
    border: none;
}

.ArnCarRentals .search-container div.pick-up-date-search, .ArnCarRentals .search-container div.drop-off-date-search {
    width: 12%;
}

.ArnCarRentals .search-container div.pick-up-time, .ArnCarRentals .search-container div.drop-off-time {
    width: 10%;
}

.ArnCarRentals .search-container select {
    font-weight: 700;
}

.ArnCarRentals .search-container button {
    margin-top: auto;
}

.ArnCarRentals .search-container .btn {
    width: 7%;
}

@media only screen and (min-width: 500px) {
    .ArnCarRentals .search-container div.pick-up-date-search, .ArnCarRentals .search-container div.drop-off-date-search {
        margin: 0;
    }

    .ArnCarRentals .search-container div.pick-up-time select, .ArnCarRentals .search-container div.drop-off-time select {
        border-left: none;
    }

    .ArnCarRentals .search-container .btn {
        width: 8%;
    }
}

@media only screen and (max-width: 1200px) {
    .ArnCarRentals .modify-search .search-container {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 1200px) {
    .ArnCarRentals .search-container div.keyword-pick-up-text, .ArnCarRentals .search-container div.keyword-drop-off-text {
        width: 49.5%;
        margin: 0;
    }

    .ArnCarRentals .search-container div.keyword-pick-up-text {
        margin: 0 .5% 0 0;
    }

    .ArnCarRentals .search-container div.pick-up-date-search, .ArnCarRentals .search-container div.drop-off-date-search {
        width: 25%;
    }

    .ArnCarRentals .search-container div.pick-up-time, .ArnCarRentals .search-container div.drop-off-time {
        width: 17%;
    }

    .ArnCarRentals .search-container .btn {
        width: 14%;
    }
}

@media only screen and (max-width: 500px) {
    .ArnCarRentals .root-search {
        padding: 60px 0;
    }

    .ArnCarRentals .search-container div.keyword-pick-up-text, .ArnCarRentals .search-container div.keyword-drop-off-text {
        width: 100%;
        margin: 0;
    }

    .ArnCarRentals .search-container div.pick-up-date-search, .ArnCarRentals .search-container div.drop-off-date-search {
        width: 48%;
        margin: 0 2% 0 0;
    }

    .ArnCarRentals .search-container div.pick-up-time, .ArnCarRentals .search-container div.drop-off-time {
        width: 50%;
        margin: 0;
    }

    .ArnCarRentals .search-container .btn {
        width: 100%;
        margin: 0;
    }

    .ArnCarRentals .search-container div {
        margin-bottom: 10px !important;
    }
}

@media only screen and (min-width: 500px) {
    .ArnCarRentals .search-container h2, .ArnCarRentals .modify-search h2 {
        display: none;
    }

    .ArnCarRentals .search-container div.pick-up-time label, .ArnCarRentals .search-container div.drop-off-time label {
        xdisplay: none !important;
        color: transparent;
        background-color: transparent !important;
    }
}

.ArnCarRentals .search-container h2 {
    width: 100%;
    margin: 0 0 15px;
}

/* Loading */

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.animated-background {}

.ArnCarRentals .loading .thumbnail,
.ArnCarRentals .loading a .details h2,
.ArnCarRentals .loading .details div,
.ArnCarRentals .loading .rate-details {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    margin: 0 0 5px 0;
    width: 100%;
    height: 20px;
    font-size: 0;
    border: none;
}

.ArnCarRentals .loading .thumbnail {
    width: 17%;
    height: 150px;
    margin: 15px 40px;
    border-radius: 50%;
}

.ArnCarRentals .loading .details reviews {
    width: 50%;
}

.ArnCarRentals .loading .details .description {
    height: 125px;
    max-height: 125px;
}

.ArnCarRentals .loading .details div.car-specifics {
    background: transparent;
}

.ArnCarRentals .loading .details div.bags, .ArnCarRentals .loading .details div.passengers {
    width: 25%;
    display: inline-block;
    margin: 0 1% 0 0;
}

.ArnCarRentals .loading .rate-details {
    height: 98px;
    width: 15%;
    margin: 38px 0 0 1%;
}

.ArnCarRentals .loading .results-top,
.ArnCarRentals .loading small,
.ArnCarRentals .loading img,
.ArnCarRentals .loading .details svg,
.ArnCarRentals .loading .on-airport,
.ArnCarRentals .loading .lowestValue {
    display: none;
}

@media only screen and (max-width: 500px) {
    .ArnCarRentals .loading .details div.bags, .ArnCarRentals .loading .details div.passengers {
        width: 25%;
        display: inline-block;
        margin: 0 2% 0 0;
    }

    .ArnCarRentals .loading .thumbnail {
        width: 50%;
        height: 150px;
        margin: 0;
        border-radius: 0;
    }

    .ArnCarRentals .loading .rate-details {
        height: 40px;
        width: 100%;
        margin: 15px 0 0 1%;
    }
}

/******************/
/* Search Results */
/******************/

@media only screen and (max-width: 1000px) {
    .opaque {
        overflow: hidden;
        height: 100%;
    }

    .ArnCarRentals #theCarList:after {
        content: "";
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 0;
        position: fixed;
        top: 0;
        left: 0;
        transition: all 0.3s ease-out 0s;
    }

    .ArnCarRentals.opaque #theCarList:after {
        background-color: rgba(0, 0, 0, .7);
        height: 100%;
    }
}

/* Modify Search */

.ArnCarRentals section.modify-search {
    background-color: var(--modify-background);
    padding: 25px 0;
    border-bottom: 1px solid var(--main-border);
}

@media only screen and (min-width: 500px) {
    .ArnCarRentals section.modify-search .search-container label {
        background-color: var(--modify-background);
        margin: 0 0 -5px 5px;
        display: inline-block;
        padding: 0;
        position: relative;
        line-height: 1;
        font-size: .9em;
    }
}

@media only screen and (max-width: 800px) {
    .ArnCarRentals section.search-results {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 500px) {
    .modify-search h2 {
        margin: 0;
        font-size: 1.2em;
        text-align: center;
    }

    .modify-search h2 svg {
        width: 18px;
        margin: 0 0 0 5px;
    }
}

/* Left Filters */

.ArnCarRentals section.filters {
    max-width: 25%;
    border-right: 1px solid var(--main-border);
    flex: 0 0 25%;
    padding: 0 15px 0 0;
    transition: all 0.3s ease-out 0s;
}

.ArnCarRentals section.filters .title {
    font-size: 1.4em;
    font-weight: 700;
    padding: 0 0 5px;
}

.ArnCarRentals section.filters .secondary-label {
    color: var(--text-light);
    font-size: .9em;
    font-weight: 300;
}

.ArnCarRentals section.filters .filter-category {
    padding: 15px 0;
    border-top: 1px solid var(--main-border);
}

.ArnCarRentals section.filters .filter-category .title {
    font-size: 1.2em;
}

.ArnCarRentals section.filters .filter-category .secondary-label {
    float: right;
}

.ArnCarRentals section.filters .filter-category label {
    xmargin: 0 0 0 5px;
}

@media only screen and (max-width: 1000px) {

    /* Mobile Filters */

    .ArnCarRentals section.filters {
        width: 80%;
        flex: 0;
        position: fixed;
        background-color: white;
        z-index: 9;
        left: -81%;
        top: 65px;
        border: 1px solid var(--main-border);
        padding: 15px 15px;
        box-shadow: 2px 1px 6px -1px rgba(0, 0, 0, 0);
        max-width: 80%;
        height: 90%;
    }

    .ArnCarRentals section.filters.open {
        left: -1px;
        box-shadow: 2px 1px 6px -1px rgba(0, 0, 0, .2);
    }

    .ArnCarRentals section.filters .toggle {
        position: absolute;
        right: -41px;
        background-color: var(--light-background);
        color: white;
        padding: 10px 6px;
        border-radius: 0 5px 5px 0;
        top: -1px;
        border: 1px solid var(--main-border);
        box-shadow: 3px 3px 4px -2px rgba(0, 0, 0, .2);
        transition: all 0.3s ease-out 0s;
    }

    .ArnCarRentals section.filters.open .toggle {
        right: -1px;
        border-radius: 0;
        box-shadow: 3px 3px 4px -2px rgba(0, 0, 0, 0);
    }

    .ArnCarRentals .toggle #FilterIcon {
        width: 18px;
        margin: 0 5px 0 0;
    }

    .ArnCarRentals .toggle #FilterIcon path {
        fill: #666;
    }

    .ArnCarRentals section.filters .filterWrap {
        height: 95%;
        overflow: scroll;
        border: 2px solid #ddd;
        xbox-shadow: inset 0px 0px 4px rgba(0, 0, 0, .2);
        padding: 10px;
    }
}

/* Top Right Sort Controls */

.ArnCarRentals section.car-list {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 0 0 15px;
}

.ArnCarRentals .results-count {
    display: inline-block;
    max-width: 50%;
}

.ArnCarRentals .SortBy {
    float: right;
}

.ArnCarRentals .SortBy label {
    margin: 6px 5px 0 0;
    display: none;
}

.ArnCarRentals .sortBy select {
    width: 175px;
    height: 40px;
}

@media only screen and (max-width: 1000px) {
    .ArnCarRentals section.car-list {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .ArnCarRentals section.filters .filter-category:first-child {
        border: none;
    }
}

@media only screen and (max-width: 500px) {
    .ArnCarRentals .ArnPagerResult {
        max-width: 57%;
        width: 100%;
        vertical-align: middle;
    }

    .ArnCarRentals .results-count {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .ArnCarRentals .SortBy {
        width: 50%;
        vertical-align: middle;
        float: none;
        display: block;
        z-index: 0;
        text-align: right;
        margin: 0 auto 20px;
    }

    .ArnCarRentals .SortBy select {
        width: 100%;
    }

    .ArnCarRentals .SortBy label {
        display: none;
    }

    .ArnCarRentals .SortBy div {
        width: 100%;
    }
}

/* Search Results */

.ArnCarRentals .car-detail {
    border: 1px solid var(--color-secondary);
    border-left: 4px solid var(--color-secondary);
    margin: 0 0 15px;
    padding: 0;
    box-shadow: 0px 5px 4px -4px rgba(0, 0, 0, 0);
    transition: all 0.3s ease-out 0s;
}

.ArnCarRentals.SearchResults .car-detail:hover {
    border: 1px solid var(--text-light);
    border-left: 4px solid var(--text-light);
    box-shadow: 0px 5px 4px -4px rgba(0, 0, 0, .5);
}

.ArnCarRentals .details-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
}

.ArnCarRentals .thumbnail {
    width: 25%;
    position: relative;
    padding: 0 20px 0 0;
    vertical-align: middle;

    text-align: center;
}

.ArnCarRentals .thumbnail img {
    width: 100%;
    vertical-align: middle;
    margin: auto 0;
    transition: all 0.3s ease-out 0s;
}

.ArnCarRentals.SearchResults .car-detail:hover .thumbnail img {
    width: 104%;
}

.ArnCarRentals .details {
    width: 58%;
    xpadding: 15px;
}

.ArnCarRentals .details h2 {
    margin: 0;
}

.ArnCarRentals a .details h2 {
    font-size: 1.5em;
    color: black;
}

.ArnCarRentals .car-specifics div {
    color: var(--text-primary);
    display: inline;
    font-size: .9em;
    margin: 0 10px 0 0;
}

.ArnCarRentals .car-specifics span {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    display: inline-block;
}

.ArnCarRentals .extra-detail {
    display: inline-block;
    width: 100%;
    background-color: var(--light-background);
    margin: 10px 0 0;
    padding: 5px;
    font-size: .85em;
}

.ArnCarRentals .extra-detail span {
    display: inline-block;
    padding: 0 5px;
    color: var(--text-primary);
    font-size: .9em;
}

.ArnCarRentals .extra-detail span.on-airport {
    background-color: var(--color-secondary);
    color: white;
    border-radius: 15px;
    line-height: 1;
    padding: 3px 8px 5px;
}

.ArnCarRentals .extra-detail span.off-airport {
    background-color: var(--color-secondary);
    color: white;
    border-radius: 15px;
    line-height: 1;
    padding: 3px 8px 5px;
}

.ArnCarRentals .extra-detail img {
    width: 100%;
    height: 20px;
}

@media only screen and (max-width: 500px) {
    .ArnCarRentals .car-detail {
        padding: 10px 15px;
    }
}

/* Rates */

.ArnCarRentals .rate-details {
    width: 17%;
    position: relative;
}

.ArnCarRentals .percent-savings {
    background-color: #fbdfdf;
    color: #e64142;
    text-align: center;
    width: 100%;
    max-width: 100%;
    border: none;
    margin: 0 0 10px 0;
}

.ArnCarRentals .retail-rate, .ArnCarRentals .traveler-rate {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.1em;
}

.ArnCarRentals .traveler-rate {
    font-size: 1.7em;
    font-weight: 700;
}

.ArnCarRentals .retail-rate span, .ArnCarRentals .traveler-rate span {
    width: 100%;
    text-align: left;
    color: var(--text-primary);
}

.ArnCarRentals .retail-rate span {
    color: var(--main-discount);
    font-weight: 300;
    text-decoration: line-through;
}

.ArnCarRentals .retail-rate span:first-child, .ArnCarRentals .traveler-rate span:first-child {
    display: none;
}

.ArnCarRentals .rate-details .rate-label:last-child {
    color: var(--main-discount);
}

.ArnCarRentals .incl-taxes-label {
    font-size: 13px;
}

.ArnCarRentals .action {
    text-align: left;
    display: block;
    text-decoration: underline;
}

x.ArnCarRentals .action {
    text-align: center;
    text-decoration: none;
    background-color: var(--color-primary);
    padding: 5px;
    width: 80%;
    margin: 5px 0 10px;
    color: white;
}

.ArnCarRentals .action:hover {
    text-decoration: none;
}

.ArnCarRentals .lowestValue {
    background-color: mediumseagreen;
    color: white;
    font-size: 1em;
    text-align: center;
    padding: 2px 13px;
    margin: 3px 0 0;
    border-radius: 0px 0 0px 0;
    display: none;
}

@media only screen and (max-width: 700px) {
    .ArnCarRentals .details {
        width: 70%;
        padding: 0;
    }

    .ArnCarRentals .rate-details {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .ArnCarRentals .retail-rate {
        display: inline;
        width: initial;
    }

    .ArnCarRentals .retail-rate, .ArnCarRentals .traveler-rate {
        display: inline;
        width: initial;
    }

    .ArnCarRentals .retail-rate span, .ArnCarRentals .traveler-rate span {
        text-align: right;
    }
}

@media only screen and (max-width: 700px) {
    .ArnCarRentals .car-detail {
        padding: 0;
    }

    .ArnCarRentals .details {
        width: 100%;
        padding: 0 10px;
    }

    .ArnCarRentals a .details h2 {
        margin: 5px 0 0;
        font-size: 1.2em;
    }

    .ArnCarRentals .thumbnail {
        width: 50%;
        padding: 0;
    }

    .ArnCarRentals .rate-details {
        width: 100%;
        text-align: right;
        padding: 0 10px;
    }

    .ArnCarRentals .retail-rate span, .ArnCarRentals .traveler-rate span {
        text-align: right;
    }

    .ArnCarRentals .retail-rate, .ArnCarRentals .traveler-rate {
        display: inline;
        width: 100%;
    }

    .ArnCarRentals .rate-label {
        display: block;
    }

    .ArnCarRentals .action {
        text-align: right;
        display: none;
    }
}

/* Pagenation */

.ArnCarRentals .pages a, .ArnCarRentals .pages span {
    text-decoration: none;
    margin: 0 5px;
}

@media only screen and (max-width: 1000px) {
    .ArnCarRentals section.search-results {
        position: relative;
    }
}

/***************/
/* Checkout Page */
/***************/

.CheckoutPage {
    background-color: var(--light-background);
}

.ArnCarRentals .back-to-results,
.ArnCarRentals .back-to-results:hover {
    transition: color 0.2s linear, background-color 0.2s linear;
}

.ArnCarRentals .back-to-results {
    margin: 0 0 15px;
    display: inline-block;
    width: auto;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    background: var(--color-primary);
    color: #000;
}

.ArnCarRentals .back-to-results:hover {
    background-color: var(--color-secondary);
    color: #FFF;
}

.ArnCarRentals .guest-details section {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid var(--main-border);
    padding: 0 0 10px;
    margin: 25px 0;
    width: 100%;
}

.ArnCarRentals .guest-details section h2 {
    display: block;
    font-size: 1.7em;
    width: 100%;
}

.ArnCarRentals .checkout-page p {
    margin: 0;
    width: 100%;
}

.ArnCarRentals .checkout-page h1 {
    margin: 0 0 25px 0;
    width: 100%;
}

.ArnCarRentals .checkout-page .car-detail {
    xbackground-color: var(--light-background);
}

.ArnCarRentals .checkout-page .car-detail {
    background-color: white;
    border: 1px solid var(--text-light);
    border-left-color: rgb(136, 136, 136);
    border-left-style: solid;
    border-left-width: 1px;
    border-left: 4px solid var(--text-light);
    box-shadow: none;
}

.ArnCarRentals .checkout-page .extra-detail {
    xbackground-color: white;
}

.ArnCarRentals .checkout-page .extra-detail a {
    float: right;
}

.ArnCarRentals .checkout-page .guest-details section h2 {
    margin: 0 0 20px;
}

.ArnCarRentals .checkout-page select {
    width: 100%;
}

.ArnCarRentals .checkout-page textarea {
    width: 100%;
    min-height: 100px;
    padding: 5px;
}

.ArnCarRentals #theReservationFormContainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1280px;
}

.ArnCarRentals .guest-details {
    width: 69%;
    margin: 0 1% 0 0;
}

.ArnCarRentals .guest-details section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 25px;
}

.ArnCarRentals .guest-details section.validate {
    background-color: #f0f0f0;
    padding: 20px;
    border: 1px solid var(--main-border);
}

.ArnCarRentals .guest-details section.validate h2 {
    margin: 0;
}

.ArnCarRentals .guest-details section div {
    width: 50%;
    margin: 7.5px 0;
    padding: 0 .5%;
}

.ArnCarRentals .guest-details section div.state-code {
    width: 100%;
    margin: 0;
}

.ArnCarRentals .guest-details section div.credit-card-number,
.ArnCarRentals .guest-details section div.is-name-on-card-same-as-traveler,
.ArnCarRentals .guest-details section div.name-on-card {
    width: 100%;
}

.ArnCarRentals .guest-details section div.credit-card-month,
.ArnCarRentals .guest-details section div#theZipCodeAjax {
    width: 25%;
}

.ArnCarRentals .guest-details section div.credit-card-month,
.ArnCarRentals .guest-details section div.credit-card-year,
.ArnCarRentals .guest-details section div.credit-card-code {
    width: 33.333%;
}

.ArnCarRentals .guest-details section.policies div, .guest-details section.protection div {
    width: 100%;
}

.ArnCarRentals .guest-details .credit-card-code input {
    background-position: calc(100% - 10px) 50%;
    background-image: url("//media.travsrv.com/appSkins/64/v6/themes/global/skins/images/cvv.svg");
    background-repeat: no-repeat;
    background-size: 40px;
}

.ArnCarRentals .guest-details section div#theConfirmText {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.ArnCarRentals .guest-details section div.confirmation-button {
    width: 100%;
    text-align: center;
}

.ArnCarRentals .guest-details section div.confirmation-button .submit {
    padding: 20px;
    height: initial;
    font-size: 1.2em;
    max-width: 300px;
    width: 100%;
    cursor: pointer;
}

.ArnCarRentals .payment-information {
    width: 30%;
    xposition: relative;
    border: none;
}

x.ArnCarRentals .payment-information:after {
    position: absolute;
    content: "";
    background-color: #fff;
    top: -100%;
    bottom: -3%;
    left: 0;
    width: 300%;
    z-index: -1;
}

.ArnCarRentals .summary-container {
    position: sticky;
    top: 0;
    width: 100%;
}

.ArnCarRentals .summary-container div {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ArnCarRentals .payment-summary {
    background-color: white;
    border: 1px solid var(--main-border);
    padding: 15px;
    width: 100%;
}

.ArnCarRentals .payment-summary .title {
    font-size: 1.7em;
}

.ArnCarRentals .payment-summary div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.ArnCarRentals .payment-summary div.summary {
    margin: 15px 0 0;
}

.ArnCarRentals .payment-summary .summary .note {
    color: var(--error-text);
}

.ArnCarRentals div.summary.pick-up-details,
.ArnCarRentals div.summary.drop-off-details {
    width: 49%;
    background-color: var(--light-background);
    padding: 10px;
    font-size: .9em;
    color: #000;
    font-weight: 400;
    margin: 0;
}

.ArnCarRentals div.summary.pick-up-details {
    margin: 0 1% 0 0;
}

.ArnCarRentals div.summary.pick-up-details span:nth-child(2),
.ArnCarRentals div.summary.drop-off-details span:nth-child(2) {
    font-size: 1.2em;
    font-weight: 500;
    color: initial;
}

.ArnCarRentals div.summary.pick-up-details span:nth-child(3n),
.ArnCarRentals div.summary.drop-off-details span:nth-child(3n),
.ArnCarRentals div.summary.pick-up-details span:last-child,
.ArnCarRentals div.summary.drop-off-details span:last-child {
    margin-top: 15px;
}

.ArnCarRentals div.summary.pick-up-details span:nth-child(3n),
.ArnCarRentals div.summary.drop-off-details span:nth-child(3n) {
    font-weight: 500;
}

.ArnCarRentals div.summary.details {
    margin: 25px 0;
    padding: 0;
}

.ArnCarRentals div.summary.details img {
    max-width: 50%;
}

.ArnCarRentals div.summary span {
    width: 100%;
}

.ArnCarRentals div.summary.totals span {
    width: 70%;
}

.ArnCarRentals div.summary.totals span:last-child {
    width: 30%;
    text-align: right;
    align-self: flex-end;
}

.ArnCarRentals .payment-summary div.totals .due-now {
    font-weight: 700;
    font-size: 1.2em;
    border-top: 1px solid var(--darker-border);
    border-bottom: 1px solid var(--darker-border);
    padding: 5px 0;
    margin: 10px 0 0;
}

.ArnCarRentals .payment-summary div.totals .due-now.sticky {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    background-color: white;
    padding: 15px 30px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, .4);
    z-index: 9;
}

.ArnCarRentals .payment-policies {
    margin: 10px 0;
    border: 2px solid var(--darker-border);
    padding: 10px;
    display: none !important;
}

@media only screen and (min-width: 1280px) {
    .ArnCarRentals .guest-details section div.credit-card-number {
        width: 50%;
    }

    .ArnCarRentals .guest-details section div.name-on-card {
        width: 50%;
    }

    .ArnCarRentals .guest-details section div.credit-card-month,
    .ArnCarRentals .guest-details section div.credit-card-year,
    .ArnCarRentals .guest-details section div.credit-card-code,
    .ArnCarRentals .guest-details section div.country-code,
    .ArnCarRentals .guest-details section #theStateDropDown,
    .ArnCarRentals .guest-details section div.postal-code {
        width: 16.6%;
    }
}

@media only screen and (max-width: 800px) {
    .ArnCarRentals .guest-details section div {
        width: 100%;
    }

    .ArnCarRentals .guest-details {
        width: 100%;
        margin: 0;
    }

    .ArnCarRentals .payment-information::after {
        display: none;
    }

    .ArnCarRentals .payment-information {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .ArnCarRentals .guest-details section div {
        width: 100%;
        margin: 5px 0;
    }

    .ArnCarRentals .guest-details section div#theStateAjax, .ArnCarRentals .guest-details section div#theZipCodeAjax, .ArnCarRentals .guest-details section div#theCardExpirationMonthAjax,
    .guest-details section div#theCardExpirationYearAjax, .ArnCarRentals .guest-details section div#theCardSecurityCodeAjax, .ArnCarRentals .payment-information {
        width: 100%;
    }
}

/* Confirmation Page */

.ArnCarRentals.ConfirmationPage {
    background-color: var(--light-background);
}

.ArnCarRentals.ConfirmationPage h1 {
    margin: 0 0 25px 0;
}

.ArnCarRentals.ConfirmationPage .guest-summary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ArnCarRentals.ConfirmationPage .car-detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: white;
    width: 40%;
    margin: 0 1% 0 0;
    border-left: 1px solid var(--main-border);
}

.ArnCarRentals.ConfirmationPage .thumbnail {
    width: 47%;
    margin: 15px 0 0;
}

.ArnCarRentals.ConfirmationPage .summary-location {
    background-color: white;
    width: 59%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
    border: 1px solid var(--main-border);
}

.ArnCarRentals.ConfirmationPage .summary-location div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.ArnCarRentals.ConfirmationPage .summary-location div.summary.pick-up-details,
.ArnCarRentals.ConfirmationPage .summary-location div.summary.drop-off-details {
    width: 49%;
}

.ArnCarRentals .summary-location div {
    width: 100%;
}

.ArnCarRentals.ConfirmationPage .status-container {
    margin-top: auto;
    background-color: var(--light-background);
    padding: 30px 15px;
    font-size: 1.2em;
    width: 100%;
}

.ArnCarRentals.ConfirmationPage .status-container div span:last-child {
    font-weight: 700;
}

.ArnCarRentals.ConfirmationPage .payment-summary {
    margin: 15px 0 0;
}

@media only screen and (max-width: 800px) {
    .ArnCarRentals.ConfirmationPage .car-detail {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .ArnCarRentals.ConfirmationPage .summary-location {
        width: 100%;
        margin: 0;
    }

    .ArnCarRentals .payment-summary {
        margin: 15px 0 0;
        padding: 15px !important;
        border: 1px solid var(--main-border);
    }
}

@media only screen and (max-width: 500px) {
    .ArnCarRentals .details-container {
        padding: 15px;
    }

    .ArnCarRentals .details {
        width: 50%;
    }
}

/* Support Links */

.ArnCarRentals section.support-links {
    padding: 30px 0;
    background-color: var(--color-secondary);
}

.ArnCarRentals section.support-links ul {
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
    text-align: center;
}

.ArnCarRentals section.support-links ul li {
    list-style: none;
}

@media only screen and (max-width: 766px) {
    .ArnCarRentals section.support-links ul li {
        width: 100%;
        display: block;
        border-right: 0 none;
        margin-bottom: 15px;
    }

    .ArnCarRentals section.support-links ul li a {
        font-size: 16px;
    }
}

/************/
/* IE Stuff */
/************/

@media only screen and (min-width: 800px) {
    .ArnCarRentals.IE {
        margin: 0;
    }
}

.ArnCarRentals.IE {
    color: #333;
}

.ArnCarRentals.IE textarea,
.ArnCarRentals.IE input[type="text"],
.ArnCarRentals.IE input[type="password"],
.ArnCarRentals.IE input[type="datetime"],
.ArnCarRentals.IE input[type="datetime-local"],
.ArnCarRentals.IE input[type="date"],
.ArnCarRentals.IE input[type="month"],
.ArnCarRentals.IE input[type="time"],
.ArnCarRentals.IE input[type="week"],
.ArnCarRentals.IE input[type="number"],
.ArnCarRentals.IE input[type="email"],
.ArnCarRentals.IE input[type="url"],
.ArnCarRentals.IE input[type="search"],
.ArnCarRentals.IE input[type="tel"],
.ArnCarRentals.IE input[type="color"],
.ArnCarRentals.IE .uneditable-input {
    border: 1px solid #cccccc;
}

.ArnCarRentals.IE input:hover, .ArnCarRentals.IE input:focus {
    border: 1px solid #009dd9;
}

.ArnCarRentals.IE .ErrorList {
    background-color: #fdf3ef;
}

.ArnCarRentals.IE .submit {
    background: #009dd9 none repeat scroll 0 0;
}

.ArnCarRentals.IE .errors {
    background-color: #fdf3ef;
}

.ArnCarRentals.IE button {
    background-color: #009dd9;
}

.ArnCarRentals.IE section.modify-search {
    background-color: #eeeeee;
    border-bottom: 1px solid #ccc;
}

/* Left Filters */

.ArnCarRentals.IE section.filters {
    border-right: 1px solid #cccccc;
}

.ArnCarRentals.IE section.filters .secondary-label {
    color: #888;
}

.ArnCarRentals.IE section.filters .filter-category {
    border-top: 1px solid #cccccc;
}

@media only screen and (max-width: 1000px) {
    .ArnCarRentals.IE section.filters {
        border: 1px solid #cccccc;
    }

    .ArnCarRentals.IE section.filters .toggle {
        background-color: #f8f8f8;
        border: 1px solid #cccccc;
    }
}

.ArnCarRentals.IE .car-detail {
    border: 1px solid #cccccc;
    border-left: 4px solid #cccccc;
}

.ArnCarRentals.IE .extra-detail {
    background-color: #f8f8f8;
}

.ArnCarRentals.IE .extra-detail span {
    color: #333;
}

.ArnCarRentals.IE .retail-rate span, .ArnCarRentals.IE .traveler-rate span {
    color: #333;
}

.ArnCarRentals.IE .retail-rate span {
    color: #888;
}

/***************/
/* Checkout Page */
/***************/

.CheckoutPage {
    background-color: #f8f8f8;
}

.ArnCarRentals.IE .guest-details section {
    border-bottom: 1px solid #888;
}

.ArnCarRentals.IE .checkout-page .car-detail {
    border: 1px solid #888;
    border-left: 4px solid #888;
}

.ArnCarRentals.IE .guest-details section.validate {
    background-color: #f0f0f0;
    border: 1px solid #cccccc;
}

.ArnCarRentals.IE .payment-summary {
    border: 1px solid #cccccc;
}

.ArnCarRentals.IE div.summary.pick-up-details,
.ArnCarRentals.IE div.summary.drop-off-details {
    background-color: #f8f8f8;
}

.ArnCarRentals.IE .payment-summary div.totals .due-now {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* Confirmation Page */

.ArnCarRentals.ConfirmationPage.IE {
    background-color: #f8f8f8;
}

.ArnCarRentals.ConfirmationPage.IE .car-detail {
    border-left: 1px solid #cccccc;
}

.ArnCarRentals.ConfirmationPage.IE .summary-location {
    border: 1px solid #cccccc;
}

.ArnCarRentals.ConfirmationPage.IE .status-container {
    background-color: #f8f8f8;
}

/* Maintenance Page */

.maintenance {
    background: white;
    padding: 30px;
    border: 5px solid rgba(0, 0, 0, .075);
}

.maintenance h1, .maintenance h2, .maintenance p {
    width: 100%;
    margin: 7.5px 0;
}

/*********************7Across Styles*****************************/
/* Feature Rental */
.ArnCarRentals .featured-car-rental .featured-label {
    background-color: var(--color-primary);
    color: #000;
}

.ArnCarRentals .featured-car-rental .car-detail,
.ArnCarRentals.SearchResults .featured-car-rental .car-detail:hover,
.ArnCarRentals.SearchResults .featured-car-rental .car-detail:focus,
.ArnCarRentals.SearchResults .featured-car-rental .car-detail:active {
    border: 4px solid var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.ArnCarRentals.SearchResults .car-detail:hover,
.ArnCarRentals.SearchResults .car-detail:focus,
.ArnCarRentals.SearchResults .car-detail:active {
    box-shadow: 0px 5px 4px -4px rgba(0, 0, 0, .8);
}

/* Car Details */
/* Filters */
.ArnCarRentals .clear-filters {
    color: var(--main-border);
    cursor: text;
}

.ArnCarRentals .clear-filters.enabled {
    font-weight: 500;
    color: var(--color-secondary);
    cursor: pointer;
    text-decoration: underline;
}

/* Continue button on search results*/
.car-detail .action {
    text-decoration: none;
    padding: 7px 0;
    background: var(--color-primary);
    color: #000;
    text-align: center;
    margin: 10px 0 0 0;
    transition: color 0.2s linear, background-color 0.2s linear;
}

.car-detail .action:hover {
    background-color: var(--color-secondary);
    color: #FFF;
    transition: color 0.2s linear, background-color 0.2s linear;
}

/* Pickup Drop Off Info */
.ArnCarRentals .rental-address .light-box-open {
    text-decoration: none;
}

.ArnCarRentals .rental-address .light-box-open:hover,
.ArnCarRentals .rental-address .light-box-open:focus,
.ArnCarRentals .rental-address .light-box-open:active {
    color: #000;
    text-decoration: underline;
}

/* Car Results Item */
.ArnCarRentals .car-detail {
    border-left: 4px solid var(--color-secondary);
}

.ArnCarRentals.SearchResults .car-detail:hover,
.ArnCarRentals.SearchResults .car-detail:focus,
.ArnCarRentals.SearchResults .car-detail:active {
    border-left: 4px solid var(--color-primary);
}

.ArnCarRentals .percent-savings {
    background: var(--main-discount);
    color: #FFF;
}

.ArnCarRentals .payment-summary div.totals .savings,
.ArnCarRentals .checkout-page .hurry-book {
    color: var(--main-discount);
}

/*Pagination*/
.ArnCarRentals .pages a,
.ArnCarRentals .pages span.active {
    padding: 5px 10px;
    border: 1px solid var(--color-primary);
    margin: 0 2.5px;
    line-height: 1;
    color: black;
    font-size: 14px;
    font-family: lato;
}

.ArnCarRentals .pages a:hover,
.ArnCarRentals .pages span.active {
    background-color: var(--color-primary);
    color: black;
}

/*Buttons*/
.ArnCarRentals button {
    height: 48px;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

.ArnCarRentals .search-container .btn,
.ArnCarRentals .search-container .btn:hover,
.ArnCarRentals button,
.ArnCarRentals button:hover,
.RegisterAction.submit,
.RegisterAction.submit:hover {
    transition: color 0.2s linear, background-color 0.2s linear;
    cursor: pointer;
}

.ArnCarRentals .search-container .btn {
    font-weight: bold;
}

.ArnCarRentals button,
.ArnCarRentals .search-container .btn {
    background-color: var(--color-primary);
    color: #000;
}

.ArnCarRentals button:hover,
.ArnCarRentals button:active,
.ArnCarRentals .search-container .btn:hover,
.ArnCarRentals .search-container .btn:active {
    background-color: var(--color-secondary);
    color: #FFF;
}

.ArnCarRentals .submit {
    background-color: var(--color-primary);
    color: #000;
}

.ArnCarRentals .submit:hover,
.ArnCarRentals .submit:active {
    background: var(--color-secondary);
    color: #FFF;
}

.ArnCarRentals .submit.disabled {
    background-color: var(--main-border);
    color: #000;
    text-decoration: line-through;
}

/*footer*/
.ArnCarRentals section.support-links ul li a {
    color: #FFF;
}

.ArnCarRentals section.support-links ul li a:hover,
.ArnCarRentals section.support-links ul li a:active {
    color: var(--color-primary);
}

/*Date Picker*/
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--color-primary);
    color: #000;
    transition: color 0.2s linear, background-color 0.2s linear;
}

/*Warning text*/
.ArnCarRentals .warning {
    color: var(--error-text);
}