@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-size: 14px;
    --theme-text-color: #ff5722;
}

html {
    font-size: var(--font-size);
}

@media (min-width: 768px) {
    html {
        font-size: var(--font-size);
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 60px;
}

.text-color-theme {
    color: var(--theme-text-color);
}

.no-outline {
    outline: none !important;
    box-shadow: none !important;
}

.table > :not(caption) > * > * {
    background-color: transparent;
}

.form-floating .form-label:not(:focus) {
    color: rgb(52, 58, 64) !important;
    opacity: .6 !important;
}

.field-validation-error {
    display: block;
    margin-top: .5rem !important;
}

.validation-summary-errors ul {
    list-style-type: none;
    padding-left: 0;
}

    .validation-summary-errors ul li {
        text-decoration-line: underline !important;
        text-decoration: dashed;
    }

.lh-0 {
    line-height: 0;
}

.open-product {
    box-shadow: none;
    transition: box-shadow 300ms ease, border-color 300ms ease;
}

    .open-product:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
        border-color: transparent;
    }

input.no-arrows::-webkit-inner-spin-button,
input.no-arrows::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.no-arrows {
    -moz-appearance: textfield;
}

.badge-ticket {
    background-color: #ff5722;
    color: #fff;
}

a,
button,
img {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    -webkit-user-drag: none;
    user-select: none; /* Standard */
    user-drag: none;
}

.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
