/* Service Messages Component Start*/

.info-block {
	display: none;
	position: relative;
	width: 100%;
	padding: 10px 36px 10px 10px;
	background: #d10000;
	color: white;
	font-size: 14px;
	z-index: var(--zindex-info-block);
}

.info-block p {
    margin-bottom: 0;
}

@media (min-width: 480px) {
	.info-block {
		padding: 10px 40px 10px 15px;
	}
}
@media (min-width: 768px) {
	.info-block {
		padding: 13px 45px 13px 15px;
	}
}

.info-block.cookies {
	background: #e5e5e5;
	color: black;
	/*position: fixed;*/
	bottom: 0;
}


/* === CLose Btn === */
.info-block .close{
	width: 36px;
	height: 36px;
	display: block;
	cursor: pointer;
    cursor: hand;
	position: absolute;
	right: 0;
	top: 0;
	background: 0;
	border: 0;
	margin: 0;
	padding: 0;
}
@media (min-width: 480px) {
	.info-block .close{
		width: 36px;
		height: 36px;
	}
}
@media (min-width: 768px) {
	.info-block .close{
		width: 45px;
		height: 45px;
	}
}

.info-block .close:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	cursor: pointer;
    cursor: hand;
	font-family: 'icons';
	font-weight: 300;
	font-size: 36px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\a10f";
	color: #fff;
}

@media (min-width: 768px) {
	.info-block .close:before {
		font-size: 45px;
	}
}

.info-block.cookies .close {
	top: 0;
}
.info-block.cookies span.text a,
.info-block.cookies span.text a:after{
    color: #000;
}
.info-block.cookies .close:before {
	color: #000;
}

.info-block span.text {
	line-height: 16px;
	font-size: 13px;
	font-weight: 400;
	display: table;
	margin: 0 auto;
	position: relative;
}
.info-block:not(.cookies) span.text{
    padding-left: 28px;
}
.info-block:not(.cookies) span.text:before{
	font-family: 'icons';
	content: "\e673";
	color: #fff;
	font-weight: 300;
	font-size: 20px;
	position: absolute;
	top: -1px;
	left: 0;
	display: block;
}

.info-block span.text a {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding-left: 10px;
}

.info-block span.text a:after {
    color: #FFFFFF;
    content: "\e6f7";
    font-family: 'icons';
    font-size: 22px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 16px;
    text-transform: none;
    vertical-align: top;
}

/* Service Messages Component End*/

.alert-message {
	display: none;
}

.alert-message.upper-top {
	position: relative;
	width: 100%;
	z-index: var(--zindex-alert-upper-top);
}

.alert-message.popup-top {
	position: absolute;
	top: 100%;
	width: 100%;
	margin-top: 6px;
}

.alert-message.popup-bottom {
	display: flex;
	flex-flow: column nowrap;
	gap: 6px;
	position: fixed;
	bottom: 0;
	width: 100%;
  pointer-events: none;
	z-index: var(--zindex-alert-popup-bottom);
}
.alert-message.popup-bottom * {
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
	.alert-message.popup-bottom {
		z-index: var(--zindex-alert-popup-bottom-large);
	}
}

.alert-message .message-wrapper {
	position: relative;
	padding: 10px 0 8px 0;
	display: flex;
}

@media (min-width: 768px) {
	.alert-message.upper-top .message-wrapper {
		padding: 14px 0 12px 0;
	}
}

.alert-message.popup-top .message-wrapper,
.alert-message.popup-bottom .message-wrapper {
	border-radius: 5px;
	box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.05);
	padding: 12px 13px 8px 13px;
	/*margin-top: 10px;*/
}

@media (min-width: 768px) {
	.alert-message.popup-top .message-wrapper,
	.alert-message.popup-bottom .message-wrapper {
		padding: 14px 18px 10px 18px;
	}
}

.alert-message .close {
	right: 0;
	top: 0;
	width: 42px;
	height: 42px;
}

.alert-message .close:before {
	position: absolute;
	right: 5px;
	top: 5px;
	font-size: 32px;
	cursor: pointer;
	font-family: 'icons', serif;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\a10f";
	color: var(--alert-close-color);
}

.alert-message .message-wrapper .icon-wrapper {
	height: 20px;
	width: 20px;
	min-width: 20px;
}

@media (min-width: 768px) {
	.alert-message .message-wrapper .icon-wrapper {
		height: 24px;
		width: 24px;
		min-width: 24px;
	}
}

.alert-message .message-wrapper .icon-wrapper svg {
	height: auto;
	width: 100%;
}

.alert-message .message-wrapper .icon-wrapper svg path {
	fill: inherit;
}

.alert-message .message-wrapper .text-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 2px 0 0 16px;
}

.alert-message .message-wrapper .text-wrapper .title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.33;
	padding-bottom: 4px;
}

.alert-message .message-wrapper .text-wrapper .intro-text {
	padding-bottom: 4px;
}

.alert-message .message-wrapper .text-wrapper .intro-text,
.alert-message .message-wrapper .text-wrapper .alert-text {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.43;
}

.alert-message .message-wrapper .text-wrapper .alert-button.showLessBtn {
	display: block;
}

.alert-message .message-wrapper .text-wrapper .alert-button {
	background-color: transparent;
	border-color: transparent;
	padding: 4px 0;
	font-weight: 500;
	line-height: 1.43;
	text-align: left;
	width: 50px;
}
.alert-message .message-wrapper .text-wrapper .alert-button:focus {
	outline: none;
}
