@import "/assets/fonts/bootstrap-icons.css";
@font-face {
	font-family: "Nunito";
	src: url("/assets/fonts/Nunito-Regular.ttf");
}

@font-face {
	font-family: "Nunito-SemiBold";
	src: url("/assets/fonts/Nunito-SemiBold.ttf");
}

* {
	font-family: Nunito, "Nunito", sans-serif;
	font-style: normal;
	font-weight: 400;
}

body {
	color: #343A40;
}
#page-holder {
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: row-reverse;
}
#page-footer {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 48px;
	width: 100%;
	padding: 16px 104px;
}

#page-footer .lang-selector {
	text-align: right;
}

#image-container {
	width: 61.8%;
	background-image: url("../images/background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
}

#blacklist-msg {
	margin-top: 20px;
}
#form-actions {
	margin-bottom: 32px;
}
#form-actions button {
	margin-left: 0;
}

#form-container {
	background: linear-gradient(0deg, #FFFFFF, #FFFFFF), #F2F1F6;
	box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.25);
	padding: 160px 104px 16px 104px;
	margin: 0;
	width: 38.2%;
	min-height: 100vh;
	position: relative;
}

#form-content-container {
	margin: 0 0 48px;
}

#logo-container {
	width: 100%;
	margin-bottom: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#logo-container img {
	width: 290px;
}

.lang-selector-container {
	width: 100%;
	text-align: right;
	position: relative;
	top: -40px;
	padding-top: 24px;
}

a.lang-selector {
	color: #343A40;
	padding: 0 6px;
	border-right: 1px solid #e3e3e3;
}
a.lang-selector.first{
	border-left: 1px solid #e3e3e3;
}
span.form-heading {
	font-size: 40px;
	margin-bottom: 40px;
	display: block;
	color: #212529;
}
span.form-details {
	font-size: 16px;
}
.text-muted {
	font-size: 12px;
}

img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 900px;

	/* Set up proportionate scaling */
	width: 100%;
	height: auto;

	/* Set up positioning */
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -99999;
}

/* buttons */
.btn {
	padding-top: 5px;
	padding-bottom: 5px;
    border-radius: 1px;
    box-shadow: 3px 3px 6px -3px rgba(64, 64, 64, 0.5);
}

.btn:hover, .btn:focus {
	background-color: inherit;
    background-position: inherit;
}

.btn-default {
	background-image: linear-gradient(to bottom, #FAFAFA 2%, #EFEFEF 98%);
	border-color: #C5C5C5 #C5C5C5 #BCBCBC;
}

.btn-primary {
	width: 100%;
	height: 100%;
	color: white;
	background-color: #E2001A;
	border-color: #E2001A;
	background-image: none;
	border-radius: 5px;
	font-size: 20px;
    white-space: normal;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
	color: white;
	background-color: #D3000B;
	border-color: #D3000B;
}

.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus {
	box-shadow: 0 0 0 0.25rem rgb(195 0 22 / 50%);
	outline: none;
}

.btn-secondary {
	width: 100%;
	height: 100%;
	color: white;
	background-color: #6c757d;
	border-color: #6c757d;
	background-image: none;
	border-radius: 5px;
	font-size: 20px;
    white-space: normal;
}

.btn-secondary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
	color: white;
	background-color: #5c636a;
	border-color: #565e64;
}

.btn-secondary:focus, .btn-primary.active:focus, .btn-primary:active:focus {
	box-shadow: 0 0 0 0.25rem rgb(195 0 22 / 50%);
	outline: none;
}

/* alert message boxes */
.alert {
	color: #333333;
	background-image:none;
	box-shadow: none;
	padding: 5px 10px 5px 10px;
}	
.alert-warning {
	border-color: #FFD400;
    background-color: #FFE566;
}
.alert-danger {
	border-color:#A51717;
	background-color:#EA7878;
}

/* Form */
.form-heading {
	font-size: 16pt;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Detail text about the form */
.form-details {
	font-size: 10pt;
}

.form-group {
	margin-bottom: 24px;
}

.form-group p {
	text-align: center;
	font-size: 16px;
	color: #6C757D;
	margin-bottom: 32px;
	line-height: 2;
}

.form-group p a {
	color: #E2001A;
}

/* A form inputfield label */
.form-label {
	font-size: 16px;
	color: #343A40;
}

/* Form input field */
.form-control {
	height: 48px;
}
	
/* Error Message Box */
.alert-danger {
	color: #212529;
	padding: 8px;
	font-size: 16px;
	display: none;
}

.back-button {
	display: block;
	width: auto;
}

.back-button.mobile {
	display: none;
}

.bi-arrow-left-short {
	font-size: 16px;
	color: white;
}

/* Outer box around error message */
.sls-global-errors-box {
	border: 1px solid red;
	margin-bottom: 20px;
	margin-top: 20px;
	padding: 6px;
	background-color: rgb(240, 190, 190);
	width: 574px;
   text-align: left;
}

/* error message */
.sls-global-errors-msg {
	font-size: 10pt;
}

 /*===============================================
  Page Footer Area
  ===============================================*/

/*===============================================
  Critical production warnings (in footer)
  Only visible if "debug.info" is set to "false"
  in the "sls.properties" configuration file.
  ===============================================*/

/* Outer DIV box around critical warnings */
.sls-critical-warnings {
	border: 3px solid red;
	padding: 4px;
	background-color: rgb(240, 190, 190);
}

/* Critical warnings heading */
.sls-critical-warnings h3 {
	font-size: larger;
	padding: 6px;
	color: white;
	margin-top: 0px;
	margin-bottom: 12px;
	border: none;
	background-color: red;
}

/* Upper, larger critical warnings label */
.sls-critical-warnings-txt {
	font-size: 10pt;
	font-weight: bold;
}

/* Critical warnings table (inner box with details) */
.sls-critical-warnings-table {
	margin-top: 10px;
	padding: 6px;
	border-right: solid 1px white;
	border-bottom: solid 1px white;
	border-left: solid 1px grey;
	border-top: solid 1px black;
	background-color: rgb(255, 220, 220);
}

/* Critical warnings details in inner box */
.sls-critical-warning {
	font-size: 10pt;
	color: #000000;
}

/*===============================================
  Debug Information List (in footer)
  Only visible if "debug.info" is set to "true"
  in the "sls.properties" configuration file.
 ===============================================*/

/* Sub-heading over each table */      
.debuginfo-h3 {
	font-size: 10pt;
}

/* Details table */	
.debuginfo-table {
	border-collapse: collapse;
	margin-left: 20px;
	padding: 0px;
	background-color: rgb(238, 238, 238);
	border: 1px solid rgb(120, 120, 120);
	font-size: 8pt;
}

/* Details table heading row */	
.debuginfo-heading {
	background-color: rgb(180, 180, 180);
	font-weigth: bold;
	text-align: left;
	font-size: 8pt;
}

/* Cell in table heading row */	
.debuginfo-heading th {
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-top: 2px;
}

/* Alternative table row */	
.debuginfo-alt {
	background-color: white;
}

/* Cell in alternative table row */	
.debuginfo-alt td {
	padding-left: 4px;
	padding-right: 4px;
}

/* Cell in default table row */	
.debuginfo-default td {
	padding-left: 4px;
	padding-right: 4px;
}

/*===============================================
  Copyright / company label
 ===============================================*/

/* Copyright / company label */
.copyright-label {
   margin-top: 10px;
   text-align: center;
	font: 9px verdana;
	color: #848f96;
}

/* Cook Banner */
.cookie-banner {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #E2001A;
	color: white;
	padding: 16px 24px;
	z-index: 1;
    justify-content: space-between;
}

.cookie-banner p {
	margin-bottom: 0;
    width: calc(100% - 174px);
}

.cookie-banner .btn-secondary {
	width: 150px;
	height: 48px;
	color: #E2001A;
	background-color: white;
	border-color: white;
	background-image: none;
	border-radius: 4px;
	font-size: 16px;
}

.cookie-banner .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus {
	color: #E2001A;
	background-color: #f6f6f6;
	border-color: #f6f6f6;
}

.cookie-banner .btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus {
	box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 50%);
	outline: none;
}

.cookie-banner.hidden {
	display: none;
}

@media screen and (max-width: 767px) {
	.row {
		margin-bottom: 10px;
	}
	a.lang-selector {
		padding: 0 6px;
	}
	#form-container {
		margin: 0;
	}
	body {
		padding: 0;
	}

	.lang-selector-container {
		margin-bottom: 24px;
		text-align: center;
	}

	.back-button {
		display: none;
	}

	.back-button.mobile {
		display: block;
		right: 24px;
	}

	#form-content-container {
		margin: 0 0 120px;
	}

	#form-container {
		padding: 40px 24px 16px 24px;
	}

	#page-footer {
		height: 120px;
		padding: 16px 24px;
	}

	.footer-infos {
		height: 100%;
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
	}

	#page-footer .copyright, #page-footer .lang-selector {
		width: 100%;
		text-align: center;
	}

	.cookie-banner {
		display: block;
	}

	.cookie-banner p {
		margin-bottom: 24px;
        width: 100%;
	}

	.cookie-banner .btn-secondary {
		width: 100%;
	}
}
@media screen and (max-width: 350px) {
	#lang-holder span.form-details {
		font-size: 14px;
	}
	a.lang-selector {
		padding: 0 4px;
	}
}

@media screen and (max-width: 900px) { /* Specific to this particular image */
	img.bg {
		left: 50%;
		margin-left: -450px;   /* 50% */
	}
}

@media (max-width: 1199px) {
	#image-container {
		display: none;
	}

	#form-container {
		width: 100%;
	}
}