@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
	padding: 0;
	margin: 0;
    box-sizing: border-box;
	transition: all .3s ease-in-out;
	font-optical-sizing: auto;
}

html {
	margin: 0;
	padding: 0;
	background: linear-gradient(to bottom,rgba(56,0,21,1) 0%,rgba(0,0,0,1) 100%);
}

body {
	color: #444;
	font-family: "Open Sans", sans-serif;
	line-height: 1.4em;
	margin: 0;
	padding: 0;
	font-size: 100%;
}
img{
	border:none;
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
a,
a:link,
a:active,
a:visited {
	text-decoration:none;
	color: #BA0046;
}

a:hover {
	text-decoration:underline;
	color: #000;
}

#out {
	width: 100%;
	max-width: 800px;
	min-width: 320px;
	padding: 20px;
	margin: 0 auto;
	text-align: left;
	background-color: #fff;
	z-index: 0;
	position: relative;
	border-top: 1px dotted #ccc;
}

#header {
	width: 100%;
	max-width: 800px;
	min-width: 320px;
	height: auto;
	max-height: 200px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
	z-index: 0;
	position: relative;
}

#header img {
	width: 100%;
	height: auto;
	max-height: 200px;
}

#content {
	width: 100%;
	max-width: 740px;
	padding: 0;
	margin: 0 auto;
	text-align: left;
	position: relative;
}
#content img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}
.clear {	
	clear: both;
	padding: 0px;
	margin: 0px;
	font-size: 0px;
	height: 0px;
	width: 0px;
}

#footercontent {
	width: 100%;
	padding: 0;
	font-size: 0.8em;
	line-height: 1.8em;
	clear: both;
	padding: 10px 0 0 0;
	margin: 0;
	text-align: center;
	color: #555;
	background-color: #fff;
	border-top: 1px dotted #ccc;
}

#footercontent a,
#footercontent a:link,
#footercontent a:active,
#footercontent a:visited {
	text-decoration:underline;
	color: #555;
}

#footercontent a:hover {
	text-decoration:none;
	color: #555;
}

#navline {
	padding: 3px;
	background: #fafafa;
	border-top: 1px dotted #BA0046;
	border-bottom: 1px dotted #BA0046;
	margin: 0 0 20px 0;
	text-align: center;
}

#navline_top ul,
#navline ul  {
	list-style:none;
	margin:0;
	padding:0;
	font-size: 0.8em;
}

#navline ul li{
	text-align:center;
	display: inline-block;
	padding: 0;
	margin: 5px 0;
}

#navline ul li a {
	margin: 0;
	padding: 2px 5px 2px 5px;
	font-weight: bold;
	color: #BA0046;
	text-decoration: none;
}

#navline ul li  a:hover {
	margin: 0;
	padding: 2px 5px 2px 5px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	background-color: #BA0046;
}

/* = Top Navline START
-------------------------------------------------------------- */
#navline_top {
	position: sticky;
	top: 0;
	width: 100%;
	max-width: 800px;
	z-index: 999;
	margin: 0 auto;
	background: linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(240,240,240,1) 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	border-bottom: 1px solid #bbb;
	height: 64px;
}
.logo {
    display: inline-block;
    margin: 10px 10px 0 10px;
	width: 100%;
	height: auto;
	max-width: 150px;
}
.logo img {
    display: block;
	width: 100%;
	height: auto;
}
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
	top: 64px;
}
.menu {
	background: linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(240,240,240,1) 100%);
	box-shadow: 0 0 10px rgba(0,0,0,.8);
    transition: max-height .5s ease-out;
}
.menu a {
    display: block;
	margin: 0;
    padding: 15px 5px;
	text-align: center;
	font-weight: bold;
	font-size: 1.4em;
	border-top: 1px solid #eaeaea;
	text-transform: uppercase;
}
.menu a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #BA0046;
}
.nav{
    max-height: 0;
	background-color: rgba(0,0,0,.8);
}
.hamb{
    cursor: pointer;
    float: right;
    padding: 30px 20px;
}/* Style label tag */

.hamb-line {
    background: #666;
    display: block;
    height: 3px;
    position: relative;
    width: 24px;
	border-radius: 10px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: #666;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
	border-radius: 10px;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}
@media (min-width: 768px) {
	#navline_top {
		height: auto;
	}
	.logo {
		display: none;
	}
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        width: 100%;
    }
	.menu {
        position: relative;
		margin: 0 auto;
        width: 100%;
		text-align:center;
	}
    .menu li{
		text-align: center;
		display: inline-block;
		padding: 0;
		margin: 5px 0;
    }
	.menu li a {
		margin: 0;
		padding: 2px 6px;
		font-weight: bold;
		color: #BA0046;
		text-decoration: none;
		font-size: .95em;
		border-top: none;
	}

	.menu li  a:hover {
		color: #fff;
		text-decoration: none;
		background-color: #BA0046;
	}
    .hamb{
        display: none;
    }
}
/* = Top Navline ENDE
-------------------------------------------------------------- */

h1  {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-size: 1.6em;
	line-height: 1.2em;
	color: #BA0046;
	font-family: "Nunito", sans-serif;
	font-weight: 800;
}

h2, h3, h4, h5, h6, h7  {
	display: flow-root;
	margin: 0;
	margin-bottom: 10px;
	padding: 0 0 0 8px;
	font-size: 1.4em;
	line-height: 1.2em;
	font-family: "Nunito", sans-serif;
	font-weight: 800;
	border: 0;
	border-left: 4px solid #BA0046;
}
hr {
	border: 0px;
	border-top: 1px;
	border-top-color: #ccc;
	border-style: dotted;
	height: 0;
	padding: 0 0 5px 0;
	clear: both;
}

mark {
	margin: 0 -0.4em;
	padding: 0.1em 0.4em;
	border-radius: 0.8em 0.3em;
	background: transparent;
	background-image: linear-gradient(
		to right,
		rgba(255, 225, 0, 0.1),
		rgba(255, 225, 0, 0.4) 4%,
		rgba(255, 225, 0, 0.2)
	);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.mb40 {
	margin-bottom: 40px;
}
p.textbox a:link,
p.textbox2 a:link,
p.centerbox a:link {
	text-decoration: underline;
	text-underline-offset: 2px;
}
p.textbox a:hover,
p.textbox2 a:hover,
p.centerbox a:hover {
	text-decoration: none;
}
p.textbox,
p.centerbox {
	padding: 0;
	margin: 0 0 20px 0;
}
p.textbox {
	text-align: justify;
}
p.centerbox {
	text-align: center;
}

p.textbox2 {
	padding: 10px 0;
	margin: 0;
	text-align: justify;
	font-size: 0.9em;
}

.eintrag {
	padding: 15px;
	padding-left: 45px;
	margin: 0 0 10px 0;
	clear: both;
	position: relative;
	background-color: #fdfdfd;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	-moz-box-shadow: 1px 1px 5px #ccc;
	-webkit-box-shadow: 1px 1px 5px #ccc;
	box-shadow: 1px 1px 5px #ccc;
}

.eintrag .top {
	display: block;
	text-align: left;
}

.eintrag a.toplink,
.eintrag a.toplink:link,
.eintrag a.toplink:active,
.eintrag a.toplink:visited {
	font-size: 1.1em;
	padding: 0;
	text-decoration:none;
	margin-bottom: 5px;
	display: inline-block;
	position: relative;
	font-family: "Nunito", sans-serif;
}

.eintrag a.toplink:hover {
	padding: 0;
	text-decoration:underline;
}

.eintrag b.rank {
	display: block;
	font-size: 1.1em;
	color: #66;
	position: absolute;
	left: 10px;
	top: auto;
	width: 30px;
	text-align: center;
}

.eintrag p {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	font-size: 0.9em;
	color: #333;
	text-align: justify;
}

.eintrag ul {
	list-style:none;
	margin: 0 auto;
	padding: 5px 0 0 0;
	border-top: 1px dashed #ccc;
	clear: both;
	text-align: center;
}

.eintrag ul li {
	width: 85px;
	text-align: center;
	display: inline-block;
	padding: 0;
	margin: 0 10px 0 5px;
	font-size: 0.7em;
	color: #555;
	white-space: nowrap;
}

.imgstyle1 picture,
.imgstyle1 img {
	display: block;
	position: relative;
	margin: 0 auto;
	margin-bottom: -60px;
	border-radius: 10px 10px 0 0;
}
.imgstyle1 img {
	box-shadow: 0 0 8px rgba(0, 0, 0, .2);
	border: 1px solid #ccc;
}
.img_vl picture,
.img_vr picture {
	display: block;
	padding: 0;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .2);
	border: 1px solid #ccc;
	transform: rotate(2deg);
	transition: all 0.5s ease;
	width: 40%;
}
.img_vl picture {
	float: left;
	margin: 0 20px 5px 0;
	transform: rotate(-2deg);
}
.img_vr picture {
	float: right;
	margin: 0 0 5px 20px;
	transform: rotate(2deg);
}

img.arrows {
	margin-bottom: 20px !important;
	max-width: 350px;
	height: auto;
}

.numberbox {
	padding: 10px;
	margin: 0;
	text-align: center;
}
.number {
	color: #BA0046;
	font-weight:bolder;
	font-size: 50px;
	line-height: 1.2em; 
}
.numberbox span.mobile{
	padding: 10px;
	background-color: #feffa2;
	display: inline-block;
	color: #333333;
}
.numberbox span.mobile b {
	color: #258413;
	font-size: 1.2em;
}
.numberbox img {
	max-width: 300px;
}
.small {
	text-decoration:none;
	color: #606060;
	font-size: 0.7em;
}

.tsad  {
	text-align: center;
	margin: 0 0 15px 0;
}

.tsad img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
a.bigcallbutton,
a.bigcallbutton:link {
	display: none !important;
	text-align: center;
	text-decoration: none !important;
	font-weight: bold;
	font-size: 1.6em;
	padding: 4px;
	margin: 0;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	-moz-box-shadow: 1px 1px 5px #ccc;
	-webkit-box-shadow: 1px 1px 5px #ccc;
	box-shadow: 1px 1px 5px #ccc;
	background-color: #098400;
	color: #fff;
	border: 1px solid #5B8B3F;
}
a.bigcallbutton:hover {
	text-decoration: none;
	-moz-box-shadow: 0px 0px 0px #ccc;
	-webkit-box-shadow: 0px 0px 0px #ccc;
	box-shadow: 0px 0px 0px #ccc;
	background-color: #46b41f;
	color: #fff;
}
.more {
	padding: 0;
	margin: 0 0 20px 0;
}
.more ul li {
	margin: 5px 0 5px 15px;
}
/* = Button
-------------------------------------------------------------- */
.button-link {
	text-align: center;
	padding: 40px 0;
}
.button-link a,
.button-link a:link {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 10px 20px;
	text-decoration: none !important;
	font-family: "Nunito", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff !important;
	text-transform: uppercase;
	line-height: 1.3;
	transition: all .3s;
	background-color: #098400;
	box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
}
.button-link a:hover {
	background-color: #46b41f;
}
/* = Telefonsex Numberbox
-------------------------------------------------------------- */
:root {
  --col_link: #BA0046;
  --col_accent: #258413;
  --col_number: #BA0046;
  --col_handy: #BA0046;
  --col_text1: #444;
  --col_grey: #666;
}
.numberbox_content > div > div span.flag_de {
	background-image: url('/img/flags/flag-de.png');
}
.numberbox_content > div > div span.flag_at {
	background-image: url('/img/flags/flag-at.png');
}
.numberbox_content > div > div span.flag_ch {
	background-image: url('/img/flags/flag-ch.png');
}
.numberbox_content > div > div span.flag_de,
.numberbox_content > div > div span.flag_at,
.numberbox_content > div > div span.flag_ch {
	display: inline-block;
	position: relative;
	padding: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 5;
}
.numberbox_content {
	display: flex;
	position: relative;
	margin: 0;
	padding: 30px 0 20px 0;
	grid-gap: 10px;
	align-items: center;
	border: 0;
	background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 40px);
}
.numberbox_content > div {
	flex: 2;
	display: flex;
	flex-wrap: wrap;
	grid-gap: 0;
	width: 100%;
	position: relative;
	z-index: 3;
	padding: 0;
}
.numberbox_content > div .number_title {
	font-size: 30px;
	line-height: 120%;
	font-weight: 900;
	color: var(--col_text1);
	text-shadow: 0 0 8px rgba(255,255,255,1);
	font-family: "Nunito", sans-serif;
}
.numberbox_content > div .number_title:after {
	content:"➥ Jetzt anrufen:";
	display: block;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--col_accent);
}
.numberbox_content > div > div {
	position: relative;
	padding: 10px 0 10px 0;
	flex-basis: 50%;
	flex-shrink: 0;
	text-align: center;
	flex: 1;
	color: var(--col_text1);
		&:nth-child(1),
		&:nth-child(2) {
			flex: 2;
			flex-basis: 100%;
		}
		
		&:nth-child(3),
		&:nth-child(4) {
		}
	border: 0;
}
.numberbox_content > div > div:first-child {
	padding-top: 0;
}
.numberbox_content > div > div:last-child {
	padding-bottom: 0;
	border: 0;
}
.numberbox_content > div > div .number {
	display: block;
	color: var(--col_number);
	font-weight: bold;
	font-size: 1.8em;
	margin: 0;
}
.numberbox_content > div > div .handy_de {
	display: block;
	margin: 10px 0 0 0;
	font-size: 1.2em;
	line-height: 1.2em;
	font-style: italic;
}
.numberbox_content > div > div.number_ch .number span.ch_pin {
	color: var(--col_text1);
	font-weight: normal;
	font-size: .7em;
}
.numberbox_content > div > div.number_ch .number span.ch_pin_num {
	color: var(--col_number);
}
.numberbox_content > div > div .preishinweis_de,
.numberbox_content > div > div .preishinweis_deh,
.numberbox_content > div > div .preishinweis_at,
.numberbox_content > div > div .preishinweis_ch {
	color: var(--col_grey);
	font-size: .7em;
}
.numberbox_content > div > div span.flag_de,
.numberbox_content > div > div span.flag_at,
.numberbox_content > div > div span.flag_ch {
	margin: 0 5px 0 0;
	width: 32px;
	height: 20px;
}
.numberbox_content > div > div b {
	color: var(--col_handy);
}
.numberbox_content > div > div a,
.numberbox_content > div > div a:link {
	color: var(--col_link);
	text-decoration: underline;
	text-decoration-color: var(--col_accent);
	text-decoration-style: dotted;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}
.numberbox_content > div > div a:hover {
	text-decoration: none;
}
/* = hinweise & preisangaben
-------------------------------------------------------------- */
span.hinweis1:before 	{ content:"Hinweis"; }
span.hinweis2:before 	{ content:"Rollenspiel am Telefon durch prof. Telefonisten, kein Real-Treffen."; }
span.hinweis3:before 	{ content:"Bilder, Namen und Texte dienen nur zur Visualisierung der Werbeangebote und zeigen nicht die tatsächliche Person."; }
span.hinweis4:before 	{ content:"Alle gezeigten Darstellerinnen auf Telefonsex-Party.net waren zum Zeitpunkt der Aufnahme mindestens 18 Jahre alt."; }

span.hinweis1,
span.hinweis2,
span.hinweis3,
span.hinweis4{
	display: block;
	text-align: center;
	font-size: 0.8em;
	line-height: 1.4em;
	padding: 0 10px;
}
span.hinweis1{
	text-align: center;
	font-size: 0.85em;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 25px;
}

span.handy1:before 		{ content:"Handynutzer wählen:"; }
span.handy2:before 		{ content:"PIN nach Aufforderung:"; }
span.handy3:before 		{ content:"» PIN:"; }
span.handy4:before 		{ content:"Handy:"; }

span.preishinweis_de:before 	{ content:"1,99 €/Min."; }
span.preishinweis_at:before		{ content:"nur 1,80 €/Min."; }
span.preishinweis_ch:before 	{ content:"CHF 3,13/Min."; }

span.preishinweis_deh:before 	{ content:"1,99 €/Min."; }

span.preishinweis_de,
span.preishinweis_deh,
span.preishinweis_at,
span.preishinweis_ch {
	display: block;
	margin-top: 3px;
	font-size: 0.9em;
	line-height: 1.4em;
	color: #777;
}
@media only screen and (max-width: 820px) {
	a.bigcallbutton,
	a.bigcallbutton:link {
		display: block !important;
	}
	.number {
		font-size: 8vw;
	}
	.numberbox span.mobile{
		font-size: 2vw;
	}
	
	.iframe728 {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
	#header {
		display: none;
	}
	#navline ul li{
		margin: 15px;
	}
	.numberbox span.mobile{
		font-size: 3vw;
	}
	.numberbox_content {
		flex-direction: column;
		grid-gap: 0;
	}
	.numberbox_content > div > div {
		flex-basis: 100%;
		&:nth-child(2) {
			flex: 1;
		}
	}
	.button-link a,
	.button-link a:link {
		font-size: 14px;
	}
}
@media screen and (max-width : 680px){
	.numberbox_content > div .number_title {
		font-size: 20px;
	}
	.eintrag ul li {
		width: auto;
		margin: 0 10px;
	}
}
@media only screen and (max-width: 480px) {
	.numberbox_content > div > div .number {
		font-size: 22px;
	}
	.numberbox_content > div .number_title:after {
		font-size: 18px;
	}
	.numberbox_content > div > div .handy_de {
		font-size: 18px;
	}
	.numberbox_content > div > div span.flag_de,
	.numberbox_content > div > div span.flag_at,
	.numberbox_content > div > div span.flag_ch {
		width: 24px;
		height: 16px;
	}
	.img_vl picture,
	.img_vr picture {
		width: 100%;
		float: none;
		transform: rotate(0);
		margin: 0 auto 20px auto;
		max-width: 400px;
	}
}
/* scroll top */
.scrollToTop{
	width:40px; 
	height:40px;
	padding:0; 
	text-align:center; 
	background: whiteSmoke;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position:fixed;
	bottom:10px;
	right:10px;
	display:none;
	background: url('/img/arrow_up.png') no-repeat 0px 0px;
	z-index: 9999;
}
.scrollToTop:hover{
	text-decoration:none;
}
