/*
// --------------------------------------
// Formatvorlagen für www.omerzu.de
// (c) 2003-2022 Thomas Omerzu, Dortmund
// --------------------------------------
*/
* {
    font-family:Signika Negative,Helvetica,Arial,sans-serif; 
    box-sizing:border-box;
    margin:0; padding:0;
    border:none;
    text-decoration:none;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    outline: none;
    vertical-align: baseline;
}
html, body {
    height:100.1vh;
    /*
    background: #edfaec url(/layout/to-bg-new-gruen.png) repeat-x top;
    background: #e6f7e3 url(/layout/to-bg-new-dgruen.png) repeat-x top;
    background: #e2edf7 url(/layout/to-bg-new-blau.png) repeat-x top;
    background: #5b5b5b url(/layout/to-new-bg.gif) repeat-y center top;
    background: #73afde url(/layout/to-new-bg-blau.png) repeat-y center top;

    */
    background: #8ddf77 url(/layout/to-new-bg-gruen.png) repeat-y center top;

    font-size:12pt;
    font-weight:400;
    color: #000;
    text-align: left;
    text-rendering: optimizeLegibility;
}

tt, pre, blockquote, .tt {
/*
    font-family:'Lucida Console', monospace; 
    */
    font-family: monospace; 
}
blockquote {
    overflow:scroll;
}
.wp-block-quote {
    overflow:auto;
}
#to-main .wp-block-quote p {
    margin:0;
}

input, textarea {
    border:1px solid #888;
    padding: 1px 2px;
}

s {
    text-decoration: line-through;
}

/**********************
*   Header            *
***********************/

#to-header {
    	position:fixed;
	top:0; left:50%;
	z-index:10;
	width: 1060px;
	height: 72px;
	margin-left: -530px;
	background: #333;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-bottom:5px solid white;
	}

#to-title {
    padding-top:1.5em;
}
#to-titel a,
#to-title a:link,
#to-title a:visited,
#to-title a:active {
	color: white;
	text-decoration: none;
	font-weight:bold;
	}
#to-title a:hover {
	color: #00d400;
}

#to-title h1 {
    color:white; padding:0 1em; float:left;
    border:0;
}
/**********************
*   Navigation
***********************/

#to-navbar {
    color:orange;
    right:0;
    margin:8px auto 0 300px; padding:0; 
    overflow:hidden;
}
nav > input {
    display: none;
}
nav > ul {
    padding: 0;
    margin: 0;
    list-style:none;
}

nav > ul > li {
    float: left;
    margin-right:1em;
    color:white;
    font-weight:bold;
    height:40px;
    font-size:12pt;
}
nav > ul > li > ul {
    display: none;
    list-style:none;
    border-top: 5px solid white;
    margin: 15px 0;
    z-index:99;
    box-shadow: rgba(0, 0, 0, 0.8) 5px 5px 5px 0px;
    min-width:100px;
}

nav > ul a {
  display: block;
  white-space: nowrap;
  color: #fff;
  text-decoration:none;
  font-weight:bold;
  z-index:99;
}
nav ul > li > ul > li a {
  background: #333;
  color: white;
  text-align: left;
  font-weight:normal;
  padding:4px 8px;
  font-size:10pt;
  z-index:99;
}
/* Handy Nav-Menu-Elemente ausblenden */
nav > ul input, nav > ul label {
    display: none;
}
label.drop-icon::after {
      content:attr(name);
    }


@media all and (min-width: 800px) {

nav li[aria-current] {
    background-position:center 30px;
}
nav > ul > li > a:hover {
  color: orange;
}
nav ul > li > ul > li a:hover {
  color: orange;
}
nav > ul > li:hover > ul {
  display: block;
  position: absolute;
}

}



/**********************
*   Splash
***********************/
#to-splash {
    position:relative;
    width:100%;
    height:340px;
}
#to-splash img {
    max-height:340px;
    object-fit:cover;
}


/**********************
*   Content           *
***********************/
#to-container {
    	position:relative; /* für footer-pos erforderlich */
	width: 1060px;
	margin: 0 auto; /* zentriert */
	padding-top: 72px;
	background: #fff;
	/*height:auto;*/
	min-height:calc(100.1vh - 72px);  /* volle Hoehe - Header */
}

#to-content {
    position:relative;
    width:100%;
    padding:0 0 20px 0; 
    min-height:calc(100.1vh - 72px - 340px - 20px - 60px);  /* volle Hoehe - Header - Splash - Padding - Footer */
}



/**********************
*   Main area
***********************/

#to-main {
    	position:relative;
	background: #fff;
	margin:20px 30px 0 30px;
	padding:0;
	}

#to-main h1 {
	margin: 41px 0 20px 0;
	padding:4px 0;
	width:100%;
	/*max-width:600px;*/
	}
#to-main h1:first-child {
    margin-top:1px;
	}
h3 {
    margin:0.5em 0;
}
#to-main table p {
	margin:0; padding:0;
}

#to-main a,
#to-main a:link,
#to-main a:visited,
#to-main a:active {
	color: #080;
	text-decoration: none;
	font-weight:bold;
	}
#to-main a:hover {
	color: #0d0;
}

div.to-row {
    padding:0;
    width:100%;
    display: flex;
    flex-wrap: wrap;
}

div.to-row  > div.to-col {
	max-width:50%;
	flex: 0 0 auto;
	padding: 0 15px 0 0;
    }

.to-col3 {
	width: 33%;
}
.to-col2 {
	width: 50%;
}

.bb {
    border-bottom: 2px dotted #060;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

div.to-col img {
    max-width:100%;
}

/**********************
*   Bottom            *
***********************/

#to-footer {
    	position:relative;
	width: 1060px;
	max-width:100%;
	height:60px;
	text-align: left;
	background-color: #333;
	font-size: 12px;
	color: #fff;
	margin:0;
	padding:0 0 10px 0;
}

#to-footercontent {
    padding:10px 25px 0 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#to-footercontent  > div.to-footer-col {
	flex-basis: 33.33333333%;
	max-width: 33.33333333%;
	width: 33.33333333%;
	flex: 0 0 auto;
	padding: 0 5px;
    }

#to-footer p {
	font-size: 12px;
	font-weight:normal;
	color: #fff;
	/*
	border: 1px solid yellow;
	*/
	}
#to-footer a, #to-footer a:visited {
	text-decoration:none;
	font-weight:normal;
	color: #fff;
	}
#to-footer a:hover {
	text-decoration:none;
	font-weight:normal;
	color: #0d0;
	}

div.to-footer-col p {
    text-align: center;
}
div.to-footer-col:first-child p {
    text-align: left;
}
div.to-footer-col:last-child p {
    text-align: right;
}

table { border:0; padding:0; margin:0; }
#to-main table.tetrisscores, 
	#to-main table.tetrisscores th,
	#to-main table.tetrisscores td { 
    border:1px solid grey; padding:1px; }
th { font-weight:bold;
    padding-bottom:6px; text-align:left; vertical-align:top; }
td { padding-bottom:6px; vertical-align:top; }
td.ht { padding-bottom:0px; vertical-align:top; }
td.hm { padding-bottom:0px; vertical-align:middle; }
.iblau { color:#080; font-style:italic; padding-bottom:6px;
    vertical-align:top; }
h1 { font-size:1.5em; color: #080; font-weight:bold;
	border-top:1px solid #080;
	border-bottom:1px solid #080;
}
h2 { font-size:1em; color:#080; font-weight:bold;
	border-top:1px solid #080;
	border-bottom:1px solid #080;
	margin:1em 0;
	padding:0.5em 0;
	width:100%;
}
hr { border:0px;
     color:#3b75cc;background-color:#3b75cc;
     height:1px; 
   }
td.kblau { font-size:9px; color:#3b75cc; padding-bottom:0px;}
th.blau { background-color:#080; text-align:left; font-weight:bold;
    color:white; padding-bottom:6px; padding-left:3px;}
td.blau0 { 
    background-color:#9de6ba; text-align:left; padding-bottom:6px; 
    padding-left: 3px; }
td.blau0c { 
    background-color:#9de6ba; text-align:center; padding-bottom:6px;}
td.blau1 { 
    background-color:#95cd95; text-align:left; padding-bottom:6px; 
    padding-left: 3px; }
td.blau1c { 
    background-color:#95cd95; text-align:center; padding-bottom:6px;}
td.blau1r { 
    background-color:#95cd95; text-align:right; padding-bottom:6px;}
td.blau2 { 
    background-color:#c8e5c8; text-align:left; padding-bottom:6px;
    padding-left: 3px; }
td.blau2c { 
    background-color:#c8e5c8; text-align:center; padding-bottom:6px;}
td.blau2r { 
    background-color:#c8e5c8; text-align:right; padding-bottom:6px;}
b.blau { color:#3b75cc; }
b.rot { color:#cb3e3b; }
p.rot { color:#cb3e3b; }
p.schwarz { color:#000000; }
b.gruen { color:#008000; }
.hidden { display:none; }
div#w3c { position:absolute; left:52px; bottom:30px; 
    width:88px; height:31px; z-index:9;
}
td.c { text-align:center; }
td.l { text-align:left; }
/*
// --------------------------------------
// Spezielle Anker-Version für die Menüs
// --------------------------------------
*/
.menu1  { 
    text-decoration:none; color:white; 
    font-weight:bold; font-size:12px; 
    text-indent:55px; margin-top:0px; margin-bottom:5px;
    }
.menu2  { 
    text-decoration:none; color:white; 
    font-weight:500; font-size:10px; 
    text-indent:65px; margin-top:0px; margin-bottom:5px;
    }
a.black  { 
    font-size:12px;
    text-decoration:none;
    color:black;}
/*
/ --------------------------------------
/ Neues Layout
/ --------------------------------------
*/
div.menu {
    position:absolute;
    margin:14px 0 0 0;
    width:220px;
    left:0; top:170px; bottom:0;
}
div.ecke {
    position:absolute;
    background-image:url(/layout/bgrotblau2.png);
    width:220px; height:170px;
    top:0;left:0;
}
div.title {
    position:absolute;
    background-image:url(/layout/bgblau2.png);
    margin:0;
    height:170px; 
    top:0;left:220px;right:0;
}
div.contentbox {
    position:absolute;
    margin:0;
    width:650px;
    left:220px; top:170px;
    }
div.main {
    width:800px;
    max-width:100%;
    float:left; padding:0; margin:0 20px 0 0;
    }
div.sidebar {
    width:150px; 
    float:right; padding:0; margin:17px 0 0 0;
    }
div.sidebarblog2022 {
    width:280px; 
    float:right; padding:0; margin:0;
    border-left:2px dotted #080;
    }
#to-main .sidebarblog2022 ul li {
    font-weight:bold; color:black;
    margin:0;
}
#to-main .sidebarblog2022 ul ul {
    margin-top:0;
}
#to-main .sidebarblog2022 form {
    margin-bottom:1em;
}
#to-main .sidebarblog2022 a, .sidebarblog2022 a:link {
    font-weight:normal;
}
div.sep {
    display:none;
    background-image:url(/layout/bgblau2gitter1.png);
    background-repeat:repeat-x; 
    position:relative;
    border:1px solid #3c75cb;
    height:9px; width:100%;
    background-color:white;
    margin:20px 0; padding:0;
    }
.clear {
    float:none; clear:both;
    }
.clearright {
    float:none; clear:right;
    }
.clearleft {
    float:none; clear:left;
    }
div.sepfoot {
    margin:30px 0 0 0;
    }
p.kblau { font-size:9px; color:#3b75cc; padding:0; margin:4px 0; }
p.kblaul { float:left; text-align:left; }
p.kblaur { float:right; text-align:right; }
.sidebar img { display:block; float: right; }
.sidebar-ad {
    width:120px;
    float:right;
    border:0.5pt solid #d0d0d0;
    margin-top:10px;
    margin-bottom:10px;
    padding:3px;
    font-size:8pt;
    color:black;
}
.sidebar-ad a {
    text-decoration:none;
    color:#d00000;
    font-weight:bold;
}
.hidden {
    color:white;
}
.topspace {
    margin-top:60px;
}
.sidebar-ad ul {
    margin:3px;
    padding-left:15px; 
    color:#d0d0d0;
}
.sidebar-ad ul li a {
    font-weight:normal;
}
/* Lebenslauf-Tabelle */

dl.if {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 100%;      /* set the container width*/
  overflow: visible;
}
dl.if dt {
  flex: 0 0 84%;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right:11px;
}
dl.if dd {
  flex:0 0 16%;
  margin-left: auto;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right:10px;
}
dl.if dd.w20, dl.if.w20 dd {
  flex: 0 0 20%;
}
dl.if dd.w20 + dt, dl.if.w20 dd + dt {
  flex:0 0 80%;
}
dl.if dd.w25, dl.if.w25 dd {
  flex: 0 0 25%;
}
dl.if dd.w25 + dt, dl.if.w25 dd + dt {
  flex:0 0 75%;
}
dl.if dd.w33, dl.if.w33 dd {
  flex: 0 0 33%;
}
dl.if dd.w33 + dt, dl.if.w33 dd + dt {
  flex:0 0 67%;
}
dl.if dd.w40, dl.if.w40 dd {
  flex: 0 0 40%;
}
dl.if dd.w40 + dt, dl.if.w40 dd + dt {
  flex:0 0 60%;
}
dl.if dd.w50, dl.if.w50 dd {
  flex: 0 0 50%;
}
dl.if dd.w50 + dt, dl.if.w50 dd + dt {
  flex:0 0 50%;
}


#to-main dl p {
    margin: 0 0 1.5em 0;
}
#to-main dl br {
    content:""; display:block; margin:0.5em;
}

.t100 { width:100px; vertical-align:top; }
.t120 { width:120px; vertical-align:top; }
.to-col .t120 { width:20%; vertical-align:top; }
.w50 { width:50%; }
.w40 { width:40%; }
.w30 { width:30%; }
.t480 { width:480px; vertical-align:top; }
.to-col .t480 { width:80%; vertical-align:top; }
.t600 { width:600px; max-width:100%; vertical-align:top; }
.to-col .t600 { width:100%; vertical-align:top; }
img.r3 { padding-right:3px; }
.w75 { width:75px; }
.w80 { width:80px; }
.w150 { width:150px; }
.right {
    float:right;
    padding:0; margin:10px 0px 10px 15px;
}
.right0 {
    float:right;
    padding:0; margin:0 0 10px 15px;
}
.left {
    float:left;
    padding:0; margin:10px 15px 10px 0px;
}
.sp10 { margin:10px; }
.sp5 { margin:5px; }
.spx { margin:0 0 5px 3px; border:0; float:right; max-width:120px; }
#to-main ul {
	list-style-type: square;
	padding-left:2.5em;
	margin:1em 0;
    }
#to-main ol {
	padding-left:2.5em;
	margin:1em 0;
    }
#to-main li {
    margin:1em 0;
}
#to-main p {
    margin:1.5em 0;
}
.border {
    border:0.5px solid black;
    box-shadow:4px 4px 3px #b4becc;
    margin-bottom:10px;
}
/* Galerie-Tabelle */
.galerie { width:600px; max-width:100%; }
.galerie td {
    padding:10px; margin:0;
    text-align:center;
    vertical-align:middle;
    border:0;
    font-style:italic;
}
.galerie img {
    float:right;
    max-width:80%;
}
.center { text-align:center; }
.full { width:100%; }
.blue { color:blue; }
.red { color:red; }

/*
/ --------------------------------------
/ Blog-Einbindung auf der Startseite
/ --------------------------------------
*/
#to-main ul.blog {
list-style-type:none;
padding:0 0 0 10px;
margin:0 10px;
}
ul.blog li {
padding:0 0 10px 30px;
margin:0;
background: url('/img/neutralmini.png') no-repeat left top;
}
ul.blog li.flop { 
background: url('/img/flopmini.png') no-repeat left top;
}
ul.blog li.top { 
background: url('/img/topmini.png') no-repeat left top;
}
#w3l-cookiebox {
    display:block;
    height:100px; width:100%;
    background-color:green;
    color:white;
    text-align:center;
    font-weight:bold;
    padding:0; margin:0;
    position:fixed;
    left:0; top:0;
    z-index:99;
}

#w3l-cookiebox p {
    display:block; 
    padding:30px; margin:0px;
}

#w3l-cookiebox a, #w3l-cookiebox a.visited {
    color: white; text-decoration:underline;
}

figure {
    float:right;
    margin:0 0 0 20px;
    display:table;
}
figure.small {
    width:150px;
    max-width:30%;
}
figure.full, figure.voll {
    max-width:100%;
    margin:20px auto 0 auto; float:left;
    border: 0px solid green;
    }

figcaption {
    text-align:center;
    padding-top:5px;
    font-style:italic;
    display:table-caption;
    caption-side:bottom;
}
figure img {
    width:100%;
    max-width:100%;
    }

table.full {
    display:block;
    width:100%;
}
table.full th {
    width:110px;
}
table.mobile {
    display:none;
}


@media (max-width: 1059px) {
    html {
	background: #fff;
    }
}

/*
 * ----- Unter 800 px -----------------
 */
@media (max-width: 799px) {
table.full {
    display:none;
}
table.mobile {
    display:block;
    width:100%;
}

div.sidebarblog2022 {
    display:none;
}
div.contentboxblog {
    max-width:100%;
}

#to-header, #to-container, #to-footer {
	width:100%;
	min-width:300px;
	left:0;
	margin-left:0;
    }
#to-title h1 {
    	padding:0 10px;
    }

#to-main ul,  #to-main ol {
	padding-left:1em;
    }

/* Nav-Menu aendern, Stufe 1 */
nav input#toggle {
    display: none;
}
nav input#toggle + label {
    display: block;
    width: 50px;
    height: 50px;
    background:url(/layout/menu-20x20.png) center right no-repeat;
    border:0;
    position: absolute;
    right: 1em;
    top: 15px;
    cursor: pointer;
    z-index: 10;
}

input#toggle:checked ~ label {
    }

input#toggle:checked ~ ul {
    display:block;
    height:auto;
    max-height:500px;
    transition:all 0.5s ease-in;
    color:red;
    background-color:#333;
}


/* Nav-Menu-Elemente Stufe 2 einblenden */
nav > ul > li label {
    display: block;
    text-align:left;
    margin:0px 2px;
    padding:5px 2px 0px 2px;
}

ul.submenu {
    display:block;
    max-height:0;
    overflow:hidden;
    border:0;
    margin-top:3px;
}

nav > ul > li input[type="radio"]:checked ~ ul.submenu {
      display: block;
      height:auto;
      max-height:300px;
    transition:all 0.8s ease-in;
    border-top:1px solid white;
    border-bottom:1px solid white;
}
nav > ul > li input[type="radio"]:checked + label.drop-icon::after {
    content:attr(value);
    color:green;
}

nav > ul {
    display:block;
    height:0;
    max-height:0;
    overflow:hidden;
}

nav > ul > li > a {
    display:none;
}
nav > ul a {
    display:inline;
    line-height:23px;
}

nav > ul  {
    position:absolute;
    width:150px;
    margin:72px 0px auto auto;
    right:0; 
    top:0; 
}
nav > ul > li {
    background-color:#333;
    width:100%;
    margin:0px;
    padding: 0px 7px;
    height:auto;
    background-image:none;
    position:relative;
}
nav > ul > li:last-child {
  padding-bottom:10px;
}
nav > ul > li > ul {
    width:auto;
    box-shadow: none;
    margin:0;
    padding:0;
}
nav ul > li > ul > li a {
  padding:3px 5px;
}

#to-splash {
    	height:257px;
    }
#to-main {
    margin: 20px 10px 0 10px;
    max-width: 100%;
}
#to-footercontent {
    padding:10px 5px 0 5px;
}
#to-footercontent > div.to-footer-col {
    padding:0 5px;
    max-height: 33.33333333%;
    height: 33.33333333%;
    width: 100%;
    max-width: 100%;
}

div.to-footer-col p, 
    div.to-footer-col:first-child p, 
    div.to-footer-col:last-child p {
    text-align: center;
}

div.to-row  > div.to-col {
	flex-basis: 100%;
	max-width: 100%;
	width: 100%;
	flex: 0 0 auto;
	padding: 0;
    }

figure {
    max-width:50%;
    }
figure.full, figure.voll {
    max-width:100%;
    margin:10px 0 0 0; float:left;
    /*border: 1px solid red;*/
    }
}

/*
 * ----- Unter 400 px -----------------
 */
@media (max-width: 400px) {
#to-splash {
    	height:129px;
    }

    /* optionale, zu lange texte ausblenden */
.opt { display:none; }
}

/* -------- Fonts  ------------------------------- */
/* signika-negative-300 - latin */
@font-face {
  font-family: 'Signika Negative';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/signika-negative-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/signika-negative-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/signika-negative-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/signika-negative-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/signika-negative-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/signika-negative-v20-latin-300.svg#SignikaNegative') format('svg'); /* Legacy iOS */
}
/* signika-negative-regular - latin */
@font-face {
  font-family: 'Signika Negative';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/signika-negative-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/signika-negative-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/signika-negative-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/signika-negative-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/signika-negative-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/signika-negative-v20-latin-regular.svg#SignikaNegative') format('svg'); /* Legacy iOS */
}
/* signika-negative-500 - latin */
@font-face {
  font-family: 'Signika Negative';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/signika-negative-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/signika-negative-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/signika-negative-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/signika-negative-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('fonts/signika-negative-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/signika-negative-v20-latin-500.svg#SignikaNegative') format('svg'); /* Legacy iOS */
}
/* signika-negative-600 - latin */
@font-face {
  font-family: 'Signika Negative';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/signika-negative-v20-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/signika-negative-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/signika-negative-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/signika-negative-v20-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/signika-negative-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/signika-negative-v20-latin-600.svg#SignikaNegative') format('svg'); /* Legacy iOS */
}
/* signika-negative-700 - latin */
@font-face {
  font-family: 'Signika Negative';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/signika-negative-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/signika-negative-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/signika-negative-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/signika-negative-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/signika-negative-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/signika-negative-v20-latin-700.svg#SignikaNegative') format('svg'); /* Legacy iOS */
}


/* dancing-script-regular - latin */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/dancing-script-v24-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/dancing-script-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/dancing-script-v24-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/dancing-script-v24-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/dancing-script-v24-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/dancing-script-v24-latin-regular.svg#DancingScript') format('svg'); /* Legacy iOS */
}
/* dancing-script-700 - latin */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/dancing-script-v24-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/dancing-script-v24-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/dancing-script-v24-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/dancing-script-v24-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/dancing-script-v24-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/dancing-script-v24-latin-700.svg#DancingScript') format('svg'); /* Legacy iOS */
}

/*
https://gwfh.mranftl.com/fonts/dancing-script?subsets=latin
*/

