:root {
	--clrWhite: white;
	--clrBlack: hsl(220, 50%, 10%);
	--clrGrayDark: hsl(220, 20%, 40%);
	--clrGray: hsl(220, 20%, 60%);
	--clrGraySlate: hsl(220, 20%, 80%);
	--clrGrayLight: hsl(220, 20%, 90%);
	--clrGrayLight50: hsla(220, 20%, 90%, 50%);
	--clrGrayLight25: hsla(220, 20%, 90%, 25%);
	--clrRed: hsl(345, 100%, 50%);
	--clrBlue: hsl(220, 80%, 50%);
	--clrPurple: hsl(270, 80%, 50%);
	--clrGreen: hsl(160, 100%, 35%);
	--clrYellow: hsl(50, 100%, 55%);
	--clrPink: hsl(320, 90%, 65%);
}

.bg_green {
  background-color: var(--clrGreen);
}
.bg_blue {
  background-color: var(--clrBlue);
}
.bg_red {
  background-color: var(--clrRed);
}
.bg_purple {
  background-color: var(--clrPurple);
}
.bg_yellow {
  background-color: var(--clrYellow);
}
.bg_pink {
  background-color: var(--clrPink);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	color: var(--clrBlack);
	font-family: "Muller", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Noto Sans, Ubuntu, Droid Sans, Helvetica Neue, sans-serif;
	line-height: 1.75;
	font-size: 14px;
	margin: 0;
	text-rendering: geometricPrecision;
}

section {
	display: flex;
	flex-direction: row;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 16px;
	line-height: 1.5;
}

h1 {
	font-size: clamp(1.5em, 4vw, 30px);
	font-weight: 500;
}
h2 {
	font-size: clamp(1.4em, 4vw, 26px);
	font-weight: 500;
}
h3 {
	font-size: clamp(1.3em, 4vw, 22px);
	font-weight: 500;
}
h4 {
	font-size: clamp(1.2em, 4vw, 18px);
	font-weight: 500;
}
h5 {
	font-size: clamp(1.1em, 4vw, 16px);
	font-weight: 500;
}
h6 {
	font-size: 1em;
	font-weight: 500;
}

.sm {
	line-height: 1.5;
	font-size: 12px;
}

a {
	text-decoration: none;
	color: var(--clrBlue);
}

p {
	margin: 1em 0;
}
/*
	content a {
	color: var(--clrRed);
    border-bottom: 1px dashed var(--clrRed);
	}
	content a:hover {
	border-bottom: 1px solid var(--clrRed);
}*/

img {
	width: 100%;
	height: auto;
	display: block;
}

hr {
	border-top: 1px dashed var(--clrGrayLight);
}

hr.hr2 {
	margin: 2em 0;
}

/* List styles */
content ul,
content ol {
	padding: 0;
}
/*
content ul ul,
content ul ol,
content ol ol,
content ol ul {
	width: 100%;
    display: inline-table;
}*/

content ul p,
content ol p {
	margin-top: 0;
	margin-bottom: 0.5em;
}

content ul li,
content ol li{
	list-style: none;
	display: table;
	    width: 100%;
}

content ul li:not(:last-child),
content ol li:not(:last-child) {
	margin-bottom: 1em;
}

content ul li ul li:first-child,
content ol li ul li:first-child,
content ol li ol li:first-child,
content ol li ul li:first-child {
	margin-top: 1em;
}

content ol {
	counter-reset: section;
}

content ul > li:before {
	content: "\2022\2007";
	font-family: monospace;
	display: table-cell;
	width: 0%;
}

content ol > li:before {
	font-weight: bold;
	counter-increment: section;
	content: counters(section, ".") "\2007";
	font-variant-numeric: tabular-nums;
	display: table-cell;
	width: 0%;
}


/* Margin bottom */
.mb1, .my1 {
	margin-bottom: 1em;
}
.mb2, .my2 {
	margin-bottom: 2em;
}

/* Margin top */
.mt1, .my1 {
	margin-top: 1em;
}
.mt2, .my2 {
	margin-top: 2em;
}

/* Group styles for radio/checkbox/input */
::placeholder {
	color: var(--clrGray);
}

input,
select,
textarea {
	color: var(--clrBlack);
	border: 1px solid transparent;
	border-radius: 3px;
	background: var(--clrGrayLight50);
	outline: none;
	box-sizing: border-box;
	font-family: "Muller", sans-serif;
	line-height: 1.5;
	transition: all 0.1s ease-out;
}

input:focus,
textarea:focus {
	color: var(--clrBlack);
	border: 1px solid var(--clrGrayLight);
	background: transparent !important;
}

input:focus,
input:not(:placeholder-shown),
textarea:focus,
textarea:not(:placeholder-shown) {
	color: var(--clrBlack);
	border: 1px solid var(--clrGrayLight);
	background: transparent !important;
}

input:focus,
textarea:focus {
	border: 1px solid var(--clrGray);
}

input[type="text"] {
	height: 50px;
	padding: 0 15px;
}

textarea {
	padding: 15px;
	width: 100%;
	resize: none;
}

/*** Select styles ***/
select {
	height: 50px;
	padding: 0 15px;
	color: var(--clrBlack);
}

option {
	color: var(--clrBlack);
	appearance: none;
}
option[value=""] {
	color: var(--clrGray);
}
select:invalid {
	color: var(--clrGray);
}

/* Radio */
.radio,
.checkbox,
.switch {
	display: flex;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"],
.switch input[type="checkbox"] {
	height: initial;
	width: initial;
	margin: 0;
	padding-right: 1em;
	appearance: none;
	outline: none;
	border: none;
	cursor: pointer;
	position: relative;
}

.radio input[type="radio"] + label,
.checkbox input[type="checkbox"] + label,
.switch input[type="checkbox"] + label {
	user-select: none;
	cursor: pointer;
}

.radio input[type="radio"]:before {
	content: "";
	display: inline-block;
	height: 18px;
	width: 18px;
	border: 1px solid var(--clrGrayLight);
	border-radius: 50%;
	background-color: white;
	box-sizing: border-box;
	transition: all 0.1s ease-out;
}

.radio input[type="radio"]:not(:disabled):not(:checked):hover:before {
	border-color: var(--clrBlack);
}

.radio input[type="radio"]:not(:disabled):active:before {
	background-color: var(--clrBlack);
	border-color: var(--clrBlack);
}

.radio input[type="radio"]:focus:before,
.checkbox input[type="checkbox"]:focus:before {
	box-shadow: 0 0 0 0.2em hsla(220, 100%, 20%, 10%);
}

.radio input[type="radio"]:checked:before {
	border: 4px solid var(--clrBlack);
}

.radio input[type="radio"]:disabled:before,
.checkbox input[type="checkbox"]:disabled:before {
	background-color: var(--clrGrayLight);
}

.radio input[type="radio"]:disabled + label,
.checkbox input[type="checkbox"]:disabled + label,
.radio input[type="radio"]:disabled,
.checkbox input[type="checkbox"]:disabled {
	cursor: not-allowed;
}

/* Checkbox styles */
.checkbox input[type="checkbox"]:before {
	content: "";
	display: block;
	height: 18px;
	width: 18px;
	border: 1px solid var(--clrGrayLight);
	border-radius: 3px;
	background-color: white;
	box-sizing: border-box;
	transition: all 0.1s ease-out;
	background-size: 12px, 12px;
	background-position: center;
	background-repeat: no-repeat;
}

.checkbox input[type="checkbox"]:not(:disabled):not(:checked):hover:before {
	border-color: var(--clrGray);
}

.checkbox input[type="checkbox"]:checked:before {
	border-color: var(--clrBlack);
	background-color: var(--clrBlack);
	background-image: url(https://svgshare.com/i/U22.svg);
}

.switch input[type="checkbox"]:before {
	content: "";
	height: 20px;
	width: 40px;
	background-color: var(--clrGraySlate);
	border-radius: 20px;
	display: block;
	transition: all 0.1s ease-out;
}

.switch input[type="checkbox"]:after {
	content: "";
	position: absolute;
	height: 14px;
	width: 14px;
	margin: 3px;
	background-color: white;
	border-radius: 50%;
	transition: all 0.1s ease-out;
	left: 0;
	top: 0;
}

.switch input[type="checkbox"]:checked:before {
	background-color: var(--clrGreen);
}

.switch input[type="checkbox"]:checked:after {
	left: 20px;
}

code {
	color: var(--clrGrayDark);
    background-color: var(--clrGrayLight25);
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 0 3px;
}

.table_s1 {
	width: 100%;
	border-collapse: collapse;
}

table.table_s1 th,
table.table_s1 td {
  border: 1px solid var(--clrBlack);
  padding: .5em;
}

