@charset "utf-8";

/* montserrat-500 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/montserrat-v25-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/montserrat-v25-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/montserrat-v25-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-900 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: local(''),
       url('../fonts/montserrat-v25-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/montserrat-v25-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
	--curry: 235,193,17;
	--lila: 174,43,182;
	--schwarz: 0,0,0;
	--weiss: 255,255,255;
	--alt-font-family: 'Montserrat', cursive;
	--base-font-family: 'Montserrat', sans-serif;
}

.alt-font {
	font-family: var(--alt-font-family);
	font-weight: 900;
}

.main-font {
	font-family: var(--base-font-family);
	font-weight: 500
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 25px;
	padding: 0;
	letter-spacing: 0;
	font-weight: 900;
	text-transform: uppercase;
}

.text-trennung {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
	-webkit-hyphenate-limit-lines: 5;
	-moz-hyphenate-limit-lines: 5;
	-ms-hyphenate-limit-lines: 5;
	hyphenate-limit-lines: 5;
	-webkit-hyphenate-limit-chars: 10;
	-moz-hyphenate-limit-chars: 10;
	-ms-hyphenate-limit-chars: 10;
	hyphenate-limit-chars: 10;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.text-lila, .btn-link.text-lila, a.text-lila-hover:hover {
	color: rgba(var(--lila),1);
}

.text-curry, .btn-link.text-curry, a.text-curry-hover:hover {
	color: rgba(var(--curry),1);
}

.headline-styled {
	background-size: 100% 100%;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding-left: 10px;
	padding-right: 10px;
}

.headline-styled-white {
	background: linear-gradient(transparent, transparent 50%, rgba(var(--weiss),1) 0, rgba(var(--weiss),1) 100%, transparent 0) no-repeat;
}

.headline-styled-black {
	background: linear-gradient(transparent, transparent 50%, rgba(var(--schwarz),1) 0, rgba(var(--schwarz),1) 100%, transparent 0) no-repeat;
}

.headline-styled-lila {
	background: linear-gradient(transparent, transparent 50%, rgba(var(--lila),1) 0, rgba(var(--lila),1) 100%, transparent 0) no-repeat;
}

.headline-styled-curry {
	background: linear-gradient(transparent, transparent 50%, rgba(var(--curry),1) 0, rgba(var(--curry),1) 100%, transparent 0) no-repeat;
}

.bg-lila {
	background-color: rgba(var(--lila),1);
}

.bg-lila-10 {
	background-color: rgba(var(--lila),0.1);
}

.bg-curry {
	background-color: rgba(var(--curry),1);
}

.bg-curry-10 {
	background-color: rgba(var(--curry),0.2);
}

.bg-shamrock-green { 
	background-color: #2ed47c; 
}

.border-color-lila {
	border-color: rgba(var(--lila),1) !important;
}

.border-color-lila {
	border-color: rgba(var(--lila),1) !important;
}

.btn.btn-lila {
	background: rgba(var(--lila),1);
	border-color: rgba(var(--lila),1);
	color: rgba(var(--weiss),1);
}
.btn.btn-lila:hover, .btn.btn-lila:focus {
	background: rgba(var(--lila),0.8);
	border-color: rgba(var(--lila),1);
}

.btn.btn-curry {
	background: rgba(var(--curry),1);
	border-color: rgba(var(--curry),1);
	color: rgba(var(--weiss),1);
}
.btn.btn-curry:hover, .btn.btn-lila:focus {
	background: rgba(var(--curry),0.8);
	border-color: rgba(var(--curry),1);
}

.shadow-3d {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.shadow-3d:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}

header a.logo img {
	max-height: 40px;
}

header .left-nav .sidebar-part1 a.logo img {
	max-height: inherit;
}

.logo-holder img {
	max-height: 40px;
}

/* scroll to top */
.scroll-top-arrow, .scroll-top-arrow:focus {
	color: #fff;
	background: #000;
	line-height: 40px;
	display: none;
	height: 40px;
	width: 40px;
	padding: 0;
	position: fixed;
	left: 0px;
	text-align: center;
	text-decoration: none;
	top: 91%;
	z-index: 10006;
}

.scroll-top-arrow:hover {
	background: #878787;
	opacity: .8;
	color: #fff;
	border-color: var(--base-color);
}

.scroll-top-arrow i {
	line-height: 30px;
	position: relative;
}

/* File-Upload-Formular */

.custom-file-upload-hidden {
	display: none;
	visibility: hidden;
	position: absolute;
	left: -9999px;
}

.custom-file-upload {
	display: block;
	width: auto;
}

.custom-file-upload label {
	display: block;
	margin-bottom: 5px;
}

.file-upload-wrapper {
	position: relative;
	margin-bottom: 0.5rem;
	display: table;
	width: 100%;
}

.file-upload-input {
	width: calc(100% - 175px);
	background-color: white;
	border: none;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	float: left;
	height: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-bottom: 0;
}

.file-upload-button {
	cursor: pointer;
	display: inline-block;
	color: white;
	padding: 11px;
	border: none;
	margin-left: -2px;
	background-color: rgba(var(--schwarz),1);
	float: left;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	width: 177px;
	height: 50px;
	white-space: nowrap;
	line-height: 1;
}

.file-upload-button:hover {
	background-color: rgba(var(--curry),1);
}

/* Checkbox Radiobuttons Selectboxes */

.control-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.control {
	display: block;
	position: relative;
	padding-left: 45px;
	margin-bottom: 15px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control__indicator {
	position: absolute;
	top: 8px;
	left: 0;
	height: 30px;
	width: 30px;
	background: #fff;
	border: 0;
}

.control--radio .control__indicator {
	border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #fff;
}

.control input:checked ~ .control__indicator {
	background: rgba(var(--schwarz),1);
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: rgba(var(--schwarz),1);
}

.control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}

.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.control input:checked ~ .control__indicator:after {
	display: block;
}

.control--checkbox .control__indicator:after {
	left: 10px;
	top: 3px;
	width: 10px;
	height: 20px;
	border: solid rgba(var(--weiss),1);
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
	left: 7px;
	top: 7px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
}

 /* Customize the label (the container) */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border: 2px solid #000;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #c0c0c0;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #000;
}

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

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .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);
} 

.mail:before {
	content: 'thomas@radiowagner.de';
	white-space: pre;
}