.swal2-cmp-info .swal2-popup .swal2-title {
	color: #000;
	line-height: 1;
	margin: 0;
	text-align: left;
}
.swal2-cmp-info .swal2-popup .swal2-actions {
	margin: 0.25em 0 0 auto;
}
.swal2-cmp-info .swal2-popup .swal2-actions button {
	margin: 0.25em;
}
.swal2-cmp-info .swal2-html-container {
	border-bottom: 1px solid rgb(230, 230, 230);
	border-top: 1px solid rgb(230, 230, 230);
	color: #000;
	font-size: 1.05em;
	line-height: 1.4;
	margin: 1.5em 0;
	padding: 1.5em 0;
	text-align: left;
}
.swal2-cmp-info__step-2 .swal2-html-container {
	border-top: none;
	padding-top: 0;
}
.swal2-cmp-info .swal2-html-container a {
	text-decoration: underline;
}
.swal2-cmp-info .swal2-html-container a:hover {
	text-decoration: none;
}
.swal2-cmp-info .swal2-html-container__header {
	padding-bottom: 1.5em;
}
.swal2-cmp-info .swal2-html-container__section {
	border-top: 1px solid rgb(230, 230, 230);
	padding: 1.5em 0;
}
.swal2-cmp-info .swal2-html-container__section ol {
	display: flex;
    align-items: center;
    justify-content: center;
	list-style: none;
	margin-bottom: 0.5em;
}
.swal2-cmp-info .swal2-html-container__section li {
	padding: 0;
	width: 50%;
}
.swal2-cmp-info .swal2-html-container__section li:nth-child(1) {
	font-size: 1.375em;
    font-weight: 600;
	text-align: left;
}
.swal2-cmp-info .swal2-html-container__section li:nth-child(2) {
	text-align: right;
}
.swal2-cmp-info .swal2-html-container__section label {
	cursor: pointer;
	display: inline-block;
}
/* max 575 */
	@media screen and (max-width: 575px) {

		.swal2-cmp-info .swal2-html-container__section li:nth-child(1) {
			font-size: 1.2em;
			font-weight: 600;
			text-align: left;
		}
	}

/* toggle-button */
.swal2-cmp-info .toggle-button {
	background: transparent;
	display: inline-block;
	height: 28px;
	margin: 0;
	position: relative;
	vertical-align: middle;
	width: 54px;
}
.swal2-cmp-info .toggle-button input {
	display: none;
}
.swal2-cmp-info .toggle-button span {
	background-color: #ccc;
	bottom: 0;
	cursor: pointer;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	transition: .4s;
}
.swal2-cmp-info .toggle-button span:before {
	background-color: #fff;
	content: "";
	height: 20px;	
	position: absolute;
	bottom: 4px;
	left: 4px;
	transition: .4s;
	width: 20px;
}
.swal2-cmp-info .toggle-button input:checked + span {
  background-color: rgb(0, 45, 114);
}
.swal2-cmp-info .toggle-button input:checked + span:before {
	transform: translateX(26px);
}
.swal2-cmp-info .toggle-button span {
	border-radius: 34px;
}
.swal2-cmp-info .toggle-button span:before {
	border-radius: 50%;
}

/* details */
.swal2-cmp-info details {
	margin-top: 0.5em;
}
.swal2-cmp-info details summary::-webkit-details-marker {
	display: none;
}
.swal2-cmp-info details summary {
	list-style: none;
	position: relative;
}
.swal2-cmp-info details summary:before {
	content: "Więcej";
	cursor: pointer;
	height: auto;
	width: auto;
	position: absolute;
	left: 0;
	top: 0;
	text-decoration: underline;
}
.swal2-cmp-info details[open] summary:before {
	content: "Mniej";
}