@charset "UTF-8";
/**
 * Gov.co (https://www.gov.co) - Gobierno de Colombia
 *  - Componente: volver arriba
 *  - Version: 5.0.0
*/

html {
  font-size: 100%;
  /* 100% = 16px */
}

/* Verdana-Regular */
@font-face {
  font-family: 'Verdana-Regular';
  src: url('../assets/fonts/Verdana/static/Verdana-Regular.ttf');
}

:root {
  --govcolor-cobalt: #0943B5;
  --govcolor-white: #FFFFFF;
  --govcolor-havelock-lue: #4672C8;
  --govcolor-tropical-blue: #B5C7E9;
}

.volver-arriba-govco {
  color: var(--govcolor-white);
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background-color: var(--govcolor-cobalt);
  box-shadow: 0.25rem 0.25rem 0.375rem var(--govcolor-tropical-blue);
  transition: all 300ms;
  text-align: center;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  overflow: hidden;
}

.volver-arriba-govco::before {
  content: "";
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: 50%;
  background-color: var(--govcolor-white);
  display: block;
}

.volver-arriba-govco span.govco-expand_circle_up {
  background-image: url(../assets/icons/angle-up.svg);
  min-width: 1rem;
  min-height: 1rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}

.volver-arriba-govco span {
  min-width: 1.5rem!important;
  min-height: 1.5rem!important;
  background-size: 1.5rem 1.5rem!important;
  position: absolute;
  filter: invert(21%) sepia(98%) saturate(1529%) hue-rotate(209deg) brightness(95%) contrast(118%);
}

.volver-arriba-govco:hover,
.volver-arriba-govco:focus-visible {
  width: 7.375rem;
  height: 3.375rem;
  background-color: var(--govcolor-havelock-lue);
  color: var(--govcolor-white);
  border-radius: 1.688rem 0.625rem 0.625rem 1.688rem;
  text-align: left;
  transition: all 300ms;
  justify-content: flex-start;
  padding: 0 0.625rem 0 0.5rem;
}

.volver-arriba-govco:focus-visible {
  outline: max(0.125rem, 0.125rem) solid black;
  outline-offset: max(0.188rem, 0.188rem);
}

.volver-arriba-govco:hover span,
.volver-arriba-govco:focus-visible span {
  margin-left: 0.375rem;
}

.volver-arriba-govco:hover::after,
.volver-arriba-govco:focus-visible::after {
  content: "Volver arriba";
  color: var(--govcolor-white);
  font-family: 'Verdana-Regular';
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}