body.my-account {
    background: #F6F6F6;
}

.my-account-page {}

.frontLoader {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 30px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ownerzone-header {
    background: url('../images/Ownerzone top banner.png') center center no-repeat;
    height: 118px;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
}

.ownerzone-header .col-12 {
    display: flex;
    align-items: center;
}

.ownerzone-header h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-right: auto;
}

.ownerzone-header h1 span {
    font-size: 18px;
    font-weight: normal;
}

.used-car-saver-toggle {
    margin-right: 20px;
}

.account-logout {
    padding-left: 20px;
    display: flex;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
}

.ownerzone-header-links {
    background: #fff;
    border-bottom: 1px solid #D3D8D9;
    margin-bottom: 30px;
}

.ownerzone-header-links a {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: bold;
    margin-right: 35px;
    position: relative;
    display: block;
    line-height: 50px;
    float: left;
}

.ownerzone-header-links a.active {
    color: #D85D38 !important;
}

.ownerzone-header-links a.active:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #D3D8D9;
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    transform: translateX(-50%);
    rotate: 45deg;
}

.my-account-page h2 {
    padding: 0;
    color: #33363E;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 24px;
}

/*My Vehicles*/
.dashboard-pending-vehicles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.finance-cancel-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #33363Eeb;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0 0;
    transition: scale 0.3s ease-in;
    z-index: 1000;
}

.finance-cancel-container.show {
    scale: 1 1;
}

.finance-cancel-container>div {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #D3D8D9;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    font-size: 16px;
    color: #707070;
}

.finance-cancel-title {
    font-size: 24px;
    color: #33363E;
    line-height: 30px;
    font-weight: bold;
}

.finance-cancel-buttons {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.finance-cancel-buttons a {
    background: #D85D38 0% 0% no-repeat padding-box;
    border: 1px solid #D85D38;
    border-radius: 3px;
    padding: 0 25px;
    line-height: 46px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
}

.finance-cancel-buttons a:nth-child(2) {
    border-color: #7E848B;
    background: #7E848B;
}

.dashboard-owned-vehicles {
    display: flex;
    column-gap: 10px;
    align-items: flex-start;
}

.upgrade-recommendations {
    padding: 30px calc((100vw - 1610px + 220px)/2) 30px 60px;
    margin: -15px calc((100vw - 1610px)/-2) 0 auto;
    background: #33363E;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
}

.upgrade-recommendations-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.upgrade-recommendations-sub-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.upgrade-recommendations-sub-title:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #D85D38;
    margin: 10px auto;
}

.upgrade-gallery {
    position: relative;
}

.upgrade-gallery .used-car {
    float: left;
}

.upgrade-gal-prev,
.upgrade-gal-next {
    position: absolute;
    right: -30px;
    top: 50%;
    width: 12px;
    height: 21px;
}


.upgrade-gal-prev img,
.upgrade-gal-next img {
    width: 100%;
}

.upgrade-gal-prev {
    right: initial;
    left: -30px;
    rotate: 180deg;
}

/*User Car Block*/
.user-car-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EBE9E9;
    border-radius: 0px 0px 5px 5px;
    width: 322px;
    position: relative;
}

.ucb-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #F5F5F5;
    border-bottom: 1px solid #D6D6D6;
}

.ucb-logo {
    border: 1px solid #D3D8D9;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.ucb-title {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
}

.ucb-buttons {
    display: flex;
    column-gap: 5px;
    margin: 0 5px 5px 5px
}

.ucb-buttons a {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E4E7E8;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none !important;
    height: 60px;
    flex: 1 auto;
    color: #D85D38 !important;
}

.ucb-view {
    background: #D85D38 0% 0% no-repeat padding-box;
    border: 1px solid #D85D38;
    border-radius: 3px;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    display: block;
    line-height: 46px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

.ucb-service-due {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 0 20px 20px 0;
    color: #131313;
    font-weight: bold;
    font-size: 14px;
}

.ucb-valuation:not(:empty) {
    background: #00162F;
    padding: 5px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 18px;
    border-radius: 0px 0px 5px 5px;
}

.ucb-valuation a {
    text-decoration: underline;
    color: #fff !important;
    font-size: 16px;
}


.addVehicleSection {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #D6D6D6;
    padding: 10px;
    width: 300px;
    margin-bottom: 20px;
}

.addVehicleSection .addVehicle {
    width: 100%;
}

/*Finance Applications*/
.finance-application {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EBE9E9;
    border-radius: 0px 0px 5px 5px;
    padding: 15px 15px 0 15px;
    margin-bottom: 20px;
}

.finapp-title {
    color: #00162F;
    font-size: 18px;
    margin-bottom: 10px;
}

.finapp-terms {
    display: flex;
}

.finapp-details {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-top: 1px solid #EBE9E9;
    background: #FCFCFC;
    padding: 15px;
}

.finapp-heading {
    color: #D85D38;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.finapp-alldetails {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.finapp-alldetails>div {
    flex-basis: 25%;
}

.finapp-buttons {
    margin-left: auto;
    align-self: center;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.finapp-buttons a {
    display: block;
    background: #D85D38 0% 0% no-repeat padding-box;
    border: 1px solid #D85D38;
    border-radius: 5px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.finapp-buttons a:nth-child(2) {
    background: #E9EAEB;
    border-color: #D3D8D9;
    color: #404953 !important;
}


/*Dashboard Vehicle*/
.dash-my-vehicle-header {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px;
}

.dash-my-vehicle-header a {
    color: #D85D38 !important;
}

.dash-car {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.dash-car-image {
    width: 275px;
    height: 207px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
}

.dash-car-image img {
    max-height: 100%;
    max-width: 100%;
}

.dash-car-title {
    font-size: 32px;
    font-weight: bold;
    color: #33363E;
    margin-bottom: 10px;
}

.dash-car-subtitle {
    font-size: 16px;
    color: #33363E;
    margin-bottom: 10px;
}

.dash-car-valuation {
    background: #F6F6F6 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 0 30px 0 15px;
    display: flex;
    height: 55px;
    align-items: center;
    column-gap: 5px;
    font-size: 16px;
    color: #00162F;
    margin-bottom: 10px;
}

.dash-car-valuation a {
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
    margin-left: 10px;
}

.dash-car-actions {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.dash-car-actions a:nth-child(2) {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: bold;
    color: #D85D38 !important;
}

.dash-car-actions a:nth-child(3) {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #60676E !important;
}

.dash-tabs {
    display: flex;
}

.dash-tabs a {
    line-height: 66px;
    font-weight: bold;
    color: #33363E !important;
    font-size: 18px;
    padding: 0 20px;
    border-radius: 5px;
    text-decoration: none !important;
}

.dash-tabs a.active {
    background: #F9F9F9;
}

.dash-tabs a.active:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 0 auto;
    background: #D85D38;
}

.dash-tabs-content {
    background: #F6F6F6;
    padding: 20px 0;
}

.dash-tabs-content:not(.active) {
    display: none;
}

.dash-tabs-content .row>div {
    align-self: stretch;
}

.dash-finance-box {
    background: #FFFFFF;
    border: 1px solid #D3D8D9;
    border-radius: 5px;
    padding: 15px;
    height: 100%;
}

.dash-heading {
    font-weight: bold;
    font-size: 24px;
    color: #33363E;
    margin-bottom: 10px;
}

.dash-heading:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    background: #D85D38;
}

.dash-finance-boxes {
    display: flex;
    column-gap: 10px;
}

.dash-finance-boxes>div {
    background: #F9F9F9;
    padding: 10px;
    font-size: 16px;
    max-width: 310px;
    flex-basis: 310px;
    margin-bottom: 20px;
}

.dash-finance-boxes>div>span {
    display: block;
    font-weight: bold;
    padding-bottom: 10px;
}

.dash-finance-boxes input {
    background: #FFFFFF;
    border: 1px solid #D3D8D9;
    border-radius: 5px;
    padding: 0 10px;
    text-align: right;
    line-height: 40px;
    outline: none;
    max-width: 120px;
}

.dash-finance-box input[type=number] {
    width: 80px;
}

.dash-finance-boxes>div>div {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.dash-finance-boxes>div>div span {
    margin-right: 20px;
    font-size: 11px;
    color: #817D7D;
}

.dash-finance-balance span {
    font-weight: bold;
    color: #D85D38;
    font-size: 18px;
}

.dash-budget-tablets {
    display: flex;
    column-gap: 10px;
    margin: 10px 0 20px 0;
}

.dash-budget-tablets span {
    display: block;
    background: #fff;
    border: 1px solid #D85D38;
    border-radius: 3px;
    color: #D85D38;
    padding: 0 15px;
    font-size: 15px;
    line-height: 38px;
    cursor: pointer;
}

.dash-budget-tablets span.active {
    background: #D85D38;
    color: #fff;
}

.dash-subheading {
    font-size: 20px;
}

.dash-budget-search {
    width: 100%;
}

.dash-service-history {
    background: #FFFFFF;
    border: 1px solid #D3D8D9;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.dash-service-heading {
    font-size: 18px;
    font-weight: bold;
}

.dash-service-details {
    display: flex;
    column-gap: 40px;
    font-size: 14px;
}

.dash-upgrades {
    background: #33363E;
    padding: 30px 0 50px 0;
}

.dash-upgrade-heading, .dash-upgrade-subheading {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
}

.dash-upgrade-subheading {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
}

.dash-upgrade-subheading:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 0 auto;
    background: #D85D38;
}

.dash-upgrades .car-slider {
    display: flex;
    align-items: flex-start;
}


/*Payment Module*/
.payment-module, .payment-link-generator {
    border: 1px solid #E1E1E1;
    background: #fff;
    margin-bottom: 20px;
}

.pm-heading, .plg-heading {
    padding: 25px 10px;
    color: #33363E;
    font-weight: bold;
    font-size: 24px;
    border-bottom: 1px solid #e1e1e1;
}

.pm-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
    font-weight: bold;
}

.pm-paymentform, .plg-paymentform {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.pm-paymentform .pm-input, .plg-paymentform .plg-input {
    width: calc(50% - 10px);
    margin-bottom: 15px;
    position: relative;
    background: #f9f9f9;
    border: 1px solid #dddadb;
    box-sizing: border-box;
}

.pm-paymentform .pm-input-fullwidth, .plg-paymentform .plg-input-fullwidth {
    width: 100%;
    margin-left: 0 !important;
}

.pm-paymentform .pm-input:nth-of-type(2n), .plg-paymentform .plg-input:nth-of-type(2n) {
    margin-left: 20px;
}

.pm-input .label, .plg-input .label {
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 10px;
    padding: 0 5px;
    line-height: 50px;
    display: block;
    z-index: 1;
    transition: all 0.3s ease-in;
}

.pm-input .label span, .plg-input .label span {
    color: #D85D38;
}

.pm-input.active, .plg-input.active {
    background: #fff;
}

.pm-input.active .label, .plg-input.active .label {
    background: #fff;
    transform: translate(0px, -9px);
    line-height: 16px;
    font-size: 12px;
}

.pm-paymentform input, .pm-paymentform textarea, .plg-paymentform input, .plg-paymentform textarea {
    font-size: 16px;
    font-weight: bold;
    height: 50px;
    box-sizing: border-box;
    border: 0;
    background: none;
    outline: none;
    padding: 0 15px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    resize: none;
}

.pm-paymentform textarea, .plg-paymentform textarea {
    height: 100%;
    padding: 15px;
    line-height: 20px;
    font-family: inherit;
}

.pm-further-details {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.pm-further-details>div {
    width: calc(50% - 10px);
    display: flex;
}

.pm-further-details>div:first-child {
    flex-wrap: wrap;
}

.pm-further-details .pm-input {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0 !important;
}

.pm-payment-section {
    padding: 0 15px;
    margin-bottom: 15px;
}

.pm-tandc {
    margin-bottom: 20px;
}

.footer_award {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.footer_award a, .footer_award>div {
    margin: 0 30px;
}

.footer_award .certified img {
    width: 90px;
    height: 160px;
}

.footer_award .corkchamber img {
    width: 186px;
    height: 160px
}

.inv_button {
    display: block;
    width: 200px;
    text-align: center;
    border: 0;
    outline: none;
    background: #D85D38;
    color: #fff !important;
    font-weight: bold;
    font-size: 16px;
    line-height: 50px;
    font-family: inherit;
    cursor: pointer;
    margin-right: 10px;
}

/*User Cars*/
.member-cars-header {
    padding: 10px;
    background: #fff;
    margin-bottom: 20px;
}

.member-cars-header form {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.member-car-search-form {
    display: flex;
    align-items: center;
    height: 60px;
    border: 1px solid #EBE7E7;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    flex: 1 auto;
}

.member-car-search-form input[type=search] {
    flex: 1 0 0;
    padding: 0 10px 0 30px;
    box-sizing: border-box;
    height: 100%;
    border: 0;
    outline: 0;
    color: #7E848B;
    font-size: 16px;
    background: none;
}

.member-car-search-form input[type=submit] {
    width: 50px;
    height: 100%;
    background: url(../images/search-article.svg) no-repeat center;
    cursor: pointer;
    border: 0;
    outline: 0;
    padding: 0;
    position: relative;
}

.member-cars-results {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.account-details {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #EBE9E9;
    border-radius: 0px 0px 5px 5px;
    margin-bottom: 20px;
}

.account-details input[type=submit] {
    border: 0;
    outline: none;
    color: #fff;
    background: #D85D38 0% 0% no-repeat padding-box;
    border: 1px solid #D85D38;
    border-radius: 5px;
    line-height: 50px;
    box-sizing: border-box;
    padding: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.account-details .communication-block {
    border: 1px solid #EBE9E9;
    border-radius: 2px 2px 0 0;
    padding: 10px;
    display: flex;
}

.account-details .communication-block>div:first-child {}

.account-details .browse-by-toggle-container {
    font-size: 14px;
    margin: 0 0 0 auto;
}

.account-details .communication-group {
    border: 1px solid #EBE9E9;
    border-top-width: 0;
    border-radius: 0 0 2px 2px;
    padding: 10px;
    font-size: 14px;
}

.account-details .communication-group input:nth-of-type(n+2) {
    margin-left: 10px;
}

.account-details .communication-group input:is([type=checkbox], [type=radio]) {
    accent-color: #D85D38;
}

/* RESOURCES */
.all-resources {
    display: block;
    text-align: center;
    padding:0 30px;
    line-height: 50px;
    background: url(../images/arrow-right-white.svg) calc(100% - 20px) center no-repeat #D85D38;
    color: #fff !important;
    text-decoration: none !important;
    align-items: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ANNUAL LEAVE */
.dash-annual-leave form {
}

.annual-leave-box {
    padding:10px;
    border-radius: 5px;
    border: 1px solid #EBEDEE;
    margin-bottom: 20px;
    background: #fff;

}

.dash-annual-leave label {
    font-weight: bold;
    font-size: 16px;
}

.leave-date-selector {
    display: flex;
    height: 50px;
    margin-bottom: 20px;
}

.leave-date-selector input {
    border-radius:5px 0 0 5px;
    height: 100%;
}

.leave-date-selector a {
    display: flex;
    padding:0 30px;
    background: #D85D38;
    color: #fff !important;
    text-decoration: none !important;
    align-items: center;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
    font-size: 18px;
}

.leave-dates {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
}

.leave-date {
    display: flex;
    align-items: center;
    border: 1px solid #EBEDEE;
    border-radius: 5px;
    padding:0 10px;
    height: 50px;
    font-weight: bold;
}

.leave-date a {
    margin-left: auto;
    width: 19px;
    height: 19px;
    background: url(../images/close-circle.svg) center center no-repeat;
}


.anuual-leave-form input[type=submit] {    
    display: block;
    text-align: center;
    padding:0 30px;
    background: url(../images/arrow-right-white.svg) calc(100% - 20px) center no-repeat #D85D38;
    color: #fff !important;
    text-decoration: none !important;
    align-items: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 18px;
    height: 50px;
    border:0;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in;
    will-change: auto;
}


.anuual-leave-form input[type=submit]:hover {    
    background-position-x: calc(100% - 10px);
}


/* XL SCREEN > 1400 */
/*---------------------*/
/* @media (min-width: 1430px) { */
@media (min-width: 1670px) {

    /*User Car Block*/
    .user-car-block {
        width: 322px;
    }
}

/*---------------------*/
/* LARGE SCREEN > 1200 */
/*---------------------*/
@media (min-width: 1200px) and (max-width: 1690px) {
    .upgrade-recommendations {
        padding: 10px calc((100vw - 1110px)/2) 20px 60px;
        margin-right: calc((100vw - 1110px)/-2);
    }
}

/*DESKTOP < 1199px*/
@media (min-width: 992px) and (max-width: 1199px) {
    .upgrade-recommendations {
        padding: 10px calc((100vw - 930px)/2) 20px 60px;
        margin-right: calc((100vw - 930px)/-2);
    }
}

/*--------*/
/* TABLET & Mobile */
/*--------*/
@media (max-width: 991px) {
    .dashboard-owned-vehicles {
        padding: 10px 20px 20px 20px;
        margin-right: 0;
    }

    .upgrade-recommendations {
        padding: 30px 20px;
        width: 100vw;
        margin: 0 0 0 -15px;
    }
}

/*--------*/
/* TABLET */
/*--------*/
@media (min-width: 768px) and (max-width: 991px) {
    .dashboard-owned-vehicles {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .upgrade-recommendations {
        padding: 30px 40px;
        width: 400px;
        margin: 0 auto;
    }
}

/*--------*/
/* MOBILE */
/*--------*/
@media (max-width: 767px) {
    .ownerzone-header {
        height: auto;
        background-size: auto 100%;
        padding-bottom: 15px;
        position: relative;
    }

    .ownerzone-header .col-12 {
        flex-wrap: wrap;
    }

    .ownerzone-header .col-12 h1 {
        font-size: 28px;
        width: 100%;
    }

    .ownerzone-header .col-12 h1 span {
        display: block;
    }

    .account-logout {
        position: absolute;
        border: 0;
        padding: 0;
        top: 18px;
        right: 10px;
    }

    .ownerzone-header .used-car-saver-toggle {
        font-size: 12px;
        padding: 0 10px;
    }

    .ownerzone-header-links select {
        width: 100%;
        height: 50px;
        background: #F6F6F6 0% 0% no-repeat padding-box;
        border: 1px solid #E8E9E9;
        border-radius: 50px;
        padding: 0 10px;
        margin: 10px 0;
    }

    .dashboard-owned-vehicles {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }


    .upgrade-gal-next {
        right: -17px;
    }

    .upgrade-gal-prev {
        left: -17px;
    }

    .finance-application {
        padding: 10px;
    }

    .finapp-terms {
        display: block;
    }

    .finance-application .finance-car {
        display: block;
    }

    .finance-application .finance-car-image {
        margin-bottom: 10px;
    }

    .finapp-buttons {
        width: 100%;
        column-gap: 8px;
        margin-bottom: 10px;
    }

    .finapp-buttons a {
        font-size: 14px;
        padding: 0 10px;
    }

    .finapp-details {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .finapp-alldetails>div {
        flex-basis: 50%;
    }

    /*My Vehicle*/
    .dash-heading {
        font-size: 20px;
    }

    .dash-car {
        flex-wrap: wrap;
        column-gap: 0;
    }

    .dash-car-image, .dash-car-title {
        width: 100%;
        flex: 0 1 100%;
        text-align: center;
    }

    .dash-car-title {
        padding-left: 0px;
        margin-bottom: 0;
        font-size: 20px;
    }

    .dash-car-details {
        width: 100%;
    }

    .dash-car-valuation {
        flex-wrap: wrap;
        height: auto;
        padding: 5px 10px;
        justify-content: center;
    }

    .dash-car-valuation span b {
        display: block;
    }

    .dash-car-actions {
        column-gap: 10px;
    }

    .dash-car-actions a,
    .dash-car-actions a:nth-child(2) {
        font-size: 14px;
        padding: 0;
        text-align: center;
        width: calc(50% - 5px);
    }

    .dash-tabs {
        width: 100vw;
        margin-left: -50vw;
        position: relative;
        left: 50%
    }

    .dash-tabs a {
        font-size: 14px;
        padding: 0 10px;
        line-height: 40px;
        height: 43px;
    }

    .dash-tabs-content .row>div {
        margin-bottom: 10px;
    }

    .dash-finance-box {
        padding: 10px;
        margin-bottom: 10px;
    }

    .dash-finance-boxes>div {
        width: 100%;
        max-width: initial;
        flex-basis: initial;
    }

    .dash-finance-boxes {
        flex-wrap: wrap;
    }

    .dash-budget-tablets {
        flex-wrap: wrap;
        gap: 10px;
    }
}