/* global.css */

* {
    padding: 0;
    border: 0;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

body {
    /* Child divs will be handling the overflow */
    overflow: hidden;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    font-size: 16px;
    padding: 0;
    margin: 0;

    /* STATIC COLORS. ONE DAY THIS WILL BE DYNAMIC */
    background-color: #EEF1EF;

}

#root {
    height: 100vh;
    width: 100vw;
}

/* Style of ScrollBar */
::-webkit-scrollbar-thumb:horizontal{
    display: none;
}

button {
    background: transparent;

    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;

    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
    appearance: none;
}

button, a, .tab-switch-container, .ellipse, input[type=radio], input[type=checkbox] {
    cursor: pointer;
}

a {
    color: #1DDA91;
}
a:hover {
    font-weight: 500;
}
a:active, a:visited {
    color: #00BCB0;
}

h1 {
    font-size: 2em;
    font-weight: 700;
    font-stretch: semi-condensed;

    /* STATIC COLORS. ONE DAY THIS WILL BE DYNAMIC */
    color: #3F5A52;
    text-shadow: 0.05em 0.1em 0.25em #6E7A7270;
}

h2 {
    font-weight: 700;
    font-stretch: semi-condensed;

    /* STATIC COLORS. ONE DAY THIS WILL BE DYNAMIC */
    color: #3F5A52; ;
    text-shadow: 0.05em 0.1em 0.25em #6E7A7270;
}


/* Remove excess padding and border in Firefox 4+ */
&::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* width */
::-webkit-scrollbar {
	width: 0.3em;
	border-radius: 50px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* ?????? */
/* TODO : WILL HAVE TO BE MOVED ONCE THE SLIDER CLASS "FOCUSED" ON TAB CONTENT IS FIXED */
/* div.objects-tabs + div >div >div {
    height: 0;
    max-height: 0;
    overflow: hidden;
}
div.objects-tabs + div .slide-0 >div:nth-child(1) {
    height: min-content;
    max-height: min-content;
}
div.objects-tabs + div .slide-1 >div:nth-child(2) {
    height: min-content;
    max-height: min-content;
}
div.objects-tabs + div .slide-2 >div:nth-child(3) {
    height: min-content;
    max-height: min-content;
}
div.objects-tabs + div .slide-3 >div:nth-child(4) {
    height: min-content;
    max-height: min-content;
}
div.objects-tabs + div .slide-4 >div:nth-child(5) {
    height: min-content;
    max-height: min-content;
} */
/* END OF TAB QUICKFIX */

input {
    caret-color: #00BCB0 !important;
}

