:root {
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;

    --bs-secondary-rgb: 20, 25, 30;
}


/*    *,*/
/*:after,*/
/*:before {*/
/*    --tw-ring-offset-shadow: 0 0 #0000;*/
/*    --tw-ring-shadow: 0 0 #0000;*/
/*    --tw-shadow: 0 0 #0000;*/
/*    --tw-shadow-colored: 0 0 #0000;*/
/*}*/

.flex {
    display: flex;
}

.grid {
    display: grid;
}


.w-full {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.grid-flow-col {
    grid-auto-flow: column;
}

.grid-cols-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-10 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-blue-600 {
    border-color: rgb(0 152 253);
}

.border-neutral-200 {
    border-color: rgb(225 225 227);
}

.bg-blue-200 {
    background-color: rgb(219 240 255);
}

.bg-white {
    background-color: rgb(255 255 255);
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.text-center {
    text-align: center;
}

.text-2xl {
    font-size: 2.5rem;
    line-height: 3.5rem;
}


.font-medium {
    color: rgb(24 25 27);
    font-weight: 600;
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(0 152 253 / var(--tw-text-opacity));
}

.text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(92 94 101 / var(--tw-text-opacity));
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
    0 2px 4px -2px var(--tw-shadow-color);
}

.shadow-md {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.transition-all {
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 0.3s;
}

.hover\:border-blue-600:hover {
    border-color: rgb(0 152 253);
}

.hover\:bg-neutral-50:hover {
    background-color: rgb(247 247 248);
}

.hover\:text-blue-600:hover {
    color: rgb(0 152 253);
}




.typing .dot {
    -webkit-animation: TypingAnimation 1.8s infinite ease-in-out;
    animation: TypingAnimation 1.8s infinite ease-in-out;
    background-color: rgba(var(--bs-secondary-rgb), 0.7);
    border-radius: 50%;
    height: 7px;
    margin-right: 4px;
    vertical-align: middle;
    width: 7px;
    display: inline-block;
}
.typing .dot:nth-child(1) {
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
}
.typing .dot:nth-child(2) {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}
.typing .dot:nth-child(3) {
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}
.typing .dot:last-child {
    margin-right: 0;
}

@-webkit-keyframes TypingAnimation {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: rgba(var(--bs-secondary-rgb), 0.7);
    }
    28% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
        background-color: rgba(var(--bs-secondary-rgb), 0.4);
    }
    44% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: rgba(var(--bs-secondary-rgb), 0.2);
    }
}

@keyframes TypingAnimation {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: rgba(var(--bs-secondary-rgb), 0.7);
    }
    28% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
        background-color: rgba(var(--bs-secondary-rgb), 0.4);
    }
    44% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: rgba(var(--bs-secondary-rgb), 0.2);
    }
}


.shake_div {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.zoom_in_out_div {
    animation: zoom_in_out 0.82s cubic-bezier(.36,.07,.19,.97) both;
    animation-iteration-count: 2;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes zoom_in_out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.cart-total-items {
    position: absolute;
    height: 20px;
    width: 20px;
    display: inline-flex;
    top: -10px;
    right: -10px;
    /*transform: translate(-50%, -50%);*/
    background-color: #85cb33;
    justify-content: center;
    align-items: center;
    color: #212121;
    font-size: 14px;
    border-radius: 400px;
    transition: all ease 1s;
    z-index: 1;
}
