:root {
  --font-base: 50%;
  --gap: 1.5rem;
  --regular: "Montserrat Regular", sans-serif;
  --medium: "Montserrat Medium", sans-serif;
  --bold: "Montserrat Bold", sans-serif;
  --clr-primary-500: #2BABE2;
  --clr-neutral-500: #666666;
  --clr-white-500: #fff;
  --clr-whatsapp-500: #25D366;
  --clr-light-gray-500: #F5F5F5;
  --clr-blue-500: #005379;
  --clr-dark-blue-500: #042C3A;
  --clr-gray-500: #999;
  --clr-release-500: #ccc;
  --fs-100: 0.8rem;
  --fs-200: 1.6rem;
  --fs-300: 2.4rem;
  --fs-400: 3.2rem;
  --fs-500: 4rem;
  --fs-600: 4.8rem;
  --fs-700: 5.6rem;
  --fs-800: 6.4rem;
  --fs-900: 7.2rem;
  --fs-1000: 8rem;
  --x-small: 576px;
  --sm: 540px;
  --md: 720px;
  --lg: 960px;
  --xl: 1140px;
}
@media only screen and (min-width: 720px) {
  :root {
    --font-base: 62.5%;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

span,
abbr {
  font-family: inherit !important;
}

abbr {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: auto;
}

i {
  color: inherit !important;
}
i::before {
  color: inherit !important;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 2rem;
  font-family: var(--regular) !important;
  color: var(--clr-gray-500) !important;
  line-height: 1.5;
  border: 2px solid var(--clr-light-gray-500);
  border-radius: 0;
  background: var(--clr-light-gray-500);
  transform: scale(1);
  -webkit-appearance: none !important;
  -webkit-border-radius: 0 !important;
  transition: all 300ms ease-in-out;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
@media only screen and (max-width: 576px) {
  input::-webkit-input-placeholder, input::-moz-placeholder, input:-ms-input-placeholder, input::-ms-input-placeholder, input::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder,
textarea::placeholder,
select::-webkit-input-placeholder,
select::-moz-placeholder,
select:-ms-input-placeholder,
select::-ms-input-placeholder,
select::placeholder {
    font-size: 1.5rem !important;
  }
}

select {
  padding: 1.2rem 2rem;
  background: #fff;
  -webkit-appearance: auto !important;
  -webkit-border-radius: 2px !important;
}

textarea {
  min-height: 15rem;
  resize: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  font-family: var(--regular) !important;
}

html {
  font-size: var(--font-base) !important;
  color: var(--clr-neutral-500) !important;
}

body {
  font-size: var(--fs-200);
}

h1,
h2,
h3,
h4 {
  font-family: var(--bold) !important;
  font-size: inherit;
  line-height: 1.1;
  color: var(--clr-dark-blue-500);
}

strong,
b {
  font-family: var(--bold) !important;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit !important;
}
a:hover, a:focus {
  text-decoration: none;
}

address {
  font: inherit;
}

body {
  min-height: 100vh;
}
@media only screen and (max-width: 576px) {
  body {
    display: block;
  }
}

.a-rotate {
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear;
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bg-none {
  background: none !important;
}

.bg-primary-500 {
  background-color: var(--clr-primary-500) !important;
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500) !important;
}

.bg-white-500 {
  background-color: var(--clr-white-500) !important;
}

.bg-whatsapp-500 {
  background-color: var(--clr-whatsapp-500) !important;
}

.bg-light-gray-500 {
  background-color: var(--clr-light-gray-500) !important;
}

.bg-blue-500 {
  background-color: var(--clr-blue-500) !important;
}

.bg-dark-blue-500 {
  background-color: var(--clr-dark-blue-500) !important;
}

.bg-gray-500 {
  background-color: var(--clr-gray-500) !important;
}

.bg-release-500 {
  background-color: var(--clr-release-500) !important;
}

.clr-primary-500 {
  color: var(--clr-primary-500) !important;
}

.clr-neutral-500 {
  color: var(--clr-neutral-500) !important;
}

.clr-white-500 {
  color: var(--clr-white-500) !important;
}

.clr-whatsapp-500 {
  color: var(--clr-whatsapp-500) !important;
}

.clr-light-gray-500 {
  color: var(--clr-light-gray-500) !important;
}

.clr-blue-500 {
  color: var(--clr-blue-500) !important;
}

.clr-dark-blue-500 {
  color: var(--clr-dark-blue-500) !important;
}

.clr-gray-500 {
  color: var(--clr-gray-500) !important;
}

.clr-release-500 {
  color: var(--clr-release-500) !important;
}

.container {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  width: 100%;
}
@media only screen and (min-width: 540px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--sm);
  }
}
@media only screen and (min-width: 720px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--md);
  }
}
@media only screen and (min-width: 960px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--lg);
  }
}
@media only screen and (min-width: 1140px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--xl);
  }
}

.container-fluid {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  width: 100%;
}

.container-lg {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  max-width: 172rem;
}

.d-none {
  display: none !important;
}

.d-fixed {
  position: sticky !important;
  top: 0;
  left: 0;
  transition: position 300ms ease-in-out;
}

.d-inline {
  width: 100%;
  display: inline-block;
}

.d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.jc-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.jc-start {
  justify-content: flex-start !important;
}

.ai-center {
  align-items: center;
}

.ai-stretch {
  align-items: stretch;
}

.f-column {
  flex-direction: column;
}

.f-row {
  flex-direction: row;
}

.f-1 {
  font-size: calc(var(--fs-100) * 1);
}

.f-2 {
  font-size: calc(var(--fs-100) * 2);
}

.f-3 {
  font-size: calc(var(--fs-100) * 3);
}

.f-4 {
  font-size: calc(var(--fs-100) * 4);
}

.f-5 {
  font-size: calc(var(--fs-100) * 5);
}

.f-6 {
  font-size: calc(var(--fs-100) * 6);
}

.f-7 {
  font-size: calc(var(--fs-100) * 7);
}

.f-8 {
  font-size: calc(var(--fs-100) * 8);
}

.f-9 {
  font-size: calc(var(--fs-100) * 9);
}

.f-10 {
  font-size: calc(var(--fs-100) * 10);
}

.l-small {
  line-height: 1.1 !important;
}

.gp-1 {
  gap: calc(var(--gap) * 1);
}

.gp-2 {
  gap: calc(var(--gap) * 2);
}

.gp-3 {
  gap: calc(var(--gap) * 3);
}

.gp-4 {
  gap: calc(var(--gap) * 4);
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--gap) * 2);
}

.img-fluid {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.my-1 {
  margin: calc(var(--fs-100) * 1) 0;
}

.mx-1 {
  margin: 0 calc(var(--fs-100) * 1);
}

.mt-1 {
  margin-top: calc(var(--fs-100) * 1);
}

.mb-1 {
  margin-bottom: calc(var(--fs-100) * 1);
}

.ml-1 {
  margin-left: calc(var(--fs-100) * 1);
}

.mr-1 {
  margin-right: calc(var(--fs-100) * 1);
}

.my-2 {
  margin: calc(var(--fs-100) * 2) 0;
}

.mx-2 {
  margin: 0 calc(var(--fs-100) * 2);
}

.mt-2 {
  margin-top: calc(var(--fs-100) * 2);
}

.mb-2 {
  margin-bottom: calc(var(--fs-100) * 2);
}

.ml-2 {
  margin-left: calc(var(--fs-100) * 2);
}

.mr-2 {
  margin-right: calc(var(--fs-100) * 2);
}

.my-3 {
  margin: calc(var(--fs-100) * 3) 0;
}

.mx-3 {
  margin: 0 calc(var(--fs-100) * 3);
}

.mt-3 {
  margin-top: calc(var(--fs-100) * 3);
}

.mb-3 {
  margin-bottom: calc(var(--fs-100) * 3);
}

.ml-3 {
  margin-left: calc(var(--fs-100) * 3);
}

.mr-3 {
  margin-right: calc(var(--fs-100) * 3);
}

.my-4 {
  margin: calc(var(--fs-100) * 4) 0;
}

.mx-4 {
  margin: 0 calc(var(--fs-100) * 4);
}

.mt-4 {
  margin-top: calc(var(--fs-100) * 4);
}

.mb-4 {
  margin-bottom: calc(var(--fs-100) * 4);
}

.ml-4 {
  margin-left: calc(var(--fs-100) * 4);
}

.mr-4 {
  margin-right: calc(var(--fs-100) * 4);
}

.my-5 {
  margin: calc(var(--fs-100) * 5) 0;
}

.mx-5 {
  margin: 0 calc(var(--fs-100) * 5);
}

.mt-5 {
  margin-top: calc(var(--fs-100) * 5);
}

.mb-5 {
  margin-bottom: calc(var(--fs-100) * 5);
}

.ml-5 {
  margin-left: calc(var(--fs-100) * 5);
}

.mr-5 {
  margin-right: calc(var(--fs-100) * 5);
}

.my-6 {
  margin: calc(var(--fs-100) * 6) 0;
}

.mx-6 {
  margin: 0 calc(var(--fs-100) * 6);
}

.mt-6 {
  margin-top: calc(var(--fs-100) * 6);
}

.mb-6 {
  margin-bottom: calc(var(--fs-100) * 6);
}

.ml-6 {
  margin-left: calc(var(--fs-100) * 6);
}

.mr-6 {
  margin-right: calc(var(--fs-100) * 6);
}

.my-7 {
  margin: calc(var(--fs-100) * 7) 0;
}

.mx-7 {
  margin: 0 calc(var(--fs-100) * 7);
}

.mt-7 {
  margin-top: calc(var(--fs-100) * 7);
}

.mb-7 {
  margin-bottom: calc(var(--fs-100) * 7);
}

.ml-7 {
  margin-left: calc(var(--fs-100) * 7);
}

.mr-7 {
  margin-right: calc(var(--fs-100) * 7);
}

.my-8 {
  margin: calc(var(--fs-100) * 8) 0;
}

.mx-8 {
  margin: 0 calc(var(--fs-100) * 8);
}

.mt-8 {
  margin-top: calc(var(--fs-100) * 8);
}

.mb-8 {
  margin-bottom: calc(var(--fs-100) * 8);
}

.ml-8 {
  margin-left: calc(var(--fs-100) * 8);
}

.mr-8 {
  margin-right: calc(var(--fs-100) * 8);
}

.my-9 {
  margin: calc(var(--fs-100) * 9) 0;
}

.mx-9 {
  margin: 0 calc(var(--fs-100) * 9);
}

.mt-9 {
  margin-top: calc(var(--fs-100) * 9);
}

.mb-9 {
  margin-bottom: calc(var(--fs-100) * 9);
}

.ml-9 {
  margin-left: calc(var(--fs-100) * 9);
}

.mr-9 {
  margin-right: calc(var(--fs-100) * 9);
}

.my-10 {
  margin: calc(var(--fs-100) * 10) 0;
}

.mx-10 {
  margin: 0 calc(var(--fs-100) * 10);
}

.mt-10 {
  margin-top: calc(var(--fs-100) * 10);
}

.mb-10 {
  margin-bottom: calc(var(--fs-100) * 10);
}

.ml-10 {
  margin-left: calc(var(--fs-100) * 10);
}

.mr-10 {
  margin-right: calc(var(--fs-100) * 10);
}

.p-1 {
  padding: calc(var(--fs-100) * 1);
}

.py-1 {
  padding: calc(var(--fs-100) * 1) 0;
}

.px-1 {
  padding: 0 calc(var(--fs-100) * 1);
}

.pt-1 {
  padding-top: calc(var(--fs-100) * 1);
}

.pb-1 {
  padding-bottom: calc(var(--fs-100) * 1);
}

.pl-1 {
  padding-left: calc(var(--fs-100) * 1);
}

.pr-1 {
  padding-right: calc(var(--fs-100) * 1);
}

.p-2 {
  padding: calc(var(--fs-100) * 2);
}

.py-2 {
  padding: calc(var(--fs-100) * 2) 0;
}

.px-2 {
  padding: 0 calc(var(--fs-100) * 2);
}

.pt-2 {
  padding-top: calc(var(--fs-100) * 2);
}

.pb-2 {
  padding-bottom: calc(var(--fs-100) * 2);
}

.pl-2 {
  padding-left: calc(var(--fs-100) * 2);
}

.pr-2 {
  padding-right: calc(var(--fs-100) * 2);
}

.p-3 {
  padding: calc(var(--fs-100) * 3);
}

.py-3 {
  padding: calc(var(--fs-100) * 3) 0;
}

.px-3 {
  padding: 0 calc(var(--fs-100) * 3);
}

.pt-3 {
  padding-top: calc(var(--fs-100) * 3);
}

.pb-3 {
  padding-bottom: calc(var(--fs-100) * 3);
}

.pl-3 {
  padding-left: calc(var(--fs-100) * 3);
}

.pr-3 {
  padding-right: calc(var(--fs-100) * 3);
}

.p-4 {
  padding: calc(var(--fs-100) * 4);
}

.py-4 {
  padding: calc(var(--fs-100) * 4) 0;
}

.px-4 {
  padding: 0 calc(var(--fs-100) * 4);
}

.pt-4 {
  padding-top: calc(var(--fs-100) * 4);
}

.pb-4 {
  padding-bottom: calc(var(--fs-100) * 4);
}

.pl-4 {
  padding-left: calc(var(--fs-100) * 4);
}

.pr-4 {
  padding-right: calc(var(--fs-100) * 4);
}

.p-5 {
  padding: calc(var(--fs-100) * 5);
}

.py-5 {
  padding: calc(var(--fs-100) * 5) 0;
}

.px-5 {
  padding: 0 calc(var(--fs-100) * 5);
}

.pt-5 {
  padding-top: calc(var(--fs-100) * 5);
}

.pb-5 {
  padding-bottom: calc(var(--fs-100) * 5);
}

.pl-5 {
  padding-left: calc(var(--fs-100) * 5);
}

.pr-5 {
  padding-right: calc(var(--fs-100) * 5);
}

.p-6 {
  padding: calc(var(--fs-100) * 6);
}

.py-6 {
  padding: calc(var(--fs-100) * 6) 0;
}

.px-6 {
  padding: 0 calc(var(--fs-100) * 6);
}

.pt-6 {
  padding-top: calc(var(--fs-100) * 6);
}

.pb-6 {
  padding-bottom: calc(var(--fs-100) * 6);
}

.pl-6 {
  padding-left: calc(var(--fs-100) * 6);
}

.pr-6 {
  padding-right: calc(var(--fs-100) * 6);
}

.p-7 {
  padding: calc(var(--fs-100) * 7);
}

.py-7 {
  padding: calc(var(--fs-100) * 7) 0;
}

.px-7 {
  padding: 0 calc(var(--fs-100) * 7);
}

.pt-7 {
  padding-top: calc(var(--fs-100) * 7);
}

.pb-7 {
  padding-bottom: calc(var(--fs-100) * 7);
}

.pl-7 {
  padding-left: calc(var(--fs-100) * 7);
}

.pr-7 {
  padding-right: calc(var(--fs-100) * 7);
}

.p-8 {
  padding: calc(var(--fs-100) * 8);
}

.py-8 {
  padding: calc(var(--fs-100) * 8) 0;
}

.px-8 {
  padding: 0 calc(var(--fs-100) * 8);
}

.pt-8 {
  padding-top: calc(var(--fs-100) * 8);
}

.pb-8 {
  padding-bottom: calc(var(--fs-100) * 8);
}

.pl-8 {
  padding-left: calc(var(--fs-100) * 8);
}

.pr-8 {
  padding-right: calc(var(--fs-100) * 8);
}

.p-9 {
  padding: calc(var(--fs-100) * 9);
}

.py-9 {
  padding: calc(var(--fs-100) * 9) 0;
}

.px-9 {
  padding: 0 calc(var(--fs-100) * 9);
}

.pt-9 {
  padding-top: calc(var(--fs-100) * 9);
}

.pb-9 {
  padding-bottom: calc(var(--fs-100) * 9);
}

.pl-9 {
  padding-left: calc(var(--fs-100) * 9);
}

.pr-9 {
  padding-right: calc(var(--fs-100) * 9);
}

.p-10 {
  padding: calc(var(--fs-100) * 10);
}

.py-10 {
  padding: calc(var(--fs-100) * 10) 0;
}

.px-10 {
  padding: 0 calc(var(--fs-100) * 10);
}

.pt-10 {
  padding-top: calc(var(--fs-100) * 10);
}

.pb-10 {
  padding-bottom: calc(var(--fs-100) * 10);
}

.pl-10 {
  padding-left: calc(var(--fs-100) * 10);
}

.pr-10 {
  padding-right: calc(var(--fs-100) * 10);
}

.py-s {
  padding: calc(var(--fs-100) * 17) 0;
}

.pt-s {
  padding-top: calc(var(--fs-100) * 17);
}

.pb-s {
  padding-bottom: calc(var(--fs-100) * 17);
}

.radius {
  border-radius: 5px;
  overflow: hidden;
}

.shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.t-justify {
  text-align: justify;
}

.t-uppercase {
  text-transform: uppercase;
}

.t-bold {
  font-family: var(--bold) !important;
}

.t-small {
  font-size: 12px;
}

.title {
  margin-bottom: var(--fs-800);
  text-align: center;
}
.title p {
  margin-bottom: var(--fs-100);
  font-family: var(--bold) !important;
  color: var(--clr-primary-500);
  text-transform: uppercase;
}
.title__divider {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.title__divider span {
  display: block;
  background: var(--clr-primary-500);
}
.title__divider span:nth-child(1) {
  width: 40px;
  height: 4px;
}
.title__divider span:nth-child(2) {
  width: 5px;
  height: 4px;
}
@media only screen and (max-width: 576px) {
  .title h2 {
    font-size: var(--fs-600);
  }
}

.btn {
  display: inline-block !important;
  margin: 0;
  padding: var(--fs-200) var(--fs-500);
  cursor: pointer;
  outline: none;
  border: none;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  line-height: 1.1 !important;
  font-family: var(--bold) !important;
  font-size: var(--fs-200);
  text-transform: uppercase;
}
.btn:active {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.btn-block {
  display: block !important;
  width: 100%;
}

.btn-primary-500 {
  background-color: #2BABE2;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-primary-500:hover {
  color: #f8f8f8;
  background-color: #1a8ec0;
  transition: all 300ms ease-in-out;
}

.btn-neutral-500 {
  background-color: #666666;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-neutral-500:hover {
  color: #f8f8f8;
  background-color: #4d4d4d;
  transition: all 300ms ease-in-out;
}

.btn-white-500 {
  background-color: #fff;
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}
.btn-white-500:hover {
  color: var(--clr-white-500);
  background-color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.btn-whatsapp-500 {
  background-color: #25D366;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-whatsapp-500:hover {
  color: #f8f8f8;
  background-color: #1da851;
  transition: all 300ms ease-in-out;
}

.btn-light-gray-500 {
  background-color: #F5F5F5;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-light-gray-500:hover {
  color: #f8f8f8;
  background-color: gainsboro;
  transition: all 300ms ease-in-out;
}

.btn-blue-500 {
  background-color: #005379;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-blue-500:hover {
  color: #f8f8f8;
  background-color: #003046;
  transition: all 300ms ease-in-out;
}

.btn-dark-blue-500 {
  background-color: #042C3A;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-dark-blue-500:hover {
  color: #f8f8f8;
  background-color: #01080a;
  transition: all 300ms ease-in-out;
}

.btn-gray-500 {
  background-color: #999;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-gray-500:hover {
  color: #f8f8f8;
  background-color: gray;
  transition: all 300ms ease-in-out;
}

.btn-release-500 {
  background-color: #ccc;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-release-500:hover {
  color: #f8f8f8;
  background-color: #b3b3b3;
  transition: all 300ms ease-in-out;
}

.link-primary-500 {
  color: #2BABE2;
  transition: all 300ms ease-in-out;
}
.link-primary-500:hover, .link-primary-500:focus {
  color: #1a8ec0;
  transition: all 300ms ease-in-out;
}

.link-neutral-500 {
  color: #666666;
  transition: all 300ms ease-in-out;
}
.link-neutral-500:hover, .link-neutral-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-white-500 {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.link-white-500:hover, .link-white-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-whatsapp-500 {
  color: #25D366;
  transition: all 300ms ease-in-out;
}
.link-whatsapp-500:hover, .link-whatsapp-500:focus {
  color: #1da851;
  transition: all 300ms ease-in-out;
}

.link-light-gray-500 {
  color: #F5F5F5;
  transition: all 300ms ease-in-out;
}
.link-light-gray-500:hover, .link-light-gray-500:focus {
  color: gainsboro;
  transition: all 300ms ease-in-out;
}

.link-blue-500 {
  color: #005379;
  transition: all 300ms ease-in-out;
}
.link-blue-500:hover, .link-blue-500:focus {
  color: #003046;
  transition: all 300ms ease-in-out;
}

.link-dark-blue-500 {
  color: #042C3A;
  transition: all 300ms ease-in-out;
}
.link-dark-blue-500:hover, .link-dark-blue-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-gray-500 {
  color: #999;
  transition: all 300ms ease-in-out;
}
.link-gray-500:hover, .link-gray-500:focus {
  color: gray;
  transition: all 300ms ease-in-out;
}

.link-release-500 {
  color: #ccc;
  transition: all 300ms ease-in-out;
}
.link-release-500:hover, .link-release-500:focus {
  color: #b3b3b3;
  transition: all 300ms ease-in-out;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.pagination .page-item {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-neutral-500);
  background: var(--clr-white-500);
  line-height: 1.1 !important;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: all 300ms ease-in-out;
}
.pagination .page-item:hover {
  color: var(--clr-white-500);
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
}
.pagination .page-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .active {
  color: var(--clr-white-500);
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
}
.pagination .disabled {
  display: none;
}

.info {
  position: relative;
}
.info::before {
  position: absolute;
  top: 0;
  left: -2rem;
  display: block;
  width: 58rem;
  height: 100%;
  content: "";
  background: var(--clr-primary-500);
  transform: skewX(20deg);
  border-right: 5px solid var(--clr-white-500);
  z-index: 0;
}
.info__social {
  position: relative;
  z-index: 10;
}
.info__social ul li {
  color: var(--clr-white-500);
  transition: color 300ms ease-in-out;
}
.info__social ul li:hover {
  color: var(--clr-dark-blue-500);
  transition: color 300ms ease-in-out;
}
@media only screen and (max-width: 1366px) {
  .info::before {
    width: 40rem;
  }
}
@media only screen and (max-width: 1112px) {
  .info::before {
    width: 25rem;
  }
}
@media only screen and (max-width: 768px) {
  .info {
    display: none !important;
  }
}

.header {
  margin: 0;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.header__container {
  padding: 15px 0;
  background: #F9F9F9;
}
.header__container__navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container__navbar__brand img {
  height: var(--fs-1000);
}
.header__container__navbar__section__toggle {
  display: none;
}
.header__container__navbar__section__toggle:hover {
  cursor: pointer;
}
.header__container__navbar__section__toggle span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--clr-dark-blue-500);
  line-height: 1 !important;
}
.header__container__navbar__section__toggle span:nth-child(1) {
  transform-origin: center;
  transform: translate(0px) rotate(0deg);
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:nth-child(2) {
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:nth-child(3) {
  transform-origin: center;
  transform: translate(0px) rotate(0deg);
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:not(:last-child) {
  margin-bottom: 6px;
}
.header__container__navbar__section__container__nav ul {
  display: flex;
  gap: var(--fs-300);
}
.header__container__navbar__section__container__nav ul li {
  line-height: 1 !important;
  cursor: pointer;
}
.header__container__navbar__section__container__nav ul li a {
  font-family: var(--medium) !important;
  transition: color 300ms ease-in-out;
}
.header__container__navbar__section__container__nav ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .header__container__navbar__section__toggle {
    display: block;
  }
  .header__container__navbar__section__container {
    padding: var(--gap);
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white-500);
    background: var(--clr-primary-500);
    transform-origin: right;
    transform: scaleX(0);
    transition: all 300ms ease-in-out;
  }
  .header__container__navbar__section__container__nav ul {
    gap: var(--fs-500);
    flex-direction: column;
    font-size: 2.8rem;
    text-align: center;
  }
  .header__container__navbar__section__container__nav ul a {
    color: var(--clr-dark-blue-500) !important;
  }
}

.header--active .header__container__navbar__section__toggle {
  position: absolute;
  top: 48px;
  right: 3rem;
  z-index: 15;
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span {
  background: var(--clr-dark-blue-500);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(1) {
  transform: translate(0px, 10px) rotate(45deg);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(2) {
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(3) {
  transform: translate(0px, -10px) rotate(-45deg);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__container {
  transform: scaleX(1);
  transition: all 300ms ease-in-out;
}

.whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
}
.whatsapp a {
  margin: 0;
  padding: 0;
  width: var(--fs-900);
  height: var(--fs-900);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-500);
  color: white;
  line-height: 1;
  border-radius: 50%;
  background: var(--clr-whatsapp-500);
  transform: scale(1);
  transition: transform 300ms ease-in-out;
}
.whatsapp a:hover, .whatsapp a:focus {
  transform: scale(0.95);
  transition: transform 300ms ease-in-out;
}
.whatsapp a i {
  line-height: inherit;
}

.footer__cta {
  margin-bottom: -8rem;
}
.footer__cta__row {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
.footer__cta__row::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 11.6rem;
  content: "";
  background: var(--clr-light-blue-500);
  transform: translateY(-50%);
  z-index: 0;
}
.footer__cta__row__card {
  z-index: 1;
}
.footer__cta__row__card a {
  font-size: 1.5rem;
}
.footer__cta__row__card a:hover {
  color: var(--clr-dark-blue-500);
}
.footer__content {
  padding: 14.8rem 0 8rem 0;
  background-image: url("../images/background-footer.png");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}
.footer__content__row {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  font-size: 1.4rem;
}
.footer__content__row__card:nth-child(1) img {
  width: 16rem;
}
.footer__content__row__card:nth-child(1) i {
  font-size: 2rem;
}
.footer__content__row__card:nth-child(2) ul {
  display: flex;
  flex-direction: column;
  gap: var(--fs-200);
}
.footer__content__row__card:nth-child(2) ul li a {
  color: var(--clr-white-500);
  transition: color 300ms ease-in-out;
}
.footer__content__row__card:nth-child(2) ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
.footer__content__row__card:nth-child(3) ul li:nth-child(2) address {
  flex-wrap: nowrap;
}
.footer__copyright {
  font-size: 1.5rem;
}
.footer__copyright p {
  line-height: 1.1 !important;
}
.footer__developer__row {
  font-size: 1.5rem;
  line-height: 1.1 !important;
}
.footer__developer__row a:hover {
  color: #146d93;
}
.footer__developer__row a i {
  margin-right: 4px;
}
@media only screen and (max-width: 576px) {
  .footer__cta {
    display: none;
  }
  .footer__content {
    padding: var(--fs-600) 0;
  }
  .footer__developer__row {
    gap: var(--fs-100);
  }
}

.hero {
  min-height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/background-hero-pages.jpg");
  background-size: cover;
  background-position: center;
}

.about__row {
  grid-template-columns: 1fr 1.5fr;
}
.about__row__image {
  position: relative;
  background-image: url("../images/background-pagina-quem-somos.jpg");
  background-size: cover;
  background-position: center;
}
.about__row__image::after {
  position: absolute;
  left: -10rem;
  top: -3rem;
  width: 20rem;
  height: 20rem;
  display: block;
  content: "";
  background-image: url("../images/grid.svg");
  background-size: cover;
  background-position: left top;
  z-index: -1;
}
.about__row__image__years {
  padding: 6rem 3rem;
  position: absolute;
  left: 0;
  bottom: var(--fs-600);
  transform: translateX(-40%);
  width: 100%;
  max-width: 25rem;
  outline: 8px solid var(--clr-white-500);
}
.about__row__image__years p:nth-child(1) {
  font-size: var(--fs-1000);
  line-height: 1 !important;
}
@media only screen and (max-width: 1280px) {
  .about__row__image__years {
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 1194px) {
  .about__row__image__years {
    transform: translateX(-10%);
  }
}
@media only screen and (max-width: 1112px) {
  .about__row__image__years {
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 1024px) {
  .about__row__image__years {
    transform: translateX(-12%);
  }
}
@media only screen and (max-width: 768px) {
  .about__row__image__years {
    width: 21.5rem;
    transform: translateX(-10%);
  }
  .about__row__content__header h2 {
    font-size: var(--fs-600);
  }
}
@media only screen and (max-width: 576px) {
  .about__row {
    grid-template-columns: 1fr;
  }
  .about__row__image {
    margin-left: auto;
    width: 90%;
  }
  .about__row__image__years {
    position: relative;
  }
  .about__row__content__header h2 {
    font-size: var(--fs-500);
  }
}

.pillars {
  position: relative;
}
.pillars::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 29rem;
  height: 41.3rem;
  display: block;
  content: "";
  background-image: url("../images/vetor-topo.png");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
}
.pillars::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8.8rem;
  height: 47.1rem;
  display: block;
  content: "";
  background-image: url("../images/vetor-baixo.png");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.pillars__row {
  position: relative;
  z-index: 1;
}
.pillars__row__card {
  padding: calc(var(--gap) * 2);
}
.pillars__row__card__icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 12px;
  margin: 0 auto;
  width: 14rem;
  height: 10rem;
  background-image: url("../images/background-products.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pillars__row__card__header h3 {
  font-size: 2rem;
}

.certification {
  position: relative;
  width: 100%;
}
.certification::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30rem;
  content: "";
  background: var(--clr-light-gray-500);
  z-index: -1;
}
.certification__row {
  width: calc(100% - 10rem);
  display: flex;
  align-items: stretch;
}
.certification__row__content {
  padding: 8rem 10rem;
  flex-basis: 60%;
}
.certification__row__content__view {
  gap: var(--fs-600);
}
.certification__row__content__view a {
  width: 18rem;
  line-height: 1.1 !important;
}
.certification__row__content__view a img {
  margin-bottom: 12px;
}
.certification__row__image {
  flex-basis: 40%;
  width: 100%;
  min-height: 100%;
}
.certification__row__image img {
  -o-object-position: 80% top;
     object-position: 80% top;
}
@media only screen and (max-width: 1440px) {
  .certification__row__content {
    padding: 8rem 6rem;
  }
}
@media only screen and (max-width: 1280px) {
  .certification__row {
    width: calc(100% - 7rem);
  }
}
@media only screen and (max-width: 1024px) {
  .certification__row__content {
    padding: 6rem;
    flex-grow: 1;
  }
  .certification__row__image {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .certification__row {
    width: calc(100% - 4rem);
  }
  .certification__row__content {
    padding: 6rem 4rem;
  }
  .certification__row__content__view a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--gap);
    text-align: left;
  }
  .certification__row__content__view a img {
    margin-bottom: 0;
  }
}

.contact {
  z-index: 5;
}
.contact__container__row {
  grid-template-columns: 1fr 340px;
  gap: var(--fs-1000);
}
.contact__container__row__form__content form {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.contact__container__row__form__content__group {
  display: inline-grid;
  width: 100%;
}
.contact__container__row__form__content__group:nth-child(2), .contact__container__row__form__content__group:nth-child(5) {
  grid-column: 1/3;
}
.contact__container__row__form__content__status {
  grid-column: 1/-1;
}
.contact__container__row__form__content__button {
  grid-column: 1/-1;
}
.contact__container__row__information__card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.contact__container__row__information__card:not(:last-child) {
  margin-bottom: var(--fs-500);
}
.contact__container__row__information__card__icon {
  width: var(--fs-900);
  height: var(--fs-900);
  background: var(--clr-light-gray-500);
  border: 1px solid var(--clr-primary-500);
}
.contact__container__row__information__card__content {
  flex-basis: 100%;
}
@media only screen and (max-width: 1024px) {
  .contact__container__row {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .contact__container {
    padding: var(--fs-1000) var(--fs-300);
  }
  .contact__container__row__form form {
    grid-template-columns: 1fr;
  }
}

.map {
  height: 32rem;
  z-index: 0;
}
.map iframe {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  border: none;
}

.error {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgb(220, 38, 38);
  line-height: 1;
}
.error svg {
  display: inline;
  width: 2rem;
  height: 2rem;
}

.blog__row {
  grid-template-columns: 1fr 35rem;
}
.blog__row__container__content {
  grid-template-columns: 1fr;
  gap: var(--fs-700);
}
.blog__row__sidebar .title {
  margin-bottom: var(--fs-400) !important;
}
.blog__row__sidebar .title__divider {
  margin-top: 12px;
}
.blog__row__sidebar__highlight__content {
  display: flex;
  flex-direction: column;
  gap: var(--fs-400);
}
.blog__row__sidebar__highlight__content__card__content__header {
  font-size: 1.8rem;
}
.blog__row__sidebar__categories__content ul li {
  font-family: var(--bold) !important;
  color: var(--clr-neutral-500);
  line-height: 1.1 !important;
  transition: color 300ms ease-in-out;
}
.blog__row__sidebar__categories__content ul li:not(:last-child) {
  margin-bottom: var(--fs-200);
}
.blog__row__sidebar__categories__content ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
.blog__row__sidebar__categories__content ul li a::before {
  font-family: "icon";
  font-size: 12px;
  content: "\e902";
  margin-right: var(--fs-100);
}
.blog__row__sidebar__social ul li {
  width: 5rem;
  height: 5rem;
  color: var(--clr-white-500);
  line-height: 1.1 !important;
  border-radius: 50%;
  background: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}
.blog__row__sidebar__social ul li:hover {
  background: var(--clr-dark-blue-500);
  transition: all 300ms ease-in-out;
}
.blog__row__sidebar__social ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .blog__row {
    grid-template-columns: 1fr;
    gap: var(--fs-800);
  }
}

.products__row {
  grid-template-columns: 35rem 1fr;
}
.products__row__container__content__card {
  position: relative;
  display: flex;
  flex-flow: column;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.products__row__container__content__card__image {
  position: relative;
  padding-top: 1.6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products__row__container__content__card__image img {
  width: auto;
  height: 18rem;
}
.products__row__container__content__card__wrapper {
  display: flex;
  padding: 3rem;
  flex-flow: column;
  flex-grow: 1;
}
.products__row__container__content__card__wrapper__header h3 {
  font-size: 2rem;
}
.products__row__container__content__card__wrapper__body {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  font-size: 1.5rem;
  gap: 2.4rem;
}
.products__row__container__content__card__wrapper__body__link {
  margin-top: auto;
}
.products__row__container__content__card__wrapper__body__link a {
  display: inline-block;
  width: 100%;
}
.products__row__sidebar .title {
  margin-bottom: var(--fs-400) !important;
}
.products__row__sidebar .title__divider {
  margin-top: 12px;
}
.products__row__sidebar__wrapper__content ul li {
  font-family: var(--bold) !important;
  color: var(--clr-neutral-500);
  line-height: 1.1 !important;
  transition: color 300ms ease-in-out;
}
.products__row__sidebar__wrapper__content ul li:not(:last-child) {
  margin-bottom: var(--fs-200);
}
.products__row__sidebar__wrapper__content ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
.products__row__sidebar__wrapper__content ul li a::before {
  font-family: "icon";
  font-size: 12px;
  content: "\e902";
  margin-right: var(--fs-100);
}
.products__row__sidebar__wrapper__content form {
  display: flex;
  flex-direction: column;
  gap: var(--fs-200);
}
.products__row__sidebar__wrapper__content form label {
  font-size: 1.5rem;
}
.products__row__sidebar__wrapper__content form button {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .products__row {
    grid-template-columns: 1fr;
    gap: var(--fs-800);
  }
  .products__row__container__content__card__image img {
    height: 28rem;
  }
}

.product {
  position: relative;
}
.product__row {
  grid-template-columns: 40rem 1fr;
}
.product__row__wrapper {
  width: 100%;
}
.product__row__wrapper__image {
  width: 100%;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.product__row__wrapper__info {
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
  line-height: 1.1;
}
.product__row__wrapper__info ul {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  list-style: disc inside;
}
.product__row__wrapper__cta .btn {
  width: 100%;
  text-align: center;
}
.product__row__application__wrapper {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 4rem;
}
.product__row__application__wrapper table {
  border-radius: 0.5rem;
}
.product__row__application__wrapper table thead tr th {
  padding: 1.6rem 2rem;
  width: 100%;
  text-align: left;
  background: #f0f0f0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.product__row__application__wrapper table tbody tr {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.15);
}
.product__row__application__wrapper table tbody tr td {
  padding: 1.6rem 2rem;
}
.product__row__application__wrapper table tbody tr td:nth-child(2) {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media only screen and (max-width: 811px) {
  .product__row {
    grid-template-columns: 1fr;
  }
}

.politics__container {
  padding: var(--fs-1000);
}
.politics__container .title {
  margin-bottom: var(--fs-500) !important;
}
.politics__container__content p:not(:last-child) {
  margin-bottom: var(--fs-200);
}
.politics__container__content h3 {
  margin-top: var(--fs-300);
  margin-bottom: var(--fs-400);
  font-size: var(--fs-300);
}
.politics__container__content h4 {
  margin-top: var(--fs-300);
  margin-bottom: var(--fs-400);
  font-size: 2rem;
}
.politics__container__content ul {
  padding-left: var(--fs-600);
  list-style: disc;
  list-style-position: inside;
}
.politics__container__content ul li:not(:last-child) {
  margin-bottom: var(--fs-200);
}
.politics__container__content ol {
  padding-left: var(--fs-600);
  list-style: decimal;
  list-style-position: inside;
}
.politics__container__content ol li {
  margin-bottom: var(--fs-200);
}

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: 1fr 99fr 1fr;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9;
  pointer-events: all;
}

.swal2-popup.swal2-toast > * {
  grid-column: 2;
}

.swal2-popup.swal2-toast .swal2-title {
  margin: 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}

.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}

.swal2-popup.swal2-toast .swal2-html-container {
  margin: 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}

.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.3125em;
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
  animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
  animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: swal2-toast-show 0.5s;
  animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: swal2-toast-hide 0.1s forwards;
  animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: grid;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end" "gap gap gap";
  grid-template-rows: auto auto auto 0.625em;
  height: 100%;
  padding: 0.625em 0.625em 0;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}

.swal2-container::after {
  content: "";
  grid-column: 1/4;
  grid-row: 4;
  height: 0.625em;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}

.swal2-container.swal2-top-start, .swal2-container.swal2-center-start, .swal2-container.swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.swal2-container.swal2-top, .swal2-container.swal2-center, .swal2-container.swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.swal2-container.swal2-top-end, .swal2-container.swal2-center-end, .swal2-container.swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.swal2-container.swal2-top-start > .swal2-popup {
  align-self: start;
}

.swal2-container.swal2-top > .swal2-popup {
  grid-column: 2;
  align-self: start;
  justify-self: center;
}

.swal2-container.swal2-top-end > .swal2-popup, .swal2-container.swal2-top-right > .swal2-popup {
  grid-column: 3;
  align-self: start;
  justify-self: end;
}

.swal2-container.swal2-center-start > .swal2-popup, .swal2-container.swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}

.swal2-container.swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}

.swal2-container.swal2-center-end > .swal2-popup, .swal2-container.swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.swal2-container.swal2-bottom-start > .swal2-popup, .swal2-container.swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.swal2-container.swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  align-self: end;
}

.swal2-container.swal2-bottom-end > .swal2-popup, .swal2-container.swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}

.swal2-container.swal2-grow-row > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}

.swal2-container.swal2-grow-column > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}

.swal2-container.swal2-no-transition {
  transition: none !important;
}

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-popup:focus {
  outline: none;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0;
  padding: 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}

.swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7367f0;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.5);
}

.swal2-styled.swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #ea5455;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.5);
}

.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7d88;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(110, 125, 136, 0.5);
}

.swal2-styled.swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-styled:focus {
  outline: none;
}

.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  justify-content: center;
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 2em auto 1em;
}

.swal2-close {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #ccc;
  font-family: serif;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}

.swal2-close:hover {
  transform: none;
  background: transparent;
  color: #f27474;
}

.swal2-close:focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 1em 1.6em 0.3em;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em 2em 0;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  color: #ccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
  color: #ccc;
}

.swal2-range {
  margin: 1em 2em 0;
  background: #fff;
}

.swal2-range input {
  width: 80%;
}

.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}

.swal2-range input,
.swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-input[type=number] {
  max-width: 10em;
}

.swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: inherit;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.swal2-radio input,
.swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 0.4em;
}

.swal2-input-label {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}

.swal2-validation-message {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}

.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
  animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
  animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
  animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: inherit;
  font-weight: 600;
}

.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
  animation: swal2-show 0.3s;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@-webkit-keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@-webkit-keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@-webkit-keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}
