/*
Theme Name: rife-free-child
Theme URI: https://beskidyrowerem.eu/
Template: rife-free
Text Domain: rife-free-child
*/

.hidden {
  display: none;
}
body {
	position: relative;
}
.hidden, .modal.hidden {
	visibility: hidden;
	opacity: 0;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
	height: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;
	display: block;
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in;
}
.modal-content {
	display: flex;
	flex-direction: column;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}
.close-modal {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #222222;
    border: 0;
    color: #fff;
}
.modal img {
	max-width: 500px;
}
.modal input[type=submit] {
		margin-top: 20px;
	}
@media screen and (max-width: 1100px) {
	.modal {
		width: 80%;
	}
	.modal img {
		width: 100%;
		height: auto;
	}
}