/*
Theme Name: Koncerty DB4
Author: Recodeit
Author URI: https://recodeit.net/
Version: 1.5
Text Domain: Koncerty-db4
*/


/* ---- GLOBAL ---- */
:root {
    --space-125: 125px;
    --space-200: 200px;
	--txtColor: #ffffff;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 16px;
}
body {
	background-color: #0B0B0E;
	color: var(--txtColor);
    font-size: 1.55rem;
	font-family: 'Dosis', sans-serif;
	padding: 0;
	margin: 0;
}
blockquote {
    font-style: italic;
}
a, p, h1, h2, h3, h4 {
	color: var(--txtColor);
}


/*SCROL BAR*/
::-webkit-scrollbar {
	width: 10px;
  }
  
  ::-webkit-scrollbar-track {
	background: #000000ed;
  }
   
  ::-webkit-scrollbar-thumb {
	background: #462a14; 
	border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #593f2c; 

  }


/* ---- HEADER ---- */
#photo {
	min-width: 100%;
	max-width: 100%;
	max-height: 100vh; 
	position: relative;
	/*
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	animation: transparent-to-visible 2s forwards;*/
	
}
@keyframes transparent-to-visible {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#normal {
	width: 100%;
	height: 100%;
	max-height: 100vh; 
	display: block;
	object-fit: contain;
	object-position: center;
	padding: 0;
	margin: 0;
	object-fit: cover;
	position: relative;
	background-repeat: no-repeat;
	background-position: bottom;
}
#invert {
	width: 100%;
	height: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	z-index: 99;
	top: 0;
	-webkit-mask: url('assets/images/maskaanimacji4.png');
	-webkit-animation: mask 3s steps(45) 1 1s forwards;
	-moz-animation: mask 3s steps(45) 1 1s forwards;
	-o-animation: mask 3s steps(45) 1 1s forwards;
	animation: mask 3s steps(45) 1 1s forwards;
	-webkit-mask: url('assets/images/maskaanimacji4.png');
	mask: url('assets/images/maskaanimacji4.png');
	-webkit-mask-size: 4600% 100%;
	mask-size: 4600% 100%;
	/*background-image: url('assets/images/popRomantyk01.webp');*/
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
@-webkit-keyframes mask {
	from {
		-webkit-mask-position: 0% 0;
		mask-position: 0% 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}
@-moz-keyframes mask {
	from {
		-webkit-mask-position: 0% 0;
		mask-position: 0% 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}
@-o-keyframes mask {
	from {
		-webkit-mask-position: 0% 0;
		mask-position: 0% 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}
@keyframes mask {
	from {
		-webkit-mask-position: 0% 0;
		mask-position: 0% 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}


/* ---- PAGE ---- */
#page {
    padding: 0 15px;
}
.main-container {
    width: 100%;
    max-width: 1400px;
	padding: var(--space-125) 0;
	margin-right: auto;
	margin-left: auto;
}
@media (max-width: 1450px) {
    .main-container {
        max-width: 1200px;
    }
}
@media (max-width: 1250px) {
    .main-container {
        max-width: 991px;
    }
}
@media (max-width: 1000px) {
    .main-container {
        max-width: 768px;
    }
}
@media (max-width: 800px) {
    .main-container {
        max-width: 525px;
    }
}

/* DESCRIPTION */
.description {
	text-align: center;
	line-height: 1.5;
}
.description p:first-child {
	margin-top: 0;
}
.description p:last-child {
	margin-bottom: 0;
}

/* COUNTER */
.counter {
	/*margin-top:  var(--space-125);*/
}
#counter-message {
    font-size: 3rem;
    text-align: center;
}
#counter-message a{
	text-decoration: underline!important;
}
.counter-labels-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.counter-label {
	width: 12%;
	font-size: 38px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.main-counter-container {
	margin-top: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.line-separator {
	height: 1px;
	width: 16%;
	background-color: var(--txtColor);
}
.counter-part {
	position: relative;
	width: 13%;
	border: 2px solid var(--txtColor);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 100px;
	font-family: 'Quicksand', sans-serif;
}
.counter-part:before {
	content: "";
	float: left;
	padding-top: 100%;
}

/* EVENTS */
.main-events-table {
	margin-top: var(--space-200);
	width: 100%;
	border-spacing: 50px;
}
.main-events-table-row {
	border-bottom: 1px solid #707070;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.main-events-table-cell {
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: left;
	padding-left: 25px;
}
.minimal-button {
	display: none;
}
.texts-cell {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.buttons-cell {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.href-link-container {
	width: auto;
	height: auto;
	border: 2px solid var(--txtColor);
	color: var(--txtColor);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size:26px;
	cursor: pointer;
}
.href-link-container.fb {
	border: 2px solid #767676;
	color: var(--txtColor);
	margin-right: 15px;
}
.href-link-container a {
	background-color: transparent;
	text-decoration: none;
	padding:10px 40px;
}
.href-link-container:hover {
	color: #767676;
	border: 2px solid #060202;
	background-color: #EEEEEE; 
}
.href-link-container.fb:hover {
	/*background-color: #b7b7b7;*/
}
.href-link-container:hover>a span {
	background-color: #EEEEEE; 
	color: #060202;
}
.href-link-container.fb:hover>a span {
	/*background-color: #b7b7b7;*/
	color: #060202;
}
.column-26 {
	width: 26%;
}
.column-28 {
	width: 28%;
}
.column-30 {
	width: 36%;
}
.column-12 {
	width: 12%;
}
.column-6 {
	width: 6%;
}
.column-20 {
	width: 16%;
}
.date-column {
	width: 26%;
}
.city-column {
	width: 85%;
}
.city01-column {
	width: 28%;
}
.place-column {
	width: 36%;
}
.buttons-column {
	width: 26%;
}
.gap-width {
	width: 16%;
}

/* FAQ */
.faq {
	text-align: center;
	margin-top: var(--space-125);
	font-size: 1.4rem;
}
.faq a{
	text-decoration:underline!important;
}
/* SOCIAL MEDIA */
.socialmedia-icons-container {
	margin-top: var(--space-125);

	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.socialmedia-icon img {
	width: 60px;
	height: 60px;
	opacity: 0.5;
}
.socialmedia-icon img:hover {
	opacity: 0.8;
}
@media(max-width:800px){
	.socialmedia-icon img {
		width: 70px;
		height: 70px;
	}
	
}
@media(max-width:550px){
	.socialmedia-icon img {
		width: 60px;
		height: 60px;
	}
	
}
@media(max-width:420px){
	.socialmedia-icon img {
		width: 50px;
		height: 50px;
	}
	
}

/* SPONSORS */
.spon-sors-conatiner {
	margin-top: var(--space-200);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: space-evenly;
	-webkit-justify-content: space-evenly;
	-moz-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 50px;
}
.spon-sor-logo {
    display: block;
}
.spon-sor-logo img {
	height: 35px!important;
	width: auto;
	margin-right: 20px;
	margin-left: 20px;
}

@media(max-width:450px){
	.spon-sor-logo img {
		height: 30px!important;
	}
}
@media(max-width:300px){
	.spon-sor-logo img {
		height: 25px!important;
	}
}


/* ---- FOOTER ---- */
#footer {
	text-align: center;
	font-size: 16px;
	padding: 40px 15px;
}
#footer a {
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}


/* ---- MEDIA QUERIES ---- */
@media screen and (max-width: 1500px) {
	/* .texts-cell{
        flex-direction: column;
    } */
	.buttons-cell {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.buttons-column {
		width: 180px
	}
	.href-link-container.fb {
		margin-bottom: 15px;
	}
	.gap-width {
		width: 4%;
	}
}

@media screen and (max-width: 1380px) {
    #counter-message {
        font-size: 2.5rem;
    }
	.counter-part {
		font-size: 75px;
	}
    :root {
        --space-125: 100px;
        --space-200: 150px;
    }
}

@media screen and (max-width: 1024px) {
	/* .texts-cell{
        flex-direction: column;
    }  */
	.main-container {
		/* width: 95%; */
		margin-left: auto;
		margin-right: auto;
	}
	.main-photo {
		width: 100%;
	}
}

@media screen and (max-width: 850px) {
    :root {
        --space-125: 80px;
        --space-200: 125px;
    }
    #counter-message {
        font-size: 2rem;
    }
	.counter-part {
		font-size: 50px;
	}
	.counter-label {
		font-size: 30px;
	}

	.date-column {
		width: 100%;
		padding: 0px;
		text-align: left;
		padding-left: 50px;
	}
	.city-column {
		width: 100%;
		font-size: 20px;
		padding: 0px;
		text-align: left;
		padding-left: 50px;
		min-height:75px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.city01-column {
		width: 100%;
		font-size: 20px;
		padding: 0px;
		text-align: left;
		padding-left: 50px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.place-column {
		width: 100%;
		padding: 0px;
		text-align: left;
		padding-left: 50px;
	}
	.wide-button-text {
		font-size: 16px;
	}
	.href-link-container{
		/* width:19%; */
	}
	.href-link-container a {
		padding: 8px 40px;
		padding-top:2px;
	}

}


/* @media screen and (max-width: 650px) {
    .spon-sor-logo img{
        height: 50px;
        width: auto; 
        margin-right: 20px;
        margin-left: 20px;
    }
} */

@media screen and (max-width: 650px) {
    body {
        font-size: 1.15rem;
    }
	.spon-sor-logo img {
		height: 50px;
		width: auto;
		margin-right: 20px;
		margin-left: 20px;
	}
	.main-events-table {
		/* margin-top: 120px; */
	}
	.counter-labels-container {
		/* margin-top: 120px; */
	}
	.main-container {
		/* margin-top: 100px; */
	}
	.description {
		/* font-size: 28px;
		line-height: 45px; */
	}
	.date-column {
		padding-left: 50px;
	}
	.city-column {
		padding-left: 50px;
	}
	.city01-column {
		padding-left: 50px;
	}
	.place-column {
		padding-left: 50px;
	}
	.gap-width {
		display: none;
	}
	#photo div {
		width: 100%;
	}
}

@media screen and (max-width: 590px) {
	.counter-part {
		font-size: 40px;
		border-width: 1px;
	}
	.counter-label {
		font-size: 20px;
	}
	.wide-button-text {
		font-size: 14px;
	}
	.href-link-container {
		width: auto;
		height: auto;
		margin-bottom: 20px;
	}
	
	.href-link-container.fb {
		margin-right: 0;
	}
	.texts-cell {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		
	}
	.buttons-cell {
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		-moz-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		margin-right: 15px;
	}
	.buttons-column {
		width: 100px;
	}
	.date-column {
		font-size: 22px;
        padding-left: 20px;
	}
	.city-column {
		font-size: 25px;
        padding-left: 0px;
		text-align: center;
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.city01-column {
		font-size: 25px;
        padding-left: 20px;
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.place-column {
		font-size: 22px;
        padding-left: 20px;
	}
	.description {
		text-align: justify;
	}
    .spon-sors-conatiner {
        row-gap: 25px;
    }
}

@media screen and (max-width:460px) {
    :root {
        --space-125: 40px;
        --space-200: 80px;
    }
	.socialmedia-icon img {
		width: 50px;
		height: 50px;
	}
	.counter-part {
		font-size: 30px;
	}
	.description {
		font-size: 22px;
		line-height: 35px;
	}
	.href-link-container {
		line-height: 0.8 !important;
	}
}

@media screen and (max-width: 400px) {
	.counter-label {
		font-size: 16px;
	}
	.date-column {
		font-size: 16px;
	}
	.city-column {
		font-size: 20px;
	}
	.city01-column {
		font-size: 20px;
	}
	.place-column {
		font-size: 16px;
	}
	.buttons-column {
		width: 80px;
	}
	.href-link-container {
		/* width: 80px; */
		height: 40px;
	}
	.wide-button-text {
		font-size: 12px;
	}
	.spon-sor-logo img {
		height: 30px;
		width: auto;
		margin-right: 20px;
		margin-left: 20px;
	}
}