@font-face {
  font-family: 'OpenSans';
  src: url(../font/OpenSans-Regular.ttf);
}

:root{
  --max-width-page-content: 1100px;
  --a-color: #0055ff;
}


*{
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  user-select: none;
}

svg{
  fill: var(--fill, black);
}

.disabled{
  opacity: 0.4;
  pointer-events: none;
}

.trigger-image{
  position: absolute;
  width: 1px;
  height: 1px;
  visibility: hidden;
  opacity: 0;
}

details summary{
  width: fit-content;
  padding: 5px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s ease;
}

details summary:hover{
  background: #ddd;
}

body{
  padding: 0;
  margin: 0;
  font-family: 'OpenSans', sans-serif;
  font-size: 16px;
}

.separator{
  width: 100%;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.btn-trigger{
  color: inherit;
  text-decoration: none;
  position: relative;
}

.btn-trigger.rounded-label{
  padding: 7px 12px;
  background: #ccc;
  border-radius: 20px;
  margin: 0 10px 0 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-trigger.rounded-label.focus{
  background: #0055ff;
  color: white;
}

.btn-trigger.semirounded-label{
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.btn-trigger.semirounded-label:hover{
  background: #eee;
}

.cont-page{
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	overflow: hidden;
  background: linear-gradient(to bottom, white, #0055ff);
}

/*
      :::::::::     :::      ::::::::  ::::::::::
     :+:    :+:  :+: :+:   :+:    :+: :+:
    +:+    +:+ +:+   +:+  +:+        +:+
   +#++:++#+ +#++:++#++: :#:        +#++:++#
  +#+       +#+     +#+ +#+   +#+# +#+
 #+#       #+#     #+# #+#    #+# #+#
###       ###     ###  ########  ##########
*/

.page{
  display: flex;
	flex-flow: column;
  align-items: center;
	width: 100%;
	max-width: 2200px;
	height: 100%;
	max-height: 1200px;
	position: relative;
  box-shadow: 0 8px 20px #a1a1a1ba;
	background: white;
  overflow: hidden;
  /* animation: fadeIn 0.4s ease 0s 1 both; */
}

.page-content-wrapper{
  display: flex;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  flex-flow: column;
}

.page-content{
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: var(--max-width-page-content);  
  padding: 0 10px;
}


@media only screen and (min-width: 2200px), (min-height: 1100px){
  .cont-page{
    padding: 20px;
  }

  .page{
    border-radius: 20px;
  }
}

/*
      :::    ::: ::::::::::     :::     :::::::::  :::::::::: :::::::::
     :+:    :+: :+:          :+: :+:   :+:    :+: :+:        :+:    :+:
    +:+    +:+ +:+         +:+   +:+  +:+    +:+ +:+        +:+    +:+
   +#++:++#++ +#++:++#   +#++:++#++: +#+    +:+ +#++:++#   +#++:++#:
  +#+    +#+ +#+        +#+     +#+ +#+    +#+ +#+        +#+    +#+
 #+#    #+# #+#        #+#     #+# #+#    #+# #+#        #+#    #+#
###    ### ########## ###     ### #########  ########## ###    ###
*/

header{
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  background: white;
  width: 100%;
  z-index: 20;  
}


header .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: calc(var(--max-width-page-content) + 20px);
  height: 45px;
  box-shadow: 0 10px 15px -12px rgba(0, 0, 0, 0.2);
  padding: 0 20px;
}

header .logo{
  display: flex;
  align-items: center;
}

header .logo img{
  width: 20px;
  margin: 0 5px 1px 0;
}

header .content .cont-links{
  display: flex;
  font-size: 15px;
}


header .cont-links .link,
header .responsive-menu-trigger
{
  padding: 7px 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 5px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

header .link.icon.contact{
  min-width: 48px;
}

header .responsive-menu-trigger{
  display: none;
  padding: 5px;
}

header .cont-links .link.selected{
  background: #e2eaff;
  color: #0055ff;
  font-weight: bold;
}

header .cont-links .link:hover{
  background: #eee;
}

header .btn-close{
  display: none;
}

header .link.contact{
  --fill: #0055ff;
}

header .link.contact span{
  display: none;
}

@media only screen and (max-width: 900px){
  header .content{
    padding: 0 10px;
  }

  header .responsive-menu-trigger{
    display: flex;
  }

  header .content .cont-links{
    display: none;
    flex-flow: column;
    text-align: right;
    font-size: 14px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    background: white;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 200px;
    height: 100vh;
    border-radius: 10px;
    padding: 50px 10px 10px 10px;
    animation: fadeIn 0.4s ease 0s 1 both;
  }

  header .cont-links .link{
    justify-content: flex-end;
    margin: 0 0 5px 0;
  }

  header .link.contact span{
    display: block;
    margin: 0 0 0 5px;
  }

  header .btn-close{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;    
    height: 40px;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    line-height: 1;
  }

}

@media only screen and (min-width: 901px){
  header .cont-links{
    display: flex!important;
    animation: fadeIn 0.4s ease 0s 1 both;
  }
}


/*
..####...######...####...######..######...####...##..##...####..
.##......##......##..##....##......##....##..##..###.##..##.....
..####...####....##........##......##....##..##..##.###...####..
.....##..##......##..##....##......##....##..##..##..##......##.
..####...######...####.....##....######...####...##..##...####..
................................................................
*/


.section{
  width: 100%;
  margin: 0 0 20px 0;
}

.section-headline{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.section-headline h2{
  width: 100%;
  display: flex;
  align-items: center;
}

.section-headline h2 img{
  width: 70%;
  max-width: 180px;
}

.section-headline .btn-trigger{
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0 0 0 10px;
}

@media only screen and (max-width: 600px){
  .section-headline .btn-trigger{
    padding: 2px 8px;
    font-size: 14px;
  }
}


/*
      ::::::::  :::        ::::::::::: :::::::::  :::::::::: ::::::::
    :+:    :+: :+:            :+:     :+:    :+: :+:       :+:    :+:
   +:+        +:+            +:+     +:+    +:+ +:+       +:+
  +#++:++#++ +#+            +#+     +#+    +:+ +#++:++#  +#++:++#++
        +#+ +#+            +#+     +#+    +#+ +#+              +#+
#+#    #+# #+#            #+#     #+#    #+# #+#       #+#    #+#
########  ########## ########### #########  ########## ########
*/

.section.slideshow{
  width: 100%;
  justify-content: center;
  display: flex;
  margin: 40px 0 0 0;  
  mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 3%, rgba(0,0,0,1) calc(100% - 3%), rgba(0,0,0,0) );
  position: relative;
  overflow: hidden;
  min-height: 250px;
  /* animation: fadeIn 0.4s ease 0s 1 both; */
}

@media only screen and (max-width: 1120px){
  .section.slideshow{
    width: calc(100% + 20px);
    margin-left: -10px;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,1) 3%, rgba(0,0,0,1) calc(100% - 3%), rgba(0,0,0,0.5) );
  }
}

.section.slideshow .nav{
  display: flex;
  align-items: center;
  justify-content: center;

  --nav-width: 38px;
  width: var(--nav-width);
  height: var(--nav-width);
  top: calc(50% - (var(--nav-width) / 2));
  background: black;
  --fill: white;
  position: absolute;
  z-index: 2;
  border-radius: 40px;
  cursor: pointer;
  animation: fadeIn 0.4s ease 0s 1 both;
}

.section.slideshow .nav:hover{
  background: #555;
}

.section.slideshow .nav.left{
  left: calc(10% - (var(--nav-width) / 2));
}

.section.slideshow .nav.right{
  right: calc(10% - (var(--nav-width) / 2));
}

.section.slideshow .carousel{
  width: 100%;
  display: flex;
  /*   QUITAR EL ANCHO Y MARGIN DEL PRIMER SLIDE Y EL PRIMER MARGIN DEL SEGUNDO, MAS LA MITAD DEL ANCHO SOBRANTE DEL CONTENEDOR */
  --slides-h-margin: -5px;
  --nav-index: 1;
  --fix: calc( -1 * (80% * var(--nav-index)) - (((var(--slides-h-margin) * 2) * var(--nav-index)) + var(--slides-h-margin)));
  --translate-X: calc((var(--fix)) + 10%);
  transform: translateX(var(--translate-X));
  padding: 10px 0;
  transition: transform 0.4s ease;  
}


.section.slideshow .slide{
  display: flex;
  flex-flow: column;
  position: relative;
  width: 80%;
  aspect-ratio: 1 / 0.4;
  border-radius: 20px;
  background: #ddd;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0 var(--slides-h-margin);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  min-height: 250px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.section.slideshow .slide:not(.focus){
  opacity: 0.2;
  transform: scale(0.9);
  background: #bbb;
}

.section.slideshow .slide .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.section.slideshow .slide .bg picture,
.section.slideshow .slide .bg img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: fadeIn 0.4s ease 0s 1 both;
}

.section.slideshow .slide .text{
  position: absolute;
  width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  overflow: hidden;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  color: white;
  hyphens: auto;
}

.section.slideshow .slide .text .headline{
  font-size: 22px;
  font-weight: bold;
}

.section.slideshow .slide .text .caption{
  font-size: 18px;
  margin: 10px 0 0 0;
  text-align: justify;
  text-align-last: left;
}

@media only screen and (max-width: 600px){
  .section.slideshow{
    margin: 20px 0 20px -10px;
  }

  .section.slideshow .slide .text{
    padding: 10px;
    border-radius: 15px;
  }

  .section.slideshow .slide .text .headline{
    font-size: 16px;
  }

  .section.slideshow .slide .text .caption{
    font-size: 14px;
    margin: 5px 0 0 0;
  }
}

/*
..####...######..#####...##..##..######...####...######...####....####..
.##......##......##..##..##..##....##....##..##....##....##..##..##.....
..####...####....#####...##..##....##....##........##....##..##...####..
.....##..##......##..##...####.....##....##..##....##....##..##......##.
..####...######..##..##....##....######...####...######...####....####..
........................................................................
*/

.section.servicios,
.section.otros-servicios
{
  display: grid;
  --gap: 10px;
  --boxes: 3;
  gap: var(--gap);
  grid-template-columns: repeat(var(--boxes), calc((100% / var(--boxes)) - ((var(--gap) * (var(--boxes) - 1)) / var(--boxes) ) ));
}

.section.servicios .servicio,
.section.otros-servicios .servicio
{
  background: #ccc;
  position: relative;
  aspect-ratio: 1 / 0.5;
  border-radius: 20px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}

.section.otros-servicios .servicio{
  aspect-ratio: 1 / 0.4;
}

.section.servicios .servicio:hover .bg,
.section.otros-servicios .servicio:hover .bg
{
  transform: scale(1.1);
}

.section.servicios .servicio .bg,
.section.otros-servicios .servicio .bg
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.servicio .bg picture,
.servicio .bg img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section.servicios .servicio .status{
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  border-radius: 10px;
  padding: 0 3px;
  font-size: 10px;
  z-index: 2;
}


.section.servicios .servicio .text,
.section.otros-servicios .servicio .text
{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding: 40px 10px 10px 10px;
  color: white;
}

.section.servicios .servicio.lectura-libre .text{
  background: linear-gradient(to top, #0035ffd9, #0080ffc9, transparent);
}

.section.servicios .servicio.xylium .text{
  background: linear-gradient(to top, #ff9000d4, #ffd200b8, transparent);
}

.section.servicios .servicio.invec-media .text{
  background: linear-gradient(to top, #2f3777, rgba(0, 253, 202, 0.68), transparent);
}

.section.servicios .servicio.bitacora .text{
  background: linear-gradient(to top, #390080, rgb(202 0 246 / 68%), transparent);
}

.section.servicios .servicio.agora .text{
  background: linear-gradient(to top, #ff3300, rgba(255, 71, 50, 0.68), transparent);
}

.section.servicios .servicio.xylium-os .text{
  background: linear-gradient(to top, #007700eb, #83ff008c, transparent);
}

.section.servicios .servicio .text .headline,
.section.otros-servicios .servicio .text .headline
{
  font-size: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section.servicios .servicio .text .headline img{
  width: 90%;
  max-width: 180px;
  display: block;
  margin: 0 0 5px 0;
}

.section.servicios .servicio .text .caption,
.section.otros-servicios .servicio .text .caption
{
  font-size: 14px;
  font-style: italic;
  padding: 0 0 0 2px;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  
}

@media only screen and (max-width: 900px){
  .section.servicios
  {
    --gap: 10px;
    --boxes: 2;
  }  
  
  .section.otros-servicios
  {
    --gap: 10px;
    --boxes: 2;
  }

  .section.servicios .servicio
  {
    aspect-ratio: 1 / 0.5;
  }
  
  .section.otros-servicios .servicio
  {
    aspect-ratio: 1 / 0.5;
  }

  .section.servicios .servicio .text .headline,
  .section.otros-servicios .servicio .text .headline
  {
    font-size: 25px;
  }
}

@media only screen and (max-width: 450px){
  .section.servicios,
  .section.otros-servicios
  {
    display: flex;
    flex-flow: column;
  }

  .section.servicios .servicio
  {
    aspect-ratio: 1 / 0.4;
  }

  
  .section.otros-servicios .servicio
  {
    aspect-ratio: 1 / 0.4;
  }

  

  .section.servicios .servicio .text .caption,
  .section.otros-servicios .servicio .text .caption
  {
    font-size: 12px;
  }
}





/*
.#####...######..######...####....####...#####....####..
.##..##....##......##....##..##..##..##..##..##..##..##.
.#####.....##......##....##......##..##..#####...######.
.##..##....##......##....##..##..##..##..##..##..##..##.
.#####...######....##.....####....####...##..##..##..##.
........................................................
*/

.section.bitacora{
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
}

.section.bitacora .feed{
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
  width: 100%;
  padding: 0 0 20px 0;
}

.section.bitacora .noticia{
  background: #ccc;
  position: relative;
  border-radius: 15px;
  width: 70%;
  max-width: 250px;
  margin: 0 10px 0 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  height: 350px;
  flex-shrink: 0;
}

/*
..####...######..#####....####....####..
.##..##....##....##..##..##..##..##.....
.##..##....##....#####...##..##...####..
.##..##....##....##..##..##..##......##.
..####.....##....##..##...####....####..
........................................
*/

.section.otros-servicios{
  --boxes: 2;
}

.section.otros-servicios .servicio{
  padding-top: 40%;
}

.section.otros-servicios .text
{
  background: linear-gradient(to top, #0055ff, transparent);
}


.section.otros-servicios .servicio:hover .bg
{
  transform: scale(1.1);
}

.section.otros-servicios .servicio:hover .bg picture,
.section.otros-servicios .servicio:hover .bg img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/*
..####...######..##..##..######..#####...#####....####....####...######...####..
.##..##....##....##..##..##......##..##..##..##..##..##..##......##......##.....
.##..##....##....######..####....#####...#####...######..##.###..####.....####..
.##..##....##....##..##..##......##..##..##......##..##..##..##..##..........##.
..####.....##....##..##..######..##..##..##......##..##...####...######...####..
................................................................................
*/



.page-headline{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 150px;
  max-height: 250px;
  aspect-ratio: 1 / 0.5;
  flex-shrink: 0;
  margin: 20px 0 80px 0;
  position: relative;
  background-size: cover!important;
  background-position: center!important;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
}

.cont-page:not(.inicio) h2{
  width: 100%;
  text-align: center;
}

.page-headline .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* filter:  brightness(0.8);   */
  border-radius: inherit;
  overflow: hidden;
}

.page-headline .bg picture,
.page-headline .bg img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.cont-page.sobre-nosotros .page-headline .bg picture,
.cont-page.sobre-nosotros .page-headline .bg img
{
  object-position: center 50%;
}

.cont-page:not(.inicio) .page-content p{
  text-align: justify;
  text-align-last: left;
}

.p-center{
  text-align: center!important;
  text-align-last: center!important;
}

.page-headline h1{
  position: relative;
  color: white;
  font-size: 35px;
  text-shadow: 0 2px 3px rgba(0,0,0,0.4);
  background: rgb(21 91 255 / 77%);
  border-radius: 20px;
  padding: 5px 14px;
  backdrop-filter: blur(10px);
  margin: 0 0 -20px 0;
}

.topics-description{
  display: flex;
  width: 100%;
  flex-flow: column;
  flex-shrink: 0;
}

.topics-description .topic{
  display: grid;
  grid-template-areas: "illustration headline" "illustration description";
  grid-template-columns: clamp(200px, 45%, 400px) 1fr;
  align-items: center;
  margin: 20px 0;
}

.topics-description .topic .headline{
  grid-area: headline;
  font-size: 20px;
  font-weight: bold;
  color: #0055ff;
}

.topics-description .topic .illustration{
  grid-area: illustration;
  padding: 0 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topics-description .topic .illustration img{
  width: 100%;
  max-width: 400px;
  display: block;
  border-radius: 10px;
}

.cont-page:not(.sobre-nosotros) .topics-description .topic .illustration img{
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.topics-description .topic .description{
  grid-area: description;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  text-align: justify;
  text-align-last: left;
}

.topics-description .topic .description p {
  margin: 10px 0 5px 0;
}

.cont-page:not(.inicio) .page-content p {
  margin: 10px 0 10px 0;
}


@media only screen and (max-width: 800px){
  .topics-description .topic{
    display: grid;
    grid-template-areas: "headline" "illustration" "description";
    grid-template-columns: auto;
  }

  .topics-description .topic .illustration{
    padding: 30px 0;
  }

  .topics-description .topic .headline{
    text-align: center;
  }
}

.icon-gallery{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.icon-gallery a{
  color: inherit;
  text-decoration: none;
}

.icon-gallery .item{
  width: 50%;
  max-width: 160px;
  display: flex;
  flex-flow: column;
  margin: 20px;
  align-items: center;
  cursor: pointer;
}

.icon-gallery .item .icon{
  width: 100%;
  max-width: 60px;
  margin: 0 0 5px 0;
}

.icon-gallery .item .icon img{
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
  width: 100%;
  display: block;
}

.icon-gallery .item .text{
  font-size: 17px;
  text-align: center;
}

.icon-gallery.legal-docs{
  padding: 40px 0;
}
.icon-gallery.order{
  margin-top: -20px;
}

.icon-gallery:not(.order) .item:hover{
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.3))
}

.icon-gallery.order .item{
  flex-flow: row;
  width: 70%;
  max-width: 260px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #2257f9, #3476eb);
  border-radius: 10px;
  color: white;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid #d3d3d3;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.icon-gallery.order .item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to bottom, #ff61c2, #346ceb);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.icon-gallery.order .item:hover::before{
  opacity: 1;
}

.icon-gallery.order .item:hover{
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.icon-gallery.order .order{
  font-size: 40px;
  margin: 0 5px 0 0;
  font-family: monospace;
  position: relative;
}

.icon-gallery.order .item .info{
  display: flex;
  align-items: center;
  position: relative;
}

.icon-gallery.order .item .icon{
  margin: 0 10px 0 5px;
  max-width: 50px;
  flex-shrink: 0;
}

.icon-gallery.order .item .info .text{  
  text-align: left;
  font-size: 18px;
}

.items-description.ilust{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.items-description.ilust .item{
  width: 40%;
  display: flex;
  align-items: center;
  margin: 20px;
}

.items-description.ilust .item .ilust{
  width: 50px;
  flex-shrink: 0;
  margin: 0 15px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.items-description.ilust .item .ilust img{
  width: 100%;
}

.items-description.ilust .item .description{
  width: 100%;
}

@media only screen and (max-width: 650px){

  .items-description.ilust .item{
    width: 80%;
    margin: 10px 0;
  }

  .items-description.ilust .item .ilust{
    width: 40px;
  }
}

.cont-collapsible{
  display: flex;
  flex-flow: column;
  width: 100%;
}

.headline-collapsible{
  background: linear-gradient(to top, #003bff, #3f7efc);
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px 0 20px;
  border-radius: 15px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
  position: sticky;
  top: 50px;
  left: 0;
  margin: 15px 0 5px 0;
  flex-shrink: 0;
}


.headline-collapsible:hover{
  background: linear-gradient(to top, #0036e7, #1563ff);
}

.headline-collapsible h2{
  font-size: 18px;
}

.headline-collapsible span{
  display: block;  
  border-style: solid;
  border-width: 0 0 4px 4px;
  border-color: transparent transparent white white;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  margin: -2px 0 0 -2px;
}

.headline-collapsible.expanded span{
  transform: rotate(-225deg);
  margin: 0 0px -7px 0;
}

.collapsible-content{  
  padding: 0 20px;
  border-radius: 15px;
  margin: 10px 0;
  border: 1px solid #0055ff;
  display: none;
  flex-flow: column;
  width: 100%;
  /* overflow: hidden; */
  /* height: 0; */
}

/* @keyframes expandCollapsibleContent {
  0% {
    height: 0;
  }

  100% {
    height: var(--offsetHeight);
  }
}

@keyframes contractCollapsibleContent {
  0% {
    height: auto;
  }
  1% {
    height: var(--offsetHeight);
  }

  100% {
    height: 0;
  }  
} */

/* .collapsible-content.expanded{
  animation: expandCollapsibleContent 0.4s ease-in-out 0s 1 both;
  border: 1px solid #0055ff;
}

.collapsible-content.contracted{
  animation: contractCollapsibleContent 0.4s ease-in-out 0s 1 both;
} */

@media only screen and (max-width: 600px){
  .headline-collapsible h2{
    font-size: 18px;
  }
  .headline-collapsible span{
    font-size: 40px;
    /* margin: -15px 0 10px 0; */
  }
  .collapsible-content{  
    padding: 0 10px;
  }
}

.sistema-consulta-op-edu{
  display: flex;
  flex-flow: column;  
}

.sistema-consulta-op-edu .search-ops{
  display: flex;
  width: 100%;
  justify-content: center;
}

.sistema-consulta-op-edu .search-ops .param{
  width: calc(50% - 40px);
  margin: 10px 20px;
  max-width: 400px;
  display: flex;
  flex-flow: column;
}

.sistema-consulta-op-edu .search-ops select{
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  background: white;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  margin: 10px 0 0 0;
}

.sistema-consulta-op-edu .search-ops select:hover{
  border-color: black;
}

.sistema-consulta-op-edu .search-ops select:focus{
  border-color: #003bff;
}

@media only screen and (max-width: 670px){
  .sistema-consulta-op-edu .search-ops{
    flex-flow: column;
  }

  .sistema-consulta-op-edu .search-ops .param{
    width: 100%;
    margin: 10px 0;
  }
}

.sistema-consulta-op-edu .search-results{
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ccc;
  margin: 20px 0;
  border-radius: 15px;
  display: flex;
  flex-flow: column;
}

.sistema-consulta-op-edu .op-edu{
  grid-template-areas: "logo name" "logo details";
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: start;
  margin: 10px 0;
  padding: 20px 0;
}

.sistema-consulta-op-edu .op-edu:not(:first-child){
  border-bottom: 1px solid #ccc;
}

.sistema-consulta-op-edu .op-edu .name{
  grid-area: name;
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 10px 0;
}

.sistema-consulta-op-edu .op-edu .logo{
  grid-area: logo;  
  display: flex;
  justify-content: center;
  padding: 0 20px 0 0;
}

.sistema-consulta-op-edu .op-edu .logo img{
  width: 100%;
  max-width: 150px;
}

.sistema-consulta-op-edu .op-edu .details{
  grid-area: details;
  font-size: 14px;
  display: flex;
  flex-flow: column;
  text-align: justify;
  text-align-last: left;
}

@media only screen and (max-width: 600px){
  .sistema-consulta-op-edu .op-edu{
    grid-template-areas: "name" "logo" "details";
    grid-template-columns: auto;
  }

  .sistema-consulta-op-edu .op-edu .name{
    text-align: center;
  }

}

.sistema-consulta-op-edu .result_len{
  display: none;
}

/*
.#####....####...##..##...####...######..######..##..##...####....####..
.##..##..##..##..###.##..##..##....##......##....##..##..##..##..##.....
.##..##..##..##..##.###..######....##......##....##..##..##..##...####..
.##..##..##..##..##..##..##..##....##......##.....####...##..##......##.
.#####....####...##..##..##..##....##....######....##.....####....####..
........................................................................
*/


.banner-donativos{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;  
}

.banner-donativos .info{
  width: 40%;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}

.banner-donativos .info .headline{
  font-size: 25px;
  font-weight: bold;
}

.banner-donativos .info .btn-trigger{  
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 6px 8px -4px rgba(0, 0, 0, 0.2);
  transition: background 0.1s ease;
}

.banner-donativos .info .btn-trigger,focus{
  background-image: linear-gradient(to top, #ffb000, #ffde25 80%);
}

.banner-donativos .info .btn-trigger.focus:hover{
  background-image: linear-gradient(to top, #eea200, #fed801 80%);
}

.banner-donativos .info .pay-methods{
  width: 40%;  
  margin: 10px 0 0 0;
}

.banner-donativos .info .pay-methods img{
  width: 100%;
}

.banner-donativos .ilust{
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-donativos .ilust img{
  width: 100%;
  max-width: 350px;
}

@media only screen and (max-width: 800px){
  .banner-donativos{
    padding: 40px 10px;
  }

  .banner-donativos .info{
    width: 90%;
  }

  .banner-donativos .ilust{
    display: none;
  }
}

.donativos-ops{
  display: flex;
  justify-content: center;
  text-align: center!important;
  text-align-last: center!important;
  margin: 60px 0 20px 0;
}

.donativos-ops .banner-donativos{
  border: none;
  width: 40%;
}

.donativos-ops .banner-donativos .info{
  width: 100%;
}

.donativos-ops .banner-donativos .info .btn-trigger:not(.focus){
  background-image: linear-gradient(to top, #1b37f2, #3f6bfe 80%);
  color: white;
}


@media only screen and (max-width: 750px){
  .donativos-ops{
    flex-flow: column;
    align-items: center;
    margin: 30px 0 20px 0;
  }
  .donativos-ops .banner-donativos{
    padding: 20px 0;
    width: 80%;
  }
}

/*
          :::      ::::::::  :::::::::: ::::    ::: :::::::::      :::
       :+: :+:   :+:    :+: :+:        :+:+:   :+: :+:    :+:   :+: :+:
     +:+   +:+  +:+        +:+        :+:+:+  +:+ +:+    +:+  +:+   +:+
   +#++:++#++: :#:        +#++:++#   +#+ +:+ +#+ +#+    +:+ +#++:++#++:
  +#+     +#+ +#+   +#+# +#+        +#+  +#+#+# +#+    +#+ +#+     +#+
 #+#     #+# #+#    #+# #+#        #+#   #+#+# #+#    #+# #+#     #+#
###     ###  ########  ########## ###    #### #########  ###     ###
*/

.cont-calendar{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.cont-triggers.calendar{
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 20px 0 0 0;
}

.calendar .btn-trigger{
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 8px -4px rgba(0, 0, 0, 0.2);
  transition: background 0.1s ease;
  background-image: linear-gradient(to top, #1b37f2, #3f6bfe 80%);
  color: white;
  --fill: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont-triggers.calendar .btn-trigger svg{
  margin: 0  5px 0 0;
}

.cont-triggers.calendar .instructions{
  font-size: 12px;
  font-style: italic;
  margin: 10px 0 0 0;
  color: #414f7d;
}

/*
      :::::::::: ::::::::   :::::::: ::::::::::: :::::::::: :::::::::
     :+:       :+:    :+: :+:    :+:    :+:     :+:        :+:    :+:
    +:+       +:+    +:+ +:+    +:+    +:+     +:+        +:+    +:+
   :#::+::#  +#+    +:+ +#+    +:+    +#+     +#++:++#   +#++:++#:
  +#+       +#+    +#+ +#+    +#+    +#+     +#+        +#+    +#+
 #+#       #+#    #+# #+#    #+#    #+#     #+#        #+#    #+#
###        ########   ########     ###     ########## ###    ###
*/

footer{
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin: 40px 0 0 0;
  --social-icon-size: 22px;
	--social-icon-size-svg: 14px;
}

footer .content{
  width: 100%;
  max-width: var(--max-width-page-content);
  display: flex;
  justify-content: space-between;
  border: none;
  border-top: 1px solid #ccc;
  padding: 20px 10px;
  text-align: justify;
}

footer .content .info{
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  margin: 0 30px 0 0;
  width: 30%;
}

footer .content .info .cont-legal-triggers a{
	background: #ddd;
	color: #0055ff;
	padding: 0px 4px;
	border-radius: 4px;
	text-decoration: none;
}

footer .content .info .cont-legal-triggers a:hover{
	background: #ccc;
	color: #0055ff;
}

footer h4{
  margin: 0 0 3px 0;
  display: flex;
  align-items: center;
}

footer h4 img{
  width: 15px;
  margin: 0 5px 0 0;
}

footer p{
  margin: 0 0 3px 0;
}

footer .details{
  width: 70%;
}


.social{
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 4px 0 0 0;
}

.social .social-icon{
  --btn-bg: #2b45a0;
	width: var(--social-icon-size);
	height: var(--social-icon-size);
	background: var(--btn-bg, #333);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 5px 0 0;
	border-radius: 4px;
	--fill: white;
	transition: background 0.1s ease;
}

.social .social-icon span{
	display: none;
}

.social .social-icon:hover{
	/* background: yellow; */
	--btn-bg: rgb(182, 182, 182);
  --fill: black;
}

.social .social-icon svg{
	width: var(--social-icon-size-svg);
	height: var(--social-icon-size-svg);
	fill: var(--fill);
	transition: fill 0.1s ease;
}

@media only screen and (max-width: 600px){

  footer .content{
    flex-flow: column;
    --social-icon-size: 24px;
	  --social-icon-size-svg: 14px;
  }

  footer .content .info{
    width: 100%;
  }

  footer .content .details{
    margin: 10px 0 0 0;
    width: 100%;
  }

  .social{
		margin: 10px 0 0 0;
	}

	
}

/*
      :::::::::  :::::::::   ::::::::  :::::::::::
     :+:    :+: :+:    :+: :+:    :+:     :+:
    +:+    +:+ +:+    +:+ +:+    +:+     +:+
   +#++:++#+  +#++:++#:  +#+    +:+     +#+
  +#+        +#+    +#+ +#+    +#+     +#+
 #+#        #+#    #+# #+#    #+# #+# #+#
###        ###    ###  ########   #####
      :::::::::: :::::::: ::::::::::: ::::::::
     :+:       :+:    :+:    :+:    :+:    :+:
    +:+       +:+           +:+    +:+
   +#++:++#  +#+           +#+    +#++:++#++
  +#+       +#+           +#+           +#+
 #+#       #+#    #+#    #+#    #+#    #+#
########## ########     ###     ########
*/

.modal.project{
  position: absolute;
  width: 100%;
  height: 100%;  
  backdrop-filter: blur(5px);
  top: 0;
  left: 0;
  display: none;  
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 20;
  animation: fadeIn 0.4s ease 0s 1 both;
}

.modal.project.xylium{
  background: linear-gradient(to top, #ffa500e3, rgb(255 255 0 / 65%), transparent);
}

.modal.project.agora{
  background: linear-gradient(to top,#3a0080d5, rgb(202 0 246 / 68%), transparent);
}

.modal.project.xylium-os{
  background: linear-gradient(to top,#00a700cc, #83ff008c, transparent);
}

.modal.project .content{
  width: 100%;
  max-height: 100%;
  max-width: 800px;
  display: flex;
  flex-flow: column;
  position: relative;
  border-radius: 20px;
  background: white;
  padding: 20px;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.modal.project .content .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 20px 20px 0 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) );
  opacity: 0.9;
  height: 180px;
  filter: contrast(0.5);
}

.modal.project .content .bg picture,
.modal.project .content .bg img
{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}


.modal.project .headline{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 21;
  height: 150px;
  flex-shrink: 0;
}

.modal.project .info{
  position: relative;
  z-index: 21;
  text-align: justify;
  hyphens: auto;
}

.modal.project h3{
  font-size: 24px;
  margin: 0 0 10px 0;
  text-align: center;
}

.modal.project .caption{
  font-style: italic;
  font-size: 14px;
}

.modal.project .btn-close{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  cursor: pointer;
  background: white;
  z-index: 26;
}


/*
      :::::::::: ::::::::  :::::::::    :::   :::
     :+:       :+:    :+: :+:    :+:  :+:+: :+:+:
    +:+       +:+    +:+ +:+    +:+ +:+ +:+:+ +:+
   :#::+::#  +#+    +:+ +#++:++#:  +#+  +:+  +#+
  +#+       +#+    +#+ +#+    +#+ +#+       +#+
 #+#       #+#    #+# #+#    #+# #+#       #+#
###        ########  ###    ### ###       ###
*/

.modal.form{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: none;
  animation: fadeIn 0.3s ease 0s 1 both;
}


.modal.form .content{
  width: 100%;
  max-width: 800px;
  max-height: 100%;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-flow: column;
  padding: 10px 0 0px 0;
  border-radius: 20px;
  position: relative;
  transition: width 0.2s ease, max-width 0.2s ease;  
}

.modal.form.otp-width .content{
  max-width: 500px;
}

.modal.form .form-title{
  font-weight: bold;
  font-size: 20px;
  margin: 10px 0 20px 0;
  position: relative;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 0 10px;
}

.modal .btn-close-modal{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  cursor: pointer;
  background: white;
  z-index: 26;
}

.modal .btn-close-modal:hover{
  background: #eee;
}

.modal.form .cont-form {
  width: 100%;
  position: relative;
  padding: 0 20px 10px 20px;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

.modal .cont-form::-webkit-scrollbar-track{
  margin: 0 0 20px 0;
}

.modal.form .content .form-header-deco{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 15px 15px 0 0;  
  overflow: hidden;
  background: #122f68;
}

.modal.form .content .form-header-deco picture,
.modal.form .content .form-header-deco img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal.form form{
  display: flex;
  flex-flow: column;
  width: 100%;
}

.modal.form .cont-input{
  display: flex;
  width: 100%;
  flex-flow: column;
  margin: 10px 0;
}

.modal.form .cont-input.cont-input-message{
  width: 100%!important;
}

.modal.form textarea{
  resize: none;
}

.modal.form input:not([type=checkbox]),
.modal.form select,
.modal.form textarea
{
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  background: white;
  transition: border-color 0.1s ease;
  outline: none;
  font-family: monospace;
  font-size: 14px;
}

.modal.form select{
  cursor: pointer;
}

.modal.form input:hover,
.modal.form select:hover,
.modal.form text-area:hover
{
  border: 1px solid #0055ff;
}

.modal.form input:not([type=checkbox]):focus,
.modal.form select:active,
.modal.form textarea:focus
{
  border: 1px solid #0055ff;
  box-shadow: 0 0 4px #0055ff9e;
}

.modal.form label{
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.meta-label{
  display: flex;
  align-items: center;
}

.meta-label .input-length{
  font-size: 11px;
  opacity: 0.5;
}

.meta-label .input-length.error{
  color: rgb(255, 62, 62);
}

.modal.form .cont-check{
  display: flex;
  width: 100%;
  font-size: 12px;
  margin: 10px 0 0 5px;
  cursor: pointer;
}

.modal.form .cont-check label{
  cursor: pointer;
}

.modal.form .cont-check input{
  padding: 0;
  margin: 0;
  width: fit-content;
  margin: 0 10px 0 0;
  cursor: pointer;
  transform: scale(1.3);
}

.modal.form .cont-confirmations{
  width: 100%;  
  columns: 2;
}

.modal.form .cont-confirmations label a{
  color: var(--a-color);
}


.modal.form .cont-input.cont-check{
  flex-flow: row;
  width: 100%;
}

.modal.form .cont-form-triggers{
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin: 10px 0 10px 0;
}

.modal.form .form-trigger{
  background: linear-gradient(to top, #0740fc, rgb(39, 79, 255));
  padding: 7px 12px;
  color: white;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.modal.form .form-trigger:hover{
  background: linear-gradient(to top, #0533cb, rgb(28, 62, 215));
}

.modal.form .disclaimer{
  margin: 30px 0 10px 0;
  font-size: 14px;
  font-style: italic;
  width: 100%;
  display: flex;
  flex-flow: column;
}

.form-errors-description{
  width: 100%;
  border-radius: 7px;
  margin: 20px 0 10px 0;
  font-size: 14px;
  font-style: italic;
  padding: 10px;
  display: none;
  border: 2px solid #ffd47e;
  background: #ffebc3;
  /* animation: alertMsg 0.3s ease 0s 3 both; */
}


@media only screen and (min-width: 600px){
  .modal.form form{
    flex-flow: row;
    flex-wrap: wrap;
  }
  .modal.form .cont-input{
    width: 50%;
    padding: 0 5px;
  }  
  
  .modal.form .cont-confirmations{
    padding: 0 5px;    
  }
}

@media only screen and (max-width: 599px){
  .modal.form .cont-confirmations{
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}

.form p.instructions{
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.cont-input p.caption{
  font-size: 11px;
  font-family: monospace;
  hyphens: none;
  padding: 7px;
  border-radius: 10px;  
  background: #eee;
  color: #555;
}

.otp-container{
  display: flex;
  align-items: center;
  justify-content: center;  
  border-radius: 20px;
  width: 100%;
  background: rgb(244 246 255);
}

.otp-container input{
  appearance: none;
  border: 2px solid #b4c4ff !important;
  background: white;
  padding: 0!important;
  font-size: 25px!important;
  font-weight: bold;
  border-radius: 15px;
  margin: clamp(2px,2vw,7px)!important;
  color: black;
  aspect-ratio: 1 / 1.7;
  width: clamp(20px,15%,40px)!important;
  text-align: center;
  outline: none;  
}



.otp-container input:focus,
.otp-container input:active
{
  border-color: rgb(0 41 255) !important;
  box-shadow: 0 0 5px #5c83ff!important;
}

/* For Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; /* Important to remove extra space created by the buttons */
}

/* For Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}


/*
      :::        ::::::::      :::     :::::::::
     :+:       :+:    :+:   :+: :+:   :+:    :+:
    +:+       +:+    +:+  +:+   +:+  +:+    +:+
   +#+       +#+    +:+ +#++:++#++: +#+    +:+
  +#+       +#+    +#+ +#+     +#+ +#+    +#+
 #+#       #+#    #+# #+#     #+# #+#    #+#
########## ########  ###     ### #########
*/


.cont-load-icon{
  display: none;
  transform: rotateY(180deg);
}

.preload-on .cont-load-icon{
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}

.preload-on.btn-trigger{
  pointer-events: none;
}

.preload-on.btn-trigger svg{
  visibility: hidden;
  opacity: 0;
}

.preload-on.btn-trigger span{
  visibility: hidden;
  opacity: 0;
}

.load-icon {
	--b:4px;  /* border width*/
	color: #313149;
	display: inline-block;
	width: 20px;
	aspect-ratio: 1;
	position: relative;
	z-index: 5;
	animation: rotate 1s linear 0s infinite both;
	display: block;
	/* margin: 0 5px 0 0; */
}

@keyframes rotate{
	0%{
		transform: rotate(360deg);
	}
}

.btn-trigger.focus,
.form-trigger
{
  --load-icon-start-color: white!important;
}

.load-icon:before {
	--c:conic-gradient(var(--load-icon-start-color), transparent);
	content:"";
	position:absolute;
	z-index:-1;
	inset: 0;
	background: var(--c,linear-gradient(to right, #9c20aa, #fb3570));
	padding: var(--b);
	border-radius: 50%;
	-webkit-mask: 
		linear-gradient(#fff 0 0) content-box, 
		linear-gradient(#fff 0 0);
			mask: 
		linear-gradient(#fff 0 0) content-box, 
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
			mask-composite: exclude;
}


/*
      :::::::::: :::    :::
     :+:        :+:    :+:
    +:+         +:+  +:+
   :#::+::#     +#++:+
  +#+         +#+  +#+
 #+#        #+#    #+#
###        ###    ###
*/


@keyframes fadeIn {
  0%{opacity: 0; visibility: hidden;}
  100%{opacity: 1; visibility: visible;}
}

@keyframes fadeOut {
  0%{opacity: 1; visibility: visible;}
  100%{opacity: 0; visibility: hidden;}
}


/*
      ::::::::   ::::::::  :::::::::   ::::::::  :::        :::
    :+:    :+: :+:    :+: :+:    :+: :+:    :+: :+:        :+:
   +:+        +:+        +:+    +:+ +:+    +:+ +:+        +:+
  +#++:++#++ +#+        +#++:++#:  +#+    +:+ +#+        +#+
        +#+ +#+        +#+    +#+ +#+    +#+ +#+        +#+
#+#    #+# #+#    #+# #+#    #+# #+#    #+# #+#        #+#
########   ########  ###    ###  ########  ########## ##########
*/


@media (pointer:fine) {
  
  ::-webkit-scrollbar {
    width: 16px;
    height: 16px;
  }  
  
  ::-webkit-scrollbar-track {    
    background: #f1f1f199;
    border-radius: 20px;    
  }  
  
  ::-webkit-scrollbar-thumb {
    border-radius: 20px;
    --soft-lines-color: #aaa;
    background: var(--soft-lines-color);
    border: 3px solid #f1f1f1;
  }  
  
  ::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }
}