@charset "UTF-8";
/* CSS Document */

:root {
    --text-color: hsl(0deg 0% 100%);
    --link-color: hsl(40deg 100% 50%);
    --link-color-hover: hsl(60deg 100% 50%);
    --title-color: hsl(0deg 0% 100%);
    --grey: hsl(0deg 0% 50%);
    --light-grey: hsl(0deg 0% 80%);
    --page-width: 1024px;
    --pagehead-height: 20vw;
    --pagehead-color: hsl(0deg 0% 0%);
    --text-font: 'Open Sans', sans-serif;
    --title-font: 'Open Sans', sans-serif;
    --gap: 1rem;
    --doublegap: 2rem;
}


* {
	margin:0px;
	padding:0px;
	border:none;
	box-sizing: border-box;
}


.clear {
    clear: both;
}
.vihi {
    position: absolute;
    display: block;
    margin: -1px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
html {
    font-size: 75%;
}
body {
    width: 100%;
    font-family: var(--text-font);
    font-weight: 300;
    font-size: calc(1.3vw + 0.8rem);
    line-height: calc(1.7vw + 1.1rem);
    background-color: black;
    color: var(--text-color);
}

header {
    background: var(--pagehead-color);
    height: var(--pagehead-height);
    width: 100%;
    display: flex;
    justify-content: space-between;
}
main{
    display: block;
    padding: 4rem 2rem;
}

optgroup
{
    padding-top:3px;
    padding-bottom:3px;
}
    
table {
    border-collapse:collapse;
}
th, td {
    text-align:left;
    vertical-align:top;
}
p {
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
p + p {
	padding-top:16px;
	}
#content table {
	width: 100%;
}
#content tr:nth-of-type(even) {
    background: rgba(0,0,0,0.1);
}
thead tr {
    background: var(--link-color);
}
th {
    font-weight: bold;
    white-space: nowrap;
}
td, th {
    padding-left: 10px;
    padding-right:10px;
}
td:first-of-type {
    padding-left: 0;
}
td:last-of-type {
    padding-right: 0;
}
dl {
}
dt {
    float: left;
    clear: left;
    width: 110px;
    font-size: 12px;
    color: var(--grey);
    padding-right: 9px;
}
dd {
    font-size: 12px;
}
.align-center, .text-center {
    text-align: center;
}

/** Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    font-style: normal;
    font-weight: 600;
    font-family: var(--title-font);
    clear: left;
}
header h1,
header h2,
header h3,
header h4,
header h5,
header h6 {
    color: white;
    margin-top: 0;
}

h1 {
    font-size: 6.8vw;
    line-height: var(--pagehead-height);
    padding-right: 2vw;
}
h2 {
    margin: 80px 0px 20px 0px;
    font-size: calc(2vw + 20px);
    line-height: calc(2.5vw + 25px);
}
h3 {
    margin: 30px 0px 8px 0px;
    font-size: calc(1.3vw + 12px);
    line-height: calc(1.7vw + 16px);
    color: hsl(40deg 100% 50%);
}
h4 {
    font-size: calc(1.6vw + 15px);
    line-height: calc(2vw + 20px);
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 300;
    font-style: italic;
}
h5, h6 {
    font-size: 18px;
    line-height: 20px;
}
hr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--light-grey);
}
ul {
    margin-inline-start: 18px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
/** Links and Buttons */
a {
	text-decoration:none;
	color: var(--link-color);
    transition: 1s;
	}

a:hover {
	text-decoration:none;
	color: var(--link-color-hover);
    transition: 0s;
	}
button, .button {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 3rem 3rem 3rem 0;
    padding: 1rem 3rem;
    background: var(--link-color);
    border: 1px solid var(--link-color);
    border-radius: 0.4rem;
    transition-duration: 0.3s;
    cursor: pointer;
    user-select: none;
}
button:hover, .button:hover {
    background-color: white;
    color: var(--link-color);
}
button.icon, a.icon, .icon {
    height: 2rem;
    width: 2rem;
    margin: 1rem;
    line-height: 2rem;
    padding: 0;
    border-radius: 0;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    color: var(--dark-grey);
    font-size: 2rem;
    transition-duration: 0.3s;
    transform-origin: center;
}
button.icon:hover, a.icon:hover {
    background-color: transparent;
    transform: scale(1.2);
    color: var(--link-color);
}
button.btn-secundary, .button.btn-secundary {
    background-color: var(--grey);
    border-color: var(--grey);
}
button.btn-secundary:hover, .button.btn-secundary:hover {
    background-color: white;
    color: var(--grey);
}
button[disabled="disabled"] {
    opacity: 0.4;
    cursor: not-allowed;
}
button.success {
    background-color: var(--success-text-color);
    border-color: var(--success-text-color);
    opacity: 1;
    color: white;
}

/* forms */
.formfield {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
div.checkbox label, div.radio label {
    margin-top: 0px;
    margin-bottom: 1px;
}
input, 
select, 
textarea {
    border-width: 1px 1px 1px 5px;
    border-color: var(--light-grey);
    border-style: solid;
    padding: 5px 5px;
    font-size: 1rem;
    font-family: var(--text-font);
}

input[required], 
select[required], 
textarea[required],
input[data-validation*=required],
input.required,
select.required,
textarea.required {
    border-left-color: var(--link-color);
}
input[type=text], 
input[type=tel], 
input[type=date], 
input[type=datetime-local], 
input[type=email], 
input[type=url], 
input[type=number], 
input[type=password], 
input[type=submit], 
select, 
textarea {
    width: 100%;
    transition-duration: 3s;
    transition-property: background-color,border-color,color;
}
input[type=number] {
    text-align: right;
}
input[type=submit][disabled],
button[disabled] {
    opacity: 0.4 !important;
    cursor: not-allowed;
}

fieldset {
    margin-bottom: 40px;
}
p.error-msg {
    color: #c00;
    font-weight: bold;
    background-color: #fee;
    border: 1px solid #c00;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}
p.error-msg > em {
    font-size: 3rem;
    font-style: normal;
}


