:root {
    --main-color: hsl(130, 74%, 63%);
    --secondary-color: hsl(244, 98%, 80%);
    --light-color: hsl(240, 11%, 72%);
    --lighter-color: hsl(240, 13%, 89%);
    --lightest-color: hsl(240, 11%, 98%);
    --title-color: hsl(220, 48%, 28%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(220, 100%, 99%);
    --dark-color: hsl(249, 8%, 34%);
    --success-color: hsl(145, 63%, 42%);
    --error-color: hsl(0, 100%, 50%);
    --info-red: hsl(0, 96%, 65%);
    --alt-red: hsl(355, 100%, 66%);
    --border-color: hsl(0, 0%, 69%);
    --darkblue: rgb(16, 17, 45);
    --darklightblue: rgb(34, 43, 94);
    --clr-green-deepest: rgb(18, 59, 42);
    --clr-green-deeper:rgb(32, 102, 73);
    --clr-green-deep: rgb(60, 191, 137);
    --col-err: hsl(0, 100%, 50%); 
    --col-lgtr: hsl(240, 13%, 89%);
    --col-bg-pri: rgb(18, 59, 42);
    --col-wh: hsl(0, 0%, 100%);
    --col-lgtt: hsl(240, 11%, 98%);
    --colour-green-main: hsl(155, 53%, 15%);
    --radius-025: 0.25rem;
    --radius-044: 0.44rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: .88rem;
    color: var(--text-color);
    scroll-behavior: smooth;
}

body {
    min-width: 300px;
    line-height: 1.6em;
}

a {
    text-decoration: none;
    color: inherit;
}

/*  */

.borderall {
    border: 1px solid var(--border-color);
}

.bordertop {
    border-top: 1px solid var(--border-color);
}

.borderright {
    border-right: 1px solid var(--border-color);
}

.borderbtm {
    border-bottom: 1px solid var(--border-color);
}

.borderleft {
    border-left: 1px solid var(--body-color);
}


/*  */

.logout-user {
    width: 10px;
    margin-right: 5px;
}

.asterix {
    padding: .5rem 0;
    margin-bottom: 1rem;
}

.ask {
    padding: .8rem;
    font-size: small;
    font-weight: 600;
}

.ask a {
    color: var(--success-color);
    text-decoration: underline;
}

.band {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.band label {
    margin-bottom: .32rem;
    font-size: x-small;
}

.band input {
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .625rem;
    width: 100%;
}

.band input:focus {
    outline: 0;
}

.band select {
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    padding: .625rem;
    width: 100%;
}

.band small {
    visibility: hidden;
    position: relative;
    bottom: 0;
    left: 0;
}

.bobo {
    border-bottom: 1px solid var(--border-color);
}

.centered40Box {
    width: 40%;
    margin: 0 auto;
}

.centeredTxt {
    text-align: center;
    margin: 0 auto;
}

.displaynone {
    display: none !important;
    visibility: none;
}


#button1 {
    cursor: pointer;
}

.flextext {
    padding: 0 .4rem;
    display: flex;
    justify-content: center;
    gap: .6rem;
    transition: all .3s ease-out;
}

.labelinput {
    /* font-size: 1.2rem !important; */
    border: 1px solid hsla(220, 68%, 12%, .1);
    padding: .5rem;
    background-color: var(--lighter-color);
    border-radius: .4rem;
    /* cursor: pointer; */
    /* width: 80%; */
    text-align: center;
    margin: 1rem auto;
}

.labellabelinput {
    padding: 0 3rem;
    font-size: 1.2rem !important;
    cursor: pointer;
    /* width: 80%; */
}

/* .uploadInfo {
    margin-bottom: 2rem;
} */

.imgHere {
    padding: 1rem 3rem;
    font-size: small;
    cursor: pointer;
    background-color: var(--lighter-color);
    border-radius: .4rem;
    width: 50%;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
    letter-spacing: .1em;
}

.noOfImages {
    font-size: small;
    font-weight: bold;
}

.fileTypes {
    text-align: center;
    font-size: smaller;
    width: 60%;
    margin: 0 auto;
    font-weight: 600;
}

.displayHidden {
    visibility: hidden;
    opacity: 0;
}

.positionRelative {
    position: relative;
}

.remove-btn {
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 1.2em;
    background-color: var(--lighter-color);
    border: 1px solid var(--light-color);
    border-radius: 50%;
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -8px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    background-color: var(--error-color);
    color: var(--lightest-color);
    border: none;
}

#text1{
    display: none;
}

#text2:hover ~ #text1{
    display: block;
}

.txtsize1 {
    font-size: 1rem !important;
}

.txtsize2 {
    font-size: 2rem !important;
}

.btnlike-bg {
    display: inline-block;
    margin: .3rem auto;
    padding: .1rem .2rem;
    min-width: 90px;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.2px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fafafb;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease-out;    
}

.btnlike-bg:hover{
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}

.btnlike-bgone {
    display: inline-block;
    margin: .3rem;
    padding: .1rem .2rem;
    width: 90px;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.2px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fafafb;
    border-radius: .4rem;
    cursor: pointer;
    transition: all .3s ease-out;    
}

.btnlike-bgone:hover{
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}

.btnlike-bgalt {
    display: inline-block;
    margin: .3rem 1rem .3rem 0;
    padding: .1rem .2rem;
    width: 90px;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.2px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease-out;   
}

.btnlike-bgalt:hover{
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}

.btnlike-bgaltone {
    display: inline-block;
    margin: .3rem;
    padding: .1rem .2rem;
    min-width: 90px;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.2px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: .4rem;
    cursor: pointer;
    transition: all .3s ease-out;   
}

.btnlike-bgaltone:hover{
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}

.close {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--error-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--lightest-color);
    border-radius: 50%;
}

.closeCreateUser,
.closeAddUploadVehicle,
.closeAddChangePassword,
.closeAddUploadProfilePortrait,
.closeAddCurrency,
.closeAddCategory,
.closeAddStatus,
.closeAddCondition,
.closeAddGearbox,
.closeAddBody,
.closeAddDrivetrain,
.closeAddTransmission,
.closeAddVariant,
.closeAddModel,
.closeAddMake,
.closeAddType {
    height: 26px;
    width: 26px;
    font-size: 1.8em;
    /* background-color: var(--lighter-color); */
    background-color: var(--col-wh);
}

.link {
    display: inline-block;
    margin: .6rem auto;
    padding: .625rem;
    width: 130px;
    font-size: smaller;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fafafb;
    border-radius: .25rem;
    cursor: pointer;
    transition: all .3s ease-out;
}

.link:hover {
    background-color: hsla(247, 74%, 63%, .8);
}

.link-alt {
    color: var(--main-color);
    background-color: transparent;
}

.link-alt:hover {
    color: var(--secondary-color);
    background-color: transparent;
}

.step-title {
    margin: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid hsla(220, 68%, 12%, .1);
}

.stepcard {
    display: none;
}

.stepcard.active {
    display: block;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

/* .errorstepcard {
    color: red;
    font-size: 0.9em;
  } */


.bdo{
    border: 1px solid var(--lighter-color);
}
.bdbo{
    border-bottom: 1px solid var(--light-color);
}
.bdbt{
    border-bottom: 1px solid var(--lighter-color);
}
.bdro{
    border-radius: .4rem;
}

.bd-r {
    border-right: 1px solid var(--lighter-color) ;
}

.btn-back{
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: var(--clr-green-deepest);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s;
    cursor: pointer;
}

.btn-back:hover{
    background-color: var(--clr-green-deeper);
}

.btn-card {
    width: 100px;
    margin: 1rem auto;
    outline: none;
    border: none;
    border-radius: .4rem;
    background-color: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-round{
    padding: .4rem;
    width: 30px;
    height: 30px;
    font-weight: 600;
    border: none;
    border-radius: 50%;
    background-color: var(--lighter-color);
    color: inherit;
    transition: .3s;
    cursor: pointer;
}

.btn-round:hover{
    background-color: var(--light-color);
}

.btfm{
    padding: .6rem 3rem;
    margin: .6rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    cursor: pointer;
}

.btno{
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}

.directional {
    padding: 1rem 0;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsla(220, 68%, 12%, .1);
}

.h6heading {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
}

.h6heading a {
    color: rgb(18, 59, 42);
}

.h6heading a:hover {
    color: hsl(104, 96%, 40%);
}

.bread {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.bread a {
    color: rgb(34, 43, 94);
    transition: .3s ease all;
}

.mghb{
    margin-bottom: 1.2rem;
}

.mgfb{
    margin-bottom: 1.4rem;
}

.mgao{
    margin: .8rem;
}

.mgub{
    margin: 1rem 0;
}

.mgco{
    margin: 0 auto;
}

.mg-r{
    margin-right: 1rem;
}

.pdao{
    padding: .2rem 1rem;
}

.pdat{
    padding: 0 20%;
}

.pdao-h:hover{
    background-color: rgba(71, 253, 5,.3);
}

.pdo{
    padding: .8rem;
}

.pdt{
    padding: 1rem;
}

.pdh{
    padding: 1.2rem;
}

.pdt{
    padding: 1rem;
}

.pdbo{
    padding-bottom: .8rem;
}

.pdubo{
    padding: 1rem 0;
}

.pdlro{
    padding: 0 1rem;
}

.pd-l {
    padding-left: 1rem;
}

.pd-r {
    padding-right: 1rem;
}

.hu {
    max-width: 100%;
    min-width: 300px;
}
.hu .up {
    background-image: linear-gradient(to right,#46464a,#38c704);
}
.hu .up .wrapper{
    padding: .4rem 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hu .up .wrapper .logo{
    width: 130px;
    cursor: pointer;
}
.hu .up .wrapper .logo img{
    width: 100%;
}
.hu .up .wrapper .alt-logo .search{
    position: relative;
    width: 400px;
    height: 40px;
}
.hu .up .wrapper .alt-logo .search .box input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 0;
    border-radius: 3px;
    outline: none;
    color: #616263;
}
.hu .up .wrapper .alt-logo .search .box button{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background-color: rgba(71, 253, 5,.3);
    border: 0;
    outline: none;
    z-index: 1;
    cursor: pointer;
}
.hu .up .wrapper .alt-logo .search .box button img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
    padding: 6px;
    width: 100%;
    height: 100%;
    object-fit: contain;
	color: #fff;
	font-size: 20px;
}
.hu .up .wrapper .logreg button{
    margin: 0 .6rem;
    padding: .4rem;
    width: 100px;
    font-size: .9rem;
    font-weight: 600;
    outline: none;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: .3s ease all;
    cursor: pointer;
}
.hu .up .wrapper .logreg button:hover{
    background-color: rgb(38, 125, 89);
}
.hu .up .wrapper .logreg button span{
    padding-left: 4px;
}

.hu .bt {
    background-color: #46464a;
    margin-bottom: .2rem;
}

.hu .bt .bt-wrapper{
    padding: .6rem 3%;
    min-width: 290px;
}

.hu .bt .bt-wrapper .nav .uls {
    padding: 2px 0;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}
.lilink-div{
    position: relative;
}
.lilink-div:hover .lilinkdiv-dropdown{
    display: block;
}
.lilinkdiv-btn {
    border: none;    
}
.lilinkdiv-btn span {
    margin: 0 0 0 .3rem;
}
.hu .bt .bt-wrapper .nav .uls li,
.lilinkdiv-btn,
.lilinkdiv-dropdown {
    list-style: none;
    text-decoration: none;
    background-color: #46464a;
    color: var(--lighter-color);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: .3s all ease;
    display: flex;
    cursor: pointer;
}

.hu .bt .bt-wrapper .nav .uls li:hover,
.lilinkdiv-btn:hover,
.lilinkdiv-dropdown a:hover{
    color: #38c704;
}
.lilinkdiv-dropdown{
    display: none;
    position: absolute;
    min-width: 120px;
    padding: 10px 10px 10px 10px;
    text-wrap: nowrap;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;

}
.lilinkdiv-dropdown a {
    margin: 0 16px 0 auto;
    border-right: 1px solid #fff;
    padding-right: 14px;
}
.lilinkdiv-dropdown a:last-child {
    padding-right: 2px;
    border-right: none;
}

.ahlidrop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.liicon img {
    height: 20px;
    width: 20px;
}

.mu {
    width: 100%;  
}
.mu .wrapper {
    background-image: linear-gradient(to right,#9ee085,#1d1e20);
}

.mu .wrapper .container {
    min-width: 320px;
    padding: 2rem 0 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mu .wrapper .container .box {
    width: 38%;
  }
.mu .wrapper .container .box .intro {
    color: #1d1e20;
}
.mu .wrapper .container .box .intro h1 {
    margin: .6rem 0;
    font-size: 2.2vw;
    font-weight: 600;
    line-height: 1.1;
}

.mu .wrapper .container .box .intro h1 span {
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 2.4;
}

.mu .wrapper .container .box .intro p{
    margin: 1rem 0;
    letter-spacing: -.5px;
}
.mu .wrapper .container .alt-box {
    width: 60%;
    text-align: end;
}
.mu .wrapper .container .alt-box .intro {
    color: #fff;
}
.mu .wrapper .container .alt-box .intro h1 {
    margin: 1rem 0;
    font-size: 3vw;
    font-weight: 300;
    letter-spacing: 1.6px;
}
.mu .wrapper .container .alt-box .intro p{
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 8px;
}
.mu .wrapper .container .alt-box img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 5px 3px #9ee085);
    transition: .3s all ease;
}
.mu .wrapper .container .alt-box img:hover {
    transform: scale(1.05);
}
.mu .cta {
    padding: 2.4rem 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.mu .import-direct {
    padding: 1.4rem 3%;
    box-shadow: 0 2px 8px #9ee085;
}

.mu .import-direct .title {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 50%;
}

.mu .import-direct h2 {
    color: rgb(18, 59, 42);
    font-variant: small-caps;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.mu .import-direct p {
    color: #46464a;
    font-size: smaller;
    font-weight: 600;
    letter-spacing: .2px;
    text-align: center;
}

.mu .import-direct .import-direct-content{
    margin-top: 1rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 240px;
}

.mu .import-direct .import-direct-content .vehicle {
    padding: .5rem;
    border: 1px solid #9ee085;
    border-radius: 6px;
    width: 260px;
}

.mu .adjust{
    padding: .4rem 0;
    margin: 1.4rem 0 auto 0;
}
.mu .cta button{
    background-color: transparent;
    color: rgb(18, 59, 42);
    border: 1px solid #9ee085;
    border-radius: 6px;
    width: 180px;
    min-width: 180px;
    height: 80px;
    font-size: 1.1rem;
    font-weight: 600;
    word-wrap: break-word;
    cursor: pointer;
    transition: .3s all ease;
}
.mu .cta button:hover{
    background-color: #9ee085;
    transform: scale(1.1);
}
.mu .cta button.five {
    font-size: small;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: 2px solid #38c704;
    border-radius: 6px;
    min-width: 240px;
    height: 40px;
}
.mu .cta button.five:hover {
    background-color: rgb(35, 89, 67)
}

.mu .fv{
    padding: 0 3% 1rem 3rem;
    height: 250px;
}
.mu .fv .heading {
    padding-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--light-color)
}
.mu .fv .heading h2 {
    font-size: 2vw;
    color: rgb(34, 43, 94);
}
.mu .fv .heading p{
    font-size: 1.2rem;
    font-weight: bold;
    color: #38841d;
    letter-spacing: -.1px;
}
.mu .fv .heading .header{
    padding: .2rem 1rem;
    border-radius: 50px;
}
.mu .fv .heading .header:hover{
    background-color: rgba(71, 253, 5,.3);
}
.mu .fv .heading p img{
    width: 10px;
    height: 10px;
}
.mu .fv .container {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.mu .fv .container .box{
    width: 30%;
    min-width: 290px;
    max-width: 450px;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
}
.mu .fv .container .box .title{
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
}
.mu .fv .container .box .form {
    margin: .4rem 1rem 2rem 1rem;
}
.mu .fv .container .box .form .column {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
}
.mu .fv .container .box .form button {
    padding: .6rem 3rem;
    margin: .6rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    cursor: pointer;
}
.mu .fv .container .box .form button:hover{
    background-color: rgb(35, 89, 67)
}
.mu .fv .container .alt-box{
    padding: 1rem;
    min-width: 290px;
    background-color: var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
}
.mu .fv .container .alt-box .header {
    padding: 0 1rem;
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: .4rem;
}
.mu .fv .container .alt-box .header .bread {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.mu .fv .container .alt-box .header .bread a {
    color: rgb(34, 43, 94);
    transition: .3s ease all;
}
.mu .fv .container .alt-box .header .reference {
    margin: 4px 0;
    display: flex;
    gap: 2rem;
}
.mu .fv .container .alt-box .header .reference .back {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}
.mu .fv .container .alt-box .header .reference .back:hover{
    background-color: rgb(38, 125, 89);
}
.mu .fv .container .alt-box .header .reference .back span{
    padding-right: 4px;
}
.mu .fv .container .alt-box .header .reference .back img{
    width: 10px;
    height: 10px;
}
.mu .fv .container .alt-box h3{
    text-align: center;
}
.mu .fv .container .alt-box p{
    text-align: center;
}
.mu .fv .container .alt-box .cards{
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3.1rem;
}
.mu .fv .container .alt-box .cards .card{
    width: 130px;
    height: 100px;
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.mu .fv .container .alt-box .cards .card img{
    width: 100px;
}
.mu .fv .container .alt-box .cards .card .bike{
    width: 80px;
}

.mu .lv{
    padding: .8rem 3rem;
    height: 250px;
}
.mu .lv .heading {
    padding-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--light-color)
}

.h1-page {
    font-size: 1.5vw;
}

.mu .lv .heading h2 {
    font-size: 2vw;
    color: rgb(34, 43, 94);
}
.mu .lv .heading p{
    font-size: 1.2rem;
    font-weight: bold;
    color: #38841d;
    letter-spacing: -.1px;
}
.mu .lv .heading .header{
    padding: .2rem;
    border-radius: 50px;
}
.mu .lv .heading .header:hover{
    background-color: rgba(71, 253, 5,.3);
}
.mu .lv .heading p img{
    width: 10px;
    height: 10px;
}
.mu .lv .container {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.box-navi {
    width: 22%;
    min-width: 260px;
    height: fit-content;
    max-width: 450px;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
}

.box-navi .title {
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
  }

.dash-navi {
    padding: 1rem;
}

.dash-ul{
    list-style-type: none;
}

.dash-li {
    background-color: #fff;
    color: rgb(18, 59, 42);
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    padding: .625rem;
    margin: 1rem 0;
    width: 100%;
    min-width: 190px;
    transition: .3s ease all;
    cursor: pointer;
}

.dash-li:hover {
    color: #fff;
    background-color: rgb(18, 59, 42);    
}

.mu .lv .container .box{
    width: 22%;
    min-width: 260px;
    height: fit-content;
    max-width: 450px;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
}
.mu .lv .container .box .title{
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
}
.mu .lv .container .box .form {
    margin: .4rem 1rem 2rem 1rem;
}
.mu .lv .container .box .form .column {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
}
.mu .lv .container .box .form button {
    padding: .6rem 3rem;
    margin: .6rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    transition: .3s ease all;
    cursor: pointer;
}
.mu .lv .container .box .form button:hover{
    background-color: rgb(35, 89, 67)
}

.mu .lv .container .box-deactivated{
    width: 22%;
    min-width: 260px;
    height: fit-content;
    max-width: 450px;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
    pointer-events: none;
    opacity: .7;
}
.mu .lv .container .box-deactivated .title{
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
}
.mu .lv .container .box-deactivated .form {
    margin: .4rem 1rem 2rem 1rem;
}
.mu .lv .container .box-deactivated .form .column {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
}
.mu .lv .container .box-deactivated .form button {
    padding: .6rem 3rem;
    margin: .6rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    transition: .3s ease all;
    cursor: pointer;
}
.mu .lv .container .box-deactivated .form button:hover{
    background-color: rgb(35, 89, 67)
}

.mu .lv .container .alt-box{
    padding: .6rem 1rem;
    width: 76%;
    min-width: 260px;
    background-color: var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
}

.alt-box-extend {
    width: 100% !important;
}

.alt-box-extra {
    width: 33% !important;
}

.mu .lv .container .alt-box h3{
    text-align: center;
}
.mu .lv .container .alt-box p{
    text-align: center;
}
.mu .lv .container .alt-box .cards{
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.1rem;
}
.mu .lv .container .alt-box .cards .card{
    width: 130px;
    height: 100px;
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.mu .lv .container .alt-box .header{
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mu .lv .container .alt-box .header .bread{
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.mu .lv .container .alt-box .header .bread a{
    color: rgb(34, 43, 94);
    transition: .3s ease all;
}
.mu .lv .container .alt-box .header .bread a:hover{
    text-decoration: underline;    
}
.mu .lv .container .alt-box .header .reference{
    margin: 4px 0;
    display: flex;
    gap: 2rem;
}
.mu .lv .container .alt-box .header .reference .back{
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}
.mu .lv .container .alt-box .header .reference .back:hover{
    background-color: rgb(38, 125, 89);
}
.mu .lv .container .alt-box .header .reference .back span{
    padding-right: 4px;
}
.mu .lv .container .alt-box .header .reference .back img{
    width: 10px;
    height: 10px;
}
.mu .lv .container .alt-box .header .reference .save{
    padding: .5rem 1.4rem;
    color: #38c704;
    min-width: 120px;
    display: block;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    border: 1px solid #38c704;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
    pointer-events: none;
    opacity: .7;
}
.mu .lv .container .alt-box .header .reference .save:hover{
    box-shadow: 0 2px 1px -1px #00000014,0 1px 1px #00000024,0 1px #00000017;
}
.mu .lv .container .alt-box .filter{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
}
.mu .lv .container .alt-box .filter p{
    color: #0534ff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}
.mu .lv .container .alt-box .filter .sort{
    min-width: 25%;
    pointer-events: none;
    opacity: .7;
}
.mu .lv .container .alt-box .filter .sort .band{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mu .lv .container .alt-box .filter .sort .band label{
    min-width: 60px;
    font-size: .8rem;
    font-weight: bold;
}
.mu .lv .container .alt-box .content .title{
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    border-radius: 4px 4px 0 0;
}
.mu .lv .container .alt-box .content .title .image{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 1;
    border-right: 2px solid #fff;
    border-radius: 4px 0 0 0;
}
.mu .lv .container .alt-box .content .title .lot{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 2;
    border-right: 2px solid #fff;
}
.mu .lv .container .alt-box .content .title .vehicle{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 1;
    border-right: 2px solid #fff;
}
.mu .lv .container .alt-box .content .title .condition{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 1;
    border-right: 2px solid #fff;
    
}
.mu .lv .container .alt-box .content .title .sale{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 1;
    border-right: 2px solid #fff;
}
.mu .lv .container .alt-box .content .title .bid{
    padding: .7rem;
    width: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    flex-grow: 1;
    border-radius: 0 4px 0 0;
}
.mu .lv .container .alt-box .content .row{
    position: relative;
    padding: 10px;
    margin: 1rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: #fff;
    border-radius: 4px 4px;
}
.mu .lv .container .alt-box .content .row:hover{
    background-color: var(--lightest-color);
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}
.mu .lv .container .alt-box .content .row .image{
    position: relative;
    padding: .7rem;
    width: 100%;
    max-width: 160px;
    min-height: 120px;
    color: #fff;
    flex-grow: 1;
} 
.mu .lv .container .alt-box .content .row .image img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.mu .lv .container .alt-box .content .row .lot{
    padding: .7rem;
    width: 100%;
    flex-grow: 2;
}
.mu .lv .container .alt-box .content .row .lot a .title{
    font-size: 14px;
    font-weight: 800;
    color: #0534ff;
    margin-bottom: .8rem;
    text-transform: uppercase;
}
.mu .lv .container .alt-box .content .row .lot .stock .one{
    margin-right: .4rem;
    font-weight: 600;
}
.mu .lv .container .alt-box .content .row .lot .stock .two{
    color: #46464a;
    letter-spacing: .6px;
    font-size: 13px;
    font-weight: 600;
}
.mu .lv .container .alt-box .content .row .vehicle{
    padding: .7rem;
    width: 100%;
    flex-grow: 1;
}
.mu .lv .container .alt-box .content .row .vehicle .itemheading{
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}
.mu .lv .container .alt-box .content .row .vehicle .itemheading span{
    font-size: 12px;
    color: #46464a;
    letter-spacing: .6px;
}
.mu .lv .container .alt-box .content .row .condition{
    padding: .7rem;
    width: 100%;
    flex-grow: 1;   
}
.mu .lv .container .alt-box .content .row .condition .itemheading{
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}
.mu .lv .container .alt-box .content .row .condition .itemheading span{
    font-size: 12px;
    color: #46464a;
    letter-spacing: .6px;
}
.mu .lv .container .alt-box .content .row .sale{
    padding: .7rem;
    width: 100%;
    flex-grow: 1;
}
.mu .lv .container .alt-box .content .row .sale .itemheading{
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}
.mu .lv .container .alt-box .content .row .sale .itemheading span{
    font-size: 12px;
    font-weight: 600;
    color: #46464a;
}
.mu .lv .container .alt-box .content .row .bid{
    padding: .7rem;
    width: 100%;
    flex-grow: 1;
}
.mu .lv .container .alt-box .content .row .bid .itemheading{
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}
.mu .lv .container .alt-box .content .row .bid .itemheading span{
    font-size: 12px;
    color: #0534ff;
    letter-spacing: .6px;
}
.mu .lv .container .alt-box .content .row .bid .link {
    display: inline-block;
    margin: .3rem auto;
    padding: .1rem .2rem;
    width: 90px;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.2px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fafafb;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease-out;    
}
.mu .lv .container .alt-box .content .row .bid .link:hover{
    box-shadow: 0 1px 5px var(--light-color);
    transition: box-shadow .2s;
}

.mu .lv .container .alt-box .content .row .bid .link-alt {
    color: var(--main-color);
    background-color: transparent;
}

.list-header {
    margin: 1rem 0;
    display: flex;
    gap: .4rem;
}

.lh-image {
    padding: 1rem 0 .4rem 1rem;
    width: 34%;
    height: 100%;
    background-color: #46464a;
    color: #fff;
    border-radius: 4px 0 0 0;
}

.lh-image-adj {
    padding: 1rem 0 .4rem 1rem;
    width: 50%;
    height: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    border-radius: 4px 0 0 0;
}

.lh-details {
    padding: 1rem 0 .4rem 1rem;
    width: 66%;
    height: 100%;
    background-color: #46464a;
    color: #fff;
    border-radius: 0 4px 0 0;
}

.lh-details-adj {
    padding: 1rem 0 .4rem 1rem;
    width: 50%;
    height: 100%;
    background-color: hsl(220, 5%, 12%);
    color: #fff;
    border-radius: 0 4px 0 0;
}

.img-ctnr {
    width: 100%;
    background-color: #fff;  
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.imgc-box {
    margin: .4rem;
    width: 24%;
    background-color: var(--lighter-color);
    list-style: none;
}

.imgc-box img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;

}

.list-row {
    margin: 2rem 0;
    display: flex;
    gap: .4rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.list-row:hover{
    background-color: var(--lightest-color);
    box-shadow: 0 2px 10px var(--light-color);
    transition: box-shadow .2s;
}

.lr-image {
    margin: .4rem;
    width: 34%;
    border-radius: 4px 0 0 4px;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.lr-image-adj {
    margin: .4rem;
    width: 50%;
    border-radius: 4px 0 0 4px;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.lri-main {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
    overflow: hidden;
}

.lri-main:hover{
    background-color: #f4f4f4;
    transform: scale(1.025);
}

.lri-main-det {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
    overflow: hidden;
}

.lrim-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.lri-thumbs {
    display: flex;
    gap: .4rem;
}

.lrit-one {
    width: 100%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
}

.lrit-one:hover{
    background-color: #f4f4f4;
    transform: scale(1.1);
}

.lrito-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 14/9;
}

.lrit-two {
    width: 100%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
}

.lrit-two:hover{
    background-color: #f4f4f4;
    transform: scale(1.1);
}

.lritt-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 14/9;
}


.lrit-three {
    width: 100%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
}

.lrit-three:hover{
    background-color: #f4f4f4;
    transform: scale(1.1);
}

.lrith-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 14/9;
}

.img-reorder {
    margin: .4rem;
    display: flex;
    gap: .4rem;
}

.img-reorder-li {
    width: 300px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.img-reorder-each {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.lr-details {
    margin: .4rem;
    width: 66%;
    border-radius: 0 4px 4px 0;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.lr-details-adj {
    margin: .4rem;
    width: 25%;
    border-radius: 0 4px 4px 0;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.lrd-up {
    height: fit-content;
}

.lrdu-commend {
    padding: .2rem 1rem;
}
.lrdu-pad {
    padding: .4rem 1rem;
}
.lrdu-price {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lrdu-marg {
    margin: 2rem auto;
}

.lrdup-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #46464a;
    letter-spacing: -.6px;
}

.lrdu-title {
    padding: .4rem 1rem 0 1rem;
    display: flex;
    gap: 2rem;
}

.lrdut-title {
    text-align: left !important;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0534ff;
    letter-spacing: -.6px;
}

.lrdut-lot {
    color: var(--title-color);
    font-size: .8rem;
    font-weight: 600;
}

.lrdu-details {
    padding: .2rem 1rem;
}

.lrdud-subtitle {
    padding-bottom: .4rem;
    text-align: left !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--title-color);
    border-bottom: 1px solid #ccc;
}

.lrdud-info {
    margin: .4rem 0 .2rem 0;
    text-align: left !important;
}

.lrdud-desc {
    text-align: left !important;
}

.lrdud-pin {
    padding: 0 0 .6rem 0;
    margin: .2rem 0 0 0;
    text-align: left !important;
    border-bottom: 1px solid #ccc;
}

.lrd-down {
    padding: .2rem 1rem;
}

.lrdd-action {
    margin: .6rem 0;
}

.mu .dv{
    padding: 0 3%;
}
.mu .dv .heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--light-color)
}
.mu .dv .heading .bread{
    padding-bottom: .6rem;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.mu .dv .heading .bread a{
    color: rgb(34, 43, 94);
    transition: .3s ease all;
}
.mu .dv .heading .bread a:hover{
    text-decoration: underline;    
}
.mu .dv .heading .reference .back {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}
.mu .dv .heading .reference .back:hover{
    background-color: rgb(38, 125, 89);
}
.mu .dv .heading .reference .back span{
    padding-right: 4px;
}
.mu .dv .heading .reference .back img{
    width: 10px;
    height: 10px;
}
.mu .dv .container{
    margin: .6rem 0;
}
.mu .dv .container h1{
    color: hsl(220, 5%, 12%);
    display: contents;
    font-size: 1.4rem;
    font-weight: 800;
}
.mu .dv .container .box{
    margin: .6rem 0;
    display: flex;
    justify-content: space-between;
    height: 200px;
}
.mu .dv .container .box .pix{
    width: 40%;
    border-radius: 12px;
    border: 1px solid hsl(212, 35%, 92%);
    position: relative;
}
.mu .dv .container .box .pix img{
    position: absolute;
    object-fit: cover;
    height: 100%;
}
.mu .dv .container .box .specs{
    width: 28%;
    border-radius: 12px;
    border: 1px solid hsl(212, 35%, 92%);
}
.mu .dv .container .box .info{
    width: 28%;
    border-radius: 12px;
    border: 1px solid hsl(212, 35%, 92%);
}

.flc{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ano{
    color: rgb(34, 43, 94);
}

.bgo{
    background-color: var(--lightest-color);
}
.bgt{
    background-color: var(--lighter-color);
}
.bgh{
    background-color: var(--light-color);
}
.bgf{
    background-color: #fff;
}

.bxfmo{
    position: relative;
    width: 100%;
    min-width: 290px;
    max-width: 450px;
    overflow: hidden;
    margin: 1rem 0;
}

.cdso{
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.1rem;
}
.cdo{
    width: 130px;
    height: 100px;
    border: 1px solid var(--light-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.clm{
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
}
.clmt{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cto{
    width: 100%;
    min-width: 300px;
}

.flt{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flc{
    justify-content: center;
}
.fls{
    justify-content: flex-start;
}

.fto{
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.ftt{
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
}

.fmrg .grp{
    position: relative;
    padding: 0 0 .6rem 0;
}

.eyeopn{
    position: absolute;
    top: 48%;
    right: 4%;
    width: 15px;
    cursor: pointer;
}

.eyecls{
    position: absolute;
    top: 48%;
    right: 4%;
    width: 15px;
    cursor: pointer;
}
#hide1{
    display: none;
}

.grp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.grp label{
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
}
.grp input{
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
}

.txt-input {
    height: 10rem;
}

.grp input:focus{
    outline: 0;
}
.grp.success input{
    border-color: var(--success-color);
}
.grp.error input{
    border-color: var(--error-color);
}
.grp .error{
    color: var(--error-color);
}
.grp select{
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
}
.grp small{
    position: relative;
    bottom: 0;
    left: 0;
    height: 8px;
    margin-bottom: .375rem;
}

.grp-btns {
    /* margin: 0 auto; */
    display: flex;
    justify-content: center;
}

.grp-btn-one {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
  }

.pointer {
    pointer-events: none;
}

.hdt{
    font-size: 2vw;
    font-weight: 600;
    color: rgb(34, 43, 94);
    letter-spacing: -1.6px;    
}

.imo{
    width: 10px;
    height: 10px;
}
.imt{
    width: 80px;
}


.mu{
    width: 100%;   
}
.muctnfw{
    width: 100%;
}

.togbtns{
    display: none;
}
.tognav{
    display: none;
}

.modal-btnv,
.modal-btnb,
.modal-btnp,
.modal-btnu,
.modal-btnl,
.modal-btnm,
.modal-btne,
.modal-btn{
    width: 130px;
    height: 100px;
    border: 1px solid var(--light-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;    
}
.modal-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}
.bg-active {
    visibility: visible;
    opacity: 1;
}
.modal {
    position: relative;
    background-color: white;
    width: 30%;
    min-width: 290px;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 4px;
    overflow-y: auto;
}
.modal .modal-close {
    position: absolute;
    top: 2px;
    right: 10px;
    font-weight: bold;
    font-size: 2rem;
    color: red;
    cursor: pointer;
}

.modal-bg .modal form .card {
    width: 100%;
    height: 100%;
    min-width: 285px;
    max-width: 350px;
    background-color: rgba(128, 128, 128, .2);
    border-radius: .5rem;
    box-shadow: none !important;
    padding: 1rem;    
    margin: 3.4rem auto;
    display: none;
}
.modal-bg .modal form .card h2 {
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
}
.modal-bg .modal form .card .step-title {
    margin: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid hsla(220, 68%, 12%, .1);
}
.modal-bg .modal form .card p {
    margin-bottom: 1rem;
    text-align: left;
}
.modal-bg .modal form .card .form-group {
    margin: .4rem 0;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.modal-bg .modal form .card .form-group > label {
    width: 100px;
    font-size: smaller;
    font-weight: 600;
    text-align: right;
}
.modal-bg .modal form .card .form-group > input {
    padding: 1px 6px;
    width: 140px;
    border: 1px solid rgba(128, 128, 128, .7);
    border-radius: 3px;
}
.modal-bg .modal form .card .form-group > select {
    width: 140px;
    background-color: white;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    display: inline-block;
    padding: .1rem .5rem;
    margin-right: .8rem;
    color: #666;
}
.modal-bg .modal form .card .directional {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsla(220, 68%, 12%, .1);
}
.modal-bg .modal form .card button {
    width: 100px;
    margin: 1rem auto;
    outline: none;
    border: none;
    border-radius: .4rem;
    background-color: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal-bg .modal form .card.active {
    display: block;
}

.pro{
    font-size: 1.2rem;
    font-weight: bold;
    color: #38841d;
    letter-spacing: -.1px;
}

.tc{
    text-align: center;
}
.ttc{
    text-transform: capitalize;
}
.ttu{
    text-transform: uppercase;
}
.tcl{
    color: rgb(18, 59, 42);
}

.wdo{
    width: 100%;
}
.wro{
    padding: 0 3%;
}
.success{
    color: var(--success-color);
}

.status-success{
    color: var(--success-color);
    text-align: center;
    font-weight: 600;
    margin: .5rem;
    background-color: rgba(71, 253, 5,.3);
}

.pg-details {
    width: 100%;
    min-width: 300px;
}

.wrp-bread {
    padding: .4rem 3%;
    box-shadow: 0 2px 8px hsla(220, 68%, 12%, .1);
}

.wrp-content {
    padding: .4rem 3%;
}

.pg-details .ctn-info {
    margin: .2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-left {
    display: flex;
    align-items: center;
}

.ctn-content{
    margin: 1rem auto;
    border: 1px solid var(--light-color);
    height: 300px;
    display: flex;
    justify-content: space-between;
}

.bx-image{
    border: 1px solid var(--light-color);
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-main{
    position: relative;
    padding: .7rem;
    width: 100%;
    height: 100%;
    color: #fff;
    flex-grow: 1;
}

.img-main img{
    padding: 1rem;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.img-thumbs{
    border: 1px solid var(--light-color);
    height: 28%;
}

.bx-details{
    border: 1px solid var(--light-color);
    width: 28%;
}

.bx-price{
    border: 1px solid var(--light-color);
    width: 28%;
    display: flex;
    flex-direction: column;
}

.prc-price{
    border: 1px solid var(--light-color);
    height: 50%;
}

.prc-info{
    border: 1px solid var(--light-color);
    height: 50%;
}

.cardtype{
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .4rem;
    padding-bottom: 1rem;
}
.cardtypecontent {
    width: 80px;
    height: 80px;
    border: 1px solid var(--light-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
.cardtypeimage {
    width: 100%;
    padding: 10px;
}

.flashDataSuccess {
    padding: 1rem 0 0 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: small;
    text-align: center;
}

.flashDataError {
    padding: 2rem;
    color: var(--error-color);
    font-weight: 600;
    font-size: small;
    text-align: center;
}

.yardmap {
    width: 100%;
    height: 100%;
}

.mdl-wp {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: visibility 0s, opacity 0.5s;
}

.mdl {
    position: relative;
    background-color: white;
    width: 40%;
    min-width: 290px;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 4px;
    overflow-y: auto;
}

.mdl .cls {
    padding: .2rem;
    position: absolute;
    top: 6px;
    right: 6px;
    height: 30px;
    width: 30px;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--col-err);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--col-lgtt);
    border-radius: 50%;
    border: 1px solid var(--col-lgtr);
}

.mdl-hr {
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--col-lgtr);
    border-radius: .4rem .4rem 0 0;
}

.mdl-by {
    height: 10vh;
    text-align: center;
    padding: 2rem 0;
}

.mdl-fr {
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--col-lgts);
    border-radius: 0 0 .4rem .4rem;
    border-top: 1px solid var(--col-lgt);
}

.btn-a {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: var(--col-bg-pri);
    color: var(--col-wh);
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}

.lr-image-adj {
    margin: .4rem;
    width: 50%;
    border-radius: 4px 0 0 4px;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: relative;
    overflow: hidden;
}

  .slides {
    display: flex;
    height: 100%;
  }
  .slide {
    min-width: 100%;
    position: relative;
  }

  .slide img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

  .slide-controls {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #next-btn,
  #prev-btn {
    cursor: pointer;
    background: transparent;
    font-size: 30px;
    border: none;
    padding: 10px;
    color: white;
  }
  #next-btn:focus,
  #prev-btn:focus {
    outline: none;
  }
  .slide-content {
    position: absolute;
    top: 50px;
    left: 50px;
    transform: translateY(-50%);
    font-size: 16px;
    color: white;
  }

.row-heading {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid hsla(220, 68%, 12%, .1);
    border-top: 1px solid hsla(220, 68%, 12%, .1);
}

.tbl-header {
    margin: .8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbl-header input {
    padding: 2px 4px;
}

.modal-btn {
    width: 130px;
    height: 100px;
    border: 1px solid var(--light-color);
    border-radius: 6px;
    padding: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.ctn-table .tbl-body .table {
    width: 100%;
    border-collapse: collapse;
}

.ctn-table .tbl-body .table {
    border-collapse: collapse;
}

.wrp-all {
    width: 100%;
}

.ctn-all {
    padding: .8rem 3rem;
    height: 250px;
}

.ctn-ctnt {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.bx-aside {
    width: 22%;
    min-width: 260px;
    height: fit-content;
    max-width: 450px;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
}

.bxa-title {
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
}

.bxa-ctnt {
    padding: 1rem;
}

.bxac-ul {
    list-style-type: none;
}

.bxac-li {
    background-color: #fff;
    color: rgb(18, 59, 42);
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    padding: .625rem;
    margin: 1rem 0;
    width: 100%;
    min-width: 190px;
    transition: .3s ease all;
    cursor: pointer;
}

.bxac-li:hover {
    color: #fff;
    background-color: rgb(18, 59, 42);    
}

.bx-ctnt {
    padding: .6rem 1rem;
    margin-bottom: 2rem;
    width: 76%;
    min-width: 260px;
    background-color: var(--lighter-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
    overflow: hidden;
}

.bxc-header {
    padding: 1rem 0;
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bxc-content-alt{
    max-width: 100%;
}

.bxch-bread {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.bxch-bread a {
    color: rgb(34, 43, 94);
    transition: .3s ease all;
}

.bxch-bread a:hover{
    text-decoration: underline;    
}

.bxcc-header h3 {
    margin: 1rem 0 .4rem 0;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.bxcc-header-grp {
    margin: .2rem 0;
    padding: .02rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .4rem;
    border-radius: 4px;
  }

.bxcc-header-grp h3 {
    padding: .1rem 2rem .4rem .625rem;
    margin: 1rem 0 .4rem 0;
    width: 100%;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.tbll-row {
    margin: 1rem 0;
    padding: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .4rem;
    background-color: #fff;
    border-radius: 4px;
}

.grp-btn {
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: 1px solid rgb(18, 59, 42);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    font-weight: bold;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
}

.grp-btn:hover{
    background-color: rgb(38, 125, 89);
    border: 1px solid rgb(38, 125, 89);
}

.plain-row {
    padding: .4rem;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: scroll;
}

.maxheight {
    max-height: 240px;
    overflow-y: scroll;
}

.pr-items {
    margin: 1rem 0;
    padding: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .4rem;
    background-color: var(--lightest-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
}

.pri-item {    
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .1rem 2rem .4rem .625rem;
    width: 100%;
}

.row-items {
    margin: .2rem 0;
    padding: .02rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .4rem;
    background-color: var(--lightest-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
}

.row-items:hover {
    background-color: var(--lighter-color);
    transition: all .3s ease-out;
}

.row-item {    
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .1rem 2rem .4rem .625rem;
    width: 100%;
}

.grp #result {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.grp #result div {
    width: 48%;
}

.thumbnail {    
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.bgcolourwhite {
    background-color: #fff;
}

.table-container {
    background-color: #fff;
    margin: 0 0 2rem 0;
    padding: .4rem;
    width: 100%;
    height: fit-content;
  }
  
  .table-title {
    margin: 0 0 1rem 0;
  }
  
  .record-header {
    padding: 0 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .add, .browse {
    display: flex;
    align-items: center;
  }
  
  .add span {
    display: inline-block;
    margin-right: .6rem;
    font-size: .9rem;
    color: #666;
  }
  
  input, button, select {
    outline: none;
  }
  
  .add select, .browse input, .browse select {
    height: 35px;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    display: inline-block;
    width: 75px;
    padding: 0rem .5rem;
    margin-right: .8rem;
    color: #666;
  }
  
  .add button {
    background: #22BAA0;
    color: #fff;
    height: 37px;
    border-radius: 4px;
    padding: 0rem 1rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
  }
  
  .browse input {
    width: 150px;
  }
  
  .browse select {
    width: 100px;
  }
  
  
  .table-box {
    width: 100%;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  thead {
    background-color: rgba(113, 99, 186,255);
    color: #fff;
  }
  
  th {
    padding: .4rem 1rem;
    text-align: left;
  }
  
  tbody {
    background-color: #f2f2f2;
  }
  
  td {
    padding: .4rem 1rem;
    font-size: 14px;
    color: #333;
  }
  
  tr:nth-child(even) {
    background: #fff;
  }
  
  tfoot {
    background: rgba(113, 99, 186,255);
    font-weight: bold;
    color: #fff;
  }
  
  tfoot td {
    padding: .4rem 1rem;
    color: #fff;
  }
  
  .table-box button {
    color: green;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tabs-wrapper {
    width: 100%;
  }

  .tabs-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .tabs-container label {
    flex-grow: 1;
    min-width: 200px;
    background-color: var(--lighter-color);
    border: 1px solid var(--main-color);
    font-weight: bold;
    text-align: center;
    order: 1;
    display: block;
    padding: 16px;
    margin-right: 4px;
    cursor: pointer;
  }

  .tabs-container .tabs-content {
    display: none;
    padding: 30px;
    order: 99;
    flex-grow: 1;
    width: 100%;
  }

  .tabs-container input[type="radio"] {
    display: none;
  }

  .tabs-container input[type="radio"]:checked + label {
    background-color: #fff;
    border-radius: .6rem .6rem 0 0;
    border-bottom: none;
  }

  .tabs-container input[type="radio"]:checked + label + .tabs-content {
    display: block;
    border: 1px solid var(--main-color);
    border-top: none;
  }

@-webkit-keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  @keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  .add-type-modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6); 
  }
  
  .add-type-modal-content {
    background: #fff;
    margin-top: 6%;
    width: 30%;
    position: absolute;
    top:0;
    left: 50%;
    border-radius: .4rem;
    transform: translateX(-50%);
    animation-name: modalZoom;
    animation-duration: 0.3s; 
  }
  
  .main-form-register-one {
    width: 100%;    
    background: black;
  }
  
  .container-form-type-one {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .box-form-type-one {
    position: relative;
    width: 100%;
    min-width: 290px;
    max-width: 450px;  
    overflow: hidden;            
    border: 1px solid var(--border-color);
    border-radius: .4rem;  
  }
  
  .form-register-one {
    padding: 2rem 2rem 1rem 2rem;
  }
  
  .close-form-type-one {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--error-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
  }
  
  .ahref-form-type-one {
    text-decoration: none;
    color: inherit;
  }
  
  .heading-form-type-one {
    padding: 1rem 0;
    text-align: center;
    background-color: var(--lighter-color);
  }
  
  .title-form-type-one {
    padding: 1.2rem;
  }
  
  .title-sub-form-type-one {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
  }
  
  .ahref-title-sub-form-register-one {
    text-decoration: none;
    color: rgb(18, 59, 42);
  }
  
  .ahref-title-sub-form-register-one:hover {
    color: rgb(91, 230, 114);
  }
  
  .title-sub-form-register-two {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  .column-form-register-one {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
  }
  
  .band-form-register-one {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .band-form-register-one label {
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
  }
  
  .band-form-register-one input {
    border: 1px solid var(--border-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .375rem;
    width: 100%;
  }
  
  .band-form-register-one select {
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--border-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .375rem;
    width: 100%;
  }
  
  .band-form-register-one .error {
    color: var(--error-color);
  }
  
  .band-form-register-one small {
    position: relative;
    bottom: 0;
    left: 0;
    height: 14px;
  }
  
  .eyeopn {
    position: absolute;
    top: 40%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .eyecls {
    position: absolute;
    top: 40%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .button-submit-form-register-one {
    padding: .6rem 3rem;
    margin: .8rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    cursor: pointer;
  }

@-webkit-keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  @keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  .add-make-modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6); 
  }
  
  .add-make-modal-content {
    background: #fff;
    margin-top: 6%;
    width: 30%;
    position: absolute;
    top:0;
    left: 50%;
    border-radius: .4rem;
    transform: translateX(-50%);
    animation-name: modalZoom;
    animation-duration: 0.3s; 
  }
  
  .main-form-register-one {
    width: 100%;    
    background: black;
  }
  
  .container-form-make-one {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .box-form-make-one {
    position: relative;
    width: 100%;
    min-width: 290px;
    max-width: 450px;  
    overflow: hidden;            
    border: 1px solid var(--border-color);
    border-radius: .4rem;  
  }
  
  .form-register-one {
    padding: 2rem 2rem 1rem 2rem;
  }
  
  .close-form-make-one {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--error-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
  }
  
  .ahref-form-make-one {
    text-decoration: none;
    color: inherit;
  }
  
  .heading-form-make-one {
    padding: 1rem 0;
    text-align: center;
    background-color: var(--lighter-color);
  }
  
  .title-form-make-one {
    padding: 1.2rem;
  }
  
  .title-sub-form-make-one {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
  }
  
  .ahref-title-sub-form-register-one {
    text-decoration: none;
    color: rgb(18, 59, 42);
  }
  
  .ahref-title-sub-form-register-one:hover {
    color: rgb(91, 230, 114);
  }
  
  .title-sub-form-register-two {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  .column-form-register-one {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
  }
  
  .band-form-register-one {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .band-form-register-one label {
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
  }
  
  .band-form-register-one input {
    border: 1px solid var(--border-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .375rem;
    width: 100%;
  }
  
  .band-form-register-one select {
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--border-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .375rem;
    width: 100%;
  }
  
  .band-form-register-one .error {
    color: var(--error-color);
  }
  
  .band-form-register-one small {
    position: relative;
    bottom: 0;
    left: 0;
    height: 14px;
  }
  
  .eyeopn {
    position: absolute;
    top: 40%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .eyecls {
    position: absolute;
    top: 40%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .button-submit-form-register-one {
    padding: .6rem 3rem;
    margin: .8rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    cursor: pointer;
  }

@-webkit-keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  @keyframes modalZoom {
    from {
      transform: translate(-50%, -50%) scale(0); }
    to {
      transform: translate(-50%, -50%) scale(1); } }
  .add-record-modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6); 
  }
  
  .add-record-modal-content {
    background: #fff;
    margin-top: 6%;
    width: 90%;
    min-height: 100vh;
    position: absolute;
    top:0;
    left: 50%;
    border-radius: .4rem;
    transform: translateX(-50%);
    animation-name: modalZoom;
    animation-duration: 0.3s; 
  }
  
  .main-form-register-one {
    width: 100%;    
    background: black;
  }
  
  .container-form-register-one {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
  }
  
  .box-form-register-one {
    position: relative;
    width: 30%;
    min-width: 290px;
    max-width: 450px;  
    overflow: hidden;            
    border: 1px solid var(--border-color);
    border-radius: .4rem;  
  }
  
  .form-register-one {
    padding: 2rem 2rem 1rem 2rem;
  }

  .form-type-one {
    padding: 2rem 2rem 1rem 2rem;
  }

  .form-make-one {
    padding: 2rem 2rem 1rem 2rem;
  }
  
  .close-form-register-one {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--error-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
  }
  
  .ahref-form-register-one {
    text-decoration: none;
    color: inherit;
  }
  
  .heading-form-register-one {
    padding: 1rem 0;
    text-align: center;
    background-color: var(--background-color);
  }
  
  .title-form-register-one {
    padding: 1.2rem;
  }
  
  .title-sub-form-register-one {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
  }
  
  .ahref-title-sub-form-register-one {
    text-decoration: none;
    color: rgb(18, 59, 42);
  }
  
  .ahref-title-sub-form-register-one:hover {
    color: rgb(91, 230, 114);
  }
  
  .title-sub-form-register-two {
    padding: 0 0 .6rem 0;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  .column-form-register-one {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
  }
  
  .band-form-register-one {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .band-form-register-one label {
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
  }

  .label-type {
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
    order: 0;
    width: 100%;
    background-color: #fff;
    border: none;
  }
  
  .band-form-register-one input {
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
  }
  
  .band-form-register-one select {
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .8rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
  }
  
  .band-form-register-one .error {
    color: var(--error-color);
  }
  
  .band-form-register-one small {
    position: relative;
    bottom: 0;
    left: 0;
    height: 14px;
  }
  
  .eyeopn {
    position: absolute;
    top: 48%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .eyecls {
    position: absolute;
    top: 48%;
    right: 4%;
    width: 15px;
    cursor: pointer;
  }
  
  .button-submit-form-register-one {
    padding: .6rem 3rem;
    margin: .8rem auto;
    color: #fff;
    min-width: 180px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid var(--main-color);
    border-radius: .4rem;
    cursor: pointer;
  }

.main-wrapper{
    padding: 2% 3%;
    width: 100%;
}
.edit-form {
    margin: 0 auto;
    min-width: 290px;
    border: 1px solid var(--lighter-color);
    border-radius: .4rem .4rem .4rem .4rem;
}
.edit-form-head{
    display: flex;
    justify-content: space-between;
    padding: 1% 2%;
    background-color: var(--lighter-color);    
    overflow: hidden;
}
.edit-form-h3{
    font-size: 1.6vw;
}
.edit-form-editbtn{
    padding: .4rem 2rem;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: 1px solid rgb(18, 59, 42);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    font-weight: bold;
    cursor: pointer;
}
.edit-form-editbtn:hover{
    background-color: rgb(38, 125, 89);
}
.edit-form-body{
    margin: 2%;
    padding: 1%;
    border: 1px solid var(--lighter-color);
    border-radius: .4rem .4rem .4rem .4rem;
}
.edit-form-row1{
    display: flex;
    gap: 1rem;
}
.edit-form-img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}
.lot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.lot label{
    margin-bottom: .32rem;
    font-size: x-small;
    font-weight: 600;
}
.lot input{
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
}
.lot select{
    background-color: #fff;
    color: #616263;
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
}
.lot small{
    position: relative;
    bottom: 0;
    left: 0;
    height: 14px;
}

.deactivated {
    pointer-events: none;
    opacity: .7;
}

.headerHome {
    max-width: 100%;
    min-width: 300px;
}

.wrapperHomeFirst {
    background-image: linear-gradient(to right,#46464a,#38c704);
}

.containerHomeFirst {
    padding: .4rem 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.siteLogo {
    width: 130px;
    cursor: pointer;
}

.siteLogo img {
    width: 100%;
}

#checkboxLoginRegister {
    display: none;
}

.labelCheckbox {
    font-size: .9rem;
    font-weight: 600;
    color: var(--lighter-color);
    cursor: pointer;
    display: none;
}

.loginRegister button{
    margin: 0 .6rem;
    padding: .4rem;
    width: 100px;
    font-size: .9rem;
    font-weight: 600;
    outline: none;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: .3s ease all;
    cursor: pointer;
}

.loginRegister button:hover {
    background-color: rgb(38, 125, 89);
}

.loginRegister button span{
    padding-left: 4px;
    /* font-size: smaller; */
}

.toggleButtons{
    display: none;
}

.toggleNav{
    display: none;
}

.wrapperHomeSecond {
    background-color: #46464a;
    margin-bottom: .2rem;
}

.containerHomeSecond {
    padding: .6rem 3%;
    min-width: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navHomeSecond {
    padding: .6rem 3%;
    margin-bottom: .2rem;
    width: 100%;
    min-width: 290px;
    background-color: #46464a;
    display: flex;
    justify-content: center;
    align-items: center;   
}

#checkboxNav {
    display: none;
}

.labelCheckboxNav {
    font-size: .9rem;
    font-weight: 600;
    color: var(--lighter-color);
    cursor: pointer;
    display: none;
}

.navUl {
    padding: 2px 0;
    display: flex;
    gap: .4rem;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.navUlLiDrop,
.navUlLi {
    padding: 0 .4rem 0 .4rem;
    list-style: none;
    text-decoration: none;
    background-color: #46464a;
    color: var(--lighter-color);
    font-size: smaller;
    font-weight: 600;
    letter-spacing: .2px;
    transition: .3s all ease;
    display: flex;
    cursor: pointer;
}

.navUlLiDrop {
    position: relative;
    padding: 0 .4rem 0 .4rem;
    display: inline-block;
    background-color: #46464a;
}
.navUlLiDrop:hover,
.navUlLi:hover    {
    color: #38c704;
}

.ulLiDrop {
    position: absolute;
    padding: .8rem 0 .4rem .4rem;
    margin: 1.4rem 0 0 0;
    min-width: 120px;
    display: none;
    list-style: none;   
    left: 0;
    background-color: #46464a;
    border-radius: 0 0 .2rem .2rem;
}

.ulLiDropLi {
    padding: 0 0 .3rem 0;
}

.navUlLiDrop:hover > .ulLiDrop {
    display: inline-block;
    color: white;
}

.ulLiDropLi:hover {
    color: #38c704;
}

.liSpan {
    margin: 0 0 0 .3rem;
}

.mainHome {
    width: 100%;
}

.mainHomeWrapper {
    background-image: linear-gradient(to right,#9ee085,#1d1e20);
    background-repeat: no-repeat !important;
    background-position: right;
    background-size: cover;
}

.mainHomeContainer {
    min-width: 320px;
    padding: 2rem 0 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainHomeTitle {
    padding: 1rem 0;
    width: 38%;
}

.mainHomeH1 {
    font-size: 2.2vw;
    font-weight: 600;
    color: #1d1e20;
    line-height: 1.1;
    
}

.mainHomeH1 span {
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 2.4;
    text-transform: uppercase;
}

.mainHomeP1 {
    margin: 1rem 0;
    color: #1d1e20;
    letter-spacing: -.5px;
}

.mainHomeImage {
    width: 60%;
}

.mainHomeImg {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 5px 3px #9ee085);
    transition: .3s all ease;
}

.mainHomeImg:hover {
    transform: scale(1.05);
}

.marginAllOne {
    margin: 1rem;
}

.marginAllHalf {
    margin: .5rem;
}

.marginSideOne {
    margin: 0 1rem;
}

.marginSideHalf {
    margin: 0 .5rem;
}

.marginUpDownOne {
    margin: 0 1rem;
}

.marginUpDownHalf {
    margin: 0 .5rem;
}

.paddingAllOne {
    padding: 1rem;
}

.paddingAllHalf {
    padding: .5rem;
}

.paddingSideOne {
    padding: 0 1rem;
}

.paddingSideHalf {
    padding: 0 .5rem;
}

.paddingUpDownOne {
    padding: 1rem 0;
}

.paddingUpDownHalf {
    padding: .5rem 0;
}

.paddingSideUpOne {
    padding: 1rem 1rem 0 1rem;
}

.paddingSideUpHalf {
    padding: .5rem .5rem 0 .5rem;
}

.paddingSideBottomOne {
    padding: 0 1rem 1rem 1rem;
}

.paddingSideBottomHalf {
    padding: 0 .5rem .5rem .5rem;
}

.borderOneLight {
    border: 1px solid var(--light-color);
}

.borderOneLighter {
    border: 1px solid var(--lighter-color);
}

.borderOneLightest {
    border: 1px solid var(--lightest-color);
}

.borderRadiusFourAll {
    border-radius: .25rem;
    overflow: hidden;
}

.borderRadiusEightAll {
    border-radius: .5rem;
    overflow: hidden;
}

.bgColourLight {
    background-color: var(--light-color);
}

.bgColourLighter {
    background-color: var(--lighter-color);
}

.bgColourLightest {
    background-color: var(--lightest-color);
}

.colourGreenMain {
    color: var(--colour-green-main);
}

.flexedRow {
    display: flex;
    flex-direction: row;
}

.flexedRowSpaceBetween {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flexedRowAthird {
    width: 33%;
    min-width: 260px;
}

.flexedRowAthirdAlt {
    width: 67%;
}

.flexedRowAquarter {
    width: 25%;
}

.flexedRowAquarterAlt {
    width: 75%;
}

.imgSet {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.txtCentred {
    text-align: center;
}

.liSetOne {
    background-color: #fff;
    color: var(--colour-green-main);
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    padding: .625rem;
    margin: 1rem 0;
    width: 100%;
    min-width: 190px;
    transition: .3s ease all;
    cursor: pointer;
}

.liSetOne:hover {
    color: #fff;
    background-color: rgb(18, 59, 42);    
}

.mainWrapper {
    width: 100%;    
}

.sectionWrapper {
    padding: .8rem 3%;
    min-height: 250px;
}

.containerWrapper {
    width: 100%;
}

.containerContent {
    width: 100%;
}

.boxContent {
    width: 100%;
    min-width: 260px;
    overflow: hidden;
}

.boxHeading {
    width: 100%;
}

.mainContainer {
    padding: 0 3%;
}
.mainBoxes{
    padding: 1rem 0;
}
.cardsContainer{
    margin-bottom: 2rem !important;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ui-state-default {
    background-color: var(--lightest-color) !important;
    border: 1px solid var(--lighter-color) !important;
    border-radius: 6px;
    margin: auto auto 1rem auto;
}

.ui-state-default .cardsContainer {
    margin-bottom: 0 !important;
}

.ui-state-default:hover{
    background-color: var(--lightest-color) !important;
    box-shadow: 0 2px 10px var(--light-color) !important;
    border: 1px solid var(--main-color) !important;
    transition: box-shadow .2s;
}

.columnGrp {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
}
.cardBox {
    width: 290px;
    min-width: 290px;
    max-width: 290px;
    height: fit-content;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    overflow: hidden;
}

.cardBoxOne {
    width: 290px;
    min-width: 290px;
    max-width: 290px;
    height: fit-content;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

/* .cardBoxOne:hover{
    background-color: var(--lightest-color);
    box-shadow: 0 2px 10px var(--light-color);
    border: 1px solid var(--main-color);
    transition: box-shadow .2s;
} */

.cardBoxHeaderTitle {
    display: inline-block;
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: .4rem .4rem 0 0;
}
.cardBoxBody {
    padding: 1rem 2rem;
}

.cardBoxBodyImg {
    padding: .5rem;
}

.cardBoxBodyUlLi {
    background-color: #fff;
    color: rgb(18, 59, 42);
    border: 1px solid var(--main-color);
    border-radius: .4rem;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    padding: .625rem;
    margin: 1rem 0;
    width: 100%;
    min-width: 190px;
    transition: .3s ease all;
    cursor: pointer;
}
.cardBoxBodyUlLi:hover {
    color: #fff;
    background-color: rgb(18, 59, 42);    
}

.cardBoxAltOne {
    width: 100%;
    min-width: 290px;
    height: fit-content;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    overflow: hidden;
}

.cardBoxPopup {
    width: 100%;
    /* min-width: 290px; */
    height: fit-content;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    overflow: hidden;
}

.boxBodyFlexWrap {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.boxFooter {
    padding: 1rem 1.875rem;
    width: 100%;
    text-align: center;
    background-color: var(--lighter-color);
    border-radius: 0 0 .4rem .4rem;
}

.rowContainer {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-color);
}
.flex2Items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rowH1{
    font-size: 1.1vw;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.backButton{
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}

.backButton:hover{
    background-color: rgb(38, 125, 89);
}

.cursorPo {
    cursor: pointer;
}

.widthBoxes{
    padding: 1rem 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 3rem;
}
.oneThirdBox{
    width: 34%;
}

.quarterBox{
    width: 25%;
}

.threeQuarterBox{
    width: 75%;
}

.sixtyFirstBox{
    width: 60%;
}
.twoThirdsBox{
    width: 100%;
    background-color: var(--lightest-color);
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
}
.twoThirdsBoxContainer{
    padding: .6rem 1rem;
    min-width: 260px;
    background-color: var(--lighter-color);
    border: 1px solid var(--lighter-color);
    border-radius: .4rem;
}

.stepTitle {
    padding-bottom: .4rem;
    font-size: x-small;
    text-align: center;
    border-bottom: 1px solid hsla(220, 68%, 12%, .1);
}

.stepAsterix {
    padding: .2rem 0;
    font-size: x-small;
}

.twoSetButtons{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid hsla(220, 68%, 12%, .1);
    gap: .4rem;
}
.setButton{
    padding: .4rem 1rem;
    margin: .6rem;
    color: #fff;
    min-width: 100px;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    letter-spacing: 1px;
    background-color: rgb(18, 59, 42);
    border: 2px solid #38c704;
    border-radius: .4rem;
    cursor: pointer;
}
.boxContainer {
    width: 100%;
}
.boxHeader{
    padding: 1rem;
    background-color: var(--lighter-color);
}
.titleH2 {
    padding: 0 1rem;
    font-size: 1.1vw;
    color: rgb(34, 43, 94);
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.boxContentImages {
    width: 24%;
    min-width: 260px;
}

.boxBody{
    padding: 1rem;
}

.boxBodyTypes{
    padding: 1rem;
}

.boxBodyMakes{
    padding: 1rem;
}

.boxBodyModels{
    padding: 1rem;
}

.boxBodyVariants{
    padding: 1rem;
}

.boxBodyDrivetrains{
    padding: 1rem;
}

.boxBodyBodys{
    padding: 1rem;
}

.boxBodyGearbox{
    padding: 1rem;
}

.boxBodyCondition{
    padding: 1rem;
}

.boxBodyStatus{
    padding: 1rem;
}

.boxBodyCategory{
    padding: 1rem;
}

.boxBodyCurrency{
    padding: 1rem;
}

.boxBodyMakesMake{
    padding: 1rem;
}

.boxBodyMakesMake{
    padding: 1rem;
}

.boxMainImages {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
}

.boxContent ul {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
}

/* #sortable { 
    list-style-type: none; 
    margin: 0; 
    padding: 0; 
    width: 90%; 
}

#sortable li { 
    margin: 3px 3px 3px 0; 
    padding: 1px; 
    float: left; 
    border: 0;
    background: none;
}

#sortable li img{
    width: 180px;
    height: 140px;
} */

.ulSortable {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: space-evenly;
}

.ulSortable li{
    list-style-type: none; 
}

.boxMainFlexWrap {
    display: flex;
    flex-wrap: wrap;
}

.listHeader {
    margin: 1rem;
    display: flex;
    gap: .4rem;
}
.listBody{
    margin: 1%;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.listRow{
    margin: .6rem 0;
    display: flex;
    gap: 1rem;
    border: 1px solid var(--lighter-color);
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.listRowAd {
    /* margin: .6rem 0; */
    display: flex;
    gap: 1rem;
    /* border: 1px solid var(--lighter-color); */
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
  }

.listRow:hover{
    background-color: var(--lightest-color);
    box-shadow: 0 2px 10px var(--light-color);
    border: 1px solid var(--main-color);
    transition: box-shadow .2s;
}

.listRowImage{
    padding: 6px;
    width: 34%;
    min-width: 200px;
    height: 200px;
}
.listImage{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
    overflow: hidden;
}
.listImageImg{
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
    border-radius: 4px;
}
.listImageImg:hover{
    transform: scale(1.025);
}
.listRowContent{
    padding: 6px;
    width: 66%;
    min-width: 200px;
    background-color: white;
}

.listRowContent100{
    padding: 6px;
    width: 100%;
    min-width: 200px;
    background-color: white;
}

.listRowList {
    /* padding: 6px; */
    width: 100%;
    min-width: 200px;
    background-color: white;
    border-bottom: 1px solid var(--lighter-color);
  }

.listRowHeader {
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #CCCCCC;
}
.listRowTitle{    
    width: 70%;
}
.listRowH2{
    font-size: 1.4rem;
    font-weight: 700;
    color: #0534ff;
    letter-spacing: -.6px;
}
.listRowH2Model{
    color: var(--title-color);
    font-size: 1.1rem;
    font-weight: 600;
}
.listRowPrice{
    margin-right: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(34, 43, 94);
    letter-spacing: -.6px;
}
.listData{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listDataFull{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listData dl:last-child{
    border-bottom: none;
}
.listData dl:nth-last-child(2){
    border-bottom: none;
}
.listData4060{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.listData100{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.listData200{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.listData300{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listData300 dl:last-child {
    border-bottom: none;
}

.listMakes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listMakes dl:last-child {
    border-bottom: none;
}

.listDataButtons{
    display: flex;
    flex-wrap: wrap;
}
.listDl {
    display: flex;
    justify-content: flex-start;
    width: 48%;
    background-color: var(--lighter-color);
    border-bottom: 1px solid #CCCCCC;
}
.listDl4060 {
    display: flex;
    justify-content: flex-start;
    width: 24%;
    background-color: var(--lighter-color);
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}
.listDl6040 {
    display: flex;
    justify-content: flex-start;
    width: 76%;
    background-color: var(--lighter-color);
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}
.listDl100 {
    margin-top: 2px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--lighter-color);
    border-bottom: 1px solid #CCC;
    border-radius: 4px;
}

.listDlFull {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--lighter-color);
    border-bottom: 1px solid #CCCCCC;
}

.listDt {
    display: block;
    width: 50%;
    text-align: left;
    font-weight: normal;
    font-size: .75rem;
    background-color: var(--lightest-color);
    color: #333333;
}

.listDtFull {
    display: block;
    width: 50%;
    text-align: left;
    font-weight: normal;
    font-size: .75rem;
    background-color: var(--lightest-color);
    color: #333333;
}

.listDt4060 {
    display: block;
    width: 44%;
    text-align: left;
    font-weight: normal;
    font-size: .75rem;
    background-color: var(--lightest-color);
    color: #333333;
}

.listDt300 {
    display: block;
    width: 44%;
    text-align: left;
    font-weight: normal;
    font-size: .75rem;
    background-color: var(--lightest-color);
    color: #333333;
    display: flex;
    justify-content: space-between;
    padding-left: .625rem;
    padding-right: 20%;
}

.listDt6040 {
    padding-left: .375rem;
    display: block;
    width: 24%;
    text-align: left;
    font-weight: normal;
    font-size: .75rem;
    background-color: var(--lightest-color);
    color: #333333;
}
.listDt100 {
    padding-right: 2rem;
    display: block;
    width: 50%;
    text-align: right;
    font-weight: normal;
    font-size: .75rem;
    color: #333333;    
}
.dtTextTransform{
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    color: #5b5b5b;
}
.dlH6{
    padding-left: .375rem;
    font-size: .875rem;
    font-weight: 600;
}
.listButtons2{
    display: block;
    width: 60%;
}

.listRowDetails {
    margin: .4rem;
    width: 66%;
    border-radius: 0 4px 4px 0;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.threeQuarterWrapper {
    width: 76%;
    min-width: 260px;
    background-color: black;
}

/* modalBoxAdd=== */

@-webkit-keyframes modalZoom {
    from {
        transform: translate(-50%, -50%) scale(0); }
    to {
        transform: translate(-50%, -50%) scale(1); } 
}

@keyframes modalZoom {
    from {
        transform: translate(-50%, -50%) scale(0); }
    to {
        transform: translate(-50%, -50%) scale(1); } 
}

.modalBoxCreateUser,
.modalBoxAddUploadVehicle,
.modalBoxAddChangePassword,
.modalBoxAddUploadProfilePortrait,
.modalBoxAddCurrency,
.modalBoxAddCategory,
.modalBoxAddStatus,
.modalBoxAddCondition,
.modalBoxAddGearbox,
.modalBoxAddBody,
.modalBoxAddDrivetrain,
.modalBoxAddTransmission,
.modalBoxAddVariant,
.modalBoxAddModel,
.modalBoxAddMake,
.modalBoxAddType,
.modalBox {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6); 
}

.modalBoxAddChangePassword span.eyefirst,
.modalBoxAddChangePassword span.eye,
.modalBoxAddChangePassword span.noteye{
    display: block !important;
}

.modalBoxCreateUser .modalBoxCreateUserContent,
.modalBoxAddUploadVehicle .modalBoxAddUploadVehicleContent,
.modalBoxAddChangePassword .modalBoxAddChangePasswordContent,
.modalBoxAddUploadProfilePortrait .modalBoxAddUploadProfilePortraitContent,
.modalBoxAddCurrency .modalBoxAddCurrencyContent,
.modalBoxAddCategory .modalBoxAddCategoryContent,
.modalBoxAddStatus .modalBoxAddStatusContent,
.modalBoxAddCondition .modalBoxAddConditionContent,
.modalBoxAddGearbox .modalBoxAddGearboxContent,
.modalBoxAddBody .modalBoxAddBodyContent,
.modalBoxAddDrivetrain .modalBoxAddDrivetrainContent,
.modalBoxAddTransmission .modalBoxAddTransmissionContent,
.modalBoxAddVariant .modalBoxAddVariantContent,
.modalBoxAddModel .modalBoxAddModelContent,
.modalBoxAddMake .modalBoxAddMakeContent,
.modalBoxAddType .modalBoxAddTypeContent,
.modalBox .modalContent {
    background: #fff;
    /* padding: 40px 40px 20px; */
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    animation-name: modalZoom;
    animation-duration: 0.3s; 
}

.modalBox .close {
    color: #000;
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s linear; 
}

.modalBox .close:hover, .modalBox .close:focus {
    color: #e31c25; 
}

.modalBox .formHolder h2 {
    font-size: 24px; 
}

.modalBox .formHolder .row {
    margin: 0 0 20px; 
}

.modalBox .formHolder label {
    display: block;
    margin: 0 0 10px; 
}

.modalBox .formHolder input[type="text"],
.modalBox .formHolder input[type="password"] {
    width: 100%;
    margin: 0 0 10px; 
}

.modalBox .formHolder .error {
    color: #e31c25;
    font-size: 14px; 
}

.margin-top05 {
    margin-top: .5rem;
}

/* modalBoxAdd== */

.main-form-register-one {
    width: 100%;    
    background: black;
}

.display-images {
    /* padding: 2rem; */
    position: relative;
    margin: 1rem auto 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.display-image {
    /* padding: 2rem; */
    position: relative;
    margin: auto;
    /* display: flex;
    gap: 2rem;
    flex-wrap: wrap; */
}

.display-images div {
    position: relative;
    width: 45%;
}

.display-image div {
    position: relative;
    width: 100%;
}

.display-images div img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.display-image div img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.display-images div div {
    width: 100%;
}

.display-image div div {
    width: 100%;
  }

.error {
    color: var(--error-color);
    font-size: .8rem;
    font-weight: bold;
    line-height: 1.2;
}

.error-size {
    color: var(--clr-green-deepest);
    font-size: .8rem;
    font-weight: bold;
    line-height: 1.2;
}

.buttonLike {
    margin: 1rem auto;
    background-color: rgb(18, 59, 42);
    color: #fff;
    /* border: 1px solid var(--main-color); */
    border: none;
    border-radius: .25rem;
    display: block;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    padding: .625rem 2rem .625rem .625rem;
    width: 100%;
    cursor: pointer;
}

/* .display-images div span {
    position: absolute;
    top: -4px;
    right: 4px;
    cursor: pointer;
    font-size: 22px;
    color: white;
} */

.display-images div span {
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 1.2em;
    background-color: var(--lighter-color);
    border: 1px solid var(--light-color);
    border-radius: 50%;
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -8px;
    cursor: pointer;
    transition: var(--transition);
}

.display-images div span:hover{
  opacity: 0.8;
}

.contentbox {
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: var(--radius-044);
}

.mu .form-group {
    color: inherit;
}

.uploaded-images-hd {
    padding: 1.2rem;
    text-align: center;
}

.uploaded-images div {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 1rem;
}

.uploaded-images div img {
    width: 45%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
}

.listCombo {
    display: flex;
    justify-content: space-between;
}

.listDescription {
    margin: 1rem 0;
    padding: .6rem 1rem;
    width: 70%;
    min-width: 260px;
    background-color: var(--lighter-color);
    border-radius: .4rem;
    text-align: left;
    border: 1px solid #CCCCCC;
}

.listSellerImgDiv {
    margin: 1rem 0 0 1rem;
    width: 30%;
    min-width: 200px;
    min-height: 200px;
}

.listSellerImg {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
    overflow: hidden;
}

.listSellerImgImg   {
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
    border-radius: 4px;
}

.listDescriptionp {
    text-align: left !important;
}

.divideddivcontainer {
    margin-top: .4rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #CCCCCC;
    justify-content: space-evenly;
}

.divideddiv {
    display: flex;
    flex-direction: row;
    margin: .4rem .4rem .4rem 0;
    /* width: 100%; */
}

.divideddivleft {
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: right;
    background-color: var(--colour-green-main);
    border-radius: .4rem 0 0 .4rem;
    color: #fafafb;
    /* width: 50%; */
    min-width: 90px;
}

.divideddivright {
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: left;
    border: 1px solid var(--colour-green-main);
    border-radius: 0 .4rem .4rem 0;
    color: var(--colour-green-main);
    /* width: 50%; */
    min-width: 90px;
}

.divideddivactivate{
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    background-color: var(--dark-color);
    border-radius: .4rem;
    color: #fafafb;
    min-width: 90px;
    cursor: pointer;
}

.divideddivsold {
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    background-color: var(--darklightblue);
    border-radius: .4rem 0 0 .4rem;
    color: #fafafb;
    min-width: 90px;
}

.divideddivdeactivate {
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--darklightblue);
    border-radius: 0 .4rem .4rem 0;
    color: var(--darklightblue);
    min-width: 90px;
    cursor: pointer;
}

.divideddivdelete{
    padding: .1rem 1rem;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    background-color: var(--error-color);
    border-radius: .4rem;
    color: #fafafb;
    min-width: 90px;
    cursor: pointer;
}

.formcontent {
    display: flex;
    justify-content: center;
}

.grpdiv {
    margin: 0 auto;
}

.userstable {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    width: 100%;
    border-radius: 2rem;;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
    transition: all 300ms ease;
}

.userstabletr {
    background-color: hsl(240, 13%, 89%);
    padding: 4px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: .9rem;
    color: #363949;
}

.listing-photo {
    display: inline-block;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10%;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px #0003;
    transition: 0.4s;
}

.listing-photo:hover {
    transform: scale(3);
    z-index: 2;
}

.userstable th,
.userstable td{
    padding: 4px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: .9rem;
}

.userstable tr:hover td {
    background-color: #ececec;
}

.registeruserbox {
    margin: 0 auto;
}

/* ========== >> ========= */

#imagePreview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-container {
    position: relative;
    margin: 10px;
}

.image-container img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
}

.delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
}

/* ========== << ========= */

/* ========== >> ========= */

.imageuploadContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.iucmain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background-color: hsl(240, 13%, 89%);
    border-radius: 5px;
    border: 1px dashed #afafaf;
    padding: 1rem;
    cursor: pointer;
}

.iucmain-alt {
    margin: 0 auto;
    width: 100%;
}

.imageuploadform {
    width: 100%;
}

/* .imageuploadformdiv {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    background-color: hsl(240, 13%, 89%);
    border-radius: 5px;
    border: 1px dashed #afafaf;
    padding: 1rem;
} */

.imageuploadformdiv {
    width: 100%;
}

.imageuploadformdiv input{
    display: none;
}

.imageuploadformdiv label {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    background-color: hsl(240, 13%, 89%);
    border-radius: 5px;
    border: 1px dashed #afafaf;
    padding: 1rem;
    user-select: none;
    cursor: pointer;
}

.imageuploadformdiv label svg {
    margin: 0 auto;
    width: 50px;
}

.imagequeuedform {
    display: flex;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
}

.imagequeuedform .header {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imagequeuedform .header h3{
    margin: 0 0 1rem 0;
    text-align: center;
}

.iqcmbtn {
    padding: 1rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}

.queued-div {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
}

.queued-div .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
    overflow: hidden;
    width: 45%;
}

.queued-div .image img {
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
    border-radius: 4px;
}

.queued-div .image span {
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 1.2em;
    background-color: hsl(240, 13%, 89%);
    border: 1px solid hsl(240, 11%, 72%);
    border-radius: 50%;
    color: hsl(0, 100%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.iucmimg {
    margin: 0 auto;
    width: 50px;
}

.uicmp {
    text-align: center;
}

.iucmain.active .uicmp {
    display: none;
}

.iucmbtn {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: hsl(240, 13%, 89%);
    color: rgb(18, 59, 42);
    border: 1px dashed #afafaf;
    border-radius: 5px;
    transition: .3s ease all;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
}

.iucfoot {
    margin: 2rem auto;
}

.iucfbtn {
    padding: .5rem 1.4rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgb(18, 59, 42);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: .3s ease all;
    cursor: pointer;
}

/* ========== << ========= */

/* ========== >> ========= */

#imagePreview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: space-evenly;
  }
  
  .image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    max-width: 200px;
    border-radius: 4px;
  }
  
  .image-container img {
    height: 100%;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 14/9;
    transition: .3s all ease;
    border-radius: 4px;
  }
  .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
  }
  
  #downloadAll {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #downloadAll:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

/* ========== << ========= */

.urlunsee {
    /* visibility: hidden; */
    display: none;
}

/* ========== >> ========= */
/* app/Views/registered/mains/upload-images.php */
.upload-status {
    position: relative;
    margin-top: 15px;
}

.loading-indicator {
    display: inline-block;
    margin-right: 10px;
    color: #666;
}

.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
/* ========== << ========= */

/* ========== >> ========= */
/* Update for minimum images css */

.image-requirement {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.image-count {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.error-message {
    background: #ffebee;
    padding: 8px;
    border-radius: 4px;
    margin-top: 10px;
}

/* ========== << ========= */

/* ========== >> ========= */
/* Overlay */
  
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: 0.5s ease;
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  
/* Overlay */  
/* ========== << ========= */

/* ========== >> ========= */
/* Modal */
  
  .modal-subscription {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    animation: popup 1s ease-in-out 5s forwards;
  }
  
  @keyframes popup {
  
    0% {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
  
    100% {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }
  
  }
  
  .modal-subscription.closed { display: none; }
  
  .modal-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .subscription-img { display: none; }
  
  .modal-content {
    position: relative;
    max-width: 350px;
    margin: 20px;
    background: #9ee085;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    animation: scaleUp 0.5s ease-in-out 5s forwards;
  }
  
  @keyframes scaleUp {
  
    0% { transform: scale(0.9); }
    100% { transform: scale(1); }
  
  }
  
  .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgb(18, 59, 42);
    color: white;
    font-size: 30px;
    padding: 3px;
    border: none;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-close-btn:hover { opacity: 0.9; }

  .close-outline {
    font-size: 20;
  }
  
  .subscription {
    padding: 50px 30px;
    text-align: center;
  }
  
  .subscription-header { margin-bottom: 20px; }
  
  .subscription-title {
    color: hsl(0, 0%, 27%);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .subscription-desc {
    color: hsl(220, 5%, 12%);
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .email-field {
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid hsl(0, 0%, 93%);
    margin-bottom: 16px;
  }
  
  .btn-subscription {
    background: hsl(155, 53%, 15%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    margin: auto;
    transition: 0.2s ease;
  }
  
  .btn-subscription:hover { background: hsla(155, 53%, 15%, .8); }
  
/* Modal */  
/* ========== << ========= */

@media (min-width: 768px) {
/* ========== >> ========= */
/* Modal */  
     .modal-content {
        display: flex;
        align-items: center;
        max-width: 750px;
        width: fit-content;
      }
    
      .subscription-img { 
        display: block; 
        max-width: 350px;
    }
    
      .subscription { text-align: left; }
}

/* Modal */  
/* ========== << ========= */


@media (max-width:1280px) {
    .rowContainer {
        padding: .4rem 0;
    }
    .widthBoxes {
        padding: .2rem 0;
        gap: 1rem;
    }
    .cardBoxHeaderTitle {
        padding: .6rem 1.875rem;
    }
    .boxHeader {
        padding: .6rem 1rem;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 2vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem .4rem;
    }
    .boxBodyTypes{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakes{
        padding: .2rem .4rem;
    }
    
    .boxBodyModels{
        padding: .2rem .4rem;
    }
    
    .boxBodyVariants{
        padding: .2rem .4rem;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem .4rem;
    }
    
    .boxBodyBodys{
        padding: .2rem .4rem;
    }
    
    .boxBodyGearbox{
        padding: .2rem .4rem;
    }
    
    .boxBodyCondition{
        padding: .2rem .4rem;
    }
    
    .boxBodyStatus{
        padding: .2rem .4rem;
    }
    
    .boxBodyCategory{
        padding: .2rem .4rem;
    }
    
    .boxBodyCurrency{
        padding: .2rem .4rem;
    }
    .boxBodyMakesMake {
        padding: .2rem .4rem;
    }
    .listHeader {
        margin: .4rem 1rem;
    }
    .listRow {
        display: flex;
    }
    .listRowAd {
        display: flex;
    }
    .listRowImage {
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowContent100 {
        width: 100%;
    }
    .listRowList {
        width: 100%;
    }
    .listRowHeader {
        flex-wrap: nowrap;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .listButtons2 {
        width: 60%;
    }
    
}

@media only screen and (max-width: 1199px) {
    .modalBoxCreateUser .modalBoxCreateUserContent,
    .modalBoxAddUploadVehicle .modalBoxAddUploadVehicleContent,
    .modalBoxAddChangePassword .modalBoxAddChangePasswordContent,
    .modalBoxAddUploadProfilePortrait .modalBoxAddUploadProfilePortraitContent,
    .modalBoxAddCurrency .modalBoxAddCurrencyContent,
    .modalBoxAddCategory .modalBoxAddCategoryContent,
    .modalBoxAddStatus .modalBoxAddStatusContent,
    .modalBoxAddCondition .modalBoxAddConditionContent,
    .modalBoxAddGearbox .modalBoxAddGearboxContent,
    .modalBoxAddBody .modalBoxAddBodyContent,
    .modalBoxAddDrivetrain .modalBoxAddDrivetrainContent,
    .modalBoxAddTransmission .modalBoxAddTransmissionContent,
    .modalBoxAddVariant .modalBoxAddVariantContent,
    .modalBoxAddModel .modalBoxAddModelContent,
    .modalBoxAddMake .modalBoxAddMakeContent,
    .modalBoxAddType .modalBoxAddTypeContent,
    .modalBox .modalContent {
        width: 50%; 
    } 
}

@media (max-width:1024px) {
    .navUlLi {
        padding: 0;
    }
    .mainContainer {
        padding: 0 3%;
    }
    .rowContainer {
        padding: .5rem 0;
    }
    .rowH1 {
        font-size: 1.4vw;
        letter-spacing: 2px;
    }
    .backButton {
        padding: .2rem .4rem;
        font-size: smaller;
    }
    .widthBoxes {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .oneThirdBox {
        width: 100%;
    }

    .quarterBox{
        width: 100%;
    }
    
    .threeQuarterBox{
        width: 100%;
    }

    .sixtyFirstBox {
        width: 100%;
    }
    .cardsContainer {
        margin-bottom: 0;
        gap: 0;
    }
    .cardBox {
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .cardBoxOne {
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .cardBoxHeaderTitle {
        padding: .4rem 1.875rem;
    }
    .cardBoxAltOne {
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .cardBoxPopup {
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .grp select {
        padding: .325rem 2rem .325rem .625rem;
    }
    .boxContainer {
        margin: 0 auto;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 2vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem .4rem;
    }

    .boxBodyTypes{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakes{
        padding: .2rem .4rem;
    }
    
    .boxBodyModels{
        padding: .2rem .4rem;
    }
    
    .boxBodyVariants{
        padding: .2rem .4rem;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem .4rem;
    }
    
    .boxBodyBodys{
        padding: .2rem .4rem;
    }
    
    .boxBodyGearbox{
        padding: .2rem .4rem;
    }
    
    .boxBodyCondition{
        padding: .2rem .4rem;
    }
    
    .boxBodyStatus{
        padding: .2rem .4rem;
    }
    
    .boxBodyCategory{
        padding: .2rem .4rem;
    }
    
    .boxBodyCurrency{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakesMake {
        padding: .2rem .4rem;
    }
    .listHeader {
        margin: .4rem 1rem;
    }
    .listRow {
        display: flex;
    }
    .listRowAd {
        display: flex;
    }
    .listRowImage {
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowContent100 {
        width: 100%;
    }
    .listRowList {
        width: 100%;
    }
    .listRowHeader {
        flex-wrap: nowrap;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .listButtons2 {
        width: 60%;
    }
}

@media only screen and (max-width:900px){
    .mu .wrapper .container .box .intro h1 {
        margin: 1rem 0;
        font-size: 3vw;
        font-weight: 600;
        letter-spacing: 1.2px;
    }
    .mu .wrapper .container .alt-box .intro h1 {
        font-size: 4vw;
        letter-spacing: 6px;
    }
    .mu .lv .container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mu .lv .container .box {
        width: 100%;
    }

    .mu .lv .container .box-deactivated {
        width: 100%;
    }

    .mu .lv .container .alt-box {
        width: 100%;
    }
    .mu .lv .heading p {
        display: none;
    }

    .mu .import-direct .title {
        width: 60%;
    }
}


@media (max-width:768px) {
    .wrapperHomeFirst {
        height: 50px;
    }

    .labelCheckbox {
        display: initial;
    }

    .loginRegister {
        position: absolute;
        top: 50px;
        right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 1.2rem;
        background-color: #38c704;
        padding: 1rem;
        border-radius: 0 0 .4rem .4rem;
        transition: 0.3s;
        z-index: 10;
        display: none;
    }

    #checkboxLoginRegister:checked ~ .loginRegister{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .toggleButtons {
        display: block;
        margin-right: 3%;
        cursor: pointer;
    }

    .toggleNav {
        display: block;
        margin-right: 3%;
        cursor: pointer;
    }

    .containerHomeSecond {
        padding: .2rem 3%;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .checkBoxDiv {
        display: flex

    }

    .navHomeSecond {
        position: relative;
        display: block;
        height: 50px;
    }

    .labelCheckboxNav {
        display: flex;
        justify-content: right;
    }

    .navUl {
        position: absolute;
        top: 53px;
        padding: 2rem;
        display: flex;
        gap: .6rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #2f3c2a;
        border-radius: 0 0 .4rem .4rem;
        transition: 0.3s;
        z-index: 10;
        display: none;
    }

    #checkboxNav:checked ~ .navUl{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .navUlLi,
    .navUlLiDrop {
        background-color: #2f3c2a;
    }

    .navUlLiDrop:hover > .ulLiDrop {
        padding-left: 20px;
        background-color: #4b6043;
        z-index: 1000;
    }

    .mainContainer {
        padding: 0 3%;
    }
    .rowContainer {
        padding: .5rem 0;
    }
    .rowH1 {
        font-size: 2vw;
        letter-spacing: 1px;
    }
    .backButton {
        padding: .2rem .4rem;
        font-size: smaller;
    }
    .widthBoxes {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .oneThirdBox {
        width: 100%;
    }

    .quarterBox {
        width: 100%;
    }

    .threeQuarterBox {
        width: 100%;
    }
    .cardsContainer {
        margin-bottom: 0;
        gap: 0;
    }
    .cardBox {
        width: 100%;
        max-width: none;
    }

    .cardBoxOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxHeaderTitle {
        padding: .4rem 1.875rem;
    }

    .cardBoxAltOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxPopup {
        width: 100%;
        max-width: none;
    }

    .grp select {
        padding: .325rem 2rem .325rem .625rem;
    }
    .boxContainer {
        margin: 0 auto;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 3vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem .4rem;
    }
    .boxBodyTypes{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakes{
        padding: .2rem .4rem;
    }
    
    .boxBodyModels{
        padding: .2rem .4rem;
    }
    
    .boxBodyVariants{
        padding: .2rem .4rem;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem .4rem;
    }
    
    .boxBodyBodys{
        padding: .2rem .4rem;
    }
    
    .boxBodyGearbox{
        padding: .2rem .4rem;
    }
    
    .boxBodyCondition{
        padding: .2rem .4rem;
    }
    
    .boxBodyStatus{
        padding: .2rem .4rem;
    }
    
    .boxBodyCategory{
        padding: .2rem .4rem;
    }
    
    .boxBodyCurrency{
        padding: .2rem .4rem;
    }
    .boxBodyMakesMake {
        padding: .2rem .4rem;
    }
    .listHeader {
        margin: .4rem 1rem;
    }
    .listRow {
        display: flex;
    }
    .listRowAdd {
        display: flex;
    }
    .listRowImage {
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowContent100 {
        width: 100%;
    }
    .listRowList {
        width: 100%;
    }
    .listRowHeader {
        flex-wrap: nowrap;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .dtTextTransform {
        font-size: .7rem;
    }
    .dlH6 {
        font-size: .75rem;
    }
    .listButtons2 {
        width: 100%;
    }

    .list-row {
        margin: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lh-image-adj {
        display: none;
    }

    .lh-details-adj {
        width: 100%;
        border-radius: 4px 4px 0 0;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .modalBoxCreateUser .modalBoxCreateUserContent,
    .modalBoxAddUploadVehicle .modalBoxAddUploadVehicleContent,
    .modalBoxAddChangePassword .modalBoxAddChangePasswordContent,
    .modalBoxAddUploadProfilePortrait .modalBoxAddUploadProfilePortraitContent,
    .modalBoxAddCurrency .modalBoxAddCurrencyContent,
    .modalBoxAddCategory .modalBoxAddCategoryContent,
    .modalBoxAddStatus .modalBoxAddStatusContent,
    .modalBoxAddCondition .modalBoxAddConditionContent,
    .modalBoxAddGearbox .modalBoxAddGearboxContent,
    .modalBoxAddBody .modalBoxAddBodyContent,
    .modalBoxAddDrivetrain .modalBoxAddDrivetrainContent,
    .modalBoxAddTransmission .modalBoxAddTransmissionContent,
    .modalBoxAddVariant .modalBoxAddVariantContent,
    .modalBoxAddModel .modalBoxAddModelContent,
    .modalBoxAddMake .modalBoxAddMakeContent,
    .modalBoxAddType .modalBoxAddTypeContent,
    .modalBox .modalContent {
        width: 80%;
        padding: 40px 25px 20px; 
    } 

    .modalBoxCreateUser .formHolder h2,
    .modalBoxAddUploadVehicle .formHolder h2,
    .modalBoxAddChangePassword .formHolder h2,
    .modalBoxAddUploadProfilePortrait .formHolder h2,
    .modalBoxAddCurrency .formHolder h2,
    .modalBoxAddCategory .formHolder h2,
    .modalBoxAddStatus .formHolder h2,
    .modalBoxAddCondition .formHolder h2,
    .modalBoxAddGearbox .formHolder h2,
    .modalBoxAddBody .formHolder h2,
    .modalBoxAddDrivetrain .formHolder h2,
    .modalBoxAddTransmission .formHolder h2,
    .modalBoxAddVariant .formHolder h2,
    .modalBoxAddModel .formHolder h2,
    .modalBoxAddMake .formHolder h2,
    .modalBoxAddType .formHolder h2,
    .modalBox .formHolder h2 {
        font-size: 20px; 
    } 
}

@media (max-width:640px) {
    .mainContainer {
        padding: 0 3%;
    }
    .rowContainer {
        padding: .5rem 0;
    }
    .rowH1 {
        font-size: 2vw;
        letter-spacing: 1px;
    }
    .backButton {
        padding: .2rem .4rem;
        font-size: smaller;
    }
    .widthBoxes {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .oneThirdBox {
        width: 100%;
    }

    .quarterBox {
        width: 100%;
    }

    .threeQuarterBox {
        width: 100%;
    }

    .sixtyFirstBox {
        width: 100%;
    }
    .centered40Box {
        width: 100%;
    }
    .cardsContainer {
        margin-bottom: 0;
        gap: 0;
    }
    .cardBox {
        width: 100%;
        max-width: none;
    }

    .cardBoxOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxHeaderTitle {
        padding: .4rem 1.875rem;
    }
    .cardBoxAltOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxPopup {
        width: 100%;
        max-width: none;
    }
    
    .columnGrp {
        display: flex;
        justify-content: space-around;
        gap: 1rem;
        width: 100%;
    }

    .grp select {
        padding: .325rem 2rem .325rem .625rem;
    }
    .boxContainer {
        margin: 0 auto;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 3vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem .4rem;
    }
    .boxBodyTypes{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakes{
        padding: .2rem .4rem;
    }
    
    .boxBodyModels{
        padding: .2rem .4rem;
    }
    
    .boxBodyVariants{
        padding: .2rem .4rem;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem .4rem;
    }
    
    .boxBodyBodys{
        padding: .2rem .4rem;
    }
    
    .boxBodyGearbox{
        padding: .2rem .4rem;
    }
    
    .boxBodyCondition{
        padding: .2rem .4rem;
    }
    
    .boxBodyStatus{
        padding: .2rem .4rem;
    }
    
    .boxBodyCategory{
        padding: .2rem .4rem;
    }
    
    .boxBodyCurrency{
        padding: .2rem .4rem;
    }
    .boxBodyMakesMake {
        padding: .2rem .4rem;
    }
    .listHeader {
        margin: .4rem 1rem;
    }
    .listRow {
        display: flex;
        flex-direction: column;
    }
    .listRowAd {
        display: flex;
        flex-direction: column;
    }
    .listRowImage {
        width: 100%;
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowContent100 {
        width: 100%;
    }
    .listRowList {
        width: 100%;
    }
    .listRowHeader {
        flex-wrap: nowrap;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .dtTextTransform {
        font-size: .7rem;
    }
    .dlH6 {
        font-size: .75rem;
    }
    .listButtons2 {
        width: 100%;
    }

    .divideddivcontainer {
        justify-content: center;
    }

}

@media only screen and (max-width:600px){
    .hu .up {
        height: 65px;
    }
    .mu .wrapper .container {
        min-width: 290px;
        padding: 1rem 0 0 5%;    
    }
    .mu .lv {
        padding: .8rem 5%;
    }

    .h1-page {
        font-size: 2.4vw;
    }

    .mu .lv .heading h2 {
        font-size: 4vw;
    }
    .mu .lv .heading p {
        font-size: 1rem;
    }
    .cardtype {
        margin: 1rem 0;
    }
    .mu .lv .container .box {
        width: 100%;
    }

    .mu .lv .container .box-deactivated {
        width: 100%;
    }

    .hu .up .wrapper .logreg {
        position: absolute;
        top: 65px;
        right: -100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 1.2rem;
        background-color: #38c704;
        padding: 1rem;
        border-radius: 0 0 .4rem .4rem;
        transition: 0.3s;
        z-index: 10;
    }
    .hu .up .wrapper .logreg.active {
        right: 3%;
    }
    .muwrp {
        padding: 0 3%;
    }
    .mu .wrapper .container .box .intro h1 {
        margin: .2rem 0;
        font-size: 3vw;
        letter-spacing: .4px;

    }

    .mu .wrapper .container .box .intro h1 span {
        font-size: 1rem;
        letter-spacing: 2px;
        line-height: 2.4;
    }

    .mu .wrapper .container .box .intro p {
        margin: .6rem 0;
        font-size: .7rem;
        line-height: 1.2;
        letter-spacing: .5px;
    }

    .mu .lv .container .alt-box {
        max-width: 450px;
    }

    .mu .lv .container .alt-box .header {
        flex-wrap: wrap;
    }

    .mu .lv .container .alt-box .header .bread {
        margin: .6rem 0;
        width: 100%;
    }

    .mu .lv .container .alt-box .header .reference {
        margin: .6rem auto;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .mu .wrapper .container .alt-box .intro h1 {
        font-size: 4vw;
        letter-spacing: 5px;
    }
    .mu .wrapper .container .alt-box .intro p {
        margin: 1rem 0;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 5px;
    }

    .mu .lv .container .alt-box .filter {
        padding: .6rem;
        margin: 1rem auto;
        max-width: 250px;
        justify-content: center;
        border: 1px solid black;
        border-radius: .4rem;
    }

    .mu .lv .container .alt-box .filter .sort {
        display: none;
    }

    .mu .lv .container .alt-box .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .lr-image {
        width: 100%;
    }

    .lr-image-adj {
        width: 100%;
    }

    .list-header {
        margin: .6rem 0;
        width: 100%;
    }

    .lh-image {
        display: none;
    }

    .lh-image-adj {
        display: none;
    }

    .lh-details {
        width: 100%;
        border-radius: 4px 4px 0 0;
        text-align: center;
    }

    .lh-details-adj {
        width: 100%;
        border-radius: 4px 4px 0 0;
        text-align: center;
    }

    .lr-details {
        width: 100%;
    }

    .lr-details-adj {
        width: 100%;
    }

    .lrdu-commend {
        margin: .6rem 0;
    }

    .lrdu-commend div {
        margin: 0 .4rem 0 0;
    }

    .lrdu-price {
        margin: 1rem auto;
    }

    .lrdud-subtitle {
        padding-bottom: 1rem;
    }

    .hdt {
        font-size: 5vw;
        letter-spacing: .1px;
    }
    .pro {
        font-size: 1rem;
    }
    .togbtns {
        display: block;
        margin-right: 3%;
        cursor: pointer;
    }
    .hideup {
        max-height: 300px;
    }

    .hu .bt .bt-wrapper {
        padding: .4rem 3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hu .bt .bt-wrapper .nav .uls {
        position: absolute;
        top: 110px;
        padding: 2rem;
        left: -100%;
        display: flex;
        gap: .6rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #2f3c2a;
        border-radius: 0 0 .4rem .4rem;
        transition: 0.3s;
        z-index: 10;
    }
    .lilinkdiv-dropdown {
        display: none;
        background-color: #1c2519;
        z-index: 100;
    }
    .hu .bt .bt-wrapper .nav .uls li,
    .lilinkdiv-btn {
        background-color: #2f3c2a;
    }

    .hu .bt .bt-wrapper .nav .uls.active,
    .lilinkdiv-btn.active{
        left: 3%;
    }

    .hu .bt .bt-wrapper .nav .uls li,
    .lilinkdiv-btn {
        color: #fff;
    }

    .hu .bt .bt-wrapper .nav .uls li:hover,
    .lilinkdiv-btn:hover{
        color: #9ee085;
        border-bottom: 2px solid #9ee085;
        transition: .3s;
    }

    .tognav {
        display: block;
        margin-right: 3%;
        cursor: pointer;
    }

    .list-row {
        margin: 1rem 0;
        flex-wrap: wrap;
    }

    .tabs-container .tabs-content,
    .tabs-container label {
        order: initial;
    }

    .tabs-container label {
        width: 100%;
    }

    .listCombo {
        flex-wrap: wrap;
    }

    .listDescription {
        margin: 1rem auto;
        width: 100%;
    }

    .listSellerImgDiv {
        margin: 0 auto;
    }

}
@media (max-width:475px) {
    .mainContainer {
        padding: 0 3%;
    }
    .rowContainer {
        padding: .5rem 0;
    }
    .rowH1 {
        font-size: 2vw;
        letter-spacing: 1px;
    }
    .backButton {
        padding: .2rem .4rem;
        font-size: smaller;
    }
    .widthBoxes {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .oneThirdBox {
        width: 100%;
    }

    .quarterBox {
        width: 100%;
    }

    .threeQuarterBox {
        width: 100%;
    }

    .sixtyFirstBox {
        width: 100%;
    }
    .cardsContainer {
        margin-bottom: 0;
        gap: 0;
    }
    .cardBox {
        width: 100%;
        max-width: none;
    }

    .cardBoxOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxHeaderTitle {
        padding: .4rem 1.875rem;
    }
    .cardBoxAltOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxPopup {
        width: 100%;
        max-width: none;
    }

    .grp select {
        padding: .325rem 2rem .325rem .625rem;
    }
    .boxContainer {
        margin: 0 auto;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 3vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem 1%;
    }
    .boxBodyTypes{
        padding: .2rem 1%;
    }
    
    .boxBodyMakes{
        padding: .2rem 1%;
    }
    
    .boxBodyModels{
        padding: .2rem 1%;
    }
    
    .boxBodyVariants{
        padding: .2rem 1%;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem 1%;
    }
    
    .boxBodyBodys{
        padding: .2rem 1%;
    }
    
    .boxBodyGearbox{
        padding: .2rem 1%;
    }
    
    .boxBodyCondition{
        padding: .2rem 1%;
    }
    
    .boxBodyStatus{
        padding: .2rem 1%;
    }
    
    .boxBodyCategory{
        padding: .2rem 1%;
    }
    
    .boxBodyCurrency{
        padding: .2rem 1%;
    }
    .boxBodyMakesMake {
        padding: .2rem 1%;
    }
    .listHeader {
        margin: .4rem 1%;
    }
    .listRow {
        display: flex;
        flex-direction: column;
    }
    .listRowAd {
        display: flex;
        flex-direction: column;
    }
    .listRowImage {
        width: 100%;
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowContent100 {
        width: 100%;
    }
    .listRowList {
        width: 100%;
    }
    .listRowHeader {
        flex-wrap: nowrap;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .dtTextTransform {
        font-size: .6rem;
    }
    .dlH6 {
        font-size: .75rem;
    }
    .listButtons2 {
        width: 100%;
    }
}
@media (max-width:350px) {

    .mu .import-direct .title {
        width: 78%;
    }

    .mu .import-direct h2{
        font-size: 1rem;
    }

    .mainContainer {
        padding: 0 3%;
    }
    .rowContainer {
        padding: .5rem 0;
    }
    .flex2Items{
        flex-wrap: nowrap;
        flex-direction: column-reverse;
    }
    .rowH1 {
        font-size: 3vw;
        letter-spacing: 1px;
    }
    .backButton {
        padding: .2rem .4rem;
        font-size: smaller;
    }
    .widthBoxes {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .oneThirdBox {
        width: 100%;
    }

    .quarterBox {
        width: 100%;
    }

    .threeQuarterBox {
        width: 100%;
    }

    .sixtyFirstBox {
        width: 100%;
    }
    .cardsContainer {
        margin-bottom: 0;
        gap: 0;
    }
    .cardBox {
        width: 100%;
        max-width: none;
    }

    .cardBoxOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxHeaderTitle {
        padding: .4rem 1.875rem;
    }
    .cardBoxAltOne {
        width: 100%;
        max-width: none;
    }

    .cardBoxPopup {
        width: 100%;
        max-width: none;
    }

    .grp select {
        padding: .325rem 2rem .325rem .625rem;
    }
    .boxContainer {
        margin: 0 auto;
    }
    .boxHeader {
        padding: .4rem;
    }
    .titleH2 {
        font-size: 5vw;
        text-align: center;
    }
    .boxBody {
        padding: .2rem .4rem;
    }
    .boxBodyTypes{
        padding: .2rem .4rem;
    }
    
    .boxBodyMakes{
        padding: .2rem .4rem;
    }
    
    .boxBodyModels{
        padding: .2rem .4rem;
    }
    
    .boxBodyVariants{
        padding: .2rem .4rem;
    }
    
    .boxBodyDrivetrains{
        padding: .2rem .4rem;
    }
    
    .boxBodyBodys{
        padding: .2rem .4rem;
    }
    
    .boxBodyGearbox{
        padding: .2rem .4rem;
    }
    
    .boxBodyCondition{
        padding: .2rem .4rem;
    }
    
    .boxBodyStatus{
        padding: .2rem .4rem;
    }
    
    .boxBodyCategory{
        padding: .2rem .4rem;
    }
    
    .boxBodyCurrency{
        padding: .2rem .4rem;
    }
    .boxBodyMakesMake {
        padding: .2rem .4rem;
    }
    .listHeader {
        margin: .4rem 0;
    }
    .listBody {
        margin: 0;
    }
    .listRow {
        display: flex;
        flex-direction: column;
    }
    .listRowAd {
        display: flex;
        flex-direction: column;
    }
    .listRowImage {
        width: 100%;
        height: fit-content;
    }
    .listRowContent {
        width: 100%;
    }
    .listRowHeader {
        padding-bottom: 1rem;
        flex-direction: column;
        gap: .4rem;
    }
    .listDl {
        width: 100%;
    }
    .listData dl:nth-last-child(2){
        border-bottom: 1px solid #CCCCCC;
    }
    .listRowTitle {
        width: fit-content;
    }
    .listRowH2 {
        font-size: 1.3rem;
    }
    .listRowH2Model {
        font-size: 1rem;
    }
    .listRowPrice {
        font-size: 1.1rem;
    }
    .dtTextTransform {
        font-size: .7rem;
    }
    .dlH6 {
        font-size: .75rem;
    }
    .listButtons2 {
        width: 100%;
    }
    .listDl4060 {
        width: 100%;
    }
    .listDt4060 {
        width: 36%;
    }
    .listDt300 {
        width: 36%;
    }
    .listDl4060 {
        border-bottom: none;
    }
    .listDl6040 {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        background-color: var(--lighter-color);
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;
    }
    .btnlike-bgaltone {
        width: 70px;
    }

}
@media only screen and (max-width:300px){
    .muwrp {
        padding: 0 3%;
    }
    .mu .wrapper .container {
        min-width: 290px;
        padding: .1rem 0 0 3%;
    }
    .mu .wrapper .container .box .intro h1 {
        font-size: 4vw;
        letter-spacing: 1px;
    }

    .mu .wrapper .container .box .intro h1 span {
        font-size: .8rem;
        line-height: 2.4;
    }

    .mu .wrapper .container .box .intro p {
        margin: .4rem 0;
        font-size: .7rem;
        line-height: 1;
        letter-spacing: -.1px;
    }
    .mu .wrapper .container .alt-box .intro h1 {
        font-size: 4vw;
        letter-spacing: 6px;
    }
    .mu .wrapper .container .alt-box .intro p {
        margin: 1rem 0;
        font-size: .6rem;
        font-weight: 500;
        letter-spacing: 5px;
    }

    .h1-page {
        font-size: 3.4vw;
    }

    .mu .lv .heading h2 {
        font-size: 4vw;
    }
    .mu .lv .heading p {
        font-size: 1rem;
    }
    .mu .lv .container .alt-box .filter {
        padding: .6rem;
        margin: .6rem auto;
        justify-content: center;
        border: 1px solid black;
        border-radius: .4rem;
    }
    .mu .lv .container .alt-box .filter .sort {
        display: none;
    }
    .hdt {
        font-size: 5vw;
        letter-spacing: .01px;
    }

    .pro {
        font-size: .8rem;
    }
    .mu .lv .container .alt-box .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .mu .lv .container .alt-box .content .title {
        min-height: 3.4rem;
        width: 100%;
    }
    .mu .lv .container .alt-box .content .title .image {
        border-right: none;
        border-radius: 4px 4px 0 0;
    }
    .mu .lv .container .alt-box .content .title .image span{
        display: none;
    }
    .mu .lv .container .alt-box .content .title .lot{
        display: none;
    }
    .mu .lv .container .alt-box .content .title .vehicle {
        display: none;
    }
    .mu .lv .container .alt-box .content .title .condition {
        display: none;
    }
    .mu .lv .container .alt-box .content .title .sale {
        display: none;
    }
    .mu .lv .container .alt-box .content .title .bid {
        display: none;
    }
    .mu .lv .container .alt-box .content .row {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .mu .lv .container .alt-box .content .row .image {
        width: 100%;
        margin: 0 auto;
    }
    .mu .lv .container .alt-box .content .row .image img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .mu .lv .container .alt-box .content .row .lot {
        padding: .7rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .mu .lv .container .alt-box .content .row .lot a .title {
        font-size: .9rem;
        color: #0534ff;
        text-transform: uppercase;
      }
    .mu .lv .container .alt-box .content .row .vehicle {
        display: none;
    }
    .mu .lv .container .alt-box .content .row .condition {
        display: none;
    }
    .mu .lv .container .alt-box .content .row .sale {
        display: none;
    }
    .mu .lv .container .alt-box .content .row .bid {
        display: none;
    }

    .mu .lv .container .alt-box .header {
        flex-wrap: wrap;
    }

    .mu .lv .container .alt-box .header .bread {
        margin: .6rem 0;
    }

    .mu .lv .container .alt-box .header .reference {
        margin: .6rem auto;
        align-items: center;
    }

    .list-header {
        margin: .6rem 0;
        width: 100%;
    }

    .lr-image {
        width: 100%;
    }

    .lr-image-adj {
        width: 100%;
    }

    .lrdup-price {
        font-size: 1.1rem;
    }

    .lrdut-title {
        font-size: 1.2rem;
    }

    .lrdud-info {
        font-size: .8rem;
    }

    .lrdud-pin {
        font-size: .8rem;
    }

    .lrdds-seller {
        font-size: .8rem;
    }

    .lh-image {
        display: none;
    }

    .lh-details {
        width: 100%;
        border-radius: 4px 4px 0 0;        
        text-align: center;
    }

    .lh-details-adj {
        width: 100%;
        border-radius: 4px 4px 0 0;        
        text-align: center;
    }

    .lr-details {
        width: 100%;
    }

    .lr-details-adj {
        width: 100%;
    }

    .lrdd-action {
        display: flex;
        flex-wrap: wrap;
    }

    .btnlike-bgalt {
        width: 100%;
    }

    .btnlike-bg {
        width: 100%;
    }

    .lrdu-price {
        margin: 1rem auto;
    }

    .lrdu-commend {
        margin: .6rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lrdu-title {
        justify-content: space-between;
    }

    .lrdud-subtitle {
        padding-bottom: 1rem;
    }

}
