body {
	//background-image: url('res/bg.jpg');
	//background-repeat: repeat;
}
a#link-to-fond:hover {
	background-color: #fff;
	color: #4e80ff !important;
}
a#link-to-fond:visited {
	color: #fff;
}
#close-fond-bar:hover {
	cursor: pointer;
}
#fond-bar {
	display: block;
	height: 50px;
	max-height: 60px;
	min-height: 10px;
	background-color: #147bd1;
	padding: 5px 5px 5px 10px;
	position: fixed;
	left: 0;
	top: 42px;
	margin-top: -60px;
	width: 100%;
	z-index: 999999;
	text-align: center;
	-webkit-box-sizing: initial;
	box-sizing: initial;
}
#fond-bar-container {
	display: inline-block;
	width: 98%;
	margin: 0;
	position: relative;
	line-height: 32px;
	max-height: 32px;
}
#fond-text {
	position: relative;
	color: #fff !important;
	font-size: 16px !important;
	text-align: centecenter !important;
	margin: 0 !important;
	float: left !important;
	text-shadow: none !important;
	padding: 4px !important;
	line-height: 60px;
	vertical-align: middle;
	width: 100%;
}
#fond-text,
#link-to-fond {
	font-family: walsheim, Arial !important;
}
#link-to-fond {
	color: #fff;
	font-size: 14px !important;
	font-weight: 400 !important;
	border: 1px solid #fff;
	padding: 6px 20px;
	border-radius: 2px;
	text-decoration: none !important;
	margin-left: 12px;
}
#fond-small {
	width: 24px;
	height: 24px;
	margin-right: 8px;
	margin-top: -2px;
	vertical-align: middle;
	display: inline !important;
}
#close-fond-bar {
	position: absolute;
	top: 26px;
	right: 5px;
	width: 14px;
	z-index: 999999;
	font-family: Arial;
	font-size: 12px;
}
.map-container {
	display: flex;
	justify-content: center; /* Aligns horizontally */
	align-items: center;     /* Aligns vertically if needed */
}

.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
}
label {
	display: block; /* Ensures labels are on a new line */
	margin-bottom: .5rem; /* Adds some space below each label */
	font-size: 1.1rem; /* Slightly larger font size */
	font-weight: bold; /* Makes the font weight bold */
	color: #333; /* Darker text for better readability */
	text-align: left;
}
.form-check-label {
	margin-left: 10px;
	font-weight: normal; /* Normal text weight for checkbox labels */
	color: #333; /* Darker text for better readability */
	text-align: left;
}
.form-check-input{
	text-align: left;
}
.form-check {
	text-align: left;	
}
.form-group {
	margin-bottom: 1rem; /* Adds more space below each form group */
}			
.schedule {
  text-align:left;
  padding-left:5px;
  padding-top:5px;
  padding-bottom:5px;
  padding-right:5px;
  margin-right:5px;
  margin-left:5px;
}
.faq {
	list-style: disc;
	padding-left: 0px;
}
.form-control-select {
	appearance: none;
	background-image: url('dropdown.png');
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#randomImage {
  position: fixed;
  bottom: 10px; /* Adjust as needed */
  width: 80px;
  display: none; /* Initially hide the image */
  cursor: pointer;
}
@media only screen and (max-width: 100px) {
  #randomImage {
    width: 50px; /* Adjust size for mobile */
  }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

#randomImage.fadeOut {
  animation: fadeOut 1s;
}

@keyframes moveIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes moveOut {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

.moveIn {
  animation: moveIn 1s forwards;
}

.moveOut {
  animation: moveOut 1s forwards;
}


.custom-toggle .form-check-input {
    width: 3em; /* Adjust the width as needed */
    height: 1.5em; /* Adjust the height as needed */
}

.custom-toggle .form-check-input::before {
    width: 1.5em; /* Adjust the handle size */
}

.custom-toggle .form-check-input::after {
    width: 1.5em; /* Adjust the handle size */
}
.custom-toggle .form-check-label {
    line-height: 1.5em; /* Adjust to match the toggle height */
    vertical-align: middle; /* Aligns the label vertically */
	margin-left:20px;
	padding-top:1.5px;
}

.custom-toggle .form-check {
    margin-bottom: 1em; /* Adjust as needed for spacing below the toggle */
}

