@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  list-style: none;
  outline: none;
}
*::-webkit-scrollbar {
  width: 5px !important;
}

*::-webkit-scrollbar-track {
  background-color: var(--bg-color);
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
}
*::-webkit-scrollbar-thumb:hover {
  background: transparent;
  border-radius: 5px;
}

::selection {
  background-color: var(--success-color);
  color: var(--white-color);
}

:root {
  --bg-color: #f2f9ff;
  --theme-color: #4fa951;
  --primary-color: #60ba62;
  --text-primary: #2c752d;
  --font-color: #264065;
  --text-color: ;
  --light-grey-a: #f6f6f6;
  --light-grey: #a4a8ad;
  --light-grey-p: #c9cbce;
  --grey-color: #;
  --dark-color: ;
  --success-color: #60ba62;
  --danger-color: #f96363;
  --warning-color: #ffae55;
  --info-color: #2caac1;
  --blue-color: #07b6eb;
  --secondary-color: #bbbaba;
  --secondary-color: #ddf6fa;
  --white-color: #fff;
  --mute-color: #7592a6;
  --mute-color-l: #c1cfd7;
  --mute-color-d: #a8bbc7;
  --overlay: rgba(0, 0, 0, 0.1);
  --theme-hover: #429c44;
}

body {
  background: linear-gradient(to bottom, #f2f9ff 10%, #fff 20%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--font-color);
  font-weight: 400;
}

body::-webkit-scrollbar {
  display: none;
}
img {
  pointer-events: none;
}

/* HEADER */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.header-content {
  width: 100%;
  max-width: 1440px;
  height: 100px;
  min-height: 100px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-header {
  height: 64px;
  margin-top: 12px;
}

/* MENU */
.top-menu {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.top-menu li a,
.top-menu li span {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--white-color);
  color: inherit;
  font-weight: 500;
  font-size: 1rem;
}

.top-menu li a:hover,
.top-menu li span:hover {
  border-bottom: 4px solid var(--theme-color);
}

.top-menu li:last-child a {
  margin-left: 20px;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  border-radius: 10px;
  font-weight: 700;
}

.top-menu li:last-child a:hover {
  background-color: #60ba621c;
  border: 2px solid var(--theme-color);
}

.menu-open {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
}

.menu-close {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  order: 1;
}

.menu-open:hover,
.menu-close:hover {
  text-shadow: 2px 2px 1px #44b3c7;
}

.top-menu .profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  order: 4;
  margin-right: 20px;
}

.drop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  cursor: pointer;
}
.drop img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}
.drop p {
  font-size: 1.2rem;
  font-weight: 600;
}

.account {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 90px;
  z-index: 2;
  display: none;
}

.show-drop {
  display: flex !important;
}
.hide-drop {
  display: none !important;
}

.account li {
  width: 100%;
}

.account li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.account li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.account li a {
  width: 100%;
  display: flex;
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  color: inherit;
  border: none !important;
  color: var(--font-color) !important;
  padding: 10px 20px;
  margin: 0 !important;
}

.account li:hover {
  background: #ddf6fa !important;
}

.account li:hover a {
  font-weight: 600 !important;
  background: none !important;
}

/* MAIN CONTAINER */

.main-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1440px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 32px;
}
.fake-container {
  width: 100%;
  height: 418px;
  background: var(--bg-color);
  position: absolute;
  top: 106px;
  z-index: -1;
}

.container.error {
  min-height: calc(100vh - 120px);
}

.split-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.split-container.split-2 {
  align-items: flex-start !important;
  gap: 40px;
}
.split-container.split-login {
  min-height: 495px;
  overflow: hidden;
}
.image {
  overflow: hidden;
  width: 480px;
  min-width: 480px;
  max-height: 428px;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-image {
  width: 480px;
  margin-top: 48px;
  position: relative;
  bottom: 0;
  animation: hero 1s ease-in-out;
}
.error-image {
  width: 400px;
}
.split-image {
  margin: 18px 0 40px 0;
  width: 100%;
  max-width: 600px;
}

.split-container .content,
.faq-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  min-height: 300px;
}

.service-container,
.product-container {
  width: 100%;
  padding: 32px 0;
  display: grid;
  gap: 32px;
  grid-auto-rows: max-content;
}
.service-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.product-container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding: 32px 0;
}

.service,
.product {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 10px;
  box-shadow: -1px 4px 8px 2px rgba(59, 82, 97, 0.1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product {
  height: 100%;
  justify-content: space-between;
  gap: 12px;
}

.product-image {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/bg-product.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
}

.product-description {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.product-buttons {
  width: 100%;
  display: flex;
  gap: 4px;
  width: 100% !important;
  min-width: 120px !important;
  margin-top: 10px !important;
  font-size: 1.6rem;
  justify-content: space-around;
}
.product-buttons a {
  text-decoration: none;
  font-size: 1.8rem;
}
.service i {
  font-size: 2rem;
  color: var(--font-color);
  text-shadow: 3px 3px 1px #44b3c7;
}
.service h3,
.product h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.service p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4rem;
}
.product p {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1rem;
}

.service:hover,
.product:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  box-shadow: -1px 4px 8px 2px rgba(44, 170, 193, 0.2);
}

.service i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: #ddf6fa;
}
.service span {
  min-height: 16px;
  position: relative;
  top: 0;
  right: calc((50% - 16px) * -1);
}

.thumb {
  width: 100px !important;
}

.banner {
  width: 100%;
  height: 400px;
  background: url("/assets/img/banner_1920_x_400.webp");
  background-size: cover;
}
.map,
.map-iframe {
  width: 100%;
  height: 586px;
}

.faq-content, .info-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  background-color: #f2f9ff;
  border-radius: 12px;
  transition: 0.6s;
  font-size: 1rem;
}
.ui-accordion-header.ui-state-active,
.faq-question.active {
  box-shadow: -1px 4px 6px 2px rgba(44, 170, 193, 0.2);
}

.faq-answer {
  display: none;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: -1px 4px 6px 2px rgba(44, 170, 193, 0.1);
  transition: 0.5s ease-out;
}
.faq-answer p,
.faq-answer ul li {
  font-size: 1rem;
  line-height: 1.8rem;
  overflow: none;
}

.info-content {
  align-items: center;
  justify-content: center;
  gap: 10px
}

.info-content a{
  width: 100%;
  max-width: 360px
}

.faq-footer 
{
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content button {
  width: fit-content;
  margin-top: 32px;

}

.manager-question,
.manager-thanks {
  padding-top: 40px;
}
#manager-answer {
  height: 80px !important;
}
.manager-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.question-count {
  font-weight: 500;
  color: var(--mute-color);
}
.question-count strong {
  color: var(--success-color);
}

.status {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 24px;
  box-shadow: -1px 4px 8px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 6px solid;
  border-radius: 50%;
}

.status-icon i {
  font-size: 3.4rem;
}

/* HEADINGS */
.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.title {
  font-size: 2.4rem;
  font-weight: 800;
}
.subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mute-color);
  margin-bottom: 12px;
}

.subtitle-form {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0;
}

.text-sm {
  font-size: 0.8rem !important;
}

.error-code {
  font-size: 10rem;
  font-weight: 900;
}

.error-title {
  font-size: 2rem;
  font-weight: 700;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  align-items: center;
  padding: 12px 0;
  text-transform: uppercase;
  color: #4fa951;
  opacity: 0.5;
}

.split-container p,
.content p {
  font-size: 1.1rem;
  line-height: 2rem;
}
.split-container .title {
  margin-bottom: 40px;
}

.login,
.register {
  gap: 16px;
}

.login-form,
.register-form {
  margin-top: 20px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-form {
  width: 100%;

  display: flex;
  align-items: flex-start;
  margin-top: 48px;
}
.account-form .content {
  align-items: normal;
  max-width: 800px;
}

.login-form p,
.register-form p {
  font-size: 1rem;
}

.login-form input,
.register-form input {
  height: 40px;
  padding: 10px 20px;
  border-radius: 10px;
  outline: none;
  border: 1px solid var(--light-grey);
  font-size: 1rem;
}

.hero-actions,
.actions,
.split-actions {
  width: 380px;
  max-width: 380px;
  margin: 40px 0;
  display: flex;
  gap: 10px;
}

.split-actions {
  justify-content: space-between;
}

/* FOOTER */

footer {
  width: 100%;
  background-color: #4fa951;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-content {
  width: 100%;
  color: var(--white-color);
  max-width: 1440px;
  padding: 32px 0;
}
.footer-menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 96px;
}
.footer-menu ul:not(:first-child) {
  margin-top: 20px;
  /* margin: 20px auto;*/
}
.footer-menu ul li {
  padding: 4px 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-menu li a,
.footer-menu li span {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.footer-menu li a:hover,
.footer-menu li span:hover {
  color: var(--text-primary);
}
.footer-menu img {
  width: 200px;
  margin-bottom: 18px;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-media a i {
  font-size: 1.8rem;
}

.social-media a i:hover {
  color: var(--text-primary);
}
.copyright {
  margin-top: 64px;
  text-align: center;
  font-size: 0.8rem;
}

/* TABS */

.tabs-container {
  max-width: 1440px;
  width: 100%;
  min-height: 300px;
  margin-bottom: 40px;
}

.tabs a {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tabs-content {
  width: 100%;
  padding: 48px 0;
}
.tabs-panel {
  display: flex;
  flex-direction: column;
}

.tabs-panel {
  display: none;
}
.tabs-panel.active {
  display: flex;
}
/* FORM CONTROL DEFAULT */

.form-control input,
.form-control select,
.form-control textarea,
.fake-input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--light-grey);
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--font-color);
  font-weight: 400;
  background: var(--white-color);
}
.fake-input.disabled {
  background: var(--light-grey-a);
  color: var(--mute-color);
}
.form-control select {
  padding: 10px 10px;
}
.form-control label {
  font-size: 0.9rem;
  display: flex;
  gap: 24px;
}

.form-control label a {
  font-size: 0.8rem;
  color: #0000ff;
}

/* FORM CONTROL SMALL */
.form-control-sm input,
.form-control-sm select,
.form-control-sm textarea,
.fake-input-sm {
  width: 100%;
  height: 32px;
  border: 1px solid var(--light-grey);
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--font-color);
  font-weight: 400;
  background: var(--white-color);
}
.fake-input-sm.disabled {
  background: var(--light-grey-a);
  color: var(--mute-color);
}
.form-control-sm select {
  padding: 6px 4px;
}
.form-control-sm label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-control-sm.file-container {
  max-height: 52px !important;
  overflow: hidden;
}

.form-control-sm .filebox {
  height: 32px;
  min-height: 32px;
}

.form-control-sm input[type="file"] {
  display: none;
}
.form-control-sm .btn-file {
  min-width: 28px;
  min-height: 28px;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  border-radius: 4px;
  top: -30px;
  margin-right: 2px;
}
.form-control-sm textarea {
  resize: none;
}

input:read-only,
textarea:read-only,
input:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--light-grey-a) !important;
  color: var(--mute-color);
  cursor: none;
}

/*END FORM-CONTROL SMALL */

.file-container {
  max-height: 76px;
  overflow: hidden;
}
.filebox {
  height: 40px;
  min-height: 40px;
}

.form-link {
  display: flex;
  align-items: center;

  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}
.form-link i {
  font-size: 1.2rem;
}

.link {
  /* font-size: 0.95rem;*/
  font-weight: 600;
  font-style: italic;
  color: var(--success-color);
}
.clickable {
  cursor: pointer;
}

.text-span {
  width: 100%;
  height: 48px;
  font-weight: 600;
  display: flex;
  font-size: 1rem;
  align-items: center;
}

.checkbox-label2,
.radio-label {
  font-size: 0.9rem !important;
  text-transform: none !important;
  font-weight: 500;
}

.institution-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 0;
}

.tabs-panel form .actions {
  width: 100%;
  max-width: none;
}

.wizard-steps,
.tabs {
  width: calc(100% - 20px);
  white-space: nowrap;
  overflow-x: scroll;
  display: flex;
  gap: 1px;
  scrollbar-width: none;
}
.wizard-steps {
  margin-top: 40px;
}

.wizard-steps::-webkit-scrollbar,
.tabs::-webkit-scrollbar,
.tab-navigation::-webkit-scrollbar,
.ui-tabs-nav::-webkit-scrollbar,
#tabs::-webkit-scrollbar,
.wizard-steps:hover::-webkit-scrollbar,
.tabs:hover::-webkit-scrollbar,
.tab-navigation:hover::-webkit-scrollbar,
.ui-tabs-nav:hover::-webkit-scrollbar,
#tabs:hover::-webkit-scrollbar {
  display: none !important;
}
.tab-left,
.tab-right {
  width: 30px;
  height: 50px;
  background: transparent;
  border: none;
  color: var(--mute-color-l);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tab-left i,
.tab-right i {
  font-size: 1.5rem;
}

.first-step,
.tabs.first-step {
  width: 1px !important;
  height: 50px !important;
  position: relative !important;
  padding: 0 !important;
}
.step,
.tabs li {
  position: relative;
  width: auto;
  height: 50px;
  padding: 8px 8px 8px 36px;
  background: linear-gradient(
    to right,
    var(--mute-color-l),
    var(--mute-color-d)
  );
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 2px;
}
.step span,
.tabs li span {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--mute-color);
}
.first-step::before,
.step::before,
.tabs li::before,
.tabs .first-step::before {
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #fff;
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
}
.step::before,
.tabs li::before {
  right: -26px;
}
.first-step::before,
.tabs .first-step::before {
  right: -23px;
  border-left: 25px solid #fff !important;
}

.step::after,
.tabs li::after {
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid var(--mute-color-d);
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  z-index: 1;
}
.tab-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.tab-navigation:hover::-webkit-scrollbar,
#tabs:hover::-webkit-scrollbar {
  display: none;
}

.tabs .first-step::after {
  border-left: 25px solid var(--white-color) !important;
}

.step.step-active,
.tabs li.active,
.tabs li.ui-tabs-active {
  background: var(--theme-hover);
  border-color: var(--theme-hover);
  color: var(--white-color);
}
.step.step-complete {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.step.step-active::after,
.tabs li.active::after,
.tabs li.ui-tabs-active::after {
  border-left-color: var(--theme-hover);
}
.step.step-complete::after {
  border-left-color: var(--primary-color);
}
.step.step-active span,
.tabs li.active span {
  color: var(--theme-hover);
}

.step.step.step-complete span {
  color: var(--primary-color);
}

.checklist {
  padding: 32px 6px;
}

.checklist li {
  width: fit-content;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  color: var(--mute-color-l);
}

.checklist i {
  font-size: 1.2rem;
}

.checked-item {
  color: var(--font-color) !important;
  font-weight: 500;
}
.clickable .checked-item span {
  text-decoration: underline;
}

.checked-item i {
  color: var(--primary-color);
}

.checked-item button {
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer
}

.checked-item button i {
  color: var(--danger-color);
}

/* BUTTONS */

.btn,
.btn-block {
  /* min-width: 186px !important;*/
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-block {
  width: 100%;
}
.btn.btn-icon {
  padding: 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon span {
  font-size: 1rem;
  display: none;
}
.btn-sm{
  padding: 8px 10px;
  font-size: 0.8rem;
}
.btn-sm.bnt-icon {
  padding: 8px;
}

.pill {
  padding: 2px 6px;
  background-color: var(--primary-color);
  border: none;
  color: var(--white-color);
  font-size: 0.8rem !important;
  line-height: 1rem !important;
}

.btn-default {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-out {
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
}

.btn-secondary {
  color: var(--mute-color);
  background-color: transparent;
  border: 2px solid var(--mute-color);
}

.btn-link {
  font-size: 1rem;
  font-weight: 700;
  padding: 0 2px;
  color: var(--font-color);
}

.btn-default:hover {
  opacity: 0.8;
}
.btn-out:hover {
  background-color: #60ba621c;
  border: 2px solid var(--theme-color);
}
.btn-file {
  border-radius: 6px;
  text-decoration: none;
  background-color: var(--mute-color-l);
  border-color: var(--mute-color-l);
  color: var(--white-color);
  min-width: 32px;
  min-height: 32px;
  top: -36px;
  margin-left: calc(100% - 36px);
  font-size: 1.2rem;
}
.btn-file-sm {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
  background-color: var(--mute-color-l);
  border-color: var(--mute-color-l);
  color: var(--white-color);
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  top: -30px;
  margin-left: calc(100% - 30px);
  font-size: 1rem;
}

.btn:disabled,
.btn-default:disabled {
  background-color: var(--light-grey-p) !important;
  border-color: var(--light-grey-p);
  color: var(--light-grey);
}

.hero-actions .btn {
  min-width: 186px !important;
  padding: 16px 20px;
  font-size: 1.2rem;
}

.hero-actions .btn-block {
  max-width: 380px !important;
}

.form-control .btn {
  margin-top: 23px;
  width: 100%;
}
.form-control .btn-icon {
  margin-top: 23px;
  width: auto;
  min-width: 40px;
}

.form-control-sm .btn {
  margin-top: 20px;
  width: 100%;
  padding: 6px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}
.form-control-sm .btn-icon {
  margin-top: 23px;
  width: auto;
  min-width: 32px;
}

/* SLIDER */
.slider {
  margin: 0 auto;
  width: 100%;
  position: relative;
  background-color: #429c44;
  color: #fff;
}

.slide-track {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-shrink: 1;
}
.slide {
  position: relative;
  min-width: 0;
  flex-shrink: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 230px;
}

.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    var(--theme-hover) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;

  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide i {
  width: 20px;
  font-size: 1.1rem;
}
.slide-content {
  height: 80px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.slide i.up {
  color: #0c580d;
}
.slide i.down {
  color: #fbac33;
}

.slide-prices,
.slide-date {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide p {
  font-size: 0.7rem;
  font-weight: 400;
}
.slide p:first-child {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}
.slide-prices span {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: line-through;
}
.slide-date span {
  font-size: 0.8rem;
  font-weight: 500;
}

.slide-prices span:last-child {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none !important;
}

/* PAGINATOR */

.paginator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.paginator_item {
  min-width: 40px;
  height: 40px;
  max-height: 40px;
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--theme-color);
  border: 2px solid var(--primary-color);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
}
.paginator_item:hover {
  background-color: #60ba621c;
}
.paginator_item:first-child::before {
  content: "\ea60";
  font-family: "tabler-icons";
}
.paginator_item:last-child::before {
  content: "\ea61";
  font-family: "tabler-icons";
}

.paginator_active {
  background: var(--primary-color);
  color: var(--white-color);
}

.paginator_active:hover {
  background: var(--primary-color);
  opacity: 0.8;
}

/* MODAL */

.modal-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 900;
  display: none;
}
.modal-content {
  width: 800px;
  min-height: 400px;
  background: var(--white-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 8px 3px rgba(0, 0, 0, 0.2);
  display: none;
}

.modal-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 36px;
  border-bottom: 1px solid var(--secondary-color);
}
.modal-header span {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px
}
.modal-header i {
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-body {
  width: 100%;
  height: calc(100% - 84px);
  padding: 20px 12px;
  min-height: 300px;
}
.modal-shop,
.modal-product-image,
.modal-price {
  max-width: 600px;
}

.modal-register {
  max-width: 400px;
}

.modal-register .modal-body p {
  line-height: 1.5rem
}

.modal-shop .modal-body,
.modal-product .modal-body {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.modal-shop .modal-body img,
.modal-product .modal-body img {
  width: 160px;
  position: relative;
  z-index: 1;
  content: "";
}
.modal-product-image {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/bg-product.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
}

.modal-shop .modal-body ul,
.modal-product .modal-body ul {
  width: 100%;
}
.modal-shop .modal-body ul li,
.modal-product .modal-body ul li {
  width: 100%;
  padding: 12px 0;
}

.modal-shop .modal-body ul li ul li,
.modal-product .modal-body ul li ul li {
  width: 100%;
  padding: 6px 0;
}

.modal-institution,
.modal-documents {
  width: 800px;
  height: 800px;
}

.modal-protocol,
.modal-protocol-view {
  width: 800px;
}

.modal-protocol-view p {
  font-size: 0.9rem;
}
.modal-protocol-view strong {
  font-weight: 600;
}
.modal-protocol form {
  height: 100%;
}
.modal-search {
  width: 600px;
  height: 200px;
}
.modal-price {
  height: 800px;
}
.modal-price > .modal-header {
  width: 100%;
  display: flex;
  align-items: center;
  border: none;
  height: 120px;
}

.modal-logo {
  width: 160px;
}
.modal-header-content {
  width: calc(100% - 160px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
}
.modal-header-content {
  font-size: 1rem;
  font-weight: 600;
}

.modal-price > .modal-body {
  display: flex;
  gap: 20px;
}
.modal-price-item {
  width: 50%;
}

.modal-price-item h5 {
  font-size: 0.9rem;
}

.modal-body embed {
  width: 100%;
  height: 100%;
}

.modal-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal-footer #imprimir {
  margin-right: 12px;
}
.modal-search {
  min-height: auto !important;
  box-shadow: none !important;
  background: transparent !important;
}
.modal-search .modal-header,
.modal-search .modal-footer {
  display: none;
}
.modal-search input {
  background: rgba(0, 0, 0, 0.6);
  border-color: #fff;
  color: var(--white-color);
}
.modal-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#policy p {
  line-height: 1.8rem;
  background: transparent !important;
}
#policy * {
  background: transparent !important;
}

#btn-index {
  order: 2;
}
#btn-search {
  order: 3;
}
#btn-register {
  order: 4;
}
#btn-logout,
#btn-login {
  order: 5;
}

#pass-toggle {
  position: relative;
  top: -30px;
  left: calc(100% - 32px);
  cursor: pointer;
  font-size: 1.3rem;
}

#totop {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-decoration: none;
  font-size: 3rem;
  filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.3));
  position: fixed;
  top: calc(100vh - 96px);
  right: 32px;
  z-index: 10;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  outline: none;
}

#requisition-body {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-direction: column;
}
#requisition-content {
  width: 100%;
  min-height: 200px;
  height: 100%;
  /*max-height: 250px;*/
  overflow-y: scroll;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--light-grey);
  overflow-y: scroll;
  scrollbar-width: 0;
}
#requisition-content::-webkit-scrollbar {
  display: none;
}

#attachments {
  width: 100%;
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#attachments a {
  font-size: 0.8rem;
  color: var(--font-color);
}

#protocol-table {
  min-width: 1024px;
  table-layout: fixed;
}

#protocol-table > td {
  overflow: none;
}

#shop-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#shops {
  overflow-y: scroll;
  max-height: 400px;
}
#shops li {
  font-size: 0.8rem;
}

#shops strong {
  font-size: 0.7rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}

@keyframes hero {
  0% {
    bottom: -476px;
  }
  100% {
    bottom: 0;
  }
}

/**
AVATAR
 */
.avatar {
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
}

.avatar .photo-remove {
  position: relative;
  top: -40px;
  left: calc(50% + 50px);
  color: var(--dark);
  cursor: pointer;
}

.avatar label {
  width: 120px;
  margin: 0 auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.avatar input {
  display: none;
}

/* END AVATAR */

/* RESPONSIVE */

@media screen and (max-width: 1440px) {
  .footer-content {
    padding: 32px;
  }
  .split-container.content {
    width: calc(100% - 400px);
  }
  .account {
    right: 20px;
  }
}

@media screen and (max-width: 1190px) {
  .wizard-steps,
  .tabs {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1080px) {
  .split-container .content,
  .faq-container {
    width: calc(100% - 330px);
  }
  .fake-container {
    top: 80px;
  }
  .hero-image,
  .image {
    width: 450px;
  }
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .slider::before,
  .slider::after {
    width: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .split-image {
    width: 430px;
  }
  .hero-title,
  .title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 900px) {
  .show {
    display: flex !important;
  }
  .hide {
    display: none !important;
  }
  .top-menu {
    z-index: 5;
    top: 0;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 300px;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    padding: 32px;
    background-color: var(--white-color);
    box-shadow: 0 0 8px 1px rgba(59, 82, 97, 0.5);
  }
  .top-menu li {
    width: 100%;
    padding: 4px 0;
    cursor: pointer;
  }
  .top-menu li a,
  .top-menu li span,
  .top-menu li:last-child a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 10px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
  }
  .top-menu li a:hover,
  .top-menu li span:hover {
    background-color: #60ba621c;
    border: 2px solid var(--theme-color);
    cursor: pointer;
  }
  .top-menu .profile {
    height: 160px;
    flex-direction: column;
    order: 2;
  }
  .drop {
    flex-direction: column;
  }
  .profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
  }
  .menu-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
    padding: 0 !important;
    order: 1;
  }

  .menu-open {
    display: flex;
  }
  #btn-index {
    order: 3;
  }
  .account {
    width: 100%;
    order: 4;
    position: relative;
    top: 180px;
    background: none;
    box-shadow: none;
    gap: 10px;
    right: 0;
    display: flex;
  }

  .account li:hover {
    background: none !important;
  }

  .account li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    border: 2px solid var(--theme-color) !important;
    color: var(--theme-color) !important;
    border-radius: 10px;
    font-weight: 700 !important;
    margin: 0;
    font-size: 0.9rem !important;
  }

  .account li a:hover {
    background: #60ba621c !important;
    font-weight: 700 !important;
  }
  .fake-container {
    display: none;
  }

  .split-container {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    gap: 0;
  }
  .split-container p {
    font-size: 0.9rem;
    line-height: 1.8rem;
    width: 80%;
  }
  .split-2 {
    flex-direction: column-reverse;
    gap: 0;
  }
  .split-image {
    width: 600px;
    margin: 0 auto 40px auto;
  }
  .hero-image,
  .image {
    display: none;
  }
  .error-image {
    width: 200px;
    margin: 48px auto 0 auto;
  }
  .split-container .content,
  .faq-container {
    width: 100%;
    align-items: center;
  }
  .split-container .content {
    min-height: 440px;
    min-height: 300px;
  }
  .step,
  .tabs li {
    font-size: 0.8rem;
    gap: 10px;
    content: "";
  }
  .step span,
  .tabs li span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    font-size: 1rem;
  }
  .hero-title,
  .hero-subtitle,
  .title,
  .subtitle {
    width: 100%;
    text-align: center;
  }
  .title {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 1.4rem;
  }
  .hero-actions,
  .actions {
    width: 100%;
    justify-content: center;
  }
  .institution-form .actions {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    background: var(--bg-color);
    z-index: 3;
    box-shadow: 0 0 12px 6px rgba(255, 255, 255, 0.15);
  }
  .main-container {
    margin-top: 80px;
  }
  .split-container {
    padding-top: 32px;
  }
  .footer-menu {
    justify-content: space-between;
  }
  .footer-menu ul:nth-child(3) {
    display: none;
  }
  .footer-menu ul:not(:first-child) {
    margin: 20px auto;
  }
  .btn-icon span {
    display: block;
  }
  .step,
  .tabs li {
    font-size: 0.7rem;
    gap: 8px;
    content: "";
  }
  .step span,
  .tabs li span {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    font-size: 0.9rem;
  }
  .slider::before,
  .slider::after {
    width: 40px;
  }
  .modal-shop .modal-body {
    flex-direction: column;
    align-items: center;
  }
  .split-image {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .split-container p {
    width: 100%;
  }
  .service-container {
    /* grid-template-columns: 1fr;*/
  }
  .service {
    height: 180px;
  }
  .service h3 {
    font-size: 1rem;
    text-align: center;
  }
  .service p {
    display: none;
  }
  .footer-menu #social-media {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .social-media {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .error-image {
    width: 160px;
  }
  .error-title {
    font-size: 1.4rem;
  }
  .error-code {
    font-size: 6rem;
  }
}

@media screen and (max-width: 560px) {
  /*.product-container { grid-template-columns: 1fr;  }*/
  .product-image {
    width: 96px;
    height: 96px;
  }
  .thumb {
    width: 72px;
  }
  .product p {
    font-size: 0.7rem;
  }
  .product-buttons {
    /* flex-direction: column;*/
  }
  .product-description p {
    text-align: center;
  }
  .login-form,
  .split-actions {
    max-width: 100%;
    width: 100%;
  }

  .footer-menu {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 460px) {
  .logo-header {
    width: 200px;
  }
  .hero-actions,
  .actions {
    flex-direction: column-reverse;
  }
  .hero-actions .btn {
    min-width: 152px !important;
    padding: 16px;
    font-size: 0.9rem;
  }
  .btn.btn-icon {
    width: 100%;
    align-items: center;
  }
  .btn.btn-icon span {
    width: auto;
  }
  .paginator_item {
    min-width: 32px;
    padding: 0;
    max-height: 32px;
  }
  .service {
    height: 160px;
  }
  .service h3 {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 400px) {
  .hero-title,
  .title {
    font-size: 1.6rem;
  }
  .hero-subtitle,
  .subtitle {
    font-size: 1.2rem;
  }
  .paginator {
    gap: 4px;
  }
  .paginator_item {
    min-width: 32px;
    padding: 0;
    max-height: 32px;
  }
}

@media print {
  @page {
    prince-shrink-to-fit: auto;
    margin: 1cm;
  }
  header {
    display: none;
  }
  main {
    display: none;
  }
  footer {
    display: none;
  }
  .modal-container {
    width: 100%;
    align-items: flex-start;
    background: var(--white-color);
  }
  .modal-content {
    margin: 0 auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    max-width: 100%;
    width: 90%;
    box-shadow: none;
  }
  #modal-close,
  #imprimir {
    display: none;
  }
}
