﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bs-blue: #01275D;
    --bs-yellow: #FFE765;
    --bs-card-spacer-y: 2rem;
    --bs-card-spacer-x: 2rem;
    --bs-pagination-active-bg: #01275D;
}

body{
    min-height: 100vh;
}

.text-justify{
    text-align: justify;
}

.text-yellow {
    color: #FFE765 !important;
}

.bg-blue {
    background-color: #01275D !important;
}

.bg-yellow {
    background-color: #FFE765 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Open Sans", sans-serif;
}

footer a {
    color: var(--bs-blue) !important;
}
 
.head-country-choice {
    color: var(--bs-dark)!important;
}

    .head-country-choice.active {
        background-color: var(--bs-dark);
        color: var(--bs-light) !important;
    }

.head-country-choice img{
    max-width:50px;
}

.head-country-choice:hover{
    background-color: var(--bs-dark);
    color: var(--bs-light)!important;
    cursor:pointer;
}

.nav-link {
    color: var(--bs-dark) !important;
}

.nav-link:hover {
    color: var(--bs-blue) !important;
    font-weight:700!important;
}

.text-blue {
    color: var(--bs-blue) !important;
}

.text-blue-light {
    color: #3758F9!important;
}

.scrolling-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

    .scrolling-wrapper::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

    .scrolling-wrapper .item-card {
        flex: 0 0 auto;
        width: 250px;
    }

        .scrolling-wrapper .item-card img {
            width: 100%;
            height: auto;
        }

.card-brand {
    padding: 2.5rem 2.5rem;
    transition:transform 0.3s ease;
}

.card-brand:hover{
    transform:translateY(-8px);
    transition:0.2s;
}

.card-brand-image {
    display:flex;
    height:140px;
    justify-content:center;
    align-items: center;
    
}

    .card-brand-image img {
        width: 100%;
    }

.product-card {
    width: 25%;
    padding: 0.25rem;
    display:flex;
    justify-content:stretch;
}

.product-selling-card {
    width: 20%;
    padding: 0.25rem;
}

@media (max-width: 767.98px) {
    .product-card {
        width: 50%;
        padding: 0.25rem;
        display: flex;
        justify-content: stretch;
    }

    .product-selling-card {
        width: 50%;
        padding: 0.25rem;
    }
}

.dt-paging{
    display:flex;
    justify-content:end;
/*    margin-top:-2em!important;*/
}

.dt-info{
    margin-top:1em;
}

.active > .page-link, .page-link.active {
    background-color: var(--bs-blue) !important;
    border-color: var(--bs-blue) !important;
}