@font-face {
    font-family: proxima;
    src: url(../fonts/proxima/ProximaNova-Regular.otf);
}
@font-face {
    font-family: montserrat;
    src: url(../fonts/montserrat/Montserrat-Regular.ttf);
}
@font-face {
    font-family: giromail;
    src: url(../fonts/giromail/DINNextRoundedLTPro-Regular.ttf);
}

:root {
    --g: #00c1b0;
    --h: rgb(156, 204, 190);
}
body {
    position: relative;
    margin: 0;
    font-family: giromail;
    overflow-x: hidden;
    text-align: center;
}

a { color: inherit;}
a:hover {
    color: inherit; 
    text-decoration: none;
    cursor: pointer;
}

a:focus, textarea:focus, button:focus, input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.none {
    display: none;
}
.noneF {
    display: none !important;
}

.button {
    padding: 6px 30px;
    border: none;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: var(--g);
    color: white;
}
.img {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}
input[type=number] {
    -moz-appearance:textfield;
}
input[type="date"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
}

.all-high {
    min-height: 100vh;
}


/****************************** SCROLLBAR *********************************/
/* Size */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	background-color: transparent;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.8); */
    border-radius: 2px;
    background-color: rgb(105, 105, 105);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--b);
    background-color: rgb(185, 185, 185);
}