body {
    font-family: 'Barlow', sans-serif;
}
#header .logo {
    margin: 0.5rem 40px 0.5rem 0;
}
#header .logo img {
    max-height: 68px;
}
.headerSearch {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
}
.headerSearch form {
    border: 1px solid rgba(34, 36, 38, 0.1);
    border-radius: 0.375rem;
    width: 100%;
    position: relative;
}
.headerSearch form input {
    display: block;
    width: 100%;
    height: 38px;
    padding-left: 10px;
    font-size: 14px;
}
.headerSearch form input::placeholder {
    opacity: 0.5;
}
.headerSearch form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 38px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.headerSearch form button i {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    font-size: 24px;
    color: #000000;
}
.headerWhatsapp {
    margin-left: auto;
    margin-right:auto;
    display:flex;
    align-items:center;
}
.headerWhatsapp a {}
.headerWhatsapp a img {
    display: block;
    max-height:70px;
}
.headerCart {
    display: flex;
    align-items: center;
    position: relative;
}
.headerCart a.cartButton {
    position: relative;
    text-align: center;
    display: block;
    padding: 0.5rem 0.5rem 0px;
}
.headerCart .productCount {
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    border-radius: 50%;
    text-align: center;
    font-size: 0.85rem;
    background-color: #1076b9;
    color: #fff;
}
.headerCart .icon i {
    width: 30px;
    height: 30px;
    font-size: 30px;
}
.headerCart span {
    font-size: 14px;
}
.cartArea {
    position: absolute;
    right: 0;
    top: 95%;
    background: #fff;
    padding: 10px;
    width: 500px;
    border-radius: 10px;
    border-top: 2px #1076b9 solid;
    display: none;
    z-index: 200;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
}
.cartArea::before {
    content: "";
    position: absolute;
    right: 20px;
    top: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent #1076b9 transparent;
}
.cartArea .cartProductList {
    border-bottom: 1px #373e4e solid;
    margin-bottom: 5px;
}
.cartArea .cartProductList.noborder {
    border:0;
    text-align:center;
}
.cartArea .cartProduct {
    display: flex;
    font-size: 14px;
}
.cartArea .cartProduct .img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartArea .cartProduct .img img {
    display: block;
    max-width: 60px;
    max-height: 60px;
}
.cartArea .cartProduct .title {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left:5px;
}
.cartArea .cartProduct .count {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    flex-shrink: 0;
}
.cartArea .cartProduct .price {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    width: 100px;
    flex-shrink: 0;
}
.cartArea .cartProduct .price .kdv {
    font-size:12px;
}
.cartArea .cartProduct .price .kdv small {}
.cartArea .cartProduct .removeBtn {
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.cartArea .cartProduct .removeBtn i {
    color: red;
    font-size: 16px;
}
.cartArea .cartTotalRow {
    display: flex;
    align-items: center;
    padding:3px 0
}
.cartArea .cartTotalRow span {
    margin-left: auto;
}
.cartArea .cartTotalRow.total {
    font-weight: bold;
}
.cartArea .goToCartBtn {
    margin-top: 10px;
    border-top: 1px #373e4e solid;
    padding-top: 5px;
    text-align: center;
}
.cartArea .goToCartBtn a {
    background-color: #1076b9;
    color: #fff;
    text-align: center;
    padding: 10px 30px;
    display: inline-block;
}
@media (max-width:1199px) {
    .headerSearch {
        max-width:400px;
    }
}
@media (max-width:991px) {
    .headerSearch {
        max-width: 350px;
    }
}
@media (max-width:767px) {
    .headerWhatsapp {
        display:none;
    }
    .headerSearch form input {
        margin-right:50px;
        width: calc(100% - 50px);
    }
    #header .logo {
        margin-right: 20px;
    }
}
.headerNav {
    background-color: #1076b9;
    color: #fff;
    border-top: 1px solid rgba(34, 36, 38, 0.1);
}
.headerNavContent {}
.headerNavContent > ul {
    display: flex;
    width: 100%;
    position: relative;
}
.headerNavContent > ul > li {
    border-right: 1px solid #fff;
    flex-grow: 1;
    height: 100%;
    display: flex;
}
.headerNavContent > ul > li:last-child {
    border-right: 0;
}
.headerNavContent > ul > li > a {
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    padding: 0.5rem 0.25rem;
    text-align: center;
}
.headerNavContent > ul > li .submenu {
    position: absolute;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 100;
    left: 0;
    top: 100%;
    display: none;
    padding: 20px;
}
.headerNavContent > ul > li:hover .submenu {
    display: block;
}
.headerNavContent > ul > li .submenu ul {
    column-count: 5;
}
.headerNavContent > ul > li .submenu ul li {
    margin-bottom: 15px;
}
.headerNavContent > ul > li .submenu ul li a {
    color: #242424;
}
.headerNavContent > ul > li .submenu ul li a:hover {
    color: #1076b9;
}
.showMobileMenu {
    display:none;
}
@media (max-width:767px) {
    .showMobileMenu {
        display: block;
        text-align:center;
        font-weight:bold;
        padding:10px;
    }
    .headerNavContent {
        position:relative;
    }
    .headerNavContent > ul {
        flex-direction: column;
        position: absolute;
        background-color: #1076b9;
        z-index:5;
        left:0;
        top: 98%;
        margin-left: calc(var(--bs-gutter-x) * .5 * -1);
        width: calc(100% + calc(var(--bs-gutter-x) * .5 * 2));
        display:none;
    }
    .headerNavContent > ul > li {
        border-right:0;
    }
    .headerNavContent > ul > li .submenu {
        display:none !important;
    }
}
main {
    background: rgb(238, 238, 238);
    padding-bottom: 3rem;
}
#homeSearch {
    background: #373e4e url(../img/homeSearchBg.jpg) no-repeat center center;
    background-size: cover;
    height: 25rem;
    display: flex;
    align-items: center;
}
.selectBoxes {
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}
.selectBoxes .selectBox .title {
    font-size: 20px;
    color: #373e4e;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 24px;
}
.selectBoxes .selectBox .select .select2 {
    width: 250px;
    max-width: 100%;
    height: 40px;
}
.selectBoxes .selectBox .select .select2-container--default .select2-selection--single,
.selectBoxes .selectBox .select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}
.selectBoxes .selectBox .select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}
.selectBoxes .selectBox {
    width: 20%;
}
.selectBoxes .buttonBox {
    padding-top: 34px;
    width: 20%;
}
.selectBoxes .buttonBox a {
    height: 40px;
    width: 100%;
    justify-content: center;
}
@media (max-width:991px) {
    .selectBoxes {
        flex-wrap: wrap;
        margin-bottom: 0;
        column-gap: 0;
    }
    .selectBoxes .selectBox {
        width: 50%;
        padding:0 5px;
    }
    .selectBoxes .selectBox .select .select2 {
        width: 100%;
    }
    .selectBoxes .buttonBox {
        padding-top: 0;
        width: 45%;
        margin: 0 auto;
    }
}
@media (max-width:600px) {
    #homeSearch {
        height: auto;
        padding: 20px 50px;
    }
    .selectBoxes .selectBox {
        width: 100%;
    }
    .selectBoxes .buttonBox {
        width: 100%;
    }
}
#homeBanners {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.homeBanner img {
    display: block;
    width: 100%;
}
#homeSpareParts {
    margin-bottom: 60px;
}
.sparePartBox {
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    background: #fff;
}
.sparePartBox .logo {
    margin-bottom: 1rem;
}
.sparePartBox .logo img {
    display: block;
    max-height: 48px;
    margin: 0 auto;
}
.sparePartBox ul {
    margin-bottom: 0.5rem;
}
.sparePartBox ul li a {
    line-height: 1.25rem;
    font-size: 0.85rem;
    color: rgb(102, 102, 102);
    padding:3px 0;
}
.sparePartBox ul li a:hover {
    color: #1076b9;
}
.sparePartBox .btn {
    margin-bottom: 0.5rem;
}
.defaultBtn {
    display: inline-flex;
    align-items: center;
    border-radius: 18px;
    padding: 0px 2rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    height: 36px;
    width: auto;
    z-index: 1;
    text-transform: uppercase;
    background: #1076b9;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    transition: all 300ms ease 0s;
    cursor: pointer;
}
.defaultbtn:hover {
    background-position: right center;
}
.sectionTitleRow {
    display: flex;
    margin-bottom: 1rem;
}
.sectionTitleRow .title {
    display: inline;
    font-size: 27px;
    font-weight: 500;
    transition: color 0.25s ease 0s;
}
.sectionTitleRow .title .colored {
    color: #1076b9;
}
.sectionTitleRow .buttonDiv {
    margin-left: auto;
}
.sectionTitleRow .buttonDiv a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    height: 36px;
    width: auto;
    z-index: 1;
    text-transform: uppercase;
    background: linear-gradient(to left, rgb(78, 153, 217), rgb(58, 99, 134)) 0% 0% / 200%;
    border-radius: 5px;
    transition: all 300ms ease 0s;
    padding:1px 6px;
}
#homeBrands {
    margin-bottom: 60px;
}
.brandsDiv {
    padding: 2rem 1rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    background: #fff;
    color: rgb(2, 2, 2);
}
.brandLogoBox {
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
    border-right: 1px #c4c6c9 solid;
}
.brandLogoBox img {
    max-height: 50px;
}
.homeAboutText p {
    margin-bottom: 20px;
}
.homeAboutText p strong {
    font-weight: 500;
}
#homeMostSells {
    padding: 20px 0;
    background: #fff;
}
.productBox {
    margin-bottom: 2rem;
    border: 0.1rem solid #f1f1f1;
    transition: all 0.2s ease;
    padding: 5px;
    background: #fff;
}
.productBox:hover {
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}
.productBox .productImg {
    display: flex;
    width: 100%;
    aspect-ratio: 1;    
    align-items: center;
    justify-content: center;
}
.productBox .productImg img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}
.productBox .productText {
    text-align: center;
}
.productBox .productText .title {
    margin-bottom: 15px;
    height: 57px;
    overflow: hidden;
}
.productBox .productPrice {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.productBox .addToCartButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
#footer {
    padding: 20px 0;
    background: #373e4e;
    color: #fff;
}
.copyright {
    text-align: center;
    border-top: 1px #c4c6c9 solid;
    padding-top: 10px;
    margin-top: 10px;
}
.footerLogo {
    margin-bottom: 20px;
}
.footerLogo img {
    max-width: 200px;
}
.footerTitle {
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.footerTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1076b9;
    width: 100px;
    height: 3px;
}
.footerMenu ul li {
    padding:5px 0;
}
.footerContact .address {
    line-height: 1.5;
    margin-bottom: 5px;
}
.footerContact .phone {
    margin-bottom: 5px;
    line-height: 1.5;
}
.footerContact .email {
    margin-bottom: 10px;
}
.footerSocial {
    display: flex;
    gap: 10px;
}
.footerSocial a i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
}
.breadcrumb ol {
    display: flex;
    align-items: center;
}
.breadcrumb ol li i {
    font-size: 1.2rem;
    margin: 0 .5rem;
    font-style: normal;
}
.breadcrumb ol li i::before {
    content: ">";
}
.breadcrumb ol li:last-child span span {
    text-decoration: underline;
}
.sidebarBox {
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    background: #fff;
}
.sidebarBoxTitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.sidebarCatTitle {
    margin-bottom: 10px;
}
.sidebarCatList ul {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px #ccc solid;
}
.sidebarCatList ul li {
    padding: 5px 0 5px 5px;
}
.sidebarCatList ul li a {
    font-size: 14px;
    position: relative;
}
.sidebarCatList ul li a::before {
    content: "-";
    margin-right: 5px;
}
.sidebarBackBtn {}
.sidebarBackBtn a {
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}
.sidebarBackBtn a::before {
    content: "<";
    margin-right: 5px;
}
.sidebarSelectList {
    max-height: 150px;
    overflow-y: auto;
}
.sidebarSelectList ul li {
    margin-bottom: 10px;
}
.customCheckbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    line-height: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.customCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.customCheckbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #eee;
    border-radius: 3px;
}
.customCheckbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.customCheckbox input:checked ~ .checkmark {
    background-color: #2196F3;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.customCheckbox input:checked ~ .checkmark:after {
    display: block;
}
.customCheckbox .checkmark:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#sortingArea {
    background: #fff;
    margin-bottom:25px;
    padding: 10px;
}
#sortOptions {
    display: block;
    width: 100%;
    border: 1px #eee solid;
    padding: 5px;
    border-radius: 2px;
    -webkit-appearance: auto;
    appearance: auto;
}
#sortingArea .productCount {
    font-size: 14px;
}
.pagination-container {
    display: flex;
    justify-content: center;
}
ul.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}
ul.pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px #ccc solid;
    border-radius: 2px;
    width: 40px;
    height: 40px;
}
.paginate a.disabled {
    pointer-events: none;
    background: #ddd;
}
ul.pagination li.active {
    background: #1076b9;
    color: #fff;
    font-weight: bold;
    border-color: #1076b9
}
ul.pagination li a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
@media (max-width:991px) {
    ul.pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}
#productDetails {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    padding: 20px 20px 50px;
}
#productDetails .productImg {
    padding: 10px;
    border: 1px #ddd solid;
    display: flex;
    align-items: center;
    justify-content: center;
}
#productDetails .productImg img {
    display: block;
    max-width: 100%;
    max-height: 400px;
}
#productDetails .productName {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8rem;
    margin-bottom: 15px;
}
#productDetails .stockStatus {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 15px;
}
#productDetails .stockStatus span {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-right: 10px;
}
#productDetails .stockStatus span.inStock {
    background: #5cd95c;
}
#productDetails .stockStatus span.outOfStock {
    background: #ff2626;
}
#productDetails .productFeaturesList {
    margin-bottom: 30px;
}
#productDetails .productFeaturesList li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#productDetails .productFeaturesList li label {
    width: 150px;
    margin-right: 10px;
}
#productDetails .productFeaturesList li label::after {
    content: ":";
    float: right;
}
#productDetails .productPrice {
    margin-bottom: 15px;
}
#productDetails .productPrice .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
#productDetails .productPrice .oldPrice {
    text-decoration: line-through;
    color: #bbb;
    font-size: 20px;
    margin-left: 20px;
}
#productDetails .productPrice .newPrice {
    font-size: 24px;
    font-weight: bold;
}
#productDetails .productQuantity {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
#productDetails .productQuantity .title {
    font-size: 20px;
    font-weight: bold;
    margin-right: 50px;
}
#productDetails .productQuantity .quantityDiv {
    display: flex;
    align-items: center;
}
#productDetails .productQuantity .quantityDiv a {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #ddd solid;
    background-color: #fff;
    font-size: 24px;
    font-weight: bold;
}
#productDetails .productQuantity .quantityDiv input {
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
    height: 40px;
    width: 80px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    background-color: #eee;
}
#productDetails .addToCartBtn {
    margin-bottom: 15px;
}
#productDetails .addToCartBtn a.defaultBtn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
}
#productDetails .productNotes {
    font-size: 14px;
}
#productDetails .productDescTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
#productDetails .productDesc {}
#productDetails .productDesc p {
    margin-bottom: 10px;
}
#staticPage {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    padding: 20px 20px 50px;
}
#staticPage .pageTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
#staticPage p {
    margin-bottom: 20px;
}
#staticPage h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
#staticPage h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
#staticPage h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
#staticPage ul {
    padding-left: 25px;
}
#staticPage ul li {
    list-style-type: disc;
}
#cartPage {}
#cartLeft, #cartRight {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
    padding: 20px;
}
#cartPage .cartTitle {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px rgba(0, 0, 0, 0.3) solid;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.cartContent {}
.cartContent .cartItem {
    display: flex;
    align-items: stretch;
    padding: 10px;
    border-bottom: 1px #eee solid;
}
.cartContent .cartItem:hover {
    background: #fafafa;
}
.cartContent .cartItem:last-child {
    border-bottom: 0;
}
.cartContent .cartItem .productImg {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border:1px #eee solid;
}
.cartContent .cartItem .productImg img {
    display: block;
    max-width: 90px;
    max-height: 90px;
}
.cartContent .cartItem .productName {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    flex-grow:1;
}
.cartContent .cartItem .productName .deleteFromCartBtn {
    font-size: 12px;
    border: 1px #ccc solid;
    background: #eee;
    padding: 3px 10px;
    width: 90px;
    text-align: center;
    margin-top: auto;
}
.cartContent .cartItem .productQuantity {
}
.cartContent .cartItem .productQuantity .quantityDiv {
    display: flex;
    align-items: center;
    width: 130px;
    flex-shrink: 0;
}
.cartContent .cartItem .productQuantity .quantityDiv a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border: 1px #ccc solid;
}
.cartContent .cartItem .productQuantity .quantityDiv input {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: 0;
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
}
.cartContent .cartItem .productPrice {
    text-align: right;
    flex-shrink: 0;
    width: 130px;
}
.cartContent .cartItem .productPrice .oldPrice {
    font-size: 14px;
    text-decoration: line-through;
}
.cartContent .cartItem .productPrice .newPrice {
    font-size: 18px;
    font-weight: bold;
}
.cartContent .cartItem .productPrice .plusTax {}
.cartTotals {}
.cartTotals ul {
    margin-bottom: 20px;
}
.cartTotals ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}
.cartTotals ul li label {}
.cartTotals ul li span {
    margin-left: auto;
    font-weight: bold;
}
.cartTotals ul li.total {
    border-top: 1px #ccc solid;
    padding-top: 5px;
    margin-bottom: 0;
}
.cartTotals ul li.total span {
    font-size: 18px;
}
.cartTotals .defaultBtn {
    width: 100%;
    justify-content: center;
}
.emptyCartAlert {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
}
.emptyCartAlert .icon {
    font-size: 70px;
    margin-bottom: 20px;
}
.emptyCartAlert .text {
    font-size: 20px;
    font-weight: 500;
}
form .form-label {
    display: block;
    margin-bottom: 0.5rem;
}
form .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px #dee2e6 solid;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}
form .form-control::placeholder {
    color: #ccc
}
form select.form-control {
    -webkit-appearance: auto;
    appearance: auto;
}
.kargoFirma, 
.banka {
    display: flex;
    padding: 10px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px #eee solid;
}
.kargoFirma:last-child, 
.banka:last-child {
    border-bottom: 0;
}
.kargoFirma.selected,
.banka.selected,
.banka:hover {
    background: #fafafa;
}
.kargoFirma .check,
.banka .check {
    position: relative;
    width: 40px;
}
.kargoFirma .check::before,
.banka .check::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    transform: translateY(-50%);
}
.kargoFirma.selected .check::before,
.banka.selected .check::before {
    background: #2196F3;
}
.kargoFirma.selected .check::after,
.banka.selected .check::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
}
.kargoFirma .logo,
.banka .logo {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kargoFirma .logo img,
.banka .logo img {
    max-width: 100px;
    max-height: 60px;
}
.kargoFirma .firmName,
.banka .firmName {
    padding: 0 20px;
}
.kargoFirma .price {
    margin-left: auto;
}
.banka .firmName {
    font-size: 14px;
    flex-grow: 1;
}
.banka .firmName .iban {
    font-weight: bold;
}
.cartTotals .name {
    font-weight: bold;
    color: #373e4e;
}
.cartTotals .address {
    font-size: 14px;
}
.backToCheckoutBtn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px #373e4e solid;
    background: #dee2e6;
    border-radius: 3px;
    padding: 5px 10px;
    line-height: 1.3;
}
.backToCheckoutBtn i {
    font-size: 14px;
}
.checkoutThanks {
    text-align: center;
    padding: 100px 20px 150px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
}
.checkoutThanks .icon {
    font-size: 70px;
    margin-bottom: 20px;
    color: #13bb13;
}
.checkoutThanks .text {
    font-size: 20px;
    font-weight: bold;
}
.checkoutThanks .text span {
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}
.contactRow {
    padding-bottom: 20px;
    border-bottom: 1px #eee solid;
    margin-bottom: 20px;
}
.contactRow label {
    font-weight: bold;
}
.contactForm {}
.contactForm button {}
.floatingWhatsapp {
    background: #25d366;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 2;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37,211,102,0)
    }
}