/*general stuff . todo: check*/
.mainHeader, .mainContentSidebar, .mainContentIconBar .mainContentIconBarMob .searchLogo .openbutton .openslider{
	all: unset;
  }

/*mainContent*/
.mainContent{
	display: flex;
	flex: 1;
	height: 100%;
	box-sizing: border-box;
}
/* .mainContentAboBar{
	display: flex;
	flex-direction: column;
	flex-basis: 0%;
	border-right: 1px solid rgb(184, 184, 184);
	border-top: 1px solid #ccc;
	background-color: #ffffff;
	box-sizing: border-box;
} */
.mainContentAboBar{
    z-index: 4;
	position: absolute;
	width: 0px;
	top: 180px;
	left: 10px;
	float: left;
	/* background: rgba(255, 255, 0, 0.15); */
	background-color: hsla(0, 0%, 100%, 0.8);
	transition:0.5s;
	border: 1px;
	border-color: #999;
	border-style: solid;
	border-radius: 4px 4px 4px 4px;
	display: none;
	max-height: 75%;
	overflow: auto;
}
@media only screen and (max-width: 768px) {
	.mainContentAboBar{
		display: none;
	}
}
#aboBarMob{
	display: none;
}
@media only screen and (max-width: 768px) {
	#aboBarMob{
		position: absolute;
		overflow: scroll;
		bottom: 0px;
		height: 0%;
		width: 100%;
		display: block;
		background-color: hsla(0, 0%, 100%, 0.8);
		border-top: 1px solid #333;
	}
}
.aboBarTop{
	font-weight: bold;
	font-size: small;
	padding: 2px;
	background: rgba(255, 255, 0, 0.5);
	border-bottom: 1px solid #333;
}
@media only screen and (max-width: 768px) {
	.aboBarTop{
		font-weight: bold;
		padding: 5px;
		background: rgba(255, 255, 0, 0.5);
		border-bottom: 1px solid #333;
	}
}
.aboBarEntry{
	display: grid;
	grid-template-columns: 250px 19px; 
	grid-template-rows: auto auto; 
	grid-template-areas: 
	"header arrow"
	"list list";
	border-bottom: 1px solid #333;
	z-index: 5;
}
@media only screen and (max-width: 768px) {
	.aboBarEntry{
		display: grid;
		grid-template-columns: 93% 5%;
		grid-template-rows: auto auto; 
		grid-template-areas: 
		"header arrow"
		"list list";
		border-bottom: 1px solid #333;
		z-index: 5;
	}
}
.aboBarEntry:hover{
	background: rgba(0, 0, 0, 0.05);
}
.aboBarHeader{
	grid-area: header;
	/* display: flex; */
	font-weight: bold;
	font-size: small;
	padding: 5px;
	cursor: pointer;
	/* flex-basis: 250px; */
}
.aboBarHeaderEnd{
	border-bottom: none;
}
.aboBarArrow{
	grid-area: arrow;
	/* display: flex; */
	/* flex-basis: 19px; */
	align-items: center;
	font-weight: bold;
}
.aboBarArrow p{
	transform: rotate(90deg);
	margin: 0px;
	margin-top: 7px;
	cursor: pointer;
}
.aboBarList{
	margin: 5px;
	grid-area: list;
	border-top: 1px solid rgb(181, 173, 173);
	font-size: small;
	display: none;
}
.aboBarList.active{
	display: block;
}
.isOnTop{
	z-index: 99999 !important;
}
.mainContentMap{
	display: flex;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	z-index: 1;
	position: relative;
	height: 100%;
	flex-basis: 100%;
    /* width: 100%; */
	box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
	.mainContentMap{
		border-top: none;
		border-right: none;
	}
}
.mainContentSidebar{
	display: flex;
    flex-grow: 0;
    flex-shrink: 0;
	border-left: 1px solid rgb(184, 184, 184);
	border-top: 1px solid #ccc;
	background-color: #ffffff;
	box-sizing: border-box;

}
@media only screen and (max-width: 768px) {
	.mainContentSidebar{
		width: 100vw;
		display: none;
	}
}
@media only screen and (min-width: 769px) {
	.mainContentSidebar{
		flex-basis: 0px;
	}
}
.searchTexts{
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.searchTexts{
		margin-top: 10px;
		font-size: 20px;
		font-weight: normal;
	}
}
#regiondiv{
	display: block;
}
#s_region{
	display: none;
}
#region{
	display: none;
}
#rentsaleselector{
	display: flex;
	flex-direction: row;
}
#labCheckSale{
	margin-left:10px;
}
#emissionselector{
	display: flex;
	flex-direction: row;
}
#labCheckEmPartial, #labCheckEmFull{
	margin-left:10px;
}
/* checkboxes */
.ctypeselector label{
	cursor: pointer;
	display: flex;
	margin-top: 10px;
}
.ctypeselector input[type='checkbox']{
	cursor: pointer;
	opacity: 0;
	position: absolute;
}
.ctypeselector label::before{
	content: '';
	width: 1em;
	height: 1em;
	border: .05em solid black;
	border-radius: .15em;
	margin-right: .5em;
}
.ctypeselector label:hover::before,
.ctypeselector input[type='checkbox']:hover + label::before{
	background-color: #d7d705;
}
.ctypeselector input[type='checkbox']:focus + label::before{
	box-shadow: 0 0 20px black;
}
.ctypeselector input[type='checkbox']:checked + label::before{
	content: '\002714';
	background-color: #ffd400;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
}
#checkEmPartial:checked + label::before{
	background-color: rgb(118, 227, 118);
}
#checkEmFull:checked + label::before{
	background-color: rgb(118, 227, 118);
}

/* radio buttons */

.cap_radio label{
	cursor: pointer;
	display: flex;
	margin-top: 3px;
}
.cap_radio input[type='radio']{
	cursor: pointer;
	opacity: 0;
	position: absolute;
}
.cap_radio label::before{
	content: '';
	width: 1em;
	height: 1em;
	border: .05em solid black;
	border-radius: .15em;
	margin-right: .5em;
}
.cap_radio label:hover::before,
.cap_radio input[type='radio']:hover + label::before{
	background-color: #d7d705;
}
.cap_radio input[type='radio']:focus + label::before{
	box-shadow: 0 0 20px black;
}
.cap_radio input[type='radio']:checked + label::before{
	content: '\002714';
	background-color: #ffd400;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
}

.mainContentIconBar{
	z-index: 3;
	display: flex;
	flex-basis: 50px;
    flex-grow: 0;
    flex-shrink: 0;
	background-color: #ffffff;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
	justify-content: center;
}
@media only screen and (max-width: 768px) {
	.mainContentIconBar{
		z-index: 3;
		display: none;
		flex-basis: 25px;
	}
}
.mainContentIconBarMob{
	display: none;
}
@media only screen and (max-width: 768px) {
	.mainContentIconBarMob{
		display: block;
		float: right;
	}
}
#map {
	z-index: -2;
	height: 100%;
	/* flex-basis: 80%; */
    width: 100%;
}
@media only screen and (max-width: 768px) {
	#map {
		z-index: -2;
		position: relative; /*check if always relative is ok*/
		height: 100%;
		/* height: 70%; */
		width: 100%;
	}
}
img.leaflet-marker-icon{
	filter: contrast(1.5);
}
/* .mainFooter{
	display: flex;
	height: 40px;
	background-color: #ffffff;
} */
.popupHeader{
	margin-bottom: 5px;
}
.popupMain{
	margin-bottom: 5px;
}
.mapCounter {
	width: 150px;
	font-size: 16px;
	color: #333;
	padding: 10px 14px;
	background-color: hsla(0, 0%, 100%, 0.8);
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
	border-radius: 5px;
	line-height: 120%;
	border: 1px solid grey;
  }
@media only screen and (max-width: 768px) {
	.mapCounter {
		position: absolute;
		width: 100px;
		font-size: 12px;
		color: #333;
		right: 50px;
		padding: 5px 6px;
		background-color: hsla(0, 0%, 100%, 0.8);
		box-shadow: 0 0 15px rgb(0 0 0 / 20%);
		border-radius: 5px;
		line-height: 120%;
		border: 1px solid grey;
	  }
}
.openslider {
    padding: 5px;
    width: 40px;
    z-index: 2;
    margin-left: -100px;
	position: relative;
	float: right;
	visibility: visible;
}
@media only screen and (max-width: 768px) {
	.openslider {
		padding: 5px;
		width: 30px;
		z-index: 2;
		margin: auto;
		position: absolute;
		visibility: visible;
	}
}

.slider{
    z-index: 3;
	position: relative;
	width: 0px;
	top: 0;
	right: 0;
	float: right;
	transition:0.5s;
	display: none;
}
@media only screen and (max-width: 768px) {
	.slider{
		width: 100%;
		float: left;
		padding: 10px;
	}
}

/* Tab control */
[data-tab-content]{
	display: none;
}
.active[data-tab-content]{
	display: block;
}
.tab{
	cursor: pointer;
	list-style-type: none;
}
.tab.active{
	background-color: #CCC;
	border-radius: 5px;
}
.tab:hover{
	background-color: #AAA;
	border-radius: 5px;
}
.tabs{
	list-style-type: none;
	padding-inline-start: 0px;
}
.searchLogo{
	width: 35px;
	height: 35px;
	padding-top: 5px;
	padding-bottom: 5px;
}
@media only screen and (max-width: 768px) {
	.searchLogo{
		width: 40px;
		height: 40px;
		padding-top: 2px;
		padding-bottom: 2px;
	}
}
/*style vesselfinder*/
.vfinder{
    z-index: 5;
	width: 0px;
	top: 5px;
	right: 5px;
	position: absolute;
	width: 0px;
	float: right;
	background: #f2f2f2;
	transition:0.5s;
	border: 1px;
	border-color: #999;
	border-style: solid;
	border-radius: 4px 4px 4px 4px;
	display: none;
}
/* getfleet information */
.sliderowner{
    z-index: 4;
	position: absolute;
	width: 0px;
	top: 5px;
	right: 5px;
	float: right;
	background-color: white;
	transition:0.5s;
	border: 1px;
	border-color: #999;
	border-style: solid;
	border-radius: 4px 4px 4px 4px;
	display: none;
	/* max-height: 75%; */
	max-height: 90%;
	overflow: auto;
}
/* floating tooltip for sale */
.saletooltip {
	color: rgb(248, 75, 75);
	margin-left: 30px;
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.saletooltip .saletooltiptext {
	visibility: hidden;
	width: 250px;
	background-color: white;
	color: black;
	text-align: center;
	padding: 5px 0;
	border: 1px;
	border-color: #999;
	border-style: solid;
	border-radius: 6px;
	bottom: 100%;
  	left: 50%;
  	margin-left: -120px;
   
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 5;
}

  /* Show the tooltip text when you mouse over the tooltip container */
.saletooltip:hover .saletooltiptext {
	visibility: visible;
}
.saleimg {
	/* margin-top:6px;
	margin-bottom:6px;	
	float:left; */
	width:150px;
	border:1px;
	border-color: #999;
	border-style:solid;
	border-radius: 4px 4px 4px 4px
}
/* image carousel */
.imageOverlay{
	z-index: 5;
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0%;
	left: 0%;
	float: left;
	background: rgba(0,0,0,0.4);
	display: none;
}
.carousel {
	width: 100%;
	height: 100%;
	z-index: 6;
	margin-top: 10%;
	margin: auto;
	background-color: #ccc;
	border-radius: 5px;
	vertical-align: middle;
}
.carousel > ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.slide{
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 200ms opacity ease-in-out;
	transition-delay: 200ms;
}
.slide > img{
	z-index: 7;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	/* max-width: 800px;
	max-height: 800px; */
}

.slide[data-active] {
	opacity: 1;
	z-index: 1;
	transition-delay: 0ms;
}
.carousel-button{
	position: absolute;
	background: none;
	border: none;
	font-size: 4rem;
	top: 50%;
	z-index: 8;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.5);
	cursor: pointer;
	border-radius: 0.25rem;
	padding: 0.5rem;
	background: rgba(0,0,0,0.1);
}
.carousel-button:hover,
.carousel-button:focus{
	color: white;
	background-color: rgba(0,0,0,0.2);
}
.carousel-button:focus{
	outline: 1px solid black;
}
.carousel-button.prev{
	left: 4rem;
}
.carousel-button.next{
	right: 4rem;
}
.closecarousel{
	z-index: 10;
	position: absolute;
	top: 10px;
	right: 10px;
	/* float: right; */
	visibility: none;
}
/* .btn-close{
	font-size: 30px;
	float: right;
} */

.s_header{
	font-size: 24px;
	/* font-family:"Arial", Serif; */
}
.closebutton{
	float: right;
	z-index: 5;
	visibility: none;
}
@media only screen and (max-width: 768px) {
	.closebutton{
		display: none;
	}
	.closebuttonMob{
		float: right;
		z-index: 5;
		padding: 10px 15px 5px 0px;
	}
}
.closebuttonO{
	float: right;
	visibility: none;
}
.closebuttonV{
	float: right;
	visibility: none;
}
.capacity_min, .capacity_max, .bl_min, .bl_min_jib {
	width: 110px;
}
.bl_min{
	margin-right: 5px;
}
.chosen-container.chosen-container-single {
    width: 300px !important; /* otherwise Chosen sets width to 0 */
}
@media only screen and (max-width: 768px) {
	#oselect, #mselect{
		width: 300px;
	}
}
.ownername{
	margin-top:10px;
	margin-right:20px;
	font-size: 18px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.ownername{
		font-size: 18px;
	}
}

.owner_name_local{
	font-size: 14px;
}
.owner_main{
	font-size: 15px;
	font-weight: normal;
	color: #555252;
}
.owner_main a, .owner_sub a{
	font-size: 15px;
	text-decoration: underline;
	font-weight: normal;
	color: #555252;
}
@media only screen and (max-width: 768px) {
	.owner_main a, .owner_sub a{
		font-size: 14px;
		text-decoration: none;
	}
}
.phone{
	text-decoration: underline;
	color: #555252;
}
.fa-phone-alt{
	padding-right: 2px;
}
.fa-envelope, .fa-external-link-alt, .fa-list, .fa-info{
	color:#333;
}
.socialItems{
	padding-left: 10px;
}
.fab, .fas{
    font-size: 20px;
    /* width: 25px; */
    border-radius: 50%;
    text-decoration: none;
    margin: 5px;
}
@media only screen and (max-width: 768px) {
	.fab, .fas{
		margin-right: 10px;
	}
}
.fa-leaf{
	color: rgb(39, 193, 49);
	font-size: 12px;
	margin: 0px;
	margin-right: 5px
}
.fa-whatsapp{
	color: rgb(39, 193, 49);
}
.fa-facebook{
    color: #17A9FD;
}
.fa-instagram{
	color: #125688;
}
.fa-youtube{
    color: #bb0000;
}
.fa-twitter{
	color: #55ACEE;
}
.fa-linkedin{
	color: #007bb5;
}
.fa-xing{
	color: #126567;
}
.fa-tiktok{
	color: #25F4EE;
}

#buttonflexbox {
	display: flex;
}

.fleetlist, .owneradress{
	margin-top:5px;
	font-size: 14px;
}
.ownersubtitle, .partnerItems{
	font-size: 15px;
	font-weight: bold;
}
.newcountry{
	font-size: 15px;
	font-style: italic;
	margin-top: 3px;
	margin-bottom: 3px;
}
.ownersub{
	font-size: 16px;
	font-weight: normal;
	text-decoration: underline;
	margin-bottom: 3px;
}
@media only screen and (max-width: 768px) {
	.ownersub{
		font-size: 18px;
		font-weight: bold;
	}
}
.location{
	width: 18px;
	height: 18px;
}
.veslocation{
	width: 15px;
	height: 15px;
}
.fleet8{
	margin-bottom: 5px;
}
#s_button{
	background: #ffd400;
	color: rgb(22, 21, 21);
	font-family: calibri;
	width: 110px;
	font-size: 24px;
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	margin: 20px auto;
	cursor: pointer;
	float: left;
	border-radius: 10px;
	border: 1px solid black;
}
#r_button{
	background: #ffd400;
	color: rgb(22, 21, 21);
	font-family: calibri;
	width: 110px;
	font-size: 24px;
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	margin: 20px auto;
	cursor: pointer; 
	float: right;
	border-radius: 10px;
	border: 1px solid black;
}

/* The switch - the box around the slider */
.encluster, .enlocation, .enfollow {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.encluster input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.clusterslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.clusterslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .clusterslider {
  background-color: #ffd400;
}

input:focus + .clusterslider {
  box-shadow: 0 0 1px #ffd400;
}

input:checked + .clusterslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.clusterslider.round {
  border-radius: 34px;
}

.clusterslider.round:before {
  border-radius: 50%;
}

img.huechange { filter: hue-rotate(140deg); } /*for user location*/

/* Spinner */

.spinnerbox {
	z-index: 11;
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0%;
	left: 0%;
	float: left;
	transition: 0.5s;
	background: rgba(0,0,0,0.4);
	display: none;
}

.spinner {
	z-index: 12;
	position: absolute;
	top: 50%;
	left: 50%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 200px;
}

.spinner-text{
	animation: loading-opacity 3s ease-in-out infinite;
	font-size: 2em;
	font-style: bold;
	font-family:"Arial", Serif;
}

.spinner-sector {
	border-radius: 50%;
	position: absolute;
	width: 100%;
	height: 100%;
	border: 15px solid transparent;
	mix-blend-mode: overlay;
}

.spinner-sector-yellow1 {
	animation: rotate 2s ease-out infinite;
	border-top: 15px solid #ffff95;
}

.spinner-sector-yellow2 {
	animation: rotate 2.5s ease-in infinite;
	border-top: 15px solid #ffff05;
}

.spinner-sector-yellow3 {
	animation: rotate 1.5s ease-in-out infinite;
	border-top: 15px solid #d7d705;
}

@keyframes  rotate {
	from{transform: rotate(0);}
	to {transform: rotate(360deg);}
}

@keyframes loading-opacity {
	0%, 100%{
		opacity: 1;
	}
	25%, 75%{
		opacity: .5;
	}
	50%{
		opacity: .1;
	}
}

/* Mail form */
.mailOverlay{
	z-index: 11;
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0%;
	left: 0%;
	float: left;
	background: rgba(0,0,0,0.4);
	display: none;
}
.MailErrors{
	font-size: 12px;
	color: red;
	text-align: center;
	height: 30px;
}
.MailAbout{
	font-size: 12px;
	color: #555252;
	text-align: center;
	height: 30px;
	display: none;
}
.mailForm{
	max-width: 350px;
	margin: auto;
	padding: 0px 20px 20px 20px;
	background: #fff;
	vertical-align: middle;
	/* margin-top: auto; */
	border-radius: 20px;
}
@media only screen and (max-width: 768px) {
	.mailForm{
		padding: 20px;
		margin-top: 5px;
	}
}
.mailForm > h2 {
	margin: auto;
	padding: 20px 0px 0px 0px;
	font-size: 1em;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.mailForm > h2 {
		margin: 0;
		padding: 0;
		font-size: 1.2em;
		text-align: center;
	}
}
#mail_form{
	margin-top: 10px;
}
@media only screen and (max-width: 768px) {
	#mail_form{
		margin-top: 30px;
	}
}
#mail_form > input {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	outline: none;
	border: 1px solid gray;
	font-size: 15px;
	border-radius: 5px;
}
#mail_form > textarea {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	outline: none;
	border: 1px solid gray;
	font-size: 15px;
	border-radius: 5px;
	max-width: 350px;
}
#mail_form > input[type=submit]{
	font-size: 16px;
	margin-top: 10px;
	color: #333;
	font-weight: bold;
	background: #ffd400;
	border: 1px solid #fff;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	#mail_form > input[type=submit]{
		margin-top: 20px;
	}
}
.closeMailbtn {
	position: absolute;
	margin-left: 320px;
	font-size: 40px;
	cursor: pointer;
	color: #555252;
}
@media only screen and (max-width: 768px) {
	.closeMailbtn {
		top: 20px;
		right: 45px;
		font-size: 60px;
	}
}
.closeMailbtn:hover {
	color: #ccc;
}
.captcha_cont{
	width: 350px;
	background-color: #fff;
	border-radius: 0.6em;
	margin: auto;
}
@media only screen and (max-width: 768px) {
	.captcha_cont{
		width: 300px;
	}
}
.captcha{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2px;
	margin-bottom: 2px;
}
@media only screen and (max-width: 768px) {
	.captcha{
		margin: 1em 0;
	}
}
#canvas{
	border: 1px solid gray;
	border-radius: 0.4em;
	margin-right: 10px;
}
#reload-captcha{
	font-size: 32px;
	width: 4.6em;
	background-color: #ffd400;
	border: none;
	border-radius: 0.4em;
	color: #333;
	height: 50px;
	margin-left: 10px;
}
#captcha-input{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	outline: none;
	border: 1px solid gray;
	font-size: 15px;
	border-radius: 5px;
}
/* location button */
.located-animation {
	width: 17px;
	height: 17px;
	border: 1px solid #fff;
	border-radius: 50%;
	/* background: #2a93ee; */
	background: #fc0101;
	animation: border-pulse 2s infinite;
  }
  
  @keyframes border-pulse {
	0% {
	  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
	}
  
	70% {
	  box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
	}
  
	100% {
	  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
	}
  }
  
  .locate-active {
	fill: red;
  }
  
  .locate-button {
	position: absolute;
	top: 140px;
	left: 10px;
	width: 26px;
	height: 26px;
	z-index: 999;
	cursor: pointer;
	display: none;
	padding: 5px;
	background: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0 1px 5px rgb(0 0 0 / 65%);
  }
  
  .leaflet-touch .locate-button {
	width: 20px;
	height: 20px;
  }