.tw-page-headline-wrapper {
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--secondary-background-color);
}

.tw-page-headline {
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
  position: relative;
}

.mobile .headline-box {
  text-align: center;
}

.mobile .tw-page-headline {
  display: inline-block;
}

h1.tw-page-headline::after {
  content: "";
  background-color: var(--accent-color-primary);
  width: 70px;
  height: 3px;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.mobile h1.tw-page-headline::after {
  display: none;
}
/**
*  Contenbox
*/

.contentbox-headline-box {
  font-family: Arial;
	padding: 12px 20px;
	background-color: #FFFFFF;
	border-top: 4px solid #d2d6de;
	border-radius: 3px 3px 0 0;
	color: #444444;
	font-size: 19pt;
}

.contentbox-headline-box.nopdng {
	padding: 0px;
}

.contentbox {
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
	border-radius: 3px 3px 3px 3px;
	background-color: #FFFFFF;
	overflow: hidden;
}

.contentbox-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 10px;
}

.loader-wrapper {
	display: none;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #555;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 1.5s linear infinite; /* Safari */
  animation: spin 1.5s linear infinite;
	display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes fadeIn {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

@-webkit-keyframes fadeInTop {
	0% {
		opacity:0;
		-webkit-transform:translateY(0);
	}
	100% {
		opacity:1;
		-webkit-transform:translateY(20px);
	}
}
