@font-face {
    font-family: "Lazurski";
    src: url("../fonts/woff2/Lazurski-Regular.woff2");
}

@font-face {
    font-family: "Lazurski";
    font-style: italic;
    src: url("../fonts/woff2/LZ-it.woff2");
}

:root {
    --main_text_size: 18;
    --main_st-text_size: 18;
    --main_text_weight: 400;
    --paperColor: #fefff0;
    --defaultPaperColor: #fefff0;
    --defaultTextColor: #000000;
}
html {	height: 100%;	}
body {
    height: 100%;
    margin: 0;
    padding: 0;
    /*textmarkierung nicht zulassen*/
    -ms-user-select: None;
    -moz-user-select: None;
    -webkit-user-select: None;
    user-select: None;
    -khtml-user-select: none;
    overscroll-behavior-y: contain; /*no refresh on pull*/
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
.blink {
    animation: blinkAnimation 1.5s ease-in-out 2; /* Blinkanimation 3-mal für 3 Sekunden */
}

@keyframes blinkAnimation {
    0%, 100% { background-color: transparent; }
    50% { background-color: coral; }
}
#pjesmarica{
    position: relative;
    background-color: var(--defaultPaperColor);
    color: var(--defaultTextColor);
    display: none;
    /*justify-content: center;*/
    padding: 10px;
	height: fit-content;
  	min-height: 100%;
	align-content: baseline;
}
.pjesma h1 {
    font-size: 24pt;
    color: blue;
    text-align: center;
	text-wrap: balance;
}
.pjesma p {
    font-size: 18pt;
    color: black;
    text-align: left;
    margin: 0;
    padding: 5px;
    text-indent: 15px hanging;
}
.pjesma p:nth-of-type(2n) {
    background-color: #dbdbdb;
}
.pjesma p:nth-of-type(2n+1) {
    background-color: #e6e6e6;
}
.search-tools {
    padding: 10px 0px;
    display: inline-grid;
  	grid-template-columns: 20% auto auto;
  	gap: 6px;
	background-color: var(--defaultPaperColor);
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    height: fit-content;
	width: 100%;
}
.search-tools button {
    border: solid 1px;
    background: none;
    border-radius: 50%;
    width: fit-content;
}
#search-container{
    display:flex;
}
#search-container input{
    width: 100%;
}
#search-container button{
    background: none;
    border: none;
    position: relative;
    left: -25px;
}
#goToTopBtn {
    display: none;
    position: sticky;
    top: 90%;
    left: 90%;
    z-index: 99;
    font-size: 24px;
    border: none;
    color: red;
    cursor: pointer;
    background: rgba(255,255,255,0);
    font-weight: 900;
}
.contentContainer {
    background-color: var(--paperColor);
    display: grid;
    justify-content: center;
	position: relative;
}

.psalmTitle {
    color: inherit;
    font-family: Lazurski, serif;
    font-style: italic;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 3px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.15em;
    hyphens: none;
	text-wrap: balance;
}
.palataPrayer p{
    color: inherit;
    font-family: Lazurski, serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.1;
    margin:0px 10px 5px 10px;
    text-align: left;
    text-align-last:end;
    display: flex;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.15em;
    hyphens: none;
}
.palataPrayer {
    justify-content: center;
    display: grid;
}
.contentContainer ol {
    counter-reset: paragraph;
    padding-left: 25px;
    margin-right: 25px;
    list-style-type: none;
    position: relative;
}

.contentContainer ol li:before {
    position: absolute;
    width: 20px;
    translate: -25px 4px;
    text-align: right;
    font-size: 12px;
    content: counter(paragraph);
    counter-increment: paragraph;
}
.contentContainer ol li{
    width: auto;
    margin-bottom: 10px;
}
.contentContainer ol p:first-child{
    text-indent: 0px;
}
.contentContainer ol p{
    font-variant-ligatures: discretionary-ligatures;
    font-weight: var(--main_text_weight, normal);
    font-family: Lazurski, serif;
    font-size: calc(var(--main_text_size, 18) * 1pt);
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin: 0px;
    text-align: left;
    width: auto;
    display: flex;
    text-indent: 5px;
}

.psalmDivider {
    margin-bottom: 40px;
    margin-top: 30px;
    text-align: center;
}

.psalmDivider img {
    display: block;
    margin: 0 auto;
}

.inverted {
    filter: invert(100%);
}
.shadow {
    filter: drop-shadow(0px 0px 30px white);
}

.palataNrTitle {
    color: inherit;
    font-family: Lazurski, serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    hyphens: none;
}

.palataHeadline {
    color: inherit;
    font-family: Lazurski, serif;
    font-size: 38px;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
    hyphens: none;
}

.starDivider {
    color: inherit;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

._kursiv {
    font-style: italic;
    letter-spacing: 0.08em;
}

.psalmNumber {
    font-family: BodoniC, serif;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: #001f21;
    line-height: 50px;
    background-image: url(../images/ps_nr.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.centeredImageContainer {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    word-break: keep-all;
    hyphens: none;
}

.centeredImageContainer .centeredImage {
    height: 156px;
    width: 155px;
}

.txtCenter ol {
    text-align: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.txtCenter ol li::before {
    text-align: right;
    display: inherit;
}
.txtCenter ol p{
    text-align: center;
    text-align-last:center;
    display: block;
}
.frame {
    border: 7px double;
    border-color: #919191;
    margin: 5px;
    padding: 5px !important;
}

.contentContainer.frame ol {
    padding: 15px !important;
}

.palataContainer {
    display: none;
}

.hidden {
    display: none !important;
}

/* --------------------------------Palaty-Load-HIDE-----------------------------------*/
.activePalata {
    display: block;
}

/* --------------------------------Button Next Palata-----------------------------------*/
.nextPalbtn {
    word-break: keep-all;
    hyphens: none;
    width: 90%;
    height: 80px;
    margin-top: -35px;
    margin-bottom: 15px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.0);
    font-size: 20px;
    font-family: Lazurski;
    font-style: italic;
    letter-spacing: 0.25em;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.1);
}