:root {
    --color-primary: #ff6000;
    --color-primary-light: #ffefe5;
    --color-secondary: #ffbb00;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 74.9375em) {
    html::-webkit-scrollbar {
        display: none;
    }
}

[type='text'], input:where(:not([type])), [type='email'], [type='url'], [type='password'], [type='number'], [type='date'], [type='datetime-local'], [type='month'], [type='search'], [type='tel'], [type='time'], [type='week'], [multiple], textarea {
    border-color: var(--color-gray-400);
    appearance: none;
    border-width: 1px;
    border-radius: 4px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
}

select {
    border-color: var(--color-gray-400);
    border-width: 1px;
    border-radius: 4px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
}

.text-2xs {
    font-size: 11px
}
.text-3xs {
    font-size: 9px
}

.border, .border-b, .border-t {
    border-color: var(--color-gray-200);
}

.bg-primary-100 {
    background-color: var(--color-primary-100) !important;
}

.accent-primary {
    accent-color: var(--color-primary) !important;
}

.border-primary {
    border-color: var(--color-primary);
}
.outline-primary {
    outline-color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.thinScrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.select2-container .select2-selection--single {
    height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

.select2-container .select2-selection__arrow b {
    display: none !important;
}

.select2-container .select2-selection__arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(90deg);
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.18 10" width="10" height="10"> <path d="M1.18 0L0 1.18 3.82 5 0 8.82 1.18 10l5-5z"></path> </svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.select2-container--open .select2-selection__arrow {
    transform: translateX(-50%) rotate(180deg) !important;
}

.swiper {
    --swiper-navigation-size: 36px;
    --swiper-navigation-color: white;
}

.bg-comment-dark {
    background-color: rgba(0, 0, 0, 0.5);
}