* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
}


html,
body{
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}




.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}


.menu-button {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #2c8dfb;
}

.tag-basic{
	padding:5px;
	border-radius:5px;
	background-color:white;
	display:block;
}

.tag-viewer{
	background-color:yellow;
	padding:5px;
	border-radius:5px;
	display:block;
}
.tag-event{
	background-color:yellow;

}
.tag-appointment{
	background-color:orange;

}
.tag-questionare{
	background-color:blue;

}

.tag-basic.left{
  position:absolute; 
  left: 0px;
  bottom: 0px;
}

.tag-basic.active{
  position:fixed; 
  left: 0px;
  display:none;
}

.tag-viewer.active{
  position:fixed; 
  left: 0px;
  display:none;
}

.tag-viewer.right{
  position:absolute; 
  right: 0px;
  bottom: 0px;	
}

.roulette{overflow:hidden}.roulette__list{display:flex;list-style:none;padding:0;margin:0}.roulette__prize{flex:0 0 auto;display:flex;align-items:center;align-content:center;justify-content:center}


.flip-card {
  background-color: transparent;
  width: 160px;
  height: 60px;
  border: 2px solid #fce4d4;//L4
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transition: -webkit-transform 0.8s;

}

.flip-card.flipped .flip-card-inner {
  transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #f6ae7e;//L2
  color: black;
}

.flip-card-back {
  background-color: #f07826;//naranja
  color: white;
  transform: rotateX(180deg);
}


#optButtons button,
#recButtons button,
#viewButtons button {
  margin:5px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 51, 102, 0.5);
  font-family: Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}


#carrouselminus,
#carrouselplus {
  cursor: pointer;
}
/* Remove the gray color change on hover for the links */
a#basicOptionsOptions:hover, a#basicPlayButton:hover {
  color: inherit; /* Inherit the color from the parent container */
  text-decoration: none; /* Remove underline on hover if present */
  /* Add any other styles you want for the hover effect */
    cursor: pointer;
}

.carrousel{
	pointer-events: none;
	opacity: 0;
	position:absolute;
	width:100%;
	transition: opacity .5s ease-in-out;
	z-index:0;
}

.carrousel.active{
	opacity: 1;
	pointer-events: auto;
}

.optionButtonsContainer{
	
	opacity:0;
	pointer-events: none;
	transition: opacity .5s ease-in-out;
	/*transform: translateZ(0);*/ /* makes buttons drop the absolute attribute */
}

.optionButtonsContainer.active{
	opacity: 1;
	pointer-events: auto;
}

.carrousel h2{
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.message {
	margin-bottom: 20px;
}

#error {
	color: red;
}

.basicPngImage{
	max-width:200px;
}

.flexbox {
	display: flex;
	flex-wrap: wrap;
}

@media (orientation: landscape) {
.flexbox {
	flex-direction: row;
}
.column{
	width:50%;
	height: 400px;
}

}
#tagSuggestions > div {
    background-color: #ffffff;
    border-bottom: 1px solid #ccc; /* Add a 1px solid border at the bottom */
    padding: 5px; /* Add padding for better spacing */
    cursor: pointer; /* Change cursor to indicate interactivity */
}


#tagSuggestions > div.selected {
    background-color: #007bff;
    color: white;
}


@media (orientation: portrait) {
	.flexbox {
		flex-direction: column;
	}
	.column{
	width:80%;
	height:800px;;
	}
}

.login, .register {
  width: 400px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
}

.login h1, .register h1 {
  text-align: center;
  color: #5b6574;
  font-size: 24px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}

.login .links, .register .links {
  display: flex;
  padding: 0 15px;
}

.login .links a, .register .links a {
  color: #adb2ba;
  text-decoration: none;
  display: inline-flex;
  padding: 0 10px 10px 10px;
  font-weight: bold;
}

.login .links a:hover, .register .links a:hover {
  color: #9da3ac;
}

.login .links a.active, .register .links a.active {
  border-bottom: 3px solid #3274d6;
  color: #3274d6;
}

.login form, .register form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login form label, .register form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 50px;
  background-color: #3274d6;
  color: #ffffff;
}

.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  width: 80%;
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
}

.login form input[type="submit"], .register form input[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #3274d6;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.login form input[type="submit"]:hover, .register form input[type="submit"]:hover {
  background-color: #2868c7;
  transition: background-color 0.2s;
}

.login form #rememberme, .register form #rememberme {
  width: 100%;
  height: auto;
  padding: 5px 20px;
  background-color: transparent;
  color: #000;
  justify-content: flex-start;
}

.login form #rememberme input, .register form #rememberme input {
  transform: scale(1.3);
  margin-right: 7px;
}

.login form .msg, .register form .msg {
  padding: 0 20px;
  width: 100%;
}

.login form .captcha, .register form .captcha {
  display: flex;
}

.login form > a, .register form > a {
  text-decoration: none;
  color: #5b6574;
  width: 100%;
  padding: 5px 20px;
}

.login form > a:hover, .register form > a:hover {
  color: #394049;
}

.navCalendar {
  background-color: #2f3947;
  height: 60px;
  width: 100%;
  border: 0;

  
}



.navtop {
  background-color: #2f3742;
  height: 60px;
  width: 100%;
  border: 0;
}

.navtop div {
  display: flex;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  padding: 10px;
  height: 100%;
}

.navtop div h1, .navtop div a {
 
}

.navtop div h1 {
  flex: 1;
  font-size: 22px;
  padding: 0;
  margin: 0;
  color: #eaebec;
  font-weight: normal;
}

.navtop div a {
  padding: 10px;
  text-decoration: none;
  color: #c1c3c6;
  font-weight: bold;
}

.navtop div a i {
  padding: 2px 8px 10px 0px;
  
}

.navtop div a:hover {
  color: #eaebec;
}

.content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 10px;
}

.content h2 {
  margin: 0;
  padding: 25px 0;
  font-size: 22px;
  border-bottom: 1px solid #ebebeb;
  color: #666666;
}


.navCalendar {
  background-color: #2f3742;
  height: 60px;
  width: 100%;
  border: 0;
}

.navCalendar div {
  display: flex;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  padding: 0 10px;
  height: 100%;
}

.navCalendar div h1, .navCalendar div a {
  display: inline-flex;
  align-items: center;
}

.navCalendar div h1 {
  flex: 1;
  font-size: 22px;
  padding: 0;
  margin: 0;
  color: #eaebec;
  font-weight: normal;
}

.navCalendar div a {
  padding: 10px;
  text-decoration: none;
  color: #c1c3c6;
  font-weight: bold;
}

.navCalendar div a i {
  padding: 2px 6px 0 0;
}

.navCalendar div a:hover {
  color: #eaebec;
}


.navCalendar div {
	
	
  background-color: #2f3742;
  height: 60px;
  width: 100%;
  border: 0;
  
  display: flex;
  margin: 0 auto;
  width: 1000px;
  height: 100%;

}

.navCalendar div h1, .navCalendar div a {
  display: inline-flex;
  align-items: center;
}

.navCalendar div h1 {
  flex: 1;
  font-size: 22px;
  padding: 0;
  margin: 0;
  color: #eaebed;
  font-weight: normal;
}

.navCalendar div a {
  padding: 0 15px;
  text-decoration: none;
  color: #c1c4c8;
  font-weight: 600;
  font-size: 16px;
}

.navCalendar div a i {
  font-size: 14px;
  padding: 2px 8px 0 0;
}

.navCalendar div a:hover {
  color: #eaebed;
}

body.loggedin {
  background-color: #f3f4f7;
}

.content {
  width: 1000px;
  margin: 0 auto;
}

.content h2 {
  margin: 0;
  padding: 25px 0;
  font-size: 20px;
  border-bottom: 1px solid #e0e0e3;
  color: #4a536e;
}

.content .block {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  padding: 25px;
  background-color: #fff;
}

.content .block p {
  padding: 5px;
  margin: 0 0 10px 0;
}

.content.profile form label {
  display: block;
  padding: 15px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #4d4d4d;
}

.content.profile form input[type="text"], .content.profile form input[type="password"], .content.profile form input[type="email"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.content.profile .profile-detail {
  padding: 5px;
}

.content.profile .profile-detail strong {
  display: inline-block;
  color: #777;
  min-width: 120px;
  font-size: 16px;
}

.content.profile .profile-detail i {
  width: 28px;
  color: #aaabad;
}

.content.profile .profile-btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: #fff;
  background-color: #3274d6;
  margin: 20px 5px 0 0;
  padding: 10px 15px;
  border-radius: 4px;
  appearance: none;
  font-size: 14px;
}

.content.profile .profile-btn:hover {
  background-color: #2868c7;
}

@media screen and (max-width: 400px) {
  .login, .register {
    width: 95%;
  }
}

@media screen and (max-width: 1000px) {
  .navCalendar {
    height: auto;
    padding: 10px;
  }
  .navCalendar div {
    flex-flow: wrap;
    width: 100%;
  }
  .navCalendar div h1 {
    display: block;
    flex-basis: 100%;
  }
  .navCalendar div a {
    padding: 10px 0;
    flex-basis: 50%;
  }
  .content {
    padding: 10px;
    width: 100%;
  }
  .content form input[type="text"], .content form input[type="password"], .content form input[type="email"] {
    width: 100%;
    max-width: 100%;
  }
  .profile-detail strong {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.consentModal {
  display: none;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  
  text-align: center;
  font-size: 18px;
  background: #fff;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 90%;
 
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin:10px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.canvas {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
}

.prizetable {
    border: 1px solid #f9c9a9; /* Border around the table */
    border-collapse: collapse; /* Collapse adjacent table borders */
    width: 100%; /* Make the table take up 100% of its container's width */
}

.prizetable th, .prizetable td {
    border: 1px solid #f9c9a9; /* Border for th and td elements */
    padding: 8px; /* Add padding to th and td elements for better spacing */
}

.prizetable tr:not(:first-child) {
    border-top: 1px solid #f9c9a9; /* Border at the top of each row except the first row */
}

.noselect {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}