:root {
	--black: #000;


  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

html{
	height: 100%;
	overflow-x: hidden;
}

body {
	color: var(--black);
	position: relative;
	font-family: 'Helvetica', sans-serif;
	font-size: 14px;
	font-weight: 400;
	border: 0 none;
	-webkit-font-smoothing: antialiased;
}

* {
	box-sizing: border-box;
}

img {
	height: auto;
	width: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

label {
	font-size: 1.2em;
}

a {
	color: var(--blue);
	transition: color	0.5s ease-in-out;
}

a:hover {
  color: var(--green);
  text-decoration: underline;
}

#wraper {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.transparent {
	opacity: 0;
	visibility: hidden;
}

.uppercase {
	text-transform: uppercase;
}

.capitalized {
	text-transform: capitalize;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.justify {
	text-align: justify;
}

.underline {
	text-decoration: underline;
}

.letter-list {
	list-style: lower-alpha;
}

.disc-list {
	list-style: disc;
}

/******************** Shared ********************/
