/* main elements */
body{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #CCCBDA;
  font-weight: 400;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
*:focus,
*:active{
  outline: none !important;
}
h1{
  font-family: DejaVu Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 100px;
  line-height: 90px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: left;
  color: #56F5ED;
}
@media (max-width: 767px){
	h1{
		font-size: 42px;
		line-height: 46px;
	}
}
h2{
  font-family: DejaVu Serif;
  font-size: 72px;
  line-height: 74px;
  color: #CCCBDA;
  text-transform: uppercase;
}
@media (max-width: 767px){
	h2{
		font-size: 32px;
		line-height: 36px;
	}
}
h3{
  font-family: Roboto Mono;
  font-size: 26px;
  line-height: 36px;
  color: #CCCBDA;
  font-weight: normal;
  margin-bottom: 10px;
}
a{
  color: #ee1c25;
}
a:hover{
  text-decoration: none;
  color: #cc2026;
}
p{
	margin: 0 0 5px;
}
ul{
	margin-left: 0px;
	margin: 0 0 0 18px;
	padding: 0;
	list-style-type: circle;
}
ul li{
	margin-bottom: 0px;
}
ul li::before{
	display: inline-block;/*
	content: '- ';
	margin-right: 10px;*/
}
ol{
	margin: 0 0 0 32px;
}
/* footer to bottom */
.wrapper_main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex: 0 0 auto;
  height: auto;
  background: none;
  border-top: none;
  padding-top: 0;
}
/* form elements */
.form-group {
    margin-bottom: 15px;
}
input[type="text"]{
	border: 3px solid #dcdcdc;
	line-height: 34px;
	height: 40px;
	padding: 0 10px;
	border-radius: 3px;
	background: none;
}
textarea{
	border: 3px solid #dcdcdc;
	line-height: 34px;
	padding: 10px;
	border-radius: 3px;
	height: 120px;
	background: none;
}
input[type="text"]:focus,
input[type="text"]:active,
textarea:focus,
textarea:active{
  border: 3px solid #dcdcdc;
  box-shadow: none;
  background: none;
}
.button{
  line-height: 40px;
  height: 40px;
  color: #fff;
  background: #ee1c25;
  padding: 0 15px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
  border: none;
}
.button:hover{
	background: #cc2026;
	color: #fff;
	box-shadow: none;
	border: none;  
}
.form-check{
	position: relative; /* one checkbox item parent */
	margin-bottom: 10px;
}
.form-check-input,
input[type="checkbox"]{
  position: absolute;
  z-index: -1;
  opacity: 0;
}
input[type="checkbox"] + label{
	padding-left: 15px;
	display: inline-block;
	margin: 0;
}
.form-check-label::before,
input[type="checkbox"] + label::before{
  border-radius: 3px;
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #dcdcdc solid 2px;
}
.form-check-label::after,
input[type="checkbox"] + label::after{
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background: no-repeat 50% / 50% 50%;
}
.form-check-input:checked ~ .form-check-label::before,
input[type="checkbox"]:checked ~ label::before{
  color: #ee1c25;
  border-color: #ee1c25;
  background: #ee1c25;
}
.form-check .form-check-input:checked ~ .form-check-label::after,
input[type="checkbox"]:checked ~ label::after{
  border: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f00c";
  vertical-align: middle;
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 18px;
}
.form-check-input:focus:not(:checked) ~ .form-check-label::before,
input[type="checkbox"]:focus:not(:checked) ~ label::before{
  border-color: #ee1c25;
  box-shadow: none;
}
.form-check-input:focus ~ .form-check-label::before,
input[type="checkbox"]:focus ~ label::before{
  border-color: #ee1c25;
  box-shadow: none;
}
input[type="radio"]{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	z-index: -1;
}
input[type="radio"] + label{
	padding-left: 35px;
	margin-bottom: 0;
}
input[type="radio"] + label::before{
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #dcdcdc;
    content: "";
    border-radius: 50%;
    background: none;
}
input[type="radio"]:checked ~ label::before{
	border: 2px solid #ee1c25;
}
input[type="radio"] + label::after{
	position: absolute;
    display: none;
    left: 7px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: $main_red;
    content: '' !important;
}
input[type="radio"]:checked ~ label::after{
	display: block;
}
input[type="search" i]::-webkit-search-cancel-button{
  display: none !important;
}












