@import url('AirAmerica-Regular.otf');

@font-face {
    font-family: AirAmerica;
    font-weight: bold;
    src: url("AirAmerica-Regular.otf") format("opentype");
}

:root {
    --primary-color: #ff79a1;
    --secondary-color: #f3f3f4;
    --text-color: #000;
    --desc-color: #868686;
    --rating-star-solid-color: #fca244;
    --rating-star-empty-color: #ddd;
    --success: #01ff09;
    --heading-font: 'AirAmerica', sans-serif;

    --header-height: 70px;
    --card-product-img-height: 200px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background-color: #ff79a1;
    color: #fff;
}

html {
    font-family: 'Roboto', sans-serif;

}

html::-webkit-scrollbar {
    border-radius: 0;
    width: 7px;
}

html::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--primary-color);
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.1);
}


/* Custom All Scrollbar Vertical into  */
body *::-webkit-scrollbar {
    border-radius: 0;
    width: 5px;
}

body *::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.25);
}

body *::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
}

/* Custom All Scrollbar Vertical into  */
body *::-webkit-scrollbar:horizontal {
    border-radius: 0;
    width: 3px;
    height: 5px;
}

body *::-webkit-scrollbar-thumb:horizontal {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.25);
}

body *::-webkit-scrollbar-track:horizontal {
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
}


/* resset tag */

body a {
    text-decoration: none;
    color: inherit;
}

body a:hover {
    color: inherit;
}

ul {
    list-style: none;
    padding-left: 0;
}

button {
    outline: none;
    border: none;
    background-color: transparent;
}

input {
    outline: none;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}