@import url("../fonts/arialrounded/stylesheet.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("skin.css");

/*
====================================================
* [Master Stylesheet]

  Theme Name :  gobank assistência
  Version    :  1.0
  Author     :  EccoCreative
  Author URI :  https://eccocreative.com.br
==================================================== */

/* --------------------------------- */
/* GOOGLE AUTOFILL HACK
 ----------------------------------- */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px transparent inset;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow:
    /*your box-shadow*/ 0 0 0 50px transparent inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 9999s;
  -webkit-transition: color 9999s ease-out;
  background-color: 9999s ease-out;
  background: rgba(255, 255, 255, 0) !important;
}

textarea,
input,
*:focus {
  outline: none !important;
}

.navbar-nav,
header {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

/* --------------------------------- */
/* DEFAULTS
 ----------------------------------- */

/* --------------------------------- */
/* PRELOADER
 ----------------------------------- */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgb(18, 31, 82);
  background: linear-gradient(180deg, rgba(18, 31, 82, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--pink);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--blue);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* --------------------------------- */
/* RESET
 ----------------------------------- */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
ul {
  list-style: none;
}

a,
button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

a:focus,
a:active,
a:hover,
button:focus,
button:active,
button:hover {
  text-decoration: none;
  outline: none;
  color: inherit;
  border-color: transparent;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  opacity: 1;
}

/* --------------------------------- */
/* PAGE DEFAULTS
 ----------------------------------- */

body {
  background-color: white;
  font-family: var(--fontDefault);
  height: auto;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  color: white;
  display: flex;
  height: auto;
  min-height: 100vh;
  align-items: center;
}

html {
  height: auto;
  min-height: 100%;
}

.txt-err {
  color: var(--errColor);
}

.erro-box {
  background-color: var(--errColor);
  padding: 1rem;
  color: #fff;
  position: absolute;
  width: 40%;
}

a.linkbb:hover {
  border-bottom: 1px solid;
  padding-bottom: 2px;
}

a[aria-disabled="true"] {
  color: currentColor;
  display: inline-block;
  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
  cursor: not-allowed;
}

.bg-dark {
  background-color: var(--darkblue);
}

.bg-light {
  background-color: var(--light);
}

.bg-white {
  background: #fff;
}

.text-blue {
  color: var(--darkblue);
}

.text-green {
  color: var(--green);
}

.btn-green {
  color: #fff !important;
  background-color: var(--green);
  border-color: var(--green);
  font-family: var(--fontBold);

  &:hover,
  &:active,
  &:focus {
    background-color: var(--green);
    border-color: var(--green);
  }
}

.btn-white {
  color: var(--darkblue);
  background-color: white;
  border-color: white;
  font-family: var(--fontBold);

  &:hover,
  &:active,
  &:focus {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
  }
}

.btn-social {
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  text-align: center;
  min-width: 200px;
}

.btn-social svg {
  margin-right: 5px;
  top: -2px;
  position: relative;
}

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
}

.btn-facebook:hover {
  background-color: #324b81;
  color: #fff !important;
}

.btn-google {
  color: #fff;
  background-color: #d54835;
}

.btn-google:hover {
  color: #fff !important;
  background-color: #bf402f;
}

hr {
  background-color: #c8c8c8;
  height: 1px;
  border: 0;
}

/* --------------------------------- */
/* CUSTOM FORM
 ----------------------------------- */
::-webkit-input-placeholder {
  font-size: 0.9rem;
}

::-moz-placeholder {
  font-size: 0.9rem;
}

:-ms-input-placeholder {
  font-size: 0.9rem;
}

:-moz-placeholder {
  font-size: 0.9rem;
}

.form-check-label {
  margin-bottom: -3px;
  font-size: 14px;
}

.form-control.invalid {
  border-color: var(--errColor);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.invalid:focus {
  border-color: var(--errColor);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-select.invalid {
  border-color: var(--errColor);
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
      no-repeat right 0.75rem center/8px 10px,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e")
      #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.custom-select.invalid:focus {
  border-color: var(--errColor);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.invalid ~ .form-check-label {
  color: var(--errColor) !important;
}

/* --------------------------------- */
/* LOGIN
 ----------------------------------- */

#installPWA {
  display: none;
}

.loader-spin img {
  width: 24px;
  height: 24px;
}

.card.gob {
  background: rgb(17, 42, 53);
  background: linear-gradient(335deg, rgba(17, 42, 53, 1) 0%, rgba(27, 71, 91, 1) 100%);
  border-radius: 20px;
  color: white;
  padding: 15px 30px;
  margin: 0 5px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.slickg {
  display: flex;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.slickg .slick-track {
  height: 100%;
}

.slick-dots {
  bottom: 0;
  top: -30px;
  height: 25px;
}

.slick-prev {
  left: 15%;
  top: -22px;
}

.slick-next {
  right: 15%;
  top: -22px;
}

.slick-prev:before,
.slick-next:before {
  opacity: 0.8;
  color: var(--darkblue);
  font-size: 28px;
}

.contact .btn {
  min-height: 62px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.info {
  position: absolute;
  top: 20px;
  right: 20px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.7rem;
}

#installPWA {
  align-items: center;
  justify-content: center;
}

.link-site {
  font-size: 0.75rem;
  display: block;
  text-align: right;
}

.modal-body .material-symbols-outlined {
  position: relative;
  top: 6px;
  color: var(--green);
}

.modal-body .material-symbols-outlined.iconin {
  color: var(--darkblue);
  top: 4px;
  font-size: 22px;
}

#avisoCompatibilidade span {
  color: #e48a19;
}
/* --------------------------------- */
/* RESPONSIVE
 ----------------------------------- */

/* iphone 5 and smaller */
@media (max-width: 320px) {
}

/* Extra small devices (phones, less than 768px) */
@media (min-width: 321px) and (max-width: 575px) {
}

/* small */
@media (min-width: 576px) and (max-width: 767px) {
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* fix border */
@media (max-width: 768px) {
}

/* login box adjust */
@media (max-width: 991px) {
}

@media (max-width: 575px) {
  .card.gob {
    padding: 15px 5px;
    margin: 0;
  }
  p {
    line-height: 1.3rem;
    font-size: 0.9rem;
  }

  h4,
  .h4 {
    font-size: 1.4rem;
  }
}
