

html{
	scroll-behavior:smooth;
	overflow-x: hidden;
}




body {
	font-family:'Inter',sans-serif;
	font-size:14px;
	font-weight:400;
	line-height:20px;
	color:#191919;
	margin:0px 0px 60px 0px;
	padding:0px;
	background: #F5F5F5;
	overflow-x:hidden;
	position: relative;
}
@media (min-width: 768px) {
    body {
        margin:0px;

    }
}

p {
	font-size:14px;
	font-weight:400;
	line-height:20px;
	color:#191919;
	margin:0px 0px 20px 0px;
	padding:0px;
}

a {
	color:#00ACA1;
	text-decoration:none;
	transition:.2s;
}

a:hover {
	color:#00ACA1;
	text-decoration:underline;
	transition:.2s;
}

button {
	font-family:'Inter',sans-serif;
    cursor: pointer;
}

h1 {
    font-family: 'Poppins',sans-serif;
    font-size: 28px;
    font-weight: 600;
    color:#191919;
    line-height: 1.2;
    margin: 0px 0px 20px 0px;
    padding: 0px;
}

h2 {
    font-family: 'Poppins',sans-serif;
 /*    font-size: 16px; */
 font-size: 18px;
    font-weight: 600;
    color:#191919;
    line-height: 1.2;
    margin: 0px 0px 20px 0px;
    padding: 0px;
}
@media (min-width: 992px) {
    h2 {
        font-size: 24px;
    }
}


h3 {
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    font-weight: 600;
    color:#191919;
    line-height: 1.2;
    margin: 0px 0px 20px 0px;
    padding: 0px;
}
@media (min-width: 992px) {
    h3 {
        font-size: 18px;
    }
}




h4 {
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    font-weight: 600;
    color:#191919;
    line-height: 1.2;
    margin: 0px 0px 20px 0px;
    padding: 0px;
}

.hregular {
    font-weight: 400;
}

.hregular strong, .hregular b {
    font-weight: 600;
}


.btn-primary {
    width: 100%;
    height: unset;
    line-height: unset;
    font-size: 14px;
    font-weight: 600;
    color:#FFF;
    padding: 13px 30px;
    text-align: center;
    background: #00ACA1;
    border-radius: 50rem;
    border: none;
    display: block;
    box-sizing: border-box;
    transition: .2s;
}
@media (min-width:992px) {
    .btn-primary {
        padding: 15px 30px;
    }
}
    
.btn-primary:hover {
    color:#FFF;
    text-decoration: none;
    background: #05978D;
    transition: .2s;
}

.btn-primary-out {
    width: 100%;
    height: unset;
    line-height: unset;
    font-size: 14px;
    font-weight: 600;
    color:#00ACA1;
    padding: 9px 26px;
    text-align: center;
    background: transparent;
    border-radius: 50rem;
    border:2px solid #00ACA1;
    display: block;
    box-sizing: border-box;
    transition: .2s;
}
@media (min-width:992px) {
    .btn-primary-out {
        padding: 11px 26px;
    }
}
    
.btn-primary-out:hover {
    color:#FFF;
    text-decoration: none;
    background: #05978D;
    border:2px solid #05978D;
    transition: .2s;
}

.btn-secondary {
    width: 100%;
    height: unset;
    line-height: unset;
    font-size: 14px;
    font-weight: 400;
    color:#00ACA1;
    padding: 12px 30px;
    text-align: center;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #00ACA1;
    display: block;
    box-sizing: border-box;
    transition: .2s;
}
/* @media (min-width:992px) {
    .btn-secondary {
        padding: 15px 30px;
    }
} */
    
.btn-secondary:hover {
    color:#FFF;
    text-decoration: none;
    background: #06978D;
    transition: .2s;
}

.btn-secondary svg {
    margin: 0px 5px 0px 0px;
    fill: #00ACA1;
    transition: .2s;
}

.btn-secondary:hover svg {
    fill:#fff;
    transition: .2s;
}

.btn-round {
  /*   width: 100%; */
    height: unset;
    line-height: unset;
    font-size: 14px;
    font-weight: 600;
    color:#fff;
    padding: 13px 65px;
    text-align: center;
    background: #00ACA1;
    border-radius:50rem;
    border: none;
    display:block;
    box-sizing: border-box;
    transition: .2s;
}

.btn-round:hover {
    text-decoration: none;
    background: #05978D;
    transition: .2s;
}

.btn-round svg {
    margin: 0px 5px 0px 0px;
    fill: #fff;
}

.btn-add {
    font-size: 14px;
    font-weight: 400;
    color:#191919;
    line-height: 17px;
    border: none;
    border-radius: 0px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
}

.btn-add:hover {
    text-decoration: none;
}

.btn-add::before {
    content: '';
    width: 30px;
    height: 30px;
    background:url('../images/ico-plus.svg') no-repeat center #00ACA1;
    background-size: 8px 8px;
    border-radius: 50%;
    margin-right: 10px;
    transition: .2s;
}

.btn-add:hover::before {
    background:url('../images/ico-plus.svg') no-repeat center #06978D;
    transition: .2s;
}


.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon img, .btn-icon svg {
    max-width: 23px;
    max-height: 23px;
    object-fit: contain;
    margin-right: 10px;
}

.btn-primary-out.btn-icon:hover img, .btn-primary-out.btn-icon:hover svg, .btn-secondary.btn-icon:hover img, .btn-secondary.btn-icon:hover svg {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: .2s;
}


.btn-clear, .btn-clear:hover {
    font-size: 14px;
    font-weight: 400;
    color:#DA2C30;
    text-decoration: underline;
    border: none;
    border-radius: 0px;
    background: transparent;
    margin: 20px 0px 0px 0px;
}


.btn-cancel {
    font-size: 14px;
    font-weight: 400;
    color:#000;
    text-decoration: underline;
    border: none;
    border-radius: 0px;
    background: transparent;
    margin:0px;
}

.btn-cancel:hover {
    color:#DA2C30;
    text-decoration: underline;
}

.btn-cancel svg {
    fill: #000;
}

.btn-cancel:hover svg {
    fill: #DA2C30;
}




button:focus { outline: none; }

.container-fluid {
    width: auto;
    margin: 0 auto;
    padding: 0px 20px;
    display: block;
}
@media (min-width: 1200px) {
    .container-fluid {
        padding: 0px 40px;
    }
}


.panel {
    margin-bottom: 0px;
    background-color: transparent;
    border:none;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.container {
    width: auto;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0px 20px;
    display: block;
}

/* @media (min-width: 1200px) {
    .container {
        max-width: 1230px;
    }
}
 */


header {
    background: rgb(216,37,39);
    background: linear-gradient(90deg, rgba(216,37,39,1) 0%, rgba(170,27,31,1) 100%);
    z-index: 999;
    position: relative;
}
@media (min-width: 992px) {
    header {
        background: #fff;
    }
}

header ul {
    margin: 0px;
    padding: 0px;
    gap:20px;
    display: none;
}
@media (min-width: 992px) {
    header ul {
        gap:30px;
        display: flex;
    }
}

header ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    position: relative;
}

header ul li a {
    font-size: 13px;
    font-weight: 400;
    color:#fff;
    line-height: 1.2;
    position: relative;
    display: block;
}
@media (min-width: 1200px) {
    header ul li a {
        white-space: nowrap;
    }
}

header ul li a:hover {
    color:#00ACA1;
    text-decoration: underline;
}


@media (min-width: 992px) {
    header ul li.item-has-icon > a {
        padding-left:30px;
    }
}

@media (min-width: 992px) {
    header ul li.item-has-submenu > a {
        background: url('../images/chev-down-white.svg') no-repeat;
        background-position: right center;
        background-size: 8.5px 4.95px;
        padding-right: 14px;
    }
}

@media (min-width: 992px) {
    header ul li.submenu-item-has-icon > a {
        padding-left: 40px !important;
        position: relative;
    }
}

@media (min-width: 992px) {
    header ul li.submenu-item-has-icon > a > img {
        max-width: 16px;
        max-height: 16px;
        object-fit: contain;
        left:16px;
        top:11px;
        position: absolute;
    }
}






header ul li.item-has-icon .item-icon {
    width:100%;
    height:22px;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
}
@media (min-width: 992px) {
    header ul li.item-has-icon .item-icon {
        width:24px;
        height:24px;
        margin-bottom: 0;
        left:0;
        position: absolute;
    }
}

header ul li.item-has-icon .item-icon.icon-person {
    background: url('../images/ico-person-black.svg') no-repeat center;
    background-size:19.09px 20.67px;
}
@media (min-width:992px) {
    header ul li.item-has-icon .item-icon.icon-person {
        background: url('../images/ico-person.svg') no-repeat center;
        background-size:19.09px 20.67px;
    }
}

header ul li.item-has-icon .item-icon.icon-heart {
    background: url('../images/ico-heart-black.svg') no-repeat center;
    background-size: 21.27px 18.14px;
}
@media (min-width:992px) {
    header ul li.item-has-icon .item-icon.icon-heart {
        background: url('../images/ico-heart.svg') no-repeat center;
        background-size: 21.27px 18.14px;
    }
}

header ul li.item-has-icon .item-icon.icon-bell {
    background: url('../images/ico-bell-black.svg') no-repeat center;
    background-size:17.49px 21.27px;
}
@media (min-width:992px) {
    header ul li.item-has-icon .item-icon.icon-bell {
        background: url('../images/ico-bell.svg') no-repeat center;
        background-size:17.49px 21.27px;
    }
}

header ul li.item-has-icon .item-icon.icon-chat {
    background: url('../images/ico-chat-black.svg') no-repeat center;
    background-size:23.26px 21.27px;
}
@media (min-width:992px) {
    header ul li.item-has-icon .item-icon.icon-chat {
        background: url('../images/ico-chat.svg') no-repeat center;
        background-size:23.26px 21.27px;
    }
}

header ul li.item-has-icon .item-icon.icon-basket {
    background: url('../images/ico-basket-black.svg') no-repeat center;
    background-size:22.75px 21.31px;
}
@media (min-width:992px) {
    header ul li.item-has-icon .item-icon.icon-basket {
        background: url('../images/ico-basket.svg') no-repeat center;
        background-size:22.75px 21.31px;
    }
}



@media (max-width:991.98px) {
    .basket-bm {
        width: 100%;
        color:#fff;
        background:#00ACA1;
        border-top: 1px solid #05978D;
        padding: 16px;
        bottom:60px;
        position: fixed;
        z-index: 9999;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap:10px;
    }

    .basket-bm svg {
        width: 22px;
        height:22px;
        fill:#fff;
    }
}


.basket-dd {
    display: none;
}
@media (min-width:992px) {
    .basket-dd {
        width:330px;
        height: auto;
        background: #E8E8E8;
        border:1px solid #DDD;
        /* border-radius: 8px; */
        right:0;
        position: absolute;
        transition: .3s;
        z-index: 9999;
        display: none;
    }

    header .main-bar ul li:hover .basket-dd {
        display: block;
    }

    .basket-dd h3 {
        font-size: 16px;
        line-height: 18px;
        padding: 16px 30px 16px 16px;
        margin: 2px 0px;
        position: relative;
    }

    .basket-dd h3 button {
        width: 10px;
        height:10px;
        background:transparent;
        border:none;
        border-radius: 0px;
        right:16px;
        top:calc(50% - 10px);
        position: absolute;
    }

    .basket-dd h3 span {
        font-weight: 400;
    }

    .basket-dd .parts-list-item {
        gap:10px;
        border-radius: 0px;
        box-sizing: border-box;
        margin: 0px;
        border-bottom:1px solid #DDD;
    }

    .basket-dd .parts-list-item-img {
        width:110px;
        min-width:110px;
        max-width:110px;
        min-height: 110px;
    }

    .basket-dd  .parts-list-item-details {
        width: calc(100% - 20px);
        max-width: 100%;
        font-size: 12px;
        padding: 20px 10px 20px 0px;
        position: relative;
    }

    .basket-dd  .parts-list-item-details h4, .basket-dd  .parts-list-item-details p {
        font-size: 12px;
        line-height: 16px;
    }

    .basket-dd-remove {
        width: 16px;
        height: 17px;
        background: transparent;
        border: none;
        border-radius: 0px;
        right:16px;
        bottom:16px;
        position: absolute;
    }

    .basket-dd-subtotal {
        display: flex;
        gap:16px;
        justify-content: space-between;
        padding: 16px 16px;
        border-bottom:1px solid #DDD;
    }

    .basket-dd-btns {
        display: flex;
        gap:16px;
        justify-content: space-between;
        padding: 16px 16px;
        border-bottom:1px solid #DDD;
    }

    .basket-dd-btns button {
        padding: 10px;
    }

    .basket-dd-delivery {
        padding:10px 16px;
        text-align: center;
    }

    .basket-dd-delivery p {
        margin: 0px 0px 2px 0px;
    }

    .basket-dd-delivery p span {
        font-size: 12px;
    }
}




.main-bar ul li .basket-dd-delivery a {
    font-size: unset;
    color: #191919;
    min-height: auto;
    display: unset;
    align-items: unset;
}

.main-bar ul li .basket-dd-delivery a:hover {
    color:#00ACA1;
}

header ul li.item-chev-down > a {
    padding-right:18px;
}

header ul li.item-chev-down > a::after {
    content:'';
    width:8.5px;
    height:4.95px;
    background: url('../images/chev-down.svg') no-repeat;
    background-size:8.5px 4.95px;
    top:calc(50% - 2.5px);
    right: 0px;
    position: absolute;
}

.badge-h {
    min-width:9px;
    height: 9px;
    font-size: 10px;
    color:#fff;
    background: #00ACA1;
    border-radius: 50rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    top:-5px;
    left:calc(50% + 3px);
    position: absolute;
    -webkit-box-sizing:unset;
    -moz-box-sizing:unset;
}
@media (min-width: 992px) {
    .badge-h {
        top:calc(50% - 18px);
        left:10px;
    }
}

.top-bar-menu {
    display: none;
}
@media (min-width: 992px) {
    .top-bar-menu {
        display: flex;
    }
}

@media (min-width: 992px) {
    .top-bar-end  {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

.lang-switcher {
    position: relative;
}

.lang-switcher a {
    font-size: 13px;
    font-weight: 400;
    color:#fff;
    line-height: 1.2;
    padding: 0px 30px 0px 43px;
    margin: 0px -13px 0px 15px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 992;
}
@media (min-width: 992px) {
    .lang-switcher a {
        height: 44px;
        color:#191919;
        background: #fff;
        z-index: 994;
    }
}
@media (min-width: 1200px) {
    .lang-switcher a {
        white-space: nowrap;
    }
}

.lang-switcher a:hover {
    color:#00ACA1;
    text-decoration: underline;
}


.lang-switcher.item-has-icon > a > img {
    max-width:24px;
    max-height:24px;
    object-fit: contain;
    left:15px;
    position: absolute;
}


.lang-switcher.item-chev-down > a::after {
    content:'';
    width:8.5px;
    height:4.95px;
    background: url('../images/chev-down-white.svg') no-repeat;
    background-size:8.5px 4.95px;
    top:calc(50% - 2.5px);
    right: 13px;
    position: absolute;
}
@media (min-width: 992px) {
    .lang-switcher.item-chev-down > a::after {
        background: url('../images/chev-down.svg') no-repeat;
    }
}
 
.lang-switcher-toggle .lang-switcher .sub-menu {
    width: 100vw;
    height: auto;
    padding: 20px 0px 60px 0px;
    background: #fff;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    left:0;
    display: block;
    position: fixed;
    bottom:0;
    z-index: 994;
}
@media (min-width: 992px) {
    .lang-switcher-toggle .lang-switcher .sub-menu {
        width: unset;
        padding: 0px;
        background: none;
        border-radius: 0px;
        display: block;
        position: absolute;
        right:0;
        left:unset;
        bottom: unset;
        z-index: 994;
    }
}

.lang-switcher-toggle .lang-switcher > .sub-menu li a {
    height: 44px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin: 0px ;
}
@media (min-width: 992px) {
    .lang-switcher-toggle .lang-switcher > .sub-menu li a {
        margin: 0px -13px 0px 15px;
    }
}

.lang-switcher-toggle .lang-switcher > .sub-menu li a:hover  {
    text-decoration: none;
    background:#F5F5F5;
}

.lang-switcher-toggle .lang-switcher .sub-menu li.item-has-icon > a {
    padding:0px 20px 0px 50px;
}

.lang-switcher-toggle .lang-switcher .sub-menu li.item-has-icon > a > img {
    width:18px;
    height:18px;
    margin-bottom: 0;
    left:20px;
    position: absolute;
}

.lang-switcher-toggle .lang-switcher .lang-sub-menu-cover {
    width: 100vw;
    height: 100vh;
    background: #000;
    left:0;
    top:0;
    right:0;
    bottom:0;
    position: fixed;
    z-index: 992;
    opacity: .4;
    transition:.2s;
}

.lang-header {
    padding: 0px 20px;
    position: relative;
}
@media (min-width: 992px) {
    .lang-header {
        display: none;
    }
}

.lang-header button {
    width: 11.06px;
    height: 11.06px;
    background: none;
    border: none;
    border-radius: 0px;
    top:2px;
    right: 25px;
    position: absolute;
}



.top-bar {
    min-height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:30px;
    padding-top: 13px;
}
@media (min-width: 992px) {
    .top-bar {
        min-height: 44px;
        padding-top: 0px;
    }
}

.burger {
    width: 30px;
	height: 30px;
	background:none;
	border:none;
	border-radius:0px;
	margin:-3px 0px 0px 0px;
	padding:0px;
	z-index: 9988 !important;
	display: block;
}
@media (min-width: 992px) {
    .burger {
        display: none;
    }
}

.burger:after,
.burger:before,
.burger div {
	background-color:#fff;
	border-radius: 0px;
	content: '';
	display: block;
	height: 2px;
	margin: 8px 0;
	border-radius: 0px;
	transition: all .2s ease-in-out;
}

.sidenav {
    height: 100%;
    width: 0;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    background: #fff;
    overflow-x: hidden;
    transition: 0.3s;
}

.sidenav-header {
    width: 100%;
    height: 47px;
    background: rgb(216,37,39);
    background: linear-gradient(90deg, rgba(216,37,39,1) 0%, rgba(170,27,31,1) 100%);
}

.closebtn {
    width: 47px;
    height: 47px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main {
    transition: margin-left .3s;
}



.sidenav-content {
    padding: 20px;
}


.sidenav-search-menu {
    margin: 0px;
    padding:10px 0px 30px 0px;
}

.sidenav-search-menu li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.sidenav-search-menu li a, .sidenav-search-menu li a:hover {
    padding: 10px 46px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.sidenav-search-menu li a::after {
    content: '';
    width: 7.34px;
    height: 12.69px;
    background: url('../images/chev-right.svg') no-repeat;
    background-size: 7.34px 12.69px;
    top: calc(50% - 3.6px);
    right: 20px;
    position: absolute;
    transition: .2s;
}



.sidenav-search-menu-img {
    width: 46px;
    height: 46px;
    margin: 0px 24px 0px 0px;
    position: relative;
}

.sidenav-search-menu-img img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}


.sidenav-search-menu li h3 {
    margin: 0px;
}



.sidenav-menu {
    margin: 0px;
    padding: 0px;
}

.sidenav-menu li {
    margin: 0px 0px 27px 0px;
    padding: 0px;
    list-style: none;
}

.sidenav-menu li a {
    font-size: 13px;
    font-weight: 400;
    color: #191919;
    text-decoration: none;
}
  




@media (min-width: 992px) {
    .top-bar ul li a {
        height: 44px;
        display: flex;
        align-items: center;
        background: #fff;
    }
}

.top-bar ul li.lang-switcher > a {
    padding: 0px 31px 0px 43px;
    margin-left: -14px;
}

.top-bar ul li.lang-switcher > a > img {
    left:15px;
}

.top-bar ul li.lang-switcher > a::after {
    right: 14px;
}

header .top-bar ul li a {
    color:#191919;
}

header .top-bar ul li a:hover {
    color:#00ACA1;
}

header ul li.current > a, header ul li.current > a:hover {
    color:#C4C4C4;
}

@media (min-width: 992px) {
    .main-bar {
        background: rgb(216,37,39);
        background: linear-gradient(90deg, rgba(216,37,39,1) 0%, rgba(170,27,31,1) 100%);
    }
}

.main-bar .container-fluid {
    padding-top:12px;
    padding-bottom:12px;
}
@media (min-width: 992px) {
    .main-bar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap:30px;
    }
}

.findapart-logo {
    top:16px;
    left: 70px;
    position: absolute;
}
@media (min-width: 360px) {
    .findapart-logo {
        top:13px;
    }
}

@media (min-width: 992px) {
    .findapart-logo {
        display: flex;
        align-items: center;
        top:unset;
        left:unset;
        position: relative;
    }
}

.findapart-logo img {
    width:140px;
    height:auto;
    object-fit: contain;
}
@media (min-width: 360px) {
    .findapart-logo img {
        width:168.2px;
        height:34.84px;
    }
}
@media (min-width: 1200px) {
    .findapart-logo img {
        width:241.38px;
        height:50px;
    }
}

.main-bar form input[type="text"] {
    width: 100%;
    height: 50px;
    font-size: 22px;
    color:#191919;
    padding:0px 50px 0px 20px;
    background: #fff;
    border-radius: 25px;
    border:none;
    position: relative;
    box-sizing: border-box;
}

.partnumber::placeholder {
  font-size: 14px !important;
	line-height: 22px !important;
	font-weight: 400 !important;
}


header form {
    width: 100%;
    padding: 9px 0px;
}
@media (min-width: 992px) {
    header form {
        padding: 0px;
    }
}
@media (min-width: 1200px) {
    header form {
        max-width: 530px;
    }
}

.main-bar form input[type="submit"] {
    width: 36px;
    height: 36px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:14.7px 14.7px;
    border-radius: 50%;
    border: none;
    margin: 7px 0px 0px -43px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}

.main-bar form input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    transition: .2s;
}

.sub-menu {
	display: none;
	min-width:190px;
	padding: 0px;
    z-index: 999;
}

@media (max-width: 991.98px) {
    .main-bar ul {
        width:100%;
        background:#fff;
        padding: 9px 22px 11px 22px;
        box-shadow: 0px -4px 6px #00000012;
        border-top:1px solid #DDD;
        display: flex;
        justify-content: space-between;
        align-items:center;
        gap:3px;
        bottom:0px;
        left:0px;
        right:0px;
        position: fixed;
        z-index: 999;
    }

    .main-bar ul li {
        display: flex;
        align-items: center;
        justify-content: center;
    } 

    .main-bar .sub-menu {
        display: none;
    }
    .main-bar ul li a {
        text-align: center;
    }
}

.main-bar ul li a {
    font-size: 10px;
    color:#191919;
}
@media (min-width:992px) {
    .main-bar ul li a {
        font-size: 13px;
        color:#fff;
        min-height: 30px;
        display: flex;
        align-items: center;
    }
}

@media (min-width:992px) {
    .main-bar ul li a:hover {
        color: #F5F5F5;
    }
}

@media (min-width:992px) {
    header .main-bar ul li:hover .sub-menu {
        background: #fff;
        border: 1px solid #DDD;
        display: block;
        position: absolute;
    }
}

@media (min-width:992px) {
    header .main-bar ul li:hover .sub-menu a {
        color:#191919;
        padding: 4px 14px;
        border-bottom: 1px solid #DDD;
    }
}

@media (min-width:992px) {
    header .main-bar ul li:hover .sub-menu a:hover {
        color:#00ACA1;
    }
}

@media (min-width:992px) {
    header .main-bar ul li:hover .sub-menu li:last-child a {
        border-bottom: none;
    }
}

.home-search-large {
    display: none;
}
@media (min-width:992px) {
    .home-search-large {
        margin: 38px 0px 44px 0px;
        display: block;
    }
}

.home-search-large .container {
    padding-top: 58px;
    position: relative;
}

.home-search-large  h1 {
    margin: 0px 0px 24px 0px;
}

.home-tabs-wrapper {
    display: flex;
    gap:30px;
}

.home-tabs-wrapper > div {
    flex: 1;
}

.home-tabs-buttons button {
    width: 100%;
    height: 130px;
    text-align: left;
    padding:20px 70px 20px 40px;
    margin:0px 0px 15px 0px;
    background:url('../images/chev-right.svg') no-repeat #fff;
    background-size: 12.19px 22.38px;
    background-position: right 28px top 53px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    display: flex;
    align-items:  center;
    justify-content: flex-start;
    cursor: pointer;
    transition: .2s;
}

.home-tabs-buttons button.active, .home-tabs-buttons button:hover {
    box-shadow: 4px 4px 12px #00000029;
    border: 1px solid #00ACA1;
    transition: .2s;
}

.home-tabs-buttons-img {
    width: 90px;
    height: 90px;
    margin: 0px 30px 0px 0px;
    position: relative;
}

.home-tabs-buttons-img img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.home-tabs-buttons button h3 {
    margin: 0px;
}

.home-tabs-content {
    position: relative;
    margin:0px 0px 15px 0px;
}

.home-tabs-content .tabcontent-search {
    height: 100%;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    display: none;
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}


.home-tabs-conten-header {
    top:-57px;
    left:calc(-100% - 30px);
    position: absolute;
}


.tabcontent-search h3 {
    text-align: center;
    padding:27px 20px 24px 20px;
    margin: 0px;
}

.tabcontent-search-inner {
    padding:0px 20px 20px 20px;
}
@media (min-width:576px) {
    .tabcontent-search-inner {
        padding:0px 30px 30px 30px;
    }
}

.tabcontent-parts {
    display: none;
    animation: fadeEffect 1s;
}

.tabs-search-vehicle-number {
    padding: 0px 8px;
    margin-bottom: 20px;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #EBECED 100%) 0% 0% no-repeat padding-box;
    border-bottom: 1px solid #2E3A4C;
    display: flex;
    justify-content: center;
}
@media (min-width:992px) {
    .tabs-search-vehicle-number {
        padding: 0px 30px;
        margin-bottom: 30px;
    }
}

.tabs-search-vehicle-number button {
    width: 50%;
    font-size: 14px;
    font-weight: 600;
    color:#8A8A8A;
    text-align: center;
    margin: 0px 0px -1px 0px;
    padding:14px 20px;
    background: none;
    border:1px solid transparent;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}
@media (min-width:992px) {
    .tabs-search-vehicle-number button {
        font-size: 16px;
        padding:15px 20px;
    }
}

.tabs-search-vehicle-number button.active {
    color:#191919;
    border: 1px solid #2E3A4C;
    border-bottom: 1px solid #fff;
    background: #fff;
}

.tabcontent-parts-vehicle-more {
    text-decoration: underline;
    bottom:30px;
    position: absolute;
    display: block;
}


@media (min-width:576px) {
    .form-cols {
        display: flex;
        gap:20px;
    }
}

@media (min-width:576px) {
    .form-cols > * {
        flex: 1 1;
    }
}

.tabcontent-search-inner-model-details-wrapper {
    padding: 0px;
    margin: 0px 0px 17px 0px;
}
@media (min-width:992px) {
    .tabcontent-search-inner-model-details-wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap:0px;
    }
}

.tabcontent-search-inner-model-details-inner {
    max-width: 84%;
    width: 84%;
}

.tabcontent-search-inner-model-details-inner dl {
    display: flex;
    margin: 0px;
}

.tabcontent-search-inner-model-details-inner dl > dt {
    width: 36%;
    line-height: 16px;
}

.tabcontent-search-inner-model-details-inner dl > dd {
    width:64%;
    margin: 0px 0px 3px 4px;
    line-height: 16px;
}

@media (min-width:992px) {
    .tabcontent-search-inner-model-details-btns {
        display: flex;
        align-items:center;
        justify-content: space-between;
        position: relative;
    }
}

.tabcontent-search-inner-model-details-btn-img {
    width: 100%;
    height: 157px;
    min-width: 157px;
    min-height: 157px;
    margin:0px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (min-width:992px) {
    .tabcontent-search-inner-model-details-btn-img {
        width: 157px;
        margin: 0px 60px 0px 20px;
    }
}

.tabcontent-search-inner-model-details-btn-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

@media (min-width:992px) {
    .tabcontent-search-inner-model-details-btns .btn-clear {
        right:0px;
        bottom:0px;
        position: absolute;
    }
}

@media (min-width:992px) {
    .tabcontent-search-inner-model-details-btns-btns {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
    }
}




.home-search-small {
    padding: 20px 0px;
}
@media (min-width:992px) {
    .home-search-small {
        display: none;
    }
}

.home-search-small .panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    border-radius: 8px;
    transition: max-height 0.2s ease-out;
    margin: 0px;
    border:none;
    -webkit-box-shadow:none;
    box-shadow: none;
}


.accordion-search-wrapper {
    width: 100%;
    text-align: left;
    margin:0px 0px 10px 0px;
    padding: 0;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
    box-sizing: border-box;
}

.accordion-search-wrapper:has(> .accordion-search.active) {
    box-shadow: 4px 4px 12px #00000029;
    border: 1px solid #00ACA1;
    transition: .2s;
}

.accordion-search {
    width: 100%;
    text-align: left;
    padding:14px 46px 14px 19px;
    background: none;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items:  center;
    justify-content: flex-start;
    transition: .2s;
    position: relative;
}

.accordion-search::after {
    content: '';
    width: 12.69px;
    height: 7.34px;
    background: url('../images/chev-down.svg') no-repeat;
    background-size:12.69px 7.34px;
    top:calc(50% - 3.6px);
    right:20px;
    position: absolute;
    transition: .2s;
}

.accordion-search.active::after {
    transform: rotate(180deg);
    transition: .2s;
}

.accordion-search-img {
    width: 60px;
    height: 60px;
    margin: 0px 20px 0px 0px;
    position: relative;
}

.accordion-search img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.accordion-search h3 {
    margin: 0px;
}

.accordion-search-wrapper .panel h3 {
    font-size: 20px;
    padding:0px 20px 20px 20px;
    margin: 0px;
}

.tabcontent-parts-mobile {
    display: none;
    animation: fadeEffect 1s;
}







.car-list {
    padding: 22px 0px 120px 0px;
    background: #fff;
}
@media (min-width:992px) {
    .car-list {
        padding: 40px 0px 120px 0px;
        background: #fff;
    }
}

@media (min-width:992px) {
    .car-list h2 {
        margin: 0px 0px 32px 0px;
    }
}

.car-list ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap:10px
}

.car-list ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    flex: 1 1 calc(50% - 5px);
    max-width:  calc(50% - 5px);
}
@media (min-width:576px) {
    .car-list ul li {
        flex: 1 1 calc(33.3333% - 7px);
        max-width:  calc(33.3333% - 7px);
    }
}
@media (min-width:768px) {
    .car-list ul li {
        flex: 1 1 calc(25% - 8px);
        max-width:  calc(25% - 8px);
    }
}
@media (min-width:992px) {
    .car-list ul li {
        flex: 1 1 calc(20% - 8px);
        max-width:  calc(20% - 8px);
    }
}

.car-list ul li a , .car-list ul li a:hover{
    font-size: 13px;
    color:#9B9B9B;
    text-decoration: none;
}
@media (min-width:992px) {
    .car-list ul li a , .car-list ul li a:hover{
        font-size: 16px;
    }
}

.car-list ul li a span {
    font-size: 13px;
    color:#191919;
    margin-right: 4px;
    text-decoration: none;
}
@media (min-width:992px) {
    .car-list ul li a span {
        font-size: 16px;
    }
}

.car-list ul li a:hover span {
    font-size: 13px;
    color:#00ACA1;
    text-decoration: underline;
}
@media (min-width:992px) {
    .car-list ul li a:hover span {
        font-size: 16px;
    }
}


/* search-signle */

.search-signle {
    padding: 0px 0px 30px 0px;
}

.search-signle .accordion-search {
    box-sizing: border-box;
}

.search-signle .accordion-search:after {
    display: none;
}

.search-signle h2 {
    margin-left: 20px;
}



/* basket */

.basket-header {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    padding: 20px 0px 6px 0px;
}
@media (min-width:992px) {
    .basket-header {
        padding: 0px 0px 23px 0px;
    }
}

.basket-header a {
    margin: 4px 0px 0px 0px;
    text-decoration: underline;
}

.basket-header a:hover {
    color:#191919;
}

.basket-listing {
    background: #fff;
    border-radius: 8px;
    margin: 0px 0px 30px 0px;
}

.basket-list-item {
    margin: 0px 0px 0px 0px;
    padding: 12px 10px 66px 10px;
    position: relative;
    display: flex;
    gap:20px;
    border-bottom:1px solid #DDD;
}
@media (min-width:992px) {
    .basket-list-item {
        gap:16px;
        padding:0px;
    }
}

.basket-list-item-img {
    width: 90px;
    min-width:90px;
    max-width: 90px;
    position: relative;
}
@media (min-width:992px) {
    .basket-list-item-img {
        margin: 12px 0px 12px 10px;
    }
}
@media (min-width:1200px) {
    .basket-list-item-img {
        width: unset;
        min-width:unset;
        max-width: unset;
        min-height: 150px;
        margin: 16px 0px 16px 16px;
        display: flex;
        flex: 0 0 200px;
    }
}
@media (min-width:1200px) {
    .basket-list-item-img::after {
        content: "";
        display: block;
        padding-bottom: 75%;
        position: relative;
        z-index: -1;
    }
}

.basket-list-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}
@media (min-width:1200px) {
    .basket-list-item-img img {
        -webkit-border-top-left-radius: 4px;
        -webkit-border-top-right-radius: 4px;
        -moz-border-radius-topleft: 4px;
        -moz-border-radius-topright: 4px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        top:10px;
        left:0px;
        right:0px;
        bottom:0px;
        position: absolute;
    }
}
@media (min-width:576px) {
    .basket-list-item-img img {
        top:0px;
        border-radius: 4px;
    }
}

@media (min-width:992px) {
    .basket-list-item-details {
        width: 100%;
        padding: 16px 20px 16px 0px;
    }
}

@media (min-width:992px) {
    .basket-list-item-details-header {
        height: auto;
        display: flex;
        gap:10px;
        justify-content: space-between;
        border-bottom: 1px solid #DDD;
        padding: 0px 0px 16px 0px;
    }
}

@media (min-width:992px) {
    .basket-list-item-details-part {
        width:35%;
        min-width:35%;
        max-width:35%;
    }
}
@media (min-width:1200px) {
    .basket-list-item-details-part {
        width:4ch;
        min-width:45%;
        max-width:45%;
    }
}

.basket-list-item-details-part h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin: 0px;
}
@media (min-width:992px) {
    .basket-list-item-details-part h4 {
        font-size: 16px;
        line-height: 19px;
        margin: 0px 0px 8px 0px;
    }
}

.basket-list-item-details-part h4 a {
    color:#191919;
    text-decoration: none;
}

.basket-list-item-details-part h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.basket-list-item-details-part h4 a span {
    font-weight: 400;
}

.basket-list-item-details-part p {
    font-size: 12px;
    margin: 0px;
    line-height: 17px;
}
@media (min-width:992px) {
    .basket-list-item-details-part p {
        font-size: 14px;
        line-height: 19px;
    }
}

.basket-list-item-details-action {
    padding: 5px 0px;
}
@media (min-width:992px) {
    .basket-list-item-details-action {
        padding:0px;
    }
}

.basket-list-item-details-action ul {
    width:calc(100% - 20px);
    margin: 0px 10px 13px 10px;
    padding:13px 0px 0px 0px;
    display: flex;
    left:0px;
    bottom:0px;
    position: absolute;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
}
@media (min-width:992px) {
    .basket-list-item-details-action ul {
        width: auto;
        margin: 0px 0px 20px 0px;
        padding: 0px;
        display: flex;
        position: relative;
        border-top: none;
    }
}

.basket-list-item-details-action ul li {
    flex: 1; 
    display: flex;
    justify-content: center;
    list-style: none;
    position: relative;
}
@media (min-width:992px) {
    .basket-list-item-details-action ul li {
        margin: 0px 10px 0px 0px;
        padding: 0px 13px 0px 0px;
        flex:auto;
        display: unset;
    }
}

.basket-list-item-details-action ul li:last-child {
    margin: 0px;
    padding: 0px;
}

.basket-list-item-details-action ul li::after {
    content:'|';
    color:#ddd;
    right: 0;
    position: absolute;
}

.basket-list-item-details-action ul li:last-child::after {
    display: none;
}

.basket-list-item-details-action ul li a {
    font-size: 14px;
    font-weight: 400;
    color:#191919;
    text-decoration: none;
    white-space: nowrap;
}

.basket-list-item-details-action ul li a:hover {
    font-size: 14px;
    font-weight: 400;
    color:#00ACA1;
    text-decoration: none;
}

.basket-list-item-details-action ul li.basket-list-item-details-action-remove a {
    padding: 0px 0px 0px 22px;
    position: relative;
}

.basket-list-item-details-action ul li a span {
    text-decoration: underline;
}

.basket-list-item-details-action ul li.basket-list-item-details-action-remove a svg {
    fill:#191919;
    transition: .2s;
    top:0px;
    left: 0px;
    position: absolute;
}

.basket-list-item-details-action ul li a.basket-list-item-details-action-remove:hover svg {
    fill:#00ACA1;
    transition: .2s;
}

.basket-list-item-details-action p {
    font-size: 10px;
    color:#9B9B9B;
    margin: 0px;
}
@media (min-width:768px) {
    .basket-list-item-details-action p {
        font-size: 14px;
    }
}

.basket-list-item-details-action p a {
    color:#9B9B9B;
    text-decoration: none;
}
@media (min-width:768px) {
    .basket-list-item-details-action p a {
        margin-left: 6px;
    }
}

.basket-list-item-details-action p a:hover {
    color:#9B9B9B;
    text-decoration:underline;
}

.basket-list-item-details-price {
    font-size: 12px;
}
@media (min-width:992px) {
    .basket-list-item-details-price {
        width:110px;
        min-width:110px;
        max-width:110px;
        text-align: right;
    }
}

.basket-list-item-details-price strong {
    font-size: 18px;
    font-weight: 600;
    display: block;
}
@media (min-width:768px) {
    .basket-list-item-details-price strong {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

.basket-list-item-supplier-verify {
    width: calc(100% + 110px);
    font-size: 12px;
    line-height: 17px;
    margin:16px 0px 0px -110px;
}
@media (min-width:768px) {
    .basket-list-item-supplier-verify {
        width: unset;
        font-size: 14px;
        line-height: 19px;
        margin:22px 0px 0px 0px;
    }
}

.basket-list-item-reg {
    margin: 10px 0px 10px 0px;
    display: flex;
    align-items: center;
    justify-content:stretch;
    flex-wrap: wrap;
    gap:20px;
}

.basket-list-item-reg label {
    width: auto;
    margin: 0;
}

.basket-list-item-reg label.checkbox-style-reg {
    min-height: 20px;
}

.basket-list-item-reg-n {
    width: calc(100vw - 60px);
    margin: 0px 0px 0px -110px;
    display: flex;
    align-items: center;
}
@media (min-width:992px) {
    .basket-list-item-reg-n {
        width: 200px;
        margin: 0;
        min-width:200px;
        max-width: 200px;
    }
}

.basket-list-item .form-icon-plate {
    width:46px;
    height: 100%;
    background: #003399;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left:0px;
    top:0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-list-item .form-icon-plate img {
    max-width:80%;
    max-height:80%;
    object-fit: contain;
    position: absolute;
}
.basket-list-item .form-icon-plate-2 {
    width:26px;
    height: 100%;
    background: #003399;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left:0px;
    top:0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-list-item .form-icon-plate-2 img {
    max-width:80%;
    max-height:80%;
    object-fit: contain;
    position: absolute;
}

.basket-list-item .form-has-icon-plate {
    width: 100%;
}
.basket-list-item .form-has-icon-plate-2 {
    width: 100%;
}
@media (min-width:768px) {
    .basket-list-item .form-has-icon-plate {
        width: auto;
    }
    .basket-list-item .form-has-icon-plate-2 {
        width: auto;
    }
}

.basket-list-item .form-has-icon-plate input {
    min-width: 259px;
    height: 46px;
    padding-left:56px;
    padding-right:56px;
}
.basket-list-item .form-has-icon-plate-2 input {
    min-width: 159px;
    height: 36px;
    padding-left:32px;
    padding-right:36px;
}

.basket-list-item .form-has-icon-plate input[type="submit"] {
    width: 46px;
    min-width:unset;
    height: 46px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 0;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    margin: 0px 0px 0px -46px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}
.basket-list-item .form-has-icon-plate-2 input[type="submit"] {
    width: 36px;
    min-width:unset;
    height: 36px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 0;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    margin: 0px 0px 0px -36px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}

.basket-list-item .form-has-icon-plate input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;
    transition: .2s;
}
.basket-list-item .form-has-icon-plate-2 input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;
    transition: .2s;
}

label.basket-list-item-inp {
    width: calc(100vw - 60px);
    margin: 20px 0px 0px -110px;
}
.basket-list-item-inp input {
    font-size: 12px;
}
@media (min-width:768px) {
    label.basket-list-item-inp {
        width: calc(76vw - 55px);
    }
}
@media (min-width:992px) {
    label.basket-list-item-inp {
        width: auto;
        flex: 1;
        margin: 0;
    }
}

.form-has-icon-plate-add {
    font-size: 12px;
    font-weight: 600;
    bottom:-24px;
    position: absolute;
}
.form-has-icon-plate-2-add {
    font-size: 12px;
    font-weight: 600;
    bottom:-24px;
    position: absolute;
}
.form-has-icon-plate-2-add img {
    height: 16px;
	vertical-align: middle;
	opacity: 0.7;
}

.basket-list-item-save {
    width: calc(100vw - 60px);
    margin: 0px 0px 0px -110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    box-sizing: border-box;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    color:#00ACA1;
    text-decoration: none;
    background: #fff;
}
@media (min-width:768px) {
    .basket-list-item-save {
        width: calc(76vw - 55px);
    }
}
@media (min-width:992px) {
    .basket-list-item-save {
        width: auto;
        margin: 0;
    }
}

.basket-list-item-save img {
    width: 21.27px; 
    height:18.14px;
}

.basket-list-item-save:hover {
    color:#06978D;
    text-decoration: none;
}

.basket-listing-summary {
    width: 100%;
    font-size: 12px;
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 20px;
}
@media (min-width:768px) {
    .basket-listing-summary {
        font-size: 14px;
        padding: 20px 16px;
    }
}
@media (min-width:1200px) {
    .basket-listing-summary {
        flex-wrap:nowrap;
    }
}

.basket-listing-summary-check form {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap; 
    gap: 10px;
}

.basket-listing-summary-check form .checkbox-style {
    margin-top: 12px;
}

.basket-listing-summary-check form .basket-list-item-inp input {
    width: auto;
    min-width: 350px;
}


.basket-listing-summary-subtotal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
@media (min-width:576px) {
    .basket-listing-summary-subtotal {
        flex-wrap:nowrap;
        text-align: right;
    }
}

.basket-listing-summary-subtotal .btn-primary {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width:576px) {
    .basket-listing-summary-subtotal .btn-primary {
        width: auto;
    }
}

.basket-listing-summary-subtotal .btn-primary img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    margin: 0px 0px 0px 5px;
}




.basket-listing-right {
    border-radius: 8px;
    background: #fff;
}


.basket-listing-right-wrapper {
    font-size: 12px;
    padding:20px;
    border-bottom: 1px solid #ddd;
}
@media (min-width:768px) {
    .basket-listing-right-wrapper {
        font-size: 14px;
    }
}

.basket-listing-right-wrapper-head-2 {
    font-weight: 600;
    text-align: right;
    border-top: 1px solid #ddd;
    padding:10px 0px;
}

.basket-listing-right-wrapper-head-2 dt img {
    height: 20px;
	vertical-align: middle;
}

.basket-listing-right-wrapper-head-2 dl {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:4px;
    margin: 0px 0px 6px 0px;
}


.basket-listing-right-wrapper-head-2 dl dt span {
    margin: 0px 0px 0px 12px;
}


.basket-listing-right-wrapper-head-2 dl dd {
    white-space: nowrap;
}

.basket-listing-right-wrapper-head dt img {
    height: 20px;
	vertical-align: middle;
	opacity: 0.5;
}

.basket-listing-right-wrapper-head dl {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:4px;
    margin: 0px 0px 6px 0px;
}


.basket-listing-right-wrapper-head dl dt span {
    margin: 0px 0px 0px 12px;
}


.basket-listing-right-wrapper-head dl dd {
    white-space: nowrap;
}

.basket-listing-right-wrapper-price {
    font-weight: 600;
    text-align: right;
    border-top: 1px solid #ddd;
    padding:10px 0px;
}





.basket-listing-right-pay-table {
    border:1px solid #ddd;
    border-radius: 8px;
    margin: 0px 0px 20px 0px;
}

.basket-listing-right-pay-table-head {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:4px;
    padding:16px 10px;
    border-bottom: 1px solid #ddd;
}

.basket-listing-right-pay-table-body {
    padding:16px 10px;
}

.basket-listing-right-pay-table-body dl {
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
    gap:4px;
    margin:0px 20px 0px 0px;
    padding:2px 0px;
}

.basket-listing-right-pay-table-body dt {
    width: 29%;
    font-size: 10px;
    color:#9b9b9b;
    margin: 0px;
    padding: 0px;
}
@media (min-width:768px) {
    .basket-listing-right-pay-table-body dt {
        font-size: 12px;
    }
}

.basket-listing-right-pay-table-body dd {
    margin: 0px;
    padding: 0px;
}

.basket-listing-right-pay-table-body-spacer {
    height: 20px;
}

.basket-listing-right-pay-table-body {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.basket-listing-right-pay-table-body:last-child {
    border-bottom: none;
}

.ico-pay {
    width:16px;
    height: auto;
}

.basket-listing-right-pay-table-body-accordion-btn {
    width: 20px;
    height: 20px;
    top:16px;
    right:0px;
    position: absolute;
    transition: .2s;
}

.toggled .basket-listing-right-pay-table-body-accordion-btn img {
    transform: rotate(180deg);
    transition: .2s;
}

.basket-listing-right-pay-table-body-accordion {
    display: none;
}

.basket-listing-right-pay-table-2 {
    border:1px solid #ddd;
    border-radius: 8px;
    margin: 0px 0px 20px 0px;
	padding: 10px;
	font-size: 12px;
}

.basket-listing-right-pay-table-2-head {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:4px;
    padding:16px 10px;
    border-bottom: 1px solid #ddd;
}

.basket-listing-right-pay-table-2-body {
    padding:16px 10px;
}

.basket-listing-right-pay-table-2-body dl {
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
    gap:4px;
    margin:0px 20px 0px 0px;
    padding:2px 0px;
}

.basket-listing-right-pay-table-2-body dt {
    width: 29%;
    font-size: 10px;
    color:#9b9b9b;
    margin: 0px;
    padding: 0px;
}
@media (min-width:768px) {
    .basket-listing-right-pay-table-2-body dt {
        font-size: 12px;
    }
}

.basket-listing-right-pay-table-2-body dd {
    margin: 0px;
    padding: 0px;
}

.basket-listing-right-pay-table-2-body-spacer {
    height: 20px;
}

.basket-listing-right-pay-table-2-body {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.basket-listing-right-pay-table-2-body:last-child {
    border-bottom: none;
}

.ico-pay {
    width:16px;
    height: auto;
}

.basket-listing-right-pay-table-2-body-accordion-btn {
    width: 20px;
    height: 20px;
    top:16px;
    right:0px;
    position: absolute;
    transition: .2s;
}

.toggled .basket-listing-right-pay-table-2-body-accordion-btn img {
    transform: rotate(180deg);
    transition: .2s;
}

.basket-listing-right-pay-table-2-body-accordion {
    display: none;
}

.basket-listing-right-pay-table-2 dl {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:4px;
    margin: 0px 0px 6px 0px;
	text-align: left;
}


.basket-listing-right-pay-table-2 dl dt span {
    margin: 0px 0px 0px 12px;
}


.basket-listing-right-pay-table-2 dl dd {
    white-space: nowrap;
}





.basket-listing-right-wrapper .btn-primary {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-listing-right-wrapper .btn-primary img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    margin: 0px 0px 0px 5px;
}


/* returns */

.returns-listing {
    background: #fff;
    border-radius: 8px;
    margin: 0px 0px 30px 0px;
}

.returns-list-item {
    margin: 0px 0px 0px 0px;
    padding: 12px 10px;
    position: relative;
    display: flex;
    gap:20px;
    border-bottom:1px solid #DDD;
}
@media (min-width:992px) {
    .returns-list-item {
        gap:16px;
        padding:0px;
    }
}

.returns-list-item-img {
    width: 90px;
    min-width:90px;
    max-width: 90px;
    position: relative;
}
@media (min-width:992px) {
    .returns-list-item-img {
        margin: 12px 0px 12px 10px;
    }
}
@media (min-width:1200px) {
    .returns-list-item-img {
        width: unset;
        min-width:unset;
        max-width: unset;
        min-height: 150px;
        margin: 16px 0px 16px 16px;
        display: flex;
        flex: 0 0 200px;
    }
}
@media (min-width:1200px) {
    .returns-list-item-img::after {
        content: "";
        display: block;
        padding-bottom: 75%;
        position: relative;
        z-index: -1;
    }
}

.returns-list-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}
@media (min-width:1200px) {
    .returns-list-item-img img {
        -webkit-border-top-left-radius: 4px;
        -webkit-border-top-right-radius: 4px;
        -moz-border-radius-topleft: 4px;
        -moz-border-radius-topright: 4px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        top:10px;
        left:0px;
        right:0px;
        bottom:0px;
        position: absolute;
    }
}
@media (min-width:576px) {
    .returns-list-item-img img {
        top:0px;
        border-radius: 4px;
    }
}

.returns-list-item-details {
    width: 100%;
    display:flex;
    flex-direction:column;

}
@media (min-width:992px) {
    .returns-list-item-details {
        padding: 16px 20px 16px 0px;
    }
}

.returns-list-item-details-header {
    padding: 0px 0px 16px 0px;
}
@media (min-width:992px) {
    .returns-list-item-details-header {
        height: auto;
        display: flex;
        gap:10px;
        justify-content: space-between;
    }
}

@media (min-width:992px) {
    .returns-list-item-details-part {
        width:35%;
        min-width:35%;
        max-width:35%;
    }
}
@media (min-width:1200px) {
    .returns-list-item-details-part {
        width:55%;
        min-width:55%;
        max-width:55%;
    }
}

.returns-list-item-details-part h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin: 0px;
}
@media (min-width:992px) {
    .returns-list-item-details-part h4 {
        font-size: 16px;
        line-height: 19px;
        margin: 0px 0px 8px 0px;
    }
}

.returns-list-item-details-part h4 a {
    color:#191919;
    text-decoration: none;
}

.returns-list-item-details-part h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.returns-list-item-details-part h4 a span {
    font-weight: 400;
}

.returns-list-item-details-part p {
    font-size: 12px;
    margin: 0px 0px 10px 0px;
    line-height: 17px;
}
@media (min-width:992px) {
    .returns-list-item-details-part p {
        font-size: 14px;
        line-height: 19px;
    }
}

.returns-list-item-details-price {
    font-size: 12px;
}
@media (min-width:992px) {
    .returns-list-item-details-price {
        width:110px;
        min-width:110px;
        max-width:110px;
        text-align: right;
    }
}

.returns-list-item-details-price strong {
    font-size: 18px;
    font-weight: 600;
    display: block;
}
@media (min-width:768px) {
    .returns-list-item-details-price strong {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

@media (min-width:576px) {
    .returns-list-item-details-body {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        display:flex;
        align-items:flex-end;
        justify-content: space-between;
    }
}

.returns-list-item-details-body label {
    margin: 0px;
}

.returns-list-item-details-body .checkbox-style {
    margin: 0px 0px 10px 0px;
}
@media (min-width:576px) {
    .returns-list-item-details-body .checkbox-style {
        margin: 0px;
    }
}

@media (min-width:576px) {
    .returns-list-item-details-body label select {
        min-width: 360px;
    }
}

.returns-list-comments {
    padding:12px 10px;
    border-bottom: 1px solid #ddd;
}
@media (min-width:576px) {
    .returns-list-comments {
        display: flex;
        justify-content: space-between;
        gap:20px;
    }
}
@media (min-width:992px) {
    .returns-list-comments {
        padding:16px;
    }
}

.returns-list-comments .filepond--root {
    margin-bottom: 40px;
}

.returns-list-comments label {
    margin: 0px;
}

.returns-list-comments-content p {
    margin: 0px 0px 10px 0px;
}

.returns-list-comments-content-char {
    display: flex;
    font-size: 12px;
    color:#9b9b9b;
    margin: 3px 0px 0px 0px;
}

.returns-list-comments-content-char #charNum {
    margin-right: 3px;
}

.returns-note {
    padding: 20px 16px;
}

.returns-right-wrapper {
    border-radius: 8px;
    background: #fff;
}

.returns-right-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.returns-right-body {
    padding: 20px;
}

.returns-right-body label {
    margin:0px 0px 20px 0px;
}

.returns-right-body-address-head {
    margin: 0px 0px 10px 0px;
}

.returns-right-body-address {
    background:#F5F5F5;
    padding:14px 20px;
    border-radius: 8px;
    margin:0px 0px 20px 0px;
}

.returns-right-body-date {
    text-align: center;
    margin: 12px 0px 0px 0px;
}


/* orders */

.orders {
    margin-top: 68px;
}



.orders-listing {
    background: #fff;
    border-radius: 8px;
    margin: 0px 0px 30px 0px;
    padding: 12px 10px;
}
@media (min-width:992px) {
    .orders-listing {
        padding: 16px;
    }
}

.orders-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
    margin-bottom: 20px;
}

.orders-filters h2 {
    min-width: 100%;
    margin: 0px;
}
@media (min-width:1200px) {
    .orders-filters h2 {
        min-width: unset;
    }
}

.orders-filters label {
    width: 100%;
    min-width: 100%;
    margin: 0px;
}
@media (min-width:576px) {
    .orders-filters label {
        width:auto;
        min-width:unset;
        max-width: unset;
        flex:60px;
    }
}

.orders-filters label.orders-filters-submit {
    min-width:100%;
}
@media (min-width:576px) {
    .orders-filters label.orders-filters-submit {
        min-width:48px;
        flex: unset;
    }
}

.orders-filters .btn-primary {
    width: 100%;
    height: 48px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width:992px) {
    .orders-filters .btn-primary {
        width: 48px;
    }
}



#orderfilters {
    padding: 10px 0px 10px 0px;
}

#orderfilters button {
    font-size: 12px;
    font-weight: 600;
    color:#191919;
    text-transform: uppercase;
    background: none;
    border: none;
    border-radius: 0px;
    margin: 0px 20px 10px 0px;
    padding:0px 0px 3px 0px;
    cursor: pointer;
    position: relative;
}
@media (min-width:768px) {
    #orderfilters button {
        font-size: 14px;
    }
}

#orderfilters button::after {
    content: '';
    width: 0%;
    height: 1px;
    background:#00ACA1;
    left:0px;
    bottom:0px;
    position: absolute;
    transition: .2s;
}

#orderfilters button.active::after, #orderfilters button:hover::after {
    content: '';
    width: 100%;
    height: 1px;
    background:#00ACA1;
    left:0px;
    bottom:0px;
    position: absolute;
    transition: .2s;
}

.orderfilter {
    border:1px solid #ddd;
    border-radius: 8px;
    margin: 0px 0px 20px 0px;
    display: none;
}

.orderfilter.show {
    display: block;
}

@media (min-width:576px) {
    .orderfilter-row {
        display: flex;
        justify-content: space-between;
    }
}

.orderfilter-col-1 {
    padding: 12px;
}
@media (min-width:576px) {
    .orderfilter-col-1 {
        width: 74%;
    }
}

.orderfilter-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:10px;
}

.orderfilter-row-head-dateno {
    display: flex;
    align-items: center;
    gap:10px;
}
.orderfilter-row-head-dateno a {
    display: flex;
    align-items: center;
    gap:10px;
}

.orderfilter-row-head-details {
    display: flex;
    align-items: center;
    gap:10px;
}

.orderfilter-row-head-details-supplier {
    font-weight: 600;
    color:#191919;
    text-decoration: underline;
}

.ico-pdf {
    width:14px;
    height:17px;
    object-fit: contain;
}

.orderfilter-col-2 {
    padding: 12px;
}
@media (min-width:576px) {
    .orderfilter-col-2 {
        width: 26%;
        max-width: 26%;
        min-width: 26%;
        border-left: 1px solid #ddd;
    }
}

.orderfilter-list {
    padding: 0;
}

.orderfilter-accordion-btn {
    height: 20px;
    display: flex;
    align-items: center;
    float: left;
	    font-weight: 400;
    line-height: 20px;
    color: #191919 !important;
    padding-right: 10px;
    background: #F5F5F5;
    position: relative;
}

.orderfilter-accordion-btn a {
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #191919 !important;
    margin: 0px 0px 60px 0px;
    padding: 0px;
    background: #F5F5F5;
    overflow-x: hidden;
    position: relative;
}

.orderfilter-accordion-btn img {

    width: 10px;
    height: auto;
    object-fit: cover;
    transition: .2s;
}

.toggled .orderfilter-accordion-btn img {
    transform: rotate(180deg);
    transition: .2s;
}

.orderfilter-accordion {
    display: none;
    border-top: 1px solid #ddd;
}

.orderfilter-list-item {
    margin: 0px 0px 0px 0px;
    padding: 12px 10px;
    position: relative;
    display: flex;
    gap:20px;
    border-bottom:1px solid #DDD;
}
@media (min-width:992px) {
    .orderfilter-list-item {
        gap:16px;
        padding:0px;
    }
}

@media (min-width:576px) {
    .orderfilter-list-item:last-child {
        border-bottom: none;
    }
}

.orderfilter-list-item-img {
    width: 90px;
    min-width:90px;
    max-width: 90px;
    position: relative;
}
@media (min-width:992px) {
    .orderfilter-list-item-img {
        margin: 12px 0px 12px 10px;
    }
}
@media (min-width:1200px) {
    .orderfilter-list-item-img {
        width: unset;
        min-width:unset;
        max-width: unset;
        min-height: 150px;
        margin: 16px 0px 16px 16px;
        display: flex;
        flex: 0 0 200px;
    }
}
@media (min-width:1200px) {
    .orderfilter-list-item-img::after {
        content: "";
        display: block;
        padding-bottom: 75%;
        position: relative;
        z-index: -1;
    }
}

.orderfilter-list-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}
@media (min-width:1200px) {
    .orderfilter-list-item-img img {
        -webkit-border-top-left-radius: 4px;
        -webkit-border-top-right-radius: 4px;
        -moz-border-radius-topleft: 4px;
        -moz-border-radius-topright: 4px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        top:10px;
        left:0px;
        right:0px;
        bottom:0px;
        position: absolute;
    }
}
@media (min-width:576px) {
    .orderfilter-list-item-img img {
        top:0px;
        border-radius: 4px;
    }
}

.orderfilter-list-item-details {
    width: 100%;
    display:flex;
    flex-direction:column;

}
@media (min-width:992px) {
    .orderfilter-list-item-details {
        padding: 16px 20px 16px 0px;
    }
}

.orderfilter-list-item-details-header {
    padding: 0px 0px 16px 0px;
}
@media (min-width:992px) {
    .orderfilter-list-item-details-header {
        height: auto;
        display: flex;
        gap:10px;
        justify-content: space-between;
    }
}

@media (min-width:992px) {
    .orderfilter-list-item-details-part {
        width:35%;
        min-width:35%;
        max-width:35%;
    }
}
@media (min-width:1200px) {
    .orderfilter-list-item-details-part {
        width:55%;
        min-width:55%;
        max-width:55%;
    }
}

.orderfilter-list-item-details-part h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin: 0px;
}
@media (min-width:992px) {
    .orderfilter-list-item-details-part h4 {
        font-size: 16px;
        line-height: 19px;
        margin: 0px 0px 8px 0px;
    }
}

.orderfilter-list-item-details-part h4 a {
    color:#191919;
    text-decoration: none;
}

.orderfilter-list-item-details-part h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.orderfilter-list-item-details-part h4 a span {
    font-weight: 400;
}

.orderfilter-list-item-details-part p {
    font-size: 12px;
    margin: 0px 0px 10px 0px;
    line-height: 17px;
}
@media (min-width:992px) {
    .orderfilter-list-item-details-part p {
        font-size: 14px;
        line-height: 19px;
    }
}


.orderfilter-list-btns button, .orderfilter-list-btns a {
    width: 100%;
    margin: 0px 0px 10px 0px;
    padding: 12px;
}







.orders-list-in-item {
    margin: 0px 0px 20px 0px;
    position: relative;
    display: flex;
    gap:20px;
    flex-wrap: nowrap;
}
@media (min-width:768px) {
    .orders-list-in-item {
        gap:10px;
        flex-wrap: wrap;
    }
}
@media (min-width:1200px) {
    .orders-list-in-item {
        gap:16px;
        flex-wrap: nowrap;
    }
}

.orders-list-in-item-img {
    width: 90px;
    min-width:90px;
    max-width: 90px;
    position: relative;
}
@media (min-width:992px) {
    .orders-list-in-item-img {
        width: 90px;
        min-width:90px;
        max-width: 90px;
    }
}

.orders-list-in-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

@media (min-width:768px) {
    .orders-list-in-item-details {
        min-width: 100%;
    }
}
@media (min-width:1200px) {
    .orders-list-in-item-details {
        min-width: unset;
    }
}

.orders-list-in-item-details-part h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin: 0px;
}
@media (min-width:992px) {
    .returns-list-item-details-part h4 {
        font-size: 16px;
        line-height: 19px;
        margin: 0px 0px 8px 0px;
    }
}

.orders-list-in-item-details-part h4 a {
    color:#191919;
    text-decoration: none;
}

.orders-list-in-item-details-part h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.orders-list-in-item-details-part h4 a span {
    font-weight: 400;
}

.orders-list-in-item-details-part p {
    font-size: 12px;
    margin: 0px 0px 10px 0px;
    line-height: 17px;
}
@media (min-width:992px) {
    .orders-list-in-item-details-part p {
        font-size: 14px;
        line-height: 19px;
    }
}

.orders-list-in-item-details-price {
    font-size: 12px;
}

.orders-list-in-item-details-price strong {
    font-size: 14px;
    font-weight: 600;
    display: block;
}
@media (min-width:768px) {
    .orders-list-in-item-details-price strong {
        font-size: 16px;
        margin-bottom: 4px;
    }
}








/* profile */

.profile-wrapper {
    border-radius: 8px;
    background: #fff;
    margin: 0px 0px 30px 0px;
    padding: 16px;
}
@media (min-width:768px) {
    .profile-wrapper {
        padding: 20px;
    }
}

.profile-logo {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 20px 0px;
}

.profile-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.profile-wrapper h3 {
    font-size:14px;
    margin: 0px 0px 10px 0px;
}

.profile-details-accordion-btn, .profile-details-accordion-btn:hover {
    font-weight:600;
    color:#191919;
    text-decoration: none;
    padding: 0px 0px 10px 20px;
    position: relative;
    display: block;
}

.profile-details-accordion-btn img {
    width: 10px;
    height: 5.82px;
    left:0px;
    top:calc(50% - 8px);
    position: absolute;
    transition: .2s;
}

.toggled .profile-details-accordion-btn img {
    transform: rotate(-180deg);
    transition: .2s;
}

.profile-details-accordion {
    display: none;
    margin: 0px 0px 12px 0px;
}

.toggleparts-wrapper {
    margin: 0px 0px 20px 0px;
    padding: 0px;
    display: flex;
}

.toggleparts-wrapper li {
    margin:0px 20px 10px 0px;
    padding: 0px;
    list-style: none;
}

.toggleparts-wrapper li button {
    margin: 0px;
    padding: 0px;
    background: none;
    border: none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggleparts-wrapper li button span {
    width: 26px;
    height: 26px;
    background: transparent;
    border:2px solid #00aca1;
    border-radius: 50%;
    margin:0px 10px 0px 0px;
    display: block;
}

.toggleparts-wrapper li button.togglepartslinks.active span, .toggleparts-wrapper li button.togglepartslinksm.active span {
    background: #00aca1;
}

.toggleparts {
    animation: togglepartsfadeEffect 1s;
}
@keyframes togglepartsfadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}



/* form elements */

label {
    width: 100%;
    margin: 0px 0px 20px 0px;
    display: block;
    position: relative;
}

.field-header {
    font-size: 11px;
    font-weight: 400;
    color:#191919;
    line-height: 14px;
    background:#fff;
    padding: 0px 5px;
    top:-7px;
    left:10px;
    position: absolute;
}


input {
    width: 100%;
    height:46px;
    font-family: 'Inter',sans-serif;
    color:#191919;
    line-height: 46px;
    background: transparent;
    border:1px solid #BDBBBB;
    border-radius: 4px;
    padding: 0px 16px;
    margin: 0px;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    height:92px;
    font-family: 'Inter',sans-serif;
    color:#191919;
    line-height: 22px;
    background: transparent;
    border:1px solid #BDBBBB;
    border-radius: 4px;
    padding:12px 16px;
    margin: 0px;
    box-sizing: border-box;
}



.checkbox-style {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 0px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.checkbox-style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border:1px solid #BDBBBB;
    border-radius:3px;
}

.checkbox-style:hover input ~ .checkmark {
    border:1px solid #BDBBBB;
}

.checkbox-style input:checked ~ .checkmark:after {
    content: "";
    width:18px;
    height:18px;
    display: block;
    background:url('../images/ico-checked.svg') no-repeat #00ACA1;
    background-size:11.6px 7.6px;
    background-position:3px 5px;
    border:1px solid #00ACA1;
    border-radius:3px;
    left:-1px;
    top:-1px;
    position: absolute;
}
  


input[type="submit"] {
    width: 100%;
    height: unset;
    line-height: unset;
    font-size: 14px;
    font-weight: 600;
    color:#FFF;
    padding: 13px 30px;
    /* margin:0px; */
    text-align: center;
    background: #00ACA1;
    border-radius: 50rem;
    border: none;
    transition: .2s;
    cursor: pointer;
}
@media (min-width:992px) {
    input[type="submit"] {
        padding: 15px 30px;
    }
}


input[type="submit"]:hover {
    background: #05978D;
    transition: .2s;
}

select, .form-has-icon button {
    font-family: 'Inter',sans-serif;
    width: 100%;
    height:46px;
    font-size: 14px;
    font-weight: 400;
    color:#191919;
    line-height: 46px;
    background: url('../images/chev-down.svg') no-repeat transparent;
    background-size:11.6px 6.23px;
    background-position: right 16px top 20px;
    border:1px solid #BDBBBB;
    border-radius: 4px;
    padding: 0px 16px;
    margin: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
}

.form-has-icon, .form-has-icon button {
    position: relative;
}

.form-has-icon input, .form-has-icon button {
    font-size: 16px;
	font-weight: 700;
}

@media (min-width:576px) {
    .form-has-icon input, .form-has-icon button {
        font-size: 22px;
        font-weight: 700;
    }
}

.form-has-icon select, .form-has-icon input, .form-has-icon button, .form-has-icon button:hover {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding-left: 63px;
}

.form-has-icon button, .form-has-icon button:hover {
    background: url('../images/chev-down.svg') no-repeat transparent;
    background-size:11.6px 6.23px;
    background-position: right 16px top 20px;
}


.form-has-icon .btn-group.open .dropdown-toggle, .form-has-icon .btn-group.open .dropdown-toggle:active, .form-has-icon .btn-group.open .dropdown-toggle:focus, .form-has-icon .bootstrap-select .btn:focus {
    box-shadow: none;
    background: url('../images/chev-down.svg') no-repeat transparent;
    background-size:11.6px 6.23px;
    background-position: right 16px top 20px;
    outline: none !important;
}

.form-has-icon .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.form-has-icon .bootstrap-select.btn-group .btn .caret {
    display: none;
}

.form-has-icon .bs-searchbox input {
    padding: 4px 8px;
    background: none;
}

.form-icon {
    width:30px;
    height:30px;
    left:14px;
    top:calc(50% - 15px);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon img {
    max-width:100%;
    max-height:100%;
    object-fit: contain;
    position: absolute;
}

.form-icon-plate {
    width:60px;
    height: 100%;
    background: #003399;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left:0px;
    top:0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon-plate img {
    max-width:100%;
    max-height:100%;
    object-fit: contain;
    position: absolute;
}

.form-has-icon-plate input {
    height: 60px;
    padding-left: 80px;
	font-size: 30px;
	font-weight: bold;
}
.form-has-icon-plate-2 input {
    height: 60px;
    padding-left: 80px;
	font-size: 16px;
	font-weight: bold;
}

.form-has-icon-plate input[type="submit"] {
    width: 46px;
    height: 46px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 50%;
    border: none;
    margin: 7px 0px 0px -57px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}
.form-has-icon-plate-2 input[type="submit"] {
    width: 46px;
    height: 46px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 50%;
    border: none;
    margin: 7px 0px 0px -57px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}

.form-has-icon-plate input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;

    transition: .2s;
}
.form-has-icon-plate-2 input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;

    transition: .2s;
}





/* breadcrumbs */

.breadcrumbs-wrapper {
    padding: 12px 0px 9px 0px;
}
@media (min-width:768px) {
    .breadcrumbs-wrapper {
        padding: 18px 0px 30px 0px;
    }
}

.breadcrumbs {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    font-size: 11px;
    font-weight: 400;
    color:#191919;
    margin: 0px;
    padding: 0px 23px 0px 0px;
    list-style: none;
    position: relative;
}
@media (min-width:992px) {
    .breadcrumbs li {
        font-size: 12px;
    }
}

.breadcrumbs li::before {
    content: '';
    width: 4.75px;
    height: 8.3px;
    background:url('../images/chev-right.svg') no-repeat;
    background-size: 4.75px 8.3px;
    right:10px;
    top:5px;
    position: absolute;
}

.breadcrumbs li:last-child::before {
    display: none;
}

.breadcrumbs li:last-child {
    padding: 0px;
}

.breadcrumbs li a {
    font-size: 11px;
    color:#191919;
}
@media (min-width:992px) {
    .breadcrumbs li a {
        font-size: 12px;
    }
}

.breadcrumbs li a:hover {
    font-size: 11px;
    color:#00ACA1;
    text-decoration:underline;
}
@media (min-width:992px) {
    .breadcrumbs li a:hover {
        font-size: 12px;
    }
}

.breadcrumbs li.breadcrumbs-toggler a {
    width: 24px;
    height: 24px;
    background: #E3E3E3;
    border-radius: 6px;
    margin-top:-3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width:992px) {
    .breadcrumbs li.breadcrumbs-toggler {
        display: none;
    }
}

.breadcrumbs-show-items .breadcrumbs-toggler {
    display: none;
}

.breadcrumbs-hidden-item {
    display: none;   
}
@media (min-width:992px) {
    .breadcrumbs-hidden-item {
        display: block;   
    }
}

.breadcrumbs-show-items .breadcrumbs-hidden-item {
    display: block;   
}



@media (min-width:768px) {
    .row-39, .row-66 {
        display: flex;
        gap:30px;
    }
}

@media (min-width:768px) {
    .col-3 {
        width: 24%;
    }
}

@media (min-width:768px) {
    .col-6 {
        width:calc(50% - 30px);
        flex: 1;
    }
}

@media (min-width:768px) {
    .col-9 {
        width: 76%;
    }
}




@media (min-width:992px) {
    .row-992-39, .row-992-66 {
        display: flex;
        gap:30px;
    }
}

@media (min-width:992px) {
    .col-992-3 {
        width: 24%;
    }
}

@media (min-width:992px) {
    .col-992-6 {
        width:calc(50% - 30px);
        flex: 1;
    }
}

@media (min-width:992px) {
    .col-992-9 {
        width: 76%;
    }
}



.results-filters {
    display: none;
}
@media (min-width:768px) {
    .results-filters {
        display: block;
    }
}

.quick-search {
    background:url('../images/ico-zoom-dark.svg') no-repeat #fff;
    background-size:14.7px 14.7px;
    background-position:19px 15px;
    padding-left: 44px;
    margin: 0px 0px 22px 0px;
}

.col-filters {
    margin:0px;
    padding: 0px;
}

.col-filters > li > ul {
    margin: 0px 0px 0px 20px;
    padding: 0px;
}

.col-filters > li > ul li:last-child {
    padding-bottom: 10px;
}

.col-filters li {
    font-size: 13px;
    font-weight: 600;
    color:#191919;
    margin: 0px;
    padding: 0px;
    list-style: none;
    position: relative;
}
.main-submenu-toggle {
    width: 100%;
    height:100%;

    opacity: .4;

    top:0;
    position: absolute;
}
  



.col-filters li a {
    font-size: 13px;
    font-weight: 600;
    color:#191919;
    text-decoration: none;
    cursor: pointer;
    display: block;
    transition: 0.4s;
    position: relative;
	text-transform: uppercase;
}

.col-filters li a:hover {
    font-size: 13px;
    font-weight: 600;
    color:#191919;
    text-decoration: none;
}

.col-filters li a span {
    font-weight: 400;
    color:#9B9B9B;
}

.col-filters li a img {
    max-width: 25px;
    max-height: 25px;
    object-fit: contain;
    top:calc(50% - 12px);
    left:0px;
    position: absolute;
}

.col-filters li li a {
    padding:7px 0px;
}

.accordion-filters-has-icon {
    padding: 17px 20px 17px 35px;
}

.accordion-filters-collapse::after {
    content:'';
    width: 8px;
    height: 8px;
    background: url('../images/ico-plus-black.svg') no-repeat;
    background-size: 8px 8px;
    right:0px;
    top:calc(50% - 4px);
    position: absolute;
}

.toggled > .accordion-filters-collapse::after {
    content:'';
    width: 8px;
    height: 1.4px;
    background: url('../images/ico-minus.svg') no-repeat;
    background-size: 8px 1.4px;
    top:calc(50% - .7px);
}


.col-filters-border {
    border-bottom: 1px solid #DDD;
}

li.accordion-filters-title {
    padding: 10px 0px 0px 0px;
}

.accordion-filters-inputs {
    margin:0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

li.accordion-filters-inp {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 0px;
    position: relative;
}

/* li.accordion-filters-inp:last-child {
    padding: 7px 0px 17px 30px;
}
 */
 
li.accordion-filters-inp.accordion-filters-inp-disabled {
    color:#9B9B9B;
}

li.accordion-filters-inp span {
    color:#9B9B9B;
}

li.accordion-filters-inp input {
    left:0px;
    position: absolute;
}

li.accordion-filters-is {
    padding-top: 11px;
}

.accordion-filters-is .form-cols {
    gap:11px;
}

.accordion-filters-is label {
    margin:0px 0px 11px 0px;
}

.col-filters-btn {
    border-top: 1px solid #DDD;
    margin: 20px 0px 0px 0px;
    padding: 20px 0px 0px 0px;
}

.col-filters .panel {
    display: none;
}

.results-filters-bar {
    width: 100%;
    height: 46px;
    background: #fff;
    margin:20px 0px 22px 0px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
    box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
    display: flex;
    align-items: center;
    flex: 1 1 0px;
}
@media (min-width:768px) {
    .results-filters-bar {
        display: none;
    }
}

.results-filters-bar > * {
    flex-basis: 100%;
}

.results-filters-bar a, .results-filters-bar a:hover {
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: 600;
    color:#191919;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.results-filters-bar a svg {
    margin: 0px 10px 0px 0px;
}


.results-filters-bar a::after {
    content: '';
    width: 1px;
    height: 30px;
    background:#DDD;
    right:0px;
    top:calc(50% - 15px);
    position: absolute;
}

.results-filters-bar label {
    margin: 0px;
}

.results-filters-bar select {
    font-size: 12px;
    font-weight: 600;
    color:#191919;
    text-align: center;
    border: none;
    border-radius: 0px;
    background-position: right calc(50% - 60px) top 20px;
}





.btn-choose-car {
    width: 100%;
    color:#fff;
    text-align: left;
    background: #00ACA1;
    border-radius: 4px;
    border:none;
    padding: 15px 63px;
    margin: 0px 0px 30px 0px;
    position:relative;
}
@media (min-width:768px) {
    .btn-choose-car {
        display: none;
    }
}

.btn-choose-car::after {
    content: '';
    width:6.23px;
    height:11.06px;
    background:url('../images/chev-right-white.svg') no-repeat;
    background-size:6.23px 11.06px;
    right:19px;
    top:17px;
    position: absolute;
}

.btn-choose-car img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    top:11px;
    left: 13px;
    position: absolute;
}



.choose-car {
    display: none;
}
@media (min-width:768px) {
    .choose-car {
        background:#fff;
        padding: 20px 20px 24px 20px;
        margin: 0px 0px 30px 0px;
        border-radius:8px;
        display: block;
    }
}

.choose-car h4 {
    margin: 0px 0px 27px 0px;
}

.choose-car-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}



.filter-tags {
    margin: 0px 0px 20px 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    gap:10px;
}
@media (min-width:768px) {
    .filter-tags {
        margin: 0px 0px 30px 0px;
    }
}

.filter-tags li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.filter-tag, .filter-tag:hover {
    font-size: 12px;
    font-weight: 400;
    color:#191919;
    line-height: 15px;
    text-decoration: none;
    margin: 0px;
    padding:7px 14px 7px 10px;
    background: #F0F0F0;
    border: 1px solid #9B9B9B;
    border-radius: 50rem;
    display: flex;
    align-items: center;
}

.filter-tag::after {
    content: '';
    width:8px;
    height:8px;
    background: url('../images/ico-close-dark.svg') no-repeat;
    background-size:8px 8px;
    margin:0px 0px 0px 5px;
    transition: .2s;
}

.filter-tag:hover::after {
    content: '';
    width:8px;
    height:8px;
    background: url('../images/ico-close-light.svg') no-repeat;
    background-size:8px 8px;
    margin:0px 0px 0px 5px;
    transition: .2s;
}

.parts-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parts-listing-header h4 {
    font-size: 14px;
}
@media (min-width:768px) {
    .parts-listing-header h4 {
        font-size: 16px;
    }
}

.parts-listing-sorting {
    display: none;
}
@media (min-width:768px) {
    .parts-listing-sorting {
        width: 186px;
        display: block;
    }
}

.parts-listing-sorting .field-header {
    background: #F5F5F5;
}

.parts-list-item {
    background: #fff;
    border-radius: 8px;
    margin: 0px 0px 20px 0px;
    position: relative;
}
@media (min-width:576px) {
    .parts-list-item {
        display: flex;
        gap:16px;
        padding: 0px 0px 60px 0px;
    }
}
@media (min-width:992px) {
    .parts-list-item {
        display: flex;
        gap:16px;
        padding:0px;
    }
}

.parts-list-item-img {
    min-height: 206px;
    margin:0px 10px 10px 10px;
    position: relative;
    display: flex;
}
@media (min-width:576px) {
    .parts-list-item-img {
        min-height: 150px;
        margin: 16px 0px 16px 16px;
        display: flex;
        flex: 0 0 200px;
    }
}

.parts-list-item-img::after {
    content: "";
    display: block;
    padding-bottom: 75%;
    position: relative;
    z-index: -1;
}

.parts-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    top:10px;
    left:0px;
    right:0px;
    bottom:0px;
    position: absolute;
}
@media (min-width:576px) {
    .parts-list-item-img img {
        top:0px;
        border-radius: 4px;
    }
}

.parts-list-item-details {
    padding: 16px 20px;
}
.parts-list-item-details p a {
    color: #191919;
    text-decoration: none;
}
.parts-list-item-details p a:hover {
    color:#9B9B9B;
    text-decoration:underline;
}
@media (min-width:576px) {
    .parts-list-item-details {
        padding: 16px 20px 16px 0px;
    }
}
@media (min-width:992px) {
    .parts-list-item-details {
        width: 100%;
        padding: 16px 0px;
    }
}

.parts-list-item-details h4 {
    margin: 0px 0px 8px 0px;
}

.parts-list-item-details h4 a {
    color:#191919;
    text-decoration: none;
}

.parts-list-item-details h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.parts-list-item-details h4 a span {
    color:#D82527;
}

.parts-list-item-details p {
    margin: 0px 0px 12px 0px;
}

.parts-list-item-details p:last-child {
    margin: 0px;
}

.rating {
   margin: 0px 0px 0px 3px;
   white-space: nowrap;
}

.location {
    color:#9B9B9B;
}

.rating img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    margin:0px 2px;
}

.parts-list-item-details-r {
    width: 100%;
    border-top: 1px solid #DDD;
    position: relative;
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
}
@media (min-width:576px) {
    .parts-list-item-details-r {
        min-width: 100%;
        width: 100%;
        bottom:0px;
        left:0px;
        position: absolute;
    }
}
@media (min-width:992px) {
    .parts-list-item-details-r {
        width: 185px;
        min-width: 185px;
        border-left: 1px solid #DDD;
        border-top:none;
        position: relative;
        flex-flow: column nowrap;
    }
}

.parts-list-item-details-r > div {
    display: flex;


}
@media (min-width:992px) {
    .parts-list-item-details-r > div {
        display:block;
    }
}

.parts-list-item-details-r-price {
    height: 100%;
    font-size: 12px;
    font-weight: 400;
    color:#9B9B9B;
    padding: 9px 20px;
}
@media (min-width:992px) {
    .parts-list-item-details-r-price {
        padding: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
		border-bottom: 1px solid #DDD;
    }
}

.parts-list-item-details-r-price strong {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color:#191919;
    margin:0px;
    display: block;
}
@media (min-width:992px) {
    .parts-list-item-details-r-price strong {
        font-size: 20px;
        margin: 0px 0px 3px 0px;
    }
}


.parts-list-item-details-r-save {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color:#00ACA1;
    text-decoration: none;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    border-bottom-right-radius: 8px;
    box-sizing: border-box;
    position: relative;
}
@media (min-width:992px) {
    .parts-list-item-details-r-save {
        border-top: 1px solid #DDD;
        padding: 12px 20px;
    }
}

.parts-list-item-details-r-save img {
    width: 21.27px; 
    height:18.14px;
}

.parts-list-item-details-r-save::before {
    content:'';
    width: 1px;
    height:36px;
    background-color: #DDD;
    left:0px;
    top:calc(50% - 18px);
    position: absolute;
}
@media (min-width:992px) {
    .parts-list-item-details-r-save::before {
        display: none;
    }
}

.parts-list-item-details-r-save:hover {
    color:#06978D;
    text-decoration: none;
}

.parts-list-item-details-r-basket {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color:#fff;
    text-decoration: none;
    background: #00ACA1;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    border-bottom-right-radius: 8px;
    box-sizing: border-box;
}

.parts-list-item-details-r-basket:hover {
    font-size: 14px;
    font-weight: 600;
    color:#fff;
    text-decoration: none;
    background: #05978D;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    border-bottom-right-radius: 8px;
}

.parts-list-item-details-r-basket img {
    width: 22.75px; 
    height:21.31px;
}

.parts-list-item-details-r-save span, .parts-list-item-details-r-basket span {
    display: none;
}
@media (min-width:992px) {
    .parts-list-item-details-r-save span, .parts-list-item-details-r-basket span {
        display: unset;
    }
}


.parts-list-item-details-r-button {
    display: flex;
    align-items: flex-end;
    padding: 0px 20px 20px 20px;
}
@media (min-width:576px) {
    .parts-list-item-details-r-button {
        width: 100%;
        bottom: 0px;
        position: absolute;
        box-sizing: border-box;
        padding: 16px;
    }
}
@media (min-width:992px) {
    .parts-list-item-details-r-button {
        width: auto;
        display: flex;
        align-items: flex-end;
        position: relative;
    }
}

.parts-list-item-details-r-button button {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    white-space: nowrap;
    padding:11px 20px;
    box-sizing: border-box;
}
@media (min-width:992px) {
    .parts-list-item-details-r-button button {
        width: auto;
    }
}

.parts-list-item-details-r-button button img {
    width: 22.31px;
    height:23px;
    margin: 0px 6px 0px 0px;
}

.parts-list-item-details-r-button button span {
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    border-left:1px solid #067A72;
    padding-left:10px;
    margin-left:10px;
}







/* pagination */

.pagination {
    margin:30px 0px 0px 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content:center;
    gap:10px;
}
@media (min-width:768px) {
    .pagination {
        margin:80px 0px 0px 0px;
        justify-content: flex-end;
    }
}

.pagination li {
    font-size: 14px;
    font-weight: 400;
    color:#191919;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.pagination li a {
    min-width:44px;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    color:#191919;
    text-decoration:none;
    border: 1px solid #BDBBBB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li a:hover, .pagination li a.active {
    color:#191919;
    text-decoration:none;
    border:1px solid #00ACA1;
}

.pagination li a img {
    width:6.23px;
    height:11.06px;
    object-fit: contain;
}

.pagination li.pagination-item-disabled a {
    color:#868686;
    border: 1px solid #BDBBBB;
}

.pagination li.pagination-item-disabled a img {
    opacity: .5;
}

.pagination li.pagination-item-d-only {
    display: none;
}
@media (min-width:768px) {
    .pagination li.pagination-item-d-only {
        display: block;
    }
}



/* vehicle/part details */

.masonry {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width:768px) {
    .masonry {
        column-count: 2;
        column-gap: 30px;
        display: block;
    }
}
 
.masonry-item {
    display: block;
    width: 100%;
}
@media (min-width:768px) {
    .masonry-item {
        display: inline-block;
        margin: 0 0 30px;
        width: 100%;
    }
}

.masonry-item:nth-child(1) {
    order:1;
}

.masonry-item:nth-child(2) {
    order:3;
}

.masonry-item:nth-child(3) {
    order:2;
}

.masonry-item:nth-child(4) {
    order:4;
}

.vehicle-part-details.tabcontent-partdetails-wrapper {
    padding:20px 0px;
    margin: 0px;
}

.tabcontent-partdetails {
    display: block;
}

.tabs-partdetails {
    padding: 0px 8px;
    margin-bottom: 20px;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #EBECED 100%) 0% 0% no-repeat padding-box;
    border-bottom: 1px solid #2E3A4C;
    display: flex;
    justify-content: center;
}
@media (min-width:992px) {
    .tabs-partdetails {
        padding: 0px 30px;
        margin-bottom: 30px;
    }
}

.tabs-partdetails button {
    width: 50%;
    font-size: 14px;
    font-weight: 600;
    color:#8A8A8A;
    text-align: center;
    margin: 0px 0px -1px 0px;
    padding:14px 20px;
    background: none;
    border:1px solid transparent;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}
@media (min-width:992px) {
    .tabs-partdetails button {
        font-size: 16px;
        padding:15px 20px;
    }
}

.tabs-partdetails button.active {
    color:#191919;
    border: 1px solid #2E3A4C;
    border-bottom: 1px solid #fff;
    background: #fff;
}

.tabcontent-partdetails {
    padding:0px 20px 20px 20px;
    display: none;
    animation: fadeEffect 1s;
}
@media (min-width:576px) {
    .tabcontent-partdetails {
        padding:0px 30px 30px 30px;
    }
}



.rating-supplier-head {
    display: flex;
    gap:20px;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 0px 10px 0px;
}

.rating-supplier-head-avatar {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
}

.rating-supplier-head-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rating-supplier-head h3 {
    font-size: 16px;
    margin: 0px;
}
@media (min-width:768px) {
    .rating-supplier-head h3 {
        font-size: 18px;
    }
}

.rating-supplier-body {
    display: flex;
    gap:6px;
    align-items: center;
    justify-content: flex-start;
}

.rating-supplier-body-rating {
    font-size: 16px;
}

.rating-supplier-body .rating-supplier-stars.rating img {
    width: 14px;
    height: 14px;
    margin: 0px 2px;
}

.rating-supplier-body-rating-revs {
    font-size: 12px;
    color:#9B9B9B;
}

.rating-supplier-review {
    margin: 20px 0px 0px 0px;
}

.rating-supplier-review-head {
    display: flex;
    gap:6px;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 0px 8px 0px;
}

.rating-supplier-review-head img {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
}

.rating-supplier-review-head-date {
    font-size: 12px;
    color:#9B9B9B;
}

.container-vehicle, .container-part {
    margin:0px;
    padding: 0px;
}
@media (min-width:768px) {
    .container-vehicle, .container-part {
        padding: 0px 20px;
    }
}

@media (min-width:768px) {
    .container-vehicle {
        margin:0px auto 48px auto;
    }
}

.container-part {
    margin:0px 0px 10px 0px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .07);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .07);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .07);
}
@media (min-width:768px) {
    .container-part {
        margin:0px auto 30px auto;
        -webkit-box-shadow:none;
        -moz-box-shadow:none;
        box-shadow:none;
    }
}

.vehicle-part-details {
    height: 100%;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background:#fff;
    padding: 20px;
    box-sizing: border-box;
    margin-top: -76px;
    position: relative;
    z-index: 990;
}
@media (min-width:768px) {
    .vehicle-part-details {
        border-radius:8px;
        margin-top: 0px;
    }
}

.part-details {
    height: unset;
    margin-bottom: 10px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
    box-shadow: 0px 3px 6px 0px rgba(66, 68, 90, .16);
}
@media (min-width:768px) {
    .part-details {
        height: unset;
        margin-bottom: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

.part-details-donor {
    margin-top:0px;
    padding-bottom: 27px;
    border-radius: 0px;
}
@media (min-width:768px) {
    .part-details-donor {
        padding-bottom: 32px;
        border-radius: 8px;
    }
}

.part-details-donor h4 {
    font-size: 14px;
    margin:0px;
}
@media (min-width:768px) {
    .part-details-donor h4 {
        font-size: 16px;
    }
}

.part-details-donor .vehicle-part-details-wrapper {
    border-bottom: none;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}
@media (min-width:768px) {
    .part-details-donor .vehicle-part-details-wrapper {
        margin: 0px 0px 25px 0px;
    }
}

.vehicle-part-details-wrapper {
    padding: 0px 0px 29px 0px;
    margin: 0px 0px 17px 0px;
    border-bottom: 1px solid #DDD;
}
@media (min-width:992px) {
    .vehicle-part-details-wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap:4px;
        padding: 0px 0px 16px 0px;
    }
}

.vehicle-part-details-inner {
    max-width: 94%;
    width: 94%;
}

@media (min-width:992px) {
    .part-details-inner {
        max-width: 70%;
    }
}

.vehicle-part-details-inner img {
    width: auto;
    max-height: 18px;
    margin: 4px 5px 0px 0px;
}

.vehicle-part-details-inner dl {
    display: flex;
    margin: 0px;
}

.vehicle-part-details-inner dl dt {
    width: 38%;
    margin: 0px;
}

.vehicle-part-details-inner dl dd {
    width:62%;
    margin: 0px 0px 3px 4px;
}

.btn-primary-vehicle-details {
    padding: 13px 30px;
    border-radius: 8px;
    position: relative;
}

.btn-primary-vehicle-details::after {
    content: '';
    width:6.23px;
    height:11.06px;
    background:url('../images/chev-right-white.svg') no-repeat;
    background-size:6.23px 11.06px;
    top:calc(50% - 3.1px);
    right:20px;
    position: absolute;
    transform: rotate(90deg);
    transition: .2s;
}

.toggled .btn-primary-vehicle-details::after {
    content: '';
    transform: rotate(-90deg);
    transition: .2s;
}

.vehicle-part-details-form {
    font-size: 13px;
    display: none;
    padding: 20px 0px;
}
@media (min-width:992px) {
    .vehicle-part-details-form {
        padding: 20px 0px 0px 0px;
    }
}

.vehicle-part-details-form strong {
    padding: 0px 0px 10px 0px;
    display: block;
}

.vehicle-part-details .vehicle-part-details-form .form-cols.form-cols-imgs {
    align-items: flex-start;
    display: block;
}
@media (min-width: 576px) {
    .vehicle-part-details  .vehicle-part-details-form .form-cols.form-cols-imgs {
        display: flex;
    }
}
@media (min-width: 768px) {
    .vehicle-part-details  .vehicle-part-details-form .form-cols.form-cols-imgs {
        display: block;
    }
}
@media (min-width:1200px) {
    .vehicle-part-details  .vehicle-part-details-form .form-cols.form-cols-imgs {
        display: flex;
    }
}

@media (min-width: 576px) {
    .vehicle-part-details .vehicle-part-details-form .form-cols.form-cols-imgs > * {
        flex: 1 1;
    }
}

.vehicle-part-details-form .form-icon-plate {
    width:46px;
    height: 100%;
    background: #003399;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left:0px;
    top:0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-part-details-form .form-icon-plate img {
    max-width:80%;
    max-height:80%;
    object-fit: contain;
    position: absolute;
}

.vehicle-part-details-form .form-has-icon-plate {
    width: 100%;
}
.vehicle-part-details-form .form-has-icon-plate-2 {
    width: 100%;
}
@media (min-width:768px) {
    .vehicle-part-details-form .form-has-icon-plate {
        width: auto;
    }
    .vehicle-part-details-form .form-has-icon-plate-2 {
        width: auto;
    }
}

.vehicle-part-details-form .form-has-icon-plate input {
    min-width: 259px;
    height: 46px;
    padding-left:56px;
    padding-right:56px;
}
.vehicle-part-details-form .form-has-icon-plate-2 input {
    min-width: 259px;
    height: 46px;
    padding-left:56px;
    padding-right:56px;
}

.vehicle-part-details-form .form-has-icon-plate input[type="submit"] {
    width: 46px;
    min-width:unset;
    height: 46px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 0;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    margin: 0px 0px 0px -46px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}
.vehicle-part-details-form .form-has-icon-plate-2 input[type="submit"] {
    width: 46px;
    min-width:unset;
    height: 46px;
    background: url('../images/ico-zoom.svg') center no-repeat #00ACA1;
    background-size:16.84px 16.84px;
    border-radius: 0;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    margin: 0px 0px 0px -46px;
    padding: 0px;
    position: absolute;
    cursor: pointer;
    transition: .2s;
}

.vehicle-part-details-form .form-has-icon-plate input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;
    transition: .2s;
}
.vehicle-part-details-form .form-has-icon-plate-2 input[type="submit"]:hover {
    background: url('../images/ico-zoom.svg') center no-repeat #05978D;
    background-size:16.84px 16.84px;
    transition: .2s;
}

.vehicle-part-details-form .form-has-icon-plate {
    margin-bottom: 30px;
}
.vehicle-part-details-form .form-has-icon-plate-2 {
    margin-bottom: 30px;
}

.vehicle-part-details-supplier {
    margin: 0px 0px 18px 0px;
    display: flex;
}

.vehicle-part-details-supplier > span {
    width:38%;
    margin-right: 4px;
    display: block;
}
@media (min-width:992px) {
    .vehicle-part-details-supplier > span {
        width: 14%;
        margin-right: 30px;
    }
}

.vehicle-part-details-supplier.part-details-supplier {
    border-bottom: 1px solid #ddd;
    margin-bottom: 17px;
    padding-bottom: 16px;
}

@media (min-width:992px) {
    .vehicle-part-details-supplier.part-details-supplier > span {
        width: 22%;
    }
}

.vehicle-part-details-price {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 17px;
    padding-bottom: 16px;
}

.vehicle-part-details-price-label {
    width:38%;
    margin-right: 4px;
}
@media (min-width:992px) {
    .vehicle-part-details-price-label {
        width:22%;
        margin-right: 30px;
    }
}

.vehicle-part-details-price-price {
    font-size: 20px;
}

.vehicle-part-details-price-price span {
    font-size: 12px;
    font-weight: 400;
    color:#9B9B9B;
    margin-left: 15px;
}


@media (min-width:768px) {
    .vehicle-part-details-basket {
        display: flex;
        gap:30px;
        margin-left: calc(22% + 30px);
    }
}

.vehicle-part-details-basket.part-details-basket {
    margin-left: 0;
    gap:20px;
    display: block;
}
@media (min-width:1200px) {
    .vehicle-part-details-basket.part-details-basket {
        display:flex;
    }
}

.vehicle-part-details-basket.part-details-basket .btn-primary-out {
    margin-bottom: 10px;
}
@media (min-width:1200px) {
    .vehicle-part-details-basket.part-details-basket .btn-primary-out {
        margin-bottom: 0px;
    }
}

@media (min-width:768px) {
    .vehicle-part-details-basket .btn-primary {
        max-width: 230px;
    }
}
@media (min-width:768px) {
    .vehicle-part-details-basket.part-details-basket .btn-primary {
        max-width: unset;
    }
}

.btn-wish {
    text-decoration: none;
    padding:0px 20px 0px 20px;
    margin-top: 20px;
}
@media (min-width:768px) {
    .btn-wish {
        text-decoration: none;
        padding:10px 20px;
        margin-top: 0;
    }
}

.btn-wish:hover {
    text-decoration: none;
    color:#06978D;
}

.vehicle-part-details-inner-more {
    color:#44B2AD;
    text-decoration: underline;
}

.vehicle-part-details-inner-more:hover {
    color:#05978D;
    text-decoration: underline;
}

.vehicle-part-details .form-cols {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.vehicle-part-details .form-cols > * {
    width: auto;
    flex:none;
}

.vehicle-part-details .form-cols .btn-primary {
    width: auto;
    padding: 13px 36px;
}


.results-filters-bar.vehicle-part-results-filters-bar {
    margin: 0px 0px 32px 0px;
}



/* messages */

.messages {
    padding-top:68px;
    padding-bottom:68px;
}

.messages-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px;
    position: relative;
}
@media (min-width:768px) {
    .messages-head {
        border-bottom: 1px solid #DDD;
        padding: 0px 0px 20px 0px;
    }
}

.messages-head-intro {
    width: 100%;
}
@media (min-width:768px) {
    .messages-head-intro {
        width: auto;
        display: flex;
        align-items: center;
        justify-content:flex-start;
        flex-wrap: wrap;
    }
}

@media (min-width:768px) {
    .messages-head-intro h2 {
        margin:10px 40px 10px 0px;
    }
}

.messages-head-intro form {
    position: relative;
}

.messages-search {
    width: 100%;
    background: #fff;
    border-radius: 50rem;
    padding-right: 50px;
}
@media (min-width:768px) {
    .messages-search {
        width: 260px;
    }
}

input[type="submit"].messages-search-submit {
    width: 30px;
    height: 30px;
    background: url('../images/ico-zoom-dark.svg') no-repeat transparent;
    background-size: 14.7px 14.7px;
    background-position: 50% 50%;
    border-radius: 0px;
    padding: 0px;
    right:8px;
    top:8px;
    position: absolute;
    cursor: pointer;
}

.messages-head-support {
    width: auto;
    top:-50px;
    right:0px;
    position: absolute;
}
@media (min-width:768px) {
    .messages-head-support {
        top:unset;
        right:unset;
        position: unset;
    }
}

.messages .col-3 {
    padding:20px 0px 0px 0px;
    border-bottom: 1px solid #DDD;
}
@media (min-width:768px) {
    .messages .col-3 {
        padding:20px 20px 0px 0px;
        border-right: 1px solid #DDD;
        border-bottom:none;
    }
}

@media (min-width:768px) {
    .messages .col-9 {
        padding:20px 0px 0px 0px;
    }
}

.messages-menu {
    margin: 0px;
    padding: 0px 0px 10px 0px;
}
@media (min-width:768px) {
    .messages-menu {
        padding: 0px;
    }
}

.messages-menu li {
    margin: 0px 0px 4px 0px;
    padding: 0px;
    list-style: none;
}

.messages-menu .btn-primary {
    color:#191919;
    font-weight: 400;
    text-align: left;
    background: transparent;
    padding: 10px 20px;
}
@media (min-width: 992px) {
    .messages-menu .btn-primary {
        padding: 15px 30px;
    }
}

.messages-menu .btn-primary:hover {
    background: #ddd;
}

.messages-menu .active .btn-primary {
    font-weight: 600;
    background: #ddd;
}

.messages-filters {
    display: none;
}
@media (min-width:768px) {
    .messages-filters {
        margin: 0px;
        padding: 0px;
        display: flex;
        gap:20px;
        padding: 0px 0px 20px 0px;
        position: relative;
    }
}
@media (min-width:1200px) {
    .messages-filters {
        gap:30px;
    }
}

.messages-filters a {
    font-size: 12px;
}
@media (min-width:992px) {
    .messages-filters a {
        font-size: 14px;
    }
}

.messages-filters::after {
    content: '';
    width: calc(100% + 30px);
    height: 1px;
    background: #ddd;
    left:-30px;
    bottom:0px;
    position: absolute;
}

.messages-filters li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.messages-filters li a {
    color:#191919;
}

.messages-list {
    margin: 0px;
    padding: 0px;
}

.messages-list .messages-list-item {
    margin: 0px;
    padding:20px 0px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap:10px;
    position: relative;
    border-bottom: 1px solid #ddd;
}
@media (min-width:768px) {
    .messages-list .messages-list-item {
        gap:20px;
        border-bottom: none;
    }
}

.messages-list .messages-list-item.unread h4, .messages-list .messages-list-item.unread p, .messages-list .messages-list-item.unread .messages-list-item-datetime {
    font-weight: 600;
}

@media (min-width:768px) {
    .messages-list .messages-list-item::after {
        content: '';
        width: calc(100% + 30px);
        height: 1px;
        background: #ddd;
        left:-30px;
        bottom:0px;
        position: absolute;
    }
}

@media (min-width:768px) {
    .messages-list .messages-list-item:hover::before {
        content: '';
        width: calc(100% + 30px);
        height: 100%;
        background: #ebeaea;
        left:-30px;
        top:0px;
        position: absolute;
        z-index: -1;
    }
}

.messages-list-item-checkbox {
    display: none;
}
@media (min-width:768px) {
    .messages-list-item-checkbox {
        width: 20px;
        padding-left: 20px;
        display: block;
    }
}

.messages-list-item-avatar {
    width: 40px;
    height: 40px;
}

.messages-list-item-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.messages-list-item-details {
    width: 100%;
}

.messages-list-item-details a {
    color: #191919;
}

.messages-list-item-details h4 {
    font-size: 14px;
    font-weight: 400;
    margin: 0px;
}

.messages-list-item-details h4 img {
    width: 15.62px;
    height:14.56px;
    object-fit: contain;
    margin-right: 6px;
}

.messages-list-item-details p {
    margin: 0px;
}

.messages-list-item-qty {
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
}
@media (min-width:768px) {
    .messages-list-item-qty {
        width: 100px;
    }
}

.messages-list-item-qty span {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
    padding: 2px;
    background: #ddd;
    border-radius: 50rem;
    text-align: center;
    display: block;
}
@media (min-width:768px) {
    .messages-list-item-qty span {
        min-width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 20px;
        padding: 3px 4px;
    }
}

.messages-list-item-datetime {
    width: 80px;
    font-size: 12px;
    text-align: right;

}
@media (min-width:768px) {
    .messages-list-item-datetime {
        width: 160px;
        font-size: 14px;
        text-align: right;
        padding: 0px 10px 0px 0px;
    }
}

.messages-view {
    margin:0px;
    padding:0px 0px 30px 0px;
    position: relative;
}

.messages-view::after {
    content: '';
    width:calc(100% + 30px);
    height: 1px;
    background:#ddd;
    left:-30px;
    bottom:0px;
    position: absolute;
}

.messages-view li {
    margin:20px 0px 0px 0px;
    padding:0px;
    list-style: none;
}

.messages-view-single-datetime {
    font-size: 12px;
    color:#9B9B9B;
    text-align: center;
    margin: 0px 0px 6px 0px;
}

.messages-view-single-vendor-wrapper {
    display: flex;
    gap:20px;
}

.messages-view-single-user-wrapper {
    display: flex;
    justify-content: flex-end;
}

.messages-view-single-message {
    min-width: 50%;
    padding: 16px;
    border:1px solid #ddd;
    border-radius: 8px;
}

.messages-view-single-buyer .messages-view-single-message {
    background: #ddd;
}

.messages-view-single h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 0px 10px 0px;
}

.messages-view-single p {
    margin: 0px 0px 10px 0px;
}

.messages-view-reply {
    padding: 30px 0px 20px 0px;
}

.messages-view-reply label p {
    padding-left:40px;
    position: relative;
}

.messages-view-reply label p img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    left:0px;
    top:3px;
    position: absolute;
}

.messages-view-reply-submit {
    display: flex;
    justify-content: flex-end;
}

.messages-view-reply-submit input {
    width: auto;
}

.messages-view-add {
    margin-top:10px;
    right:10px;
    position: absolute;
}

.messages-view-add img {
    width: 30px;
    height: auto;
    object-fit: contain;
}


/* alerts */

.alerts-listing {
    background: #fff;
    border-radius: 8px;
    margin: 0px 0px 30px 0px;
    padding: 12px 10px;
}
@media (min-width:992px) {
    .alerts-listing {
        padding: 16px;
    }
}

.alerts-listing-item {
    border:1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin: 0px 0px 20px 0px;
    display: flex;
    flex-wrap: wrap;
    gap:24px;
}
@media (min-width:576px) {
    .alerts-listing-item {
        flex-wrap: nowrap;
    }
}

.alerts-listing-item-row {
    background: #fff;
    border-radius: 8px;
    position: relative;
}
@media (min-width:576px) {
    .alerts-listing-item-row {
        width:calc(37% - 24px);
        min-width:calc(37% - 24px);
        max-width: calc(37% - 24px);
        display: flex;
        gap:16px;
        flex-wrap: wrap;
    }
}
@media (min-width:1200px) {
    .alerts-listing-item-row {
        flex-wrap: nowrap;
    }
}

.alerts-listing-item-row-img {
    position: relative;
    display: flex;
    flex: 0 0 120px;
    margin-bottom: 0px;
}

.alerts-listing-item-row-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
@media (min-width:576px) {
    .alerts-listing-item-row-img img {
        border-radius: 4px;
    }
}

@media (min-width:992px) {
    .alerts-listing-item-row-details {
        width: 100%;
    }
}

.alerts-listing-item-you-requested {
    font-size: 12px;
    color:#9B9B9B;
    margin: 0px 0px 6px 0px;
    display: flex;
    align-items: center;
    gap:6px;
}

.alerts-listing-item-you-requested img {
    max-width: 15px;
    max-height: 15px;
    object-fit: contain;
}

.alerts-listing-item-row-details h4 {
    margin: 0px 0px 8px 0px;
}

.alerts-listing-item-row-details h4 a {
    color:#191919;
    text-decoration: none;
}

.alerts-listing-item-row-details h4 a:hover {
    color:#00ACA1;
    text-decoration: underline;
}

.alerts-listing-item-row p {
    margin: 0px;
}

.alerts-listing-item-row-details-price {
    font-weight: 600;
    text-align: right;
    margin-top: 6px;
    margin-bottom: 12px;
}

.alerts-listing-item-status {
    width: 100%;
    position: relative;
}
@media (min-width:576px) {
    .alerts-listing-item-status {
        width:calc(37% - 24px);
        min-width:calc(37% - 24px);
        max-width:calc(37% - 24px);
    }
}

.alerts-listing-item-status::before {
    content: '';
    width: 100%;
    background:#ddd;
    height: 1px;
    left:0px;
    top:-12px;
    position: absolute;
}
@media (min-width:576px) {
    .alerts-listing-item-status::before {
        content: '';
        width: 1px;
        height: 100%;
        left:-12px;
        top:0px;
    }
}

.alerts-listing-item-status::after {
    content: '';
    width: 100%;
    background:#ddd;
    height: 1px;
    right:0px;
    bottom:-20px;
    position: absolute;
}
@media (min-width:576px) {
    .alerts-listing-item-status::after {
        content: '';
        width: 1px;
        height: 100%;
        right:-12px;
        top:0px;
        bottom:unset;
    }
}

.alerts-listing-item-status-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width:576px) {
    .alerts-listing-item-status-info {
        height: 100%;
    }
}

.alerts-listing-item-status-info img {
    width:40px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 12px auto;
    display: block;
}

.alerts-listing-item-status-info p {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color:#9B9B9B;
    text-align: center;
    margin: 0px;
    padding: 20px;
}

.alerts-listing-item-action {
    width: 100%;
	padding-top: 20px;
}
@media (min-width:576px) {
    .alerts-listing-item-action {
        width: 26%;
        min-width:26%;
        max-width: 26%;
		padding-top: 0px;
    }
}

.alerts-listing-item-status p {
    font-size: 12px;
}

.alerts-listing-item-status p img {
    max-width: 15px;
    max-height: 15px;
    object-fit: contain;
    margin:0px 6px 0px 0px;
}

.alerts .orders-filters {
    justify-content: space-between;
}
@media (min-width:992px) {
    .alerts .orders-filters {
        flex-wrap: nowrap;
    }
}

.alerts .orders-filters label {
    width:100%;
}
@media (min-width:576px) {
    .alerts .orders-filters label {
        width:auto;
        min-width:unset;
        max-width: unset;
        flex:100px;
    }
}

.alerts .orders-filters .btn-primary {
    white-space: nowrap;
}
@media (min-width:992px) {
    .alerts .orders-filters .btn-primary {
        width: unset;
    }
}

.alerts-listing-item-detailed {
    display: block;
}

.alerts-listing-item-detailed dl {
    width: 100%;
    display: flex;
    gap:12px;
    margin: 0px 0px 4px 0px;
    padding: 0px;
}

.alerts-listing-item-detailed dl dt {
    width: 33%;
    margin: 0px;
    padding: 0px;
}

.alerts-listing-item-detailed dl dd {
    margin: 0px;
    padding: 0px;
}

.alerts-listing-item-action-del {
    position: relative;
}

.alerts-listing-item-action-del p {
    margin-right: 30px;
}

.alerts-btn-del {
    width: 16px;
    height: 17px;
    top:0px;
    right:0px;
    position: absolute;
}

.ico-info {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    margin-top: -10px;
    position: absolute;
}


/* modal */

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    max-width: 600px;
    background-color: #fff;
    margin: auto;
    padding: 20px;
    width: 80%;
}

.modal-content h4 {
    padding: 0px 0px 20px 0px;
    border-bottom: 1px solid #ddd;
}

.modal-close {
    width: 16px;
    height: 16px;
    float: right;
    cursor: pointer;
}

.modal-close img {
    width: 16px;
    height: 16px;
}


/* gallery */


.img-gallery {
    width: 100%;
}
@media (min-width:768px) {
    .img-gallery {
        border-radius: 8px;
        margin: 0px 0px 10px 0px;
    }
}

.img-gallery .swiper-slide {
    height: auto;
    position: relative;
}

.img-gallery .swiper-slide::after {
    content: "";
    display: block;
    padding-bottom: 74%;
    position: relative;
    z-index: -1;
}

.img-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.swiper.img-thumbs {
    display: none;
}
@media (min-width:768px) {
    .swiper.img-thumbs {
        display: block;
    }
}

.img-thumbs .swiper-slide {
    height: auto;
    background: #DDD;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 4px;
}

.img-thumbs .swiper-slide::after {
    content: "";
    display: block;
    padding-bottom: 74%;
    position: relative;
    z-index: -1;
}

.img-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    border-radius: 4px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color:#fff;
}


/* offcanvas */

.offcanvas-open-car, .offcanvas-open-filters {
    width: 100%;
    position:fixed;
}

.offcanvas-open-car::after, .offcanvas-open-filters::after {
    content:'';
    width: 100%;
    height: 100%;
    background:#000;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    position:absolute;

    animation: fadeEffect .3s;
    z-index: 9990;
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity:1;}
}

.offcanvas {
    max-height:0;
    overflow: hidden;
    z-index: 9996;
    transition: max-height 0.3s ease-out;
    background: #fff;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.offcanvas-header {
    padding: 20px;
    position: relative;
}

.offcanvas-header h4 {
    font-size: 16px;
    margin: 0px 40px 0px 0px;
}

.offcanvas-close {
    width:30px;
    height:30px;
    top:15px;
    right:12px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-close img {
    width: 11.06px;
    height: 11.06px;
}

.offcanvas-content {
    height: calc(100% - 200px);
    padding: 20px 20px 100px 20px;
    overflow-y: scroll;
}

.offcanvas-btns {
    width: 100vw;
    background: #fff;
    padding: 20px;
    bottom:0px;
    left:0px;
    position: absolute;
    box-sizing: border-box;
}

.offcanvas-btns input, .offcanvas-btns button {
    width: 100%;
}




.offcanvas-open-car .offcanvas-car {
    max-height:calc(100% - 20px);
    height:calc(100% - 20px);
 /*    background:pink; */
    transition: max-height 0.3s ease-out; 
    overflow: visible;
    bottom:0px;
    left:0px;
    right:0px;
    position:fixed;
}

.offcanvas-open-filters .offcanvas-filters {
    max-height:calc(100% - 20px);
    height:calc(100% - 20px);
 /*    background:blue; */
    transition: max-height 0.3s ease-out; 
    overflow: visible;
    bottom:0px;
    left:0px;
    right:0px;
    position:fixed;
}




/* footer */

.footer {
    font-size: 13px;
    color:#8A8A8A;
    border-top:1px solid #8A8A8A;
    padding: 31px 0 33px;
    position: relative;
    margin-top:60px;
}
@media (min-width:768px) {
    .footer {
        font-size: 14px;
    }
}

/* .footer-wrapper {
    display: flex;
    justify-content: space-between;
} */

.footer a {
    color:#8A8A8A;
    text-decoration: none;
}

.footer a:hover {
    color:#8A8A8A;
    text-decoration: underline;
}

.footer ul {
    margin:0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.footer ul li {
    margin:0px;
    padding: 4px 8px 4px 9px;
    list-style: none;
    position: relative;
}

.footer ul li:first-child {
    padding: 4px 8px 4px 0px;
}

.footer ul li::before {
    content: '|';
    left:-1px;
    position: absolute;
}

.footer ul li:first-child::before {
    display: none;
}

.footer-facebook {
    width: 12px;
    height: 26px;
    margin-top: 20px;
}
@media (min-width:768px) {
    .footer-facebook {
        margin-top: 0px;
    }
}




/* placeholder */


::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #8B8B8B;
}
:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #8B8B8B;
}
::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #8B8B8B;
}
:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #8B8B8B;
}
input::placeholder {
	color: #8B8B8B;
}
textarea::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #8B8B8B;
}
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	 color: #8B8B8B;
}
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #8B8B8B;
}
textarea:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #8B8B8B;
}
textarea::placeholder {
	color: #8B8B8B;
}




@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Medium.woff2') format('woff2'),
        url('../fonts/subset-Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/subset-Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Regular.woff2') format('woff2'),
        url('../fonts/subset-Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-ExtraLight.woff2') format('woff2'),
        url('../fonts/subset-Inter-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Light.woff2') format('woff2'),
        url('../fonts/subset-Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-ExtraBold.woff2') format('woff2'),
        url('../fonts/subset-Inter-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Thin.woff2') format('woff2'),
        url('../fonts/subset-Inter-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Bold.woff2') format('woff2'),
        url('../fonts/subset-Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'),
        url('../fonts/subset-Inter-Black.woff2') format('woff2'),
        url('../fonts/subset-Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}





@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-BlackItalic.woff2') format('woff2'),
        url('../fonts/Poppins-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-BoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('../fonts/Poppins-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-LightItalic.woff2') format('woff2'),
        url('../fonts/Poppins-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-ThinItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins'),
        url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



/* end */

.profile-page .parts-listing{
    display: none;
}
.profile-page .parts-listing.showcontent{
    display: block;
}

    .courierbox{
        color: #fff;
        padding: 0px;
        display: none;
        margin-top: 0px;
    }

@media (min-width:576px) {
    .courierbox{
        color: #fff;
        padding: 0px;
        display: none;
        margin-top: 0px;
    }
}