body {
    background-color: #F0EDD8;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    font-weight: bold;
}
#WoTEHeader {
    height: 70px;	
    overflow: hidden;
    position: relative;
    background: gray;
    color: white;
}   
#WoTEHeader p {
    position: absolute;
    font-size: 30px;
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%);	
    transform:translateX(100%);
    /* Apply animation to this element */	
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
   }
   /* Move it (define the animation) */
   @-moz-keyframes scroll-left {
    0%   { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
   }
   @-webkit-keyframes scroll-left {
    0%   { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
   }
   @keyframes scroll-left {
    0%   { 
    -moz-transform: translateX(100%); /* Browser bug fix */
    -webkit-transform: translateX(100%); /* Browser bug fix */
    transform: translateX(100%); 		
    }
    100% { 
    -moz-transform: translateX(-100%); /* Browser bug fix */
    -webkit-transform: translateX(-100%); /* Browser bug fix */
    transform: translateX(-100%); 
    }
}

#topBarDiv {
    background-color: #B80000;
    overflow: hidden;
    padding: 10px;
}

#WoTELogoDiv {
    float:left;
    width: 80px;
    text-align: center;
}

#topBarDiv a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
}

/* Change the color of links on hover */
#topBarDiv a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
#topBarDiv a.active {
    background-color: #B7F819;
    color: white;
}
#map-div {
    background-color: #1D0100;
    width: fit-content;
    position: relative;
    margin: 0;
    left: 50vw;
    transform: translate(-50%);
    margin-top: 15px;
    margin-bottom: 15px;
}
#map-img {
    width: 75vw;
    margin: 0;
}
.map-poi {
    position: fixed;
    width: 10px;
    height: 10px;
    display: grid;
    grid-template-columns: 40vw;
    grid-template-rows: auto;
    row-gap: 0;
}
.map-poi .map-poi-marker {
    height: 40px;
    width: 40px;
    transform: translate(-50%, -50%);
    position: absolute;
}
.map-poi .map-poi-img {
    width: 10px;
    height: 10px;
    background-color: #1D0100;
    margin: 0;
    opacity: 0;
}
.map-poi:hover .map-poi-img {
    opacity: 100;
    width: 40vw;
    height: auto;
    border-radius: 0;
    transition: width 1s, height 1s;
}
.map-poi p {
    opacity: 0;
    font-size: 0px;
    margin: 0;
}
.map-poi:hover p {
    opacity: 100%;
    transition: opacity 1s;
    transition-delay: 1s;
    width: calc(40vw - 40px);
    height: auto;
    clear: right;
    color: #F0EDD8;
    background-color: #1D0100;
    text-align: bottom;
    padding: 20px;
    font-weight: bold;
    text-shadow: 2px 2px #1D0100, -2px 2px #1D0100, -2px -2px #1D0100, 2px -2px #1D0100;
    font-size: 18px;
}
#map-div:has(.map-poi:hover) #map-img {
    filter: blur(3px);
    transition: filter 1s;
}
.map-poi-r:hover .map-poi-img {
    transform: translate(calc(-100% + 10px));
}
.map-poi-r:hover p {
    transform: translate(calc(-100% + 10px));
}

#venice-poi {
    position: absolute;
    top: 23%;
    left: 58%;
}
#tcak-poi {
    position: absolute;
    top: 21%;
    left: 85%;
}
#tots-poi {
    position: absolute;
    top: 21%;
    left: 8%;
}
.swiper {
  width: 600px;
  height: 300px;
}
#aboutUsDiv {
    width: auto;
    height: auto;
    text-align: left;
    font-size: 18pt;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    margin-top: 18px;
    background-color: #B80000;
}
#aboutUsP {
    margin: 12px;
}
.formDiv {
    padding: 10px;
    width: 240px;
}
.formHeaderP {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
}



/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  top: 23px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
    font: bold;
    display: none;
    position: fixed;
    z-index: 9;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 60px;
}

/* Add styles to the form container */
.form-container {
    width: fit-content;
    padding: 10px;
    background-color: #CF6553;
    border-radius: 15px;
    padding: 60px;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 90%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  border-radius: 10px;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #B7F819;
  color: #1D0100;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 40%;
  margin-bottom:10px;
  opacity: 0.8;
  border-radius: 10px;
  margin-top: 10px;
  position: fixed;
  bottom: 60px;
  right: 80px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #B80000;
  color: #1D0100;
  border-radius: 15px;
  position: fixed;
  top: 70px;
  right: 80px;
  width: 30px;
  height: 30px;
  padding:0px;
  outline: 5px solid #1D0100;
  font-size: 18px;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
} 