/*
Theme Name: Dispensary
Theme URI: https://it-dimension.com
Author: IT-Dimension
Author URI: https://it-dimension.com
Description: -
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: https://dispensary-automation.it-dimension.com
*/

@font-face {
    font-family: "Roboto";
    src: url("assets/fonts/Roboto-Variabl.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* outline: 1px solid green; */
}

*, 
*::before, 
*::after {
    -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
    outline: none;
}

:root {
    --roboto: "Roboto", sans-serif;
    --black: #000000;
    --white: #ffffff;
    --grey: #a1a0a0;
	--green-gradient: linear-gradient(90deg, #53B52E 0%, #2799A1 100%);
	--dark-grey: #5A5855;
}

html {
    scroll-behavior: smooth;
}

body{
	overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

button,
a{
	-webkit-user-drag: none;
	user-select: none;
    -webkit-touch-callout: none;
}

button:focus-visible,
a:focus-visible{
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

a:focus, button:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}

img {
    -webkit-user-drag: none;
	user-select: none;
    -webkit-touch-callout: none;
}



@media (max-width: 768px) {
    main {
        height: 100%;
    }
}
