@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
    font-family: 'Roboto';
    font-size: 0.85rem;
}

:root {
    --primary-color: #0866ff;
}

body {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.header-nav {
    width: 100%;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .1);
    transition: all .2s;
    background-color: #fff;
}

.header-nav .nav {
    background-color: #fff;
}

.main-content {
    padding-top: 30px;
}

.main-content .carousel-inner {
    border-radius: 10px;
    border-color: #e2e8f0;
    border-width: 5px;
}

.card {
    border: none;
    box-shadow: rgba(114, 127, 142, 0.2) 0px 2px 12px 0px
}

.item-card {
    border: none;
    box-shadow: rgba(114, 127, 142, 0.2) 0px 2px 12px 0px;
    margin-bottom: 20px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0px;
}

.modal-footer {
    border-top: none;
    padding-top: 0px;
}

.item-card:hover {
    box-shadow: 0 0 20px 0 var(--primary-color);
}

.btn {
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.item-card .item-image {
    position: relative;
    width: 100%;
    max-width: 168px;
    max-height: 168px;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: auto;
}

.item-card .item-image .item-seen{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.item-card .item-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    object-fit: cover;
    border-radius: 10px;
}

.item-card .span-title {
    text-align: center;
    padding-top: 10px;
    height: 68px;
    margin-bottom: 0;
}

.item-card .btn-card {
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    background-color: #fff;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}

.btn-nav {
    padding: 5px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.item-card .btn-card:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.alert {
    padding: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.item-select-payment {
    padding: 5px 15px;
    border: 2px solid #808080;
    color: #808080;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.item-select-payment:hover {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.item-select-payment.is-active {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.item-select-payment .item-payment-check {
    position: absolute;
    display: none;
    right: 10px;
    color: var(--primary-color);
}

.item-select-payment.is-active .item-payment-check {
    display: block !important;
}

.badge {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 400;
}

.card-header {
    background-color: #fff !important;
}

.offcanvas-custom {
    background-color: #fff !important;
    border: none;
    box-shadow: rgba(114, 127, 142, 0.2) 0px 2px 12px 0px;
    border-radius: var(--bs-border-radius);
}

.nav-customer {
    background-color: #fff !important;
    border: none;
    box-shadow: rgba(114, 127, 142, 0.2) 0px 2px 12px 0px;
    border-radius: var(--bs-border-radius);
}

.w-200 {
    width: 200px;
}

.select2-container--default .select2-selection--multiple {
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.select2-container .select2-selection--multiple {
    min-height: 32px;
}

.select2-container {
    width: 100%;
}

.mb-label {
    margin-top: 25px;
}

.select2-search-custom .select2-container .select2-selection--single {
    height: 38px !important;
    border-radius: 5px !important;
    border: none;
    background-color: #F4F2F1;
    display: flex;
    padding-left: 6px;
}

.select2-search-custom .select2-container .select2-selection__rendered {
    line-height: 38px !important;
}

.select2-search-custom .select2-container .select2-selection--single .select2-selection__arrow {
    display: none;
}

.carousel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 620px;
    background-size: cover;
    background-position: center;
    filter: blur(30px);
    transition: background-image 0.6s ease;
    z-index: -1;
}