@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
:root {
  --bg-color: #F5F5F5;
  --bg-secondary: #FFFFFF;
  --text-primary: #525252;
  --text-secondary: #858585;
  --border-color: #D43838;
  --menu-bg: #111111;
  --menu-text: #FFFFFF;
  --input-bg: #FFFFFF;
  --input-border: #d2d2d2;
  --card-shadow: rgba(0, 0, 0, 0.1);
  --toggle-bg: #ccc;
  --toggle-active: #356EFD;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --bg-gradient-1: rgba(53, 110, 253, 0.15);
  --bg-gradient-2: rgba(43, 204, 75, 0.15);
  --card-border-animated: #cccccc;
}

[data-theme=dark] {
  --bg-color: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --border-color: #404040;
  --menu-bg: #2d2d2d;
  --menu-text: #ffffff;
  --input-bg: #2d2d2d;
  --input-border: #404040;
  --card-shadow: rgba(0, 0, 0, 0.3);
  --toggle-bg: #555;
  --toggle-active: #356EFD;
  --bg-gradient-1: rgba(53, 110, 253, 0.08);
  --bg-gradient-2: rgba(43, 204, 75, 0.08);
  --card-border-animated: #FFFFFF;
}

.interactive-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--bg-gradient-1) 0%, transparent 40%), radial-gradient(circle at calc(100% - var(--mouse-x)) calc(100% - var(--mouse-y)), var(--bg-gradient-2) 0%, transparent 40%);
  transition: opacity 0.3s ease;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.font-bold, form.maisinfo-form label, ecrano-content ecrano-work a:link h3, ecrano-content ecrano-work a:active h3, ecrano-content ecrano-work a:visited h3 {
  font-family: "Roboto";
  font-weight: 500;
}

.font-regular, form.maisinfo-form textarea, form.maisinfo-form input, body {
  font-family: "Roboto";
  font-weight: normal;
}

.font-light {
  font-family: "Roboto";
  font-weight: 100;
}

html {
  height: 100%;
  overflow-x: hidden;
}

.trans {
  transition: all 0.5s ease;
}

.text-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

a:link, a:active, a:visited {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

@keyframes rotate-border {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes swing {
  15% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  30% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  40% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
body {
  font-size: 14px;
  color: var(--text-primary);
  height: 100%;
  background-color: var(--bg-color);
  padding: 20px;
  margin: 0px;
  overflow-y: scroll;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media only screen and (min-width: 991px) {
  body {
    padding: 40px;
  }
}
ecrano-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  grid-template-rows: 40px 1fr 60px;
  grid-template-areas: "header" "main" "footer";
}
ecrano-main ecrano-header {
  grid-area: header;
}
ecrano-main ecrano-content {
  width: 100%;
  grid-area: main;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  padding-bottom: 50px;
}
ecrano-main ecrano-content.project {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}
ecrano-main ecrano-content.project ecrano-project-item,
ecrano-main ecrano-content.project ecrano-project-item.full,
ecrano-main ecrano-content.project ecrano-project-item.back {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
ecrano-main ecrano-content.project ecrano-project-item h1,
ecrano-main ecrano-content.project ecrano-project-item.full h1,
ecrano-main ecrano-content.project ecrano-project-item.back h1 {
  margin-top: 0;
}
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:link,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:active,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:visited,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:link,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:active,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:visited,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:link,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:active,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:visited {
  background-color: transparent;
  padding: 6px 12px 6px 0;
  border-radius: 5px;
  max-width: 80px;
  display: flex;
  justify-content: center;
  color: #525252;
  font-size: 16px;
}
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:link img,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:active img,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:visited img,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:link img,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:active img,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:visited img,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:link img,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:active img,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:visited img {
  margin-right: 10px;
}
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:link:hover,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:active:hover,
ecrano-main ecrano-content.project ecrano-project-item a.btn-back:visited:hover,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:link:hover,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:active:hover,
ecrano-main ecrano-content.project ecrano-project-item.full a.btn-back:visited:hover,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:link:hover,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:active:hover,
ecrano-main ecrano-content.project ecrano-project-item.back a.btn-back:visited:hover {
  background-color: #FFFFFF;
}
ecrano-main ecrano-content.project ecrano-project-item a:link, ecrano-main ecrano-content.project ecrano-project-item a:active, ecrano-main ecrano-content.project ecrano-project-item a:visited,
ecrano-main ecrano-content.project ecrano-project-item.full a:link,
ecrano-main ecrano-content.project ecrano-project-item.full a:active,
ecrano-main ecrano-content.project ecrano-project-item.full a:visited,
ecrano-main ecrano-content.project ecrano-project-item.back a:link,
ecrano-main ecrano-content.project ecrano-project-item.back a:active,
ecrano-main ecrano-content.project ecrano-project-item.back a:visited {
  color: #356EFD;
}
ecrano-main ecrano-content.project ecrano-project-item img,
ecrano-main ecrano-content.project ecrano-project-item.full img,
ecrano-main ecrano-content.project ecrano-project-item.back img {
  max-width: 100%;
}
ecrano-main ecrano-content.project ecrano-project-item small,
ecrano-main ecrano-content.project ecrano-project-item.full small,
ecrano-main ecrano-content.project ecrano-project-item.back small {
  display: inline-block;
  padding-top: 10px;
  color: #858585;
}
ecrano-main ecrano-content.project ecrano-project-item.back a:link, ecrano-main ecrano-content.project ecrano-project-item.back a:active, ecrano-main ecrano-content.project ecrano-project-item.back a:visited {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
}
ecrano-main ecrano-content.project ecrano-project-item.back a:link img, ecrano-main ecrano-content.project ecrano-project-item.back a:active img, ecrano-main ecrano-content.project ecrano-project-item.back a:visited img {
  max-width: 30px;
}
ecrano-main ecrano-content.project ecrano-project-item.half {
  grid-column: span 2;
}
ecrano-main ecrano-content.project ecrano-project-item.quarter {
  grid-column: span 1;
}
ecrano-main ecrano-content.contactos {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  max-width: 600px;
}
ecrano-main ecrano-content.contactos form,
ecrano-main ecrano-content.contactos .politica-texto {
  grid-column: auto;
}
ecrano-main ecrano-footer {
  grid-area: footer;
}

@media only screen and (min-width: 660px) {
  ecrano-main ecrano-content {
    grid-template-columns: 1fr 1fr;
  }
  ecrano-main ecrano-content.contactos {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 991px) {
  ecrano-main {
    grid-template-columns: 200px 1fr;
    grid-template-rows: 1fr 60px;
    grid-template-areas: "header main" "footer footer";
  }
  ecrano-main ecrano-content {
    grid-template-columns: 1fr 1fr;
  }
  ecrano-main ecrano-content.contactos {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1140px) {
  ecrano-main {
    grid-template-columns: 300px 1fr;
    grid-template-rows: 1fr 60px;
  }
  ecrano-main ecrano-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
  ecrano-main ecrano-content.contactos {
    grid-template-columns: 1fr;
  }
  ecrano-main ecrano-content.project {
    grid-template-columns: repeat(4, 1fr);
  }
  ecrano-main ecrano-content.project ecrano-project-item,
ecrano-main ecrano-content.project ecrano-project-item.full,
ecrano-main ecrano-content.project ecrano-project-item.back {
    grid-column: span 4;
  }
  ecrano-main ecrano-content.project ecrano-project-item.half {
    grid-column: span 2;
  }
  ecrano-main ecrano-content.project ecrano-project-item.quarter {
    grid-column: span 1;
  }
}
@media only screen and (min-width: 1400px) {
  ecrano-main ecrano-content {
    grid-template-columns: repeat(4, 1fr);
  }
  ecrano-main ecrano-content.contactos {
    grid-template-columns: 1fr;
    grid-template-areas: "form form nada";
  }
  ecrano-main ecrano-content.contactos form.maisinfo-form,
ecrano-main ecrano-content.contactos .politica-texto {
    grid-area: form;
  }
}
/*
@media only screen and (min-width: 1900px) {
	ecrano-main{
		ecrano-content{
			grid-template-columns: repeat(5, 1fr);
		}
		ecrano-content.contactos{
			grid-template-columns: repeat(4, 1fr);
			grid-template-areas:
    			"formn form nada nada";
		}
	}
}

@media only screen and (min-width: 2300px) {
	ecrano-main{
		ecrano-content{
			grid-template-columns: repeat(6, 1fr);
		}
		ecrano-content.contactos{
			grid-template-columns: repeat(4, 1fr);
			grid-template-areas:
    			"formn form nada nada";
		}
		ecrano-content.project{
			grid-template-columns: repeat(6, 1fr);
			ecrano-project-item,
			ecrano-project-item.full,
			ecrano-project-item.back{
				grid-column: span 6;
			}
			ecrano-project-item.half{
				grid-column: span 3;
			}
			ecrano-project-item.quarter{
				grid-column: span 2;
			}
		}
	}
}
*/
ecrano-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
ecrano-header a {
  z-index: 3;
}
ecrano-header img.logo {
  width: 100%;
  max-width: 150px;
}
@media only screen and (min-width: 1140px) {
  ecrano-header img.logo {
    max-width: 210px;
  }
}
ecrano-header img.logo.desktop {
  display: none;
}
ecrano-header img.logo.mobile {
  display: block;
}
ecrano-header ecrano-menu-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}
ecrano-header ecrano-menu-icon svg {
  width: 35px;
  height: 35px;
}

ecrano-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--menu-bg);
  color: var(--menu-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -120vh;
  left: 0;
  margin: 0;
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}
ecrano-menu a:link, ecrano-menu a:active, ecrano-menu a:visited {
  color: var(--menu-text);
  font-size: 22px;
  padding: 20px;
  text-decoration: none;
  text-transform: lowercase;
}
ecrano-menu img {
  width: 100%;
  max-width: 200px;
  padding-bottom: 40px;
}
ecrano-menu ecrano-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
ecrano-menu ecrano-menu-close svg {
  stroke: var(--menu-text);
  width: 40px;
  height: 40px;
}

ecrano-menu-desktop {
  display: none;
  grid-area: header;
}

ecrano-menu.active {
  top: 0;
  transition: all 0.5s ease-in-out;
  z-index: 9999;
}

@media only screen and (min-width: 991px) {
  ecrano-header {
    justify-content: flex-start;
    align-items: flex-start;
  }
  ecrano-header img.logo.desktop {
    display: block;
  }
  ecrano-header img.logo.mobile {
    display: none;
  }
  ecrano-header ecrano-menu-icon {
    display: none;
  }

  ecrano-menu {
    display: none;
  }

  ecrano-menu-desktop {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 170px;
  }
  ecrano-menu-desktop a:link, ecrano-menu-desktop a:active, ecrano-menu-desktop a:visited {
    font-size: 19px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 1140px) {
  ecrano-menu-desktop {
    padding-top: 250px;
  }
}
ecrano-content {
  padding-top: 40px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
ecrano-content ecrano-work {
  background-color: transparent;
  color: var(--text-primary);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-radius 0.4s ease;
  box-shadow: 0 2px 8px var(--card-shadow);
  /*
  &:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.25);
      border-radius: 40px 0px 40px 0px;
      z-index: 10;

      &::before {
          opacity: 1;
      }
  }

   */
}
ecrano-content ecrano-work::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, var(--card-border-animated), transparent 30%);
  animation: rotate-border 4s linear infinite;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  z-index: 0;
}
ecrano-content ecrano-work a:link, ecrano-content ecrano-work a:active, ecrano-content ecrano-work a:visited {
  display: block;
  text-decoration: none;
  background-color: var(--bg-secondary);
  margin: 2px;
  border-radius: inherit;
  overflow: hidden;
  height: calc(100% - 4px);
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}
ecrano-content ecrano-work a:link img, ecrano-content ecrano-work a:active img, ecrano-content ecrano-work a:visited img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}
ecrano-content ecrano-work a:link h3, ecrano-content ecrano-work a:active h3, ecrano-content ecrano-work a:visited h3 {
  font-size: 20px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 5px;
}
ecrano-content ecrano-work a:link small, ecrano-content ecrano-work a:active small, ecrano-content ecrano-work a:visited small {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 25px;
  color: var(--text-secondary);
}
ecrano-content ecrano-work a:link p, ecrano-content ecrano-work a:active p, ecrano-content ecrano-work a:visited p {
  margin-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
  padding-bottom: 30px;
}
ecrano-content ecrano-work.intro {
  background-color: transparent;
}
ecrano-content ecrano-work.intro::before {
  display: none;
}
ecrano-content ecrano-work.intro a:link, ecrano-content ecrano-work.intro a:active, ecrano-content ecrano-work.intro a:visited {
  background-color: #356EFD;
  margin: 0;
  height: 100%;
}
ecrano-content ecrano-work.intro a:link img, ecrano-content ecrano-work.intro a:active img, ecrano-content ecrano-work.intro a:visited img {
  max-width: 90% !important;
  margin-left: 5%;
}
ecrano-content ecrano-work.intro a:link h3, ecrano-content ecrano-work.intro a:active h3, ecrano-content ecrano-work.intro a:visited h3 {
  margin-top: 0;
  color: #FFFFFF;
}
ecrano-content ecrano-work.intro a:link small, ecrano-content ecrano-work.intro a:active small, ecrano-content ecrano-work.intro a:visited small {
  color: #FFFFFF !important;
}

@media only screen and (min-width: 661px) {
  ecrano-content {
    max-width: 600px;
  }
}
@media only screen and (min-width: 991px) {
  ecrano-content {
    max-width: 691px;
    margin-left: 0;
    padding-top: 0;
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 1140px) {
  ecrano-content {
    max-width: 740px;
    padding-top: 0;
    width: calc(100% - 300px);
  }
  ecrano-content ecrano-work.intro img {
    max-width: 90% !important;
    margin: 0 auto !important;
    margin-left: 10px !important;
  }
  ecrano-content ecrano-work.intro h3 {
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 1340px) {
  ecrano-content {
    max-width: 940px;
  }
}
@media only screen and (min-width: 1600px) {
  ecrano-content {
    max-width: 1193px;
  }
}
@media only screen and (min-width: 1900px) {
  ecrano-content {
    max-width: 1493px;
  }
}
ecrano-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: var(--text-secondary);
}
ecrano-footer ecrano-footer-social,
ecrano-footer ecrano-legal {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
ecrano-footer ecrano-footer-social a:link, ecrano-footer ecrano-footer-social a:active, ecrano-footer ecrano-footer-social a:visited,
ecrano-footer ecrano-legal a:link,
ecrano-footer ecrano-legal a:active,
ecrano-footer ecrano-legal a:visited {
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--text-secondary);
}
ecrano-footer ecrano-footer-social svg,
ecrano-footer ecrano-legal svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-secondary);
}

form.maisinfo-form {
  width: 100%;
  max-width: 100%;
}
form.maisinfo-form label {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  padding-bottom: 5px;
  color: var(--text-primary);
}
form.maisinfo-form input {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  padding: 10px;
  color: var(--text-primary);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
form.maisinfo-form input:focus {
  outline: none;
  border-color: var(--toggle-active);
}
form.maisinfo-form textarea {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  padding: 10px;
  color: var(--text-primary);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
form.maisinfo-form textarea:focus {
  outline: none;
  border-color: var(--toggle-active);
}
form.maisinfo-form button {
  background-color: #356EFD;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  border: 0;
  padding: 10px 30px;
  cursor: pointer;
}
form.maisinfo-form button:hover {
  background-color: #2BCC4B;
}

.fourofour {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fourofour .navbar-brand img {
  height: 120px;
}
.fourofour h1 {
  font-weight: bold;
  font-size: 120px;
}

.simpleCaptcha {
  display: inline-block;
  padding: 0.5em;
  border: 1px solid #acf;
  border-radius: 5px;
  background-color: #f9f9ff;
  margin-bottom: 15px;
  width: 100%;
}

.simpleCaptcha p {
  margin: 0.5em;
}

.simpleCaptcha .captchaIntro, .simpleCaptcha .refreshCaptcha {
  float: left;
  padding-bottom: 1rem;
}

.simpleCaptcha .captchaText {
  font-weight: bold;
}

.simpleCaptcha .refreshButton {
  height: 1.2em;
  cursor: pointer;
  position: relative;
  top: 0.3em;
  margin-left: 0.2em;
}

.simpleCaptcha .refreshButtonText {
  position: absolute;
  left: -9999px;
}

.simpleCaptcha .captchaImages {
  clear: left;
}

.simpleCaptcha .captchaImage {
  margin: 0 2px;
  border: 2px solid transparent;
  cursor: pointer;
  max-height: 30px;
}

.simpleCaptcha .simpleCaptchaSelected {
  border: 2px solid #393;
  border-radius: 4px;
  background-color: #cfc;
}

.cookie-bubble {
  position: fixed;
  width: 100%;
  max-width: 400px;
  min-height: 100px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: sans-serif;
}

.cookie-bubble.top-left {
  top: 10px;
  left: 10px;
}

.cookie-bubble.top-right {
  top: 10px;
  right: 0px;
}

.cookie-bubble.top-center {
  top: 10px;
  left: calc(100vw - 100vw/2 - 400px/2);
}

.cookie-bubble.bottom-left {
  bottom: 10px;
  left: 10px;
}

.cookie-bubble.bottom-right {
  bottom: 10px;
  right: 0px;
}

.cookie-bubble.bottom-center {
  bottom: 10px;
  left: calc(100vw - 100vw/2 - 400px/2);
}

.cookie-bubble.show.top-left, .cookie-bubble.show.top-center, .cookie-bubble.show.top-right {
  -webkit-animation-name: popInTop;
  animation-name: popInTop;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.cookie-bubble.show.bottom-left, .cookie-bubble.show.bottom-center, .cookie-bubble.show.bottom-right {
  -webkit-animation-name: popInBottom;
  animation-name: popInBottom;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.cookie-bubble.hide {
  display: none;
}

.cookie-bubble .cb-wrapper {
  position: relative;
  display: inline-block;
  padding: 15px;
}

.cookie-bubble .cb-wrapper .cb-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.cookie-bubble .cb-wrapper .cb-row .cb-row-content .message {
  position: relative;
  width: 100%;
  display: inline-block;
  color: #000000;
  font-size: 18px;
  margin-top: 0px;
}

.cookie-bubble .cb-wrapper .cb-row .cb-row-content .cb-controls {
  position: relative;
  width: 100%;
  float: left;
  margin-top: 10px;
}

.cookie-bubble .cb-wrapper .cb-row .cb-image {
  padding-right: 23px;
}

.cookie-bubble .cb-wrapper .cb-row .cb-image .cookie-inner-color {
  fill: #00a4ff;
}

.cookie-bubble .cb-wrapper .cb-row .cb-image svg {
  width: 75px;
}

.cookie-bubble .cb-wrapper .cb-row .agreement-btn {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  color: #fff;
  background: #00a4ff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  opacity: 1;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  float: left;
  margin-right: 10px;
}

.cookie-bubble .cb-wrapper .cb-row .agreement-btn:hover {
  background-color: #0083cc;
}

.cookie-bubble .cb-wrapper .cb-row .cookie-policy-btn {
  margin: 0px;
  color: #000;
  padding: 10px 0px;
  border-radius: 100px;
  font-size: 14px;
  opacity: 0.95;
  border: none;
  cursor: pointer;
  font-weight: 400;
  float: left;
}

.cookie-bubble .cb-wrapper .cb-row .cookie-policy-btn:hover {
  opacity: 1;
  text-decoration: underline;
}

.cookieBubble .copyright-wrapper {
  margin-top: 20px;
}

.cookieBubble .copyright-wrapper a.copyright {
  position: absolute;
  width: 80px;
  height: 16px;
  bottom: 8px;
  right: 7px;
  margin-top: 30px;
  background: url("../img/cb_copyright.svg");
  background-size: cover;
}

@-webkit-keyframes popInBottom {
  0% {
    -webkit-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes popInBottom {
  0% {
    -webkit-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes popInTop {
  0% {
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes popInTop {
  0% {
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media (max-width: 420px) {
  .cookieBubble {
    border-radius: 0px;
    max-width: inherit;
    left: 0px !important;
    bottom: 0px !important;
  }
}
@media (max-width: 420px) {
  .cookieBubble .cb-image {
    display: none;
  }
}
dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 991px) {
  dark-mode-toggle {
    justify-content: flex-start;
    position: absolute;
    bottom: 10px;
  }
}
dark-mode-toggle .toggle-label {
  font-size: 16px;
  color: var(--menu-text);
  margin-right: 15px;
  text-transform: lowercase;
}
dark-mode-toggle .toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  cursor: pointer;
}
dark-mode-toggle .toggle-switch:hover .slider {
  opacity: 0.8;
}
dark-mode-toggle .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
dark-mode-toggle .toggle-switch input:checked + .slider {
  background-color: var(--toggle-active);
}
dark-mode-toggle .toggle-switch input:checked + .slider:before {
  transform: translateX(26px);
}
dark-mode-toggle .toggle-switch input:focus + .slider {
  box-shadow: 0 0 1px var(--toggle-active);
}
dark-mode-toggle .toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--toggle-bg);
  transition: 0.4s;
  border-radius: 24px;
}
dark-mode-toggle .toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
dark-mode-toggle.desktop {
  padding: 10px 0;
  margin-top: 30px;
}
dark-mode-toggle.desktop .toggle-label {
  font-size: 14px;
  color: var(--text-primary);
}

ecrano-menu dark-mode-toggle.mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
  max-width: 200px;
}

ecrano-menu-desktop dark-mode-toggle.desktop {
  width: 100%;
}