body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
}

.logo {
    width: 230px;
    margin-top: 20px;
}

.breadcrumb {
    background-color: #171717;
    border-bottom: 5px solid #CCC;
    border-top: 5px solid #384045;
    margin-bottom: 35px;
    min-height: 50px;
    padding: 0;
    padding: 20px 0;
    position: relative;
    text-align: left;
    margin-top: 20px;
}

.breadcrumb__pages__item {
    display: inline-block;    
    color: #cccccc;
    margin-right: 5px;
}

.breadcrumb__pages__item--active {  
    font-weight: 700;
}


.breadcrumb__pages {
    list-style: none;  
    padding-left: 0px;  
    margin-bottom: 0px;
}

.link {
  color: #ff7000; 
}

.link:hover {
  color: #ff7d1a;
  text-decoration: underline;
}

.breadcrumb__pages__heading {
    font-size: 2.6em;
    border-bottom: 5px solid #ff7000;
    color: #FFF;
    display: inline-block;
    font-weight: 300;
    margin: 0 0 -25px;
    min-height: 37px;
    line-height: 48px;
    padding: 0 0 17px;
    position: relative;
}

.form__heading {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 25px;
}

.form__heading--info {
    font-size: 19px;
    font-weight: 300;
    color: black;
}

.form__heading--big {
    font-size: 28px;
    margin-bottom: 0px;
}

.form__submit-button {
    background:#ff7000;
    color: white;
    border: 0;
    border-radius: 10px;
    font-size: 20px;
    padding: 20px 30px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.form__submit-button:hover {
    background:#ff7d1a;
    transition: ease-in-out 0.1s;
}

.form__heading--thx {
    font-size: 40px;
    margin-top: 150px;
    margin-bottom: 20px;
}

textarea {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  padding: 20px;
  font-size: 17px;
  outline: 0;
}

/* Checkbox */
.form__checkbox-box {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .form__checkbox-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: solid 1px #8f8e8e;
    background-color: #eee;
    transition: ease-in-out 0.2s;
  }
  
  .form__checkbox-box:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  .form__checkbox-box input:checked ~ .checkmark {
    background-color: #ff7000;
    border: solid 1px #ff7000 !important;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .form__checkbox-box input:checked ~ .checkmark:after {
    display: block;
  }
  
  .form__checkbox-box .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/* Radiobutton */

/* The container */
.form__radiobutton-box {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.form__radiobutton-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.form__radiobutton-box:hover input ~ .circle {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.form__radiobutton-box input:checked ~ .circle {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.circle:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form__radiobutton-box input:checked ~ .circle:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form__radiobutton-box .circle:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}


@media only screen 
and (max-device-width : 1024px)  {
    .form__heading--info {
        font-size: 17px;
    }
}
