@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap");
:root {
  --chart-color: #FFCC33;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 0.9rem;
}

/* html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
} */
a {
  color: #FFCC33;
  text-decoration: none;
}
a:hover {
  color: #ffd584;
  text-decoration: none;
}

.a-white {
  color: #FFFFFF;
  text-decoration: none;
}
.a-white:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FFCC33;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}
.back-to-top:hover {
  background: #151515;
}
.back-to-top:hover i {
  color: #FFCC33;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #FFCC33;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #FFFFFF;
}
#header .logo a span {
  color: #FFCC33;
}
#header .logo img {
  max-height: 40px;
}

.nav-btn {
  color: #FFFFFF;
  border-radius: 0px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  /* border: 2px solid $color-default; */
}
.nav-btn:hover {
  /* background: #ffbb38; */
  color: #FFCC33;
}

@media (max-width: 992px) {
  .nav-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}
.navbar {
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover {
  color: #FFCC33;
}
.navbar .active {
  color: #FFCC33;
}
.navbar .active:focus {
  color: #FFCC33;
}
.navbar li:hover > a {
  color: #FFCC33;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover {
  background-color: #FFCC33;
}
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: #FFCC33;
  color: #FFF;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
.mobile-nav-toggle {
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #FFFFFF;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover {
  color: #151515;
  background-color: #FFCC33;
}
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #FFCC33;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover {
  background-color: #FFCC33;
}
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #FFCC33;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #FFCC33;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}
#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}
#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #FFCC33;
}
#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}
#hero .icon-box h3 a {
  color: #FFFFFF;
  transition: ease-in-out 0.3s;
}
#hero .icon-box h3 a:hover {
  color: #FFCC33;
}
#hero .icon-box:hover {
  border-color: #FFCC33;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
section {
  padding: 40px 0;
  overflow: hidden;
  background-color: #FFFFFF;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffd584;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.catalog-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/catalog.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.catalog-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.catalog-spacer-parallax p {
  color: #FFFFFF;
}

.performance-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/performance.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.performance-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.performance-spacer-parallax p {
  color: #FFFFFF;
}

.campaigns-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/campaigns.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.campaigns-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.campaigns-spacer-parallax p {
  color: #FFFFFF;
}

.products {
  background: white;
  padding: 60px 0;
}
.products .product-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.products .product-box .product-img {
  position: relative;
  overflow: hidden;
  padding: 20px;
  max-width: 250px;
  max-height: 250px;
  text-align: center;
  margin: 0 auto;
}
.products .product-box .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.products .product-box .social a {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  background-image: linear-gradient(45deg, #FFCC33 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #FFCC33;
  border: 3px solid #FFCC33;
}
.products .product-box .social a:hover {
  background-position: 0;
  background-color: #FFCC33;
  color: #FFFFFF;
  border: 3px solid #FFCC33;
}
.products .product-box .social i {
  font-size: 18px;
  line-height: 0;
}
.products .product-box .product-info {
  padding: 25px 15px;
}
.products .product-box .product-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 16px;
  color: #151515;
}
.products .product-box .product-info span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFCC33;
  text-align: center;
}
.products .product-box .product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.products .product-box:hover .social {
  opacity: 1;
  bottom: 18px;
}

.news {
  background: white;
  padding: 60px 0;
}
.news .news-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.news .news-box .news-img {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.news .news-box .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.news .news-box .social a {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  background-image: linear-gradient(45deg, #FFCC33 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #FFCC33;
  border: 3px solid #FFCC33;
}
.news .news-box .social a:hover {
  background-position: 0;
  background-color: #FFCC33;
  color: #FFFFFF;
  border: 3px solid #FFCC33;
}
.news .news-box .social i {
  font-size: 18px;
  line-height: 0;
}
.news .news-box .news-info {
  padding: 25px 15px;
}
.news .news-box .news-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}
.news .news-box .news-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  overflow: hidden;
  height: 60px;
}
.news .news-box .news-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.news .news-box:hover .social {
  opacity: 1;
  bottom: 15px;
}

.contact .info {
  width: 100%;
  background: white;
}
.contact .info i {
  font-size: 20px;
  background: #FFCC33;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
  font-size: 12px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #FFFFFF;
  font-size: 14px;
}
#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #FFCC33;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFCC33;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #FFFFFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #FFCC33;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
}

.product-info {
  padding: 25px 15px;
}
.product-info .product-title {
  height: 95px;
  /* overflow: auto; */
}
.product-info h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #151515 !important;
  text-align: center;
}
.product-info h4 a {
  color: #151515 !important;
}
.product-info span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFCC33;
}
.product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.news-info {
  padding: 25px 15px;
}
.news-info .news-title {
  height: 45px;
  overflow: hidden;
}
.news-info h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #151515;
  text-align: left;
}
.news-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: left;
}
.news-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.form-control {
  height: 40px;
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 1.467;
  border: 1px solid #d9d9d6;
  border-radius: 0px;
  box-shadow: none;
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
}

.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.btn:hover {
  background-position: 0;
}

.btn:hover,
.btn:focus {
  color: #FFFFFF;
  outline: 0;
}

.btn-primary {
  background-color: transparent;
  background-image: linear-gradient(45deg, #FFCC33 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #FFCC33;
  border: 3px solid #FFCC33;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-primary .active {
  background-color: #FFCC33;
  color: #FFFFFF;
  border: 3px solid #FFCC33;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-danger {
  background-color: transparent;
  background-image: linear-gradient(45deg, #e66767 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #e66767;
  border: 3px solid #e66767;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active,
.btn-danger .active {
  background-color: #e66767;
  color: #FFFFFF;
  border: 3px solid #e66767;
}

.btn-white {
  background-color: transparent;
  background-image: linear-gradient(45deg, white 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #FFFFFF;
  border: 3px solid white;
}
.btn-white:hover, .btn-white:focus, .btn-white:active,
.btn-white .active {
  background-color: #FFFFFF;
  color: black;
  border: 3px solid white;
}

.value-number-dash {
  margin: 0;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.dash-box {
  padding: 20px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.dash-p {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.dash-icon {
  font-size: 25px;
  color: #FFCC33;
  padding: 30px;
}

h2.top-title-h2 {
  margin: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #333333;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  background-color: #ffd584;
}

.nav-pills .nav-link {
  background: 0 0;
  padding: 15px 30px;
  margin-bottom: 0.6rem;
  border: 0;
  border-radius: 0px;
  background-color: white4;
  color: #444444;
}
.nav-pills .nav-link.active, .nav-pills .nav-link.nav-pills .show > .nav-link {
  color: #444444;
  background-color: #FFCC33;
  font-weight: 700;
}

.form-check-input:checked {
  background-color: #FFCC33;
  border-color: #FFCC33;
}
.form-check-input:focus {
  border-color: #ffd584;
  box-shadow: 0 0 0 0.25rem #ffd584;
}

.search-input-catalog {
  height: 49px;
}

.accordion-item-catalog {
  margin-bottom: 0.6rem;
}

.accordion-button-catalog {
  font-size: 14px;
  padding: 15px 30px;
}

.accordion-button.collapsed {
  background-color: white4;
  font-weight: 400;
}

.accordion-button {
  color: #444444;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #444444;
  font-weight: 700;
  background-color: #f7f7f7;
  /* box-shadow: inset 0 -1px 0 rgb(0, 0, 0 / 13%); */
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-link-category {
  color: #aaaaaa;
}
.accordion-link-category:hover {
  color: #444444;
  font-weight: 900;
}

.form-select-catalog-tools {
  font-size: 0.8rem;
  padding-top: 0.88rem;
  padding-bottom: 0.88rem;
  padding-left: 1rem;
  border-radius: 0px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/black/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.shopping-cart-product-image {
  max-width: 100px;
}

.order-done {
  color: #10ac84;
  font-size: 1.7rem;
  font-weight: 900;
}

.bi.bi-bag-check-fill.order {
  font-size: 4.8rem;
  color: #10ac84;
}

.shopping-cart-message-order {
  padding: 20px;
  background-color: rgba(19, 172, 131, 0.1882352941);
}

.scroll-eula {
  height: 300px;
  overflow-y: scroll;
}

body.login-body,
html.html-body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #777777 !important;
}

.user-card {
  /* height: 440px; */
  width: 350px;
  margin-top: auto;
  margin-bottom: auto;
  background: #FFCC33;
  /* color: $color-white; */
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
  margin-bottom: 25px;
}
.user-card.lg-h {
  /*  height: 560px; */
}
.user-card.xl-lg-h {
  /* height: 860px; */
}

.brand-logo-container {
  position: absolute;
  height: 170px;
  width: 170px;
  top: -75px;
  border-radius: 50%;
  background: #777777;
  padding: 10px;
  text-align: center;
}
.brand-logo-container .brand-logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 2px solid white;
}

.form-container {
  margin-top: 100px;
}
.form-container .login-container {
  padding: 0 2rem;
}
.form-container .input-group-text {
  background: black !important;
  color: white !important;
  border: 0 !important;
  border-radius: 0.25rem 0 0 0.25rem !important;
  height: 39px;
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
#carousel h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.offline-icon {
  animation-name: stretch;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-play-state: running;
  color: #777777;
}

@keyframes stretch {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(5);
  }
}
.animation {
  margin-top: 20%;
  display: inline-block;
  margin-bottom: 10%;
}

.one,
.two,
.three {
  display: block;
  float: left;
}

.one {
  font-size: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -10px;
  margin-right: 8px;
}

.two {
  font-size: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #777777;
}

.three {
  font-size: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -50px;
  margin-left: -10px;
}

@keyframes spin-one {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}
.spin-one {
  animation: spin-one 1.5s infinite linear;
}

@keyframes spin-two {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.spin-two {
  animation: spin-two 2s infinite linear;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  background: #eee;
  color: #666;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.msger-chat::-webkit-scrollbar {
  width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}

.msg {
  margin: 15px 0px;
}

.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: #ececec;
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}

.msg-info-time {
  font-size: 0.85em;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  background: #7a83ea;
  color: #FFFFFF;
  border-bottom-right-radius: 0;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.msger-inputarea {
  display: flex;
  padding: 10px;
  border-top: 2px solid #ddd;
  background: #eee;
}

.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.msger-input {
  flex: 1;
  background: #ddd;
}

.msger-send-btn {
  margin-left: 10px;
  background: rgb(0, 196, 65);
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
}

.msger-send-btn:hover {
  background: rgb(0, 180, 50);
}

.msger-chat {
  background-color: #fcfcfe;
  background-image: url("http://sbus.mpcsistemas.com.br/jchat/images/chat-bg/geometry.png");
}

.mt-25vh {
  padding-top: 25vh;
}

.list-group-item.active {
  z-index: 2;
  color: #FFFFFF;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-weight: 700;
}

.list-group-item {
  padding: 0.8rem 1rem;
}

.navbar-mobile ul {
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 2px 0;
}

.navbar-mobile .dropdown ul {
  margin: 0px 0px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 30px;
  color: #aaa;
}

.list-group-item.active {
  border-color: rgba(0, 0, 0, 0.125);
}

.price-tag {
  font-size: 20px;
  color: #FFCC33;
  font-weight: 600;
}

.datepicker-days {
  margin: 15px;
}

.alert {
  border-radius: 0px !important;
  border: 0px !important;
  padding: 25px !important;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important; */
}

.btn-primary.sm-text {
  font-size: 11px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 0px;
  height: 420px;
  overflow: hidden;
}

.catalog-item:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.product-title {
  margin: 15px 0px 10px 0px;
  padding: 0px 10px;
}

.product-title > h4 > a {
  color: #151515 !important;
  font-size: 0.7em !important;
}

.product-image a {
  color: #151515 !important;
}

.product-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFCC33;
  text-align: center;
}

.btn-catalog-category {
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.category-button.selected {
  color: #FFCC33;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 15px;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #dfdfdf;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.next:hover {
  color: #dfdfdf;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover {
  color: #dfdfdf;
}

.text {
  color: #dfdfdf;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #dfdfdf;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.btn-tags {
  padding: 0.6em 2em !important;
  width: 100% !important;
  font-size: 0.8em !important;
  font-weight: 400 !important;
  border: 1px solid !important;
  border-radius: 50px;
  color: #d9d9d6;
  border-color: #d9d9d6;
}
.btn-tags:hover, .btn-tags:focus, .btn-tags:active,
.btn-tags .active {
  background-color: #d9d9d6;
  color: #fff;
  border: 1px solid #d9d9d6 !important;
}
.btn-tags.selected {
  color: #fff;
  background-color: #FFCC33;
  border: 1px solid #FFCC33;
}

.btn-search-box {
  height: 58px;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > :not(.btn-check:first-child) + .btn {
  margin-left: -3px !important;
}

.category-title {
  font-weight: 600;
  font-size: 0.7em;
}

.category-title-div {
  height: 60px;
}

.noUi-connect {
  background: #FFCC33 !important;
}

.a-clean-all {
  color: #444444;
}

.color-default {
  color: #FFCC33;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: auto;
}

.thumbnail-container .thumbnail {
  margin-right: 10px;
}

.thumbnail-container .thumbnail.active img {
  border: 1px solid #b0b0b0;
}

.progress.arrow {
  height: 20px;
  border-radius: 50px;
}

.panel-ranking {
  background: #212529;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  /*  border: 1px solid #FFF; */
}

h4.ranking-panel {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

h3.ranking-panel {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.circle-chart__percent {
  font-weight: bold;
  color: #fff;
}

.extra-title {
  display: none;
}

.nav-pills .nav-item {
  display: flex;
  flex: 1 1 0;
}

/* .nav-pills .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
 */
#avatar-big-container {
  height: 280px !important;
}
@media (max-width: 768px) {
  #avatar-big-container {
    height: 220px !important;
  }
}

@media (max-width: 575.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 240px !important;
    height: 280px !important;
    margin-top: 89px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 160px !important;
    height: 288px !important;
    margin-top: 100px !important;
    margin-left: 13px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 30px !important;
  }
}
@media (min-width: 1199.99px) and (max-width: 1400px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 91px !important;
    margin-left: 48px !important;
  }
}
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #FFCC33;
  cursor: not-allowed;
  background-color: #fff;
  border: 3px solid #FFCC33;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 15px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #FFCC33;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.btn-default-pagination-catalog {
  font-size: 0.6rem;
  padding: 1em 2em;
  border-width: 1px;
}
.btn-default-pagination-catalog:hover {
  border-width: 1px;
}
.btn-default-pagination-catalog:focus {
  border-width: 1px;
}
.btn-default-pagination-catalog:active {
  border-width: 1px;
}

@media (max-width: 576px) {
  .swiper-pagination-bullet {
    background: #FFCC33 !important;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background: #FFCC33 !important;
    opacity: 1;
  }
}
.thumbnail-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 3px;
}

@media (max-width: 575.98px) {
  .catalog-item {
    height: 280px;
    margin-top: 10px;
    font-size: 0.85em;
  }
  .catalog-item .product-title {
    margin: 10px 0px 5px 0px;
    padding: 0px 5px;
  }
  .catalog-item .product-image {
    max-height: 120px;
    margin-bottom: 8px;
  }
}
.catalog-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 0px;
  height: 420px;
  overflow: hidden;
}

.catalog-item:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.product-title {
  margin: 15px 0px 10px 0px;
  padding: 0px 10px;
}

.product-title > h4 > a {
  color: #151515 !important;
  font-size: 0.7em !important;
}

.product-image a {
  color: #151515 !important;
}

.product-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFCC33;
  text-align: center;
}

.btn-catalog-category {
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.category-button.selected {
  color: #FFCC33;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 15px;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #dfdfdf;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.next:hover {
  color: #dfdfdf;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover {
  color: #dfdfdf;
}

.text {
  color: #dfdfdf;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #dfdfdf;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.btn-tags {
  padding: 0.6em 2em !important;
  width: 100% !important;
  font-size: 0.8em !important;
  font-weight: 400 !important;
  border: 1px solid !important;
  border-radius: 50px;
  color: #d9d9d6;
  border-color: #d9d9d6;
}
.btn-tags:hover, .btn-tags:focus, .btn-tags:active,
.btn-tags .active {
  background-color: #d9d9d6;
  color: #fff;
  border: 1px solid #d9d9d6 !important;
}
.btn-tags.selected {
  color: #fff;
  background-color: #FFCC33;
  border: 1px solid #FFCC33;
}

.btn-search-box {
  height: 58px;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > :not(.btn-check:first-child) + .btn {
  margin-left: -3px !important;
}

.category-title {
  font-weight: 600;
  font-size: 0.7em;
}

.category-title-div {
  height: 60px;
}

.noUi-connect {
  background: #FFCC33 !important;
}

.a-clean-all {
  color: #444444;
}

.color-default {
  color: #FFCC33;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: auto;
}

.thumbnail-container .thumbnail {
  margin-right: 10px;
}

.thumbnail-container .thumbnail.active img {
  border: 1px solid #b0b0b0;
}

.progress.arrow {
  height: 20px;
  border-radius: 50px;
}

.panel-ranking {
  background: #212529;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  /*  border: 1px solid #FFF; */
}

h4.ranking-panel {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

h3.ranking-panel {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.circle-chart__percent {
  font-weight: bold;
  color: #fff;
}

.extra-title {
  display: none;
}

.nav-pills .nav-item {
  display: flex;
  flex: 1 1 0;
}

/* .nav-pills .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
*/
#avatar-big-container {
  height: 280px !important;
}
@media (max-width: 768px) {
  #avatar-big-container {
    height: 220px !important;
  }
}

@media (max-width: 575.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 240px !important;
    height: 280px !important;
    margin-top: 89px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 160px !important;
    height: 288px !important;
    margin-top: 100px !important;
    margin-left: 13px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 30px !important;
  }
}
@media (min-width: 1199.99px) and (max-width: 1400px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 91px !important;
    margin-left: 48px !important;
  }
}
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #FFCC33;
  cursor: not-allowed;
  background-color: #fff;
  border: 3px solid #FFCC33;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 15px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #FFCC33;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.btn-default-pagination-catalog {
  font-size: 0.6rem;
  padding: 1em 2em;
  border-width: 1px;
}
.btn-default-pagination-catalog:hover {
  border-width: 1px;
}
.btn-default-pagination-catalog:focus {
  border-width: 1px;
}
.btn-default-pagination-catalog:active {
  border-width: 1px;
}

@media (max-width: 576px) {
  .swiper-pagination-bullet {
    background: #FFCC33 !important;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background: #FFCC33 !important;
    opacity: 1;
  }
}
.thumbnail-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 3px;
}

@media (max-width: 575.98px) {
  .catalog-item {
    height: 280px;
    margin-top: 10px;
    font-size: 0.85em;
  }
  .catalog-item .product-title {
    margin: 10px 0px 5px 0px;
    padding: 0px 5px;
  }
  .catalog-item .product-image {
    max-height: 120px;
    margin-bottom: 8px;
  }
}
.stock-alert {
  background-color: #e66767;
  color: #ffa5ae;
  width: 100%;
  padding: 6px 12px;
  border-radius: 0px;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.8);
  z-index: 10;
  position: relative;
  top: 50%;
  transition: all 0.2s ease;
}
.stock-alert:hover {
  transform: scale(1.02);
}

.tags-button {
  position: relative;
  transition: all 0.2s ease;
}
.tags-button .tag-close-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #777777;
  color: #FFFFFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.2s ease;
}
.tags-button .tag-close-icon:hover {
  background-color: #151515;
  transform: scale(1.1);
}
.tags-button.selected .tag-close-icon {
  opacity: 1;
}

.btn-catalog-category img {
  transition: all 0.3s ease;
  filter: none;
  opacity: 1;
}

.category-selected .btn-catalog-category img {
  filter: sepia(100%) grayscale(50%) brightness(0.7);
  opacity: 0.6;
}
.category-selected .btn-catalog-category.selected img {
  filter: none;
  opacity: 1;
}

.autosuggest-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1050;
  max-height: 500px;
  overflow-y: auto;
  transition: all 0.2s ease;
}

.autosuggest-content {
  padding: 0.5rem 0;
}

.autosuggest-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.2s ease;
}
.autosuggest-item:hover, .autosuggest-item.active {
  background-color: #f8f9fa;
  transform: translateX(4px);
}
.autosuggest-item:last-child {
  border-bottom: none;
}

.autosuggest-item.product {
  border-left: 3px solid;
  border-left-color: inherit;
}

.autosuggest-item.tag {
  border-left: 3px solid #eaeaea;
  padding: 0.4rem 1rem;
}

.autosuggest-item img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
  margin-right: 0.75rem;
}

.autosuggest-item .item-info {
  flex: 1;
}

.autosuggest-item .item-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #212529;
}

.autosuggest-item .item-type {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 600;
}

.autosuggest-item .item-points {
  font-size: 0.875rem;
  color: inherit;
  font-weight: 600;
}

.autosuggest-item.tag .item-name {
  color: #6c757d;
}

.autosuggest-item.tag .item-type {
  color: #6c757d;
}

.autosuggest-item.search-history {
  border-left: 3px solid #ffd584;
  padding: 0.5rem 1rem;
}

.autosuggest-item.search-history .item-name {
  color: #ffd584;
  font-weight: 500;
}

.autosuggest-divider {
  height: 1px;
  background-color: #fff;
  margin: 0rem 0rem;
}

.autosuggest-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Clear button styles */
#clearSearchBtn {
  transition: all 0.2s ease;
}

#clearSearchBtn:hover {
  color: #dc3545 !important;
  transform: translateY(-50%) scale(1.1);
}

#clearSearchBtn:focus {
  outline: none;
  box-shadow: none;
}

#subcategory-sidebar .card {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
#subcategory-sidebar .card:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
#subcategory-sidebar .card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem;
  border-radius: 0;
}
#subcategory-sidebar .card-title {
  font-weight: bold;
  margin: 0;
  font-size: 1rem;
}
#subcategory-sidebar .card-body {
  padding: 1rem;
}

.subcategory-item,
.preselected-tag-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f9fa;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.subcategory-item:hover,
.preselected-tag-item:hover {
  background-color: #f8f9fa;
}
.subcategory-item:last-child,
.preselected-tag-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.subcategory-checkbox,
.preselected-tag-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #dee2e6;
  border-radius: 2px;
  background-color: #FFFFFF;
  cursor: pointer;
  position: relative;
  margin-right: 1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.subcategory-checkbox:hover,
.preselected-tag-checkbox:hover {
  border-color: #FFCC33;
}
.subcategory-checkbox:checked,
.preselected-tag-checkbox:checked {
  background-color: #FFCC33;
  border-color: #FFCC33;
}
.subcategory-checkbox:checked::after,
.preselected-tag-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.subcategory-checkbox:focus,
.preselected-tag-checkbox:focus {
  outline: none;
}

.subcategory-label,
.preselected-tag-label {
  flex: 1;
  margin: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #495057;
  transition: all 0.2s ease;
}

.subcategory-item:hover .subcategory-label,
.preselected-tag-item:hover .preselected-tag-label {
  color: #FFCC33;
}

#preselected-tags-card .card {
  background-color: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-top: 20px;
  overflow: hidden;
}
#preselected-tags-card .card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
#preselected-tags-card .card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem;
  border-radius: 0;
}
#preselected-tags-card .card-title {
  font-weight: bold;
  margin: 0;
  font-size: 1rem;
}
#preselected-tags-card .card-body {
  padding: 1rem;
}

@media (max-width: 768px) {
  #subcategory-sidebar .col-12.col-md-4.col-lg-3 {
    margin-bottom: 1rem;
  }
  #subcategory-sidebar .card {
    margin-top: 10px;
  }
  #subcategory-sidebar .card-body {
    padding: 0.75rem;
  }
}
.product-info-container .product-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #444444;
  line-height: 1.3;
  padding: 0px;
}
.product-info-container .price-section .price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-info-container .price-section .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFCC33;
}
.product-info-container .price-section .price-currency {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777777;
}
.product-info-container .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444444;
}
.product-info-container .description-content {
  color: #777777;
  line-height: 1.6;
}
.product-info-container .product-specs .spec-item {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.product-info-container .product-specs .spec-item:last-child {
  border-bottom: none;
}
.product-info-container .product-specs .spec-item .spec-icon {
  color: #FFCC33;
  font-size: 1.1rem;
}
.product-info-container .product-specs .spec-item .spec-label {
  font-weight: 500;
  color: #444444;
  min-width: 150px;
}
.product-info-container .product-specs .spec-item .spec-value {
  color: #777777;
}

.actions-section .actions-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.actions-section .actions-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.actions-section .actions-card-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  border-radius: 12px 12px 0 0;
}
.actions-section .actions-title {
  color: #444444;
  font-weight: 600;
}
.actions-section .actions-icon {
  color: #FFCC33;
}
.actions-section .actions-description {
  color: #777777;
  font-size: 0.9rem;
}
.actions-section .actions-label {
  font-weight: 500;
  color: #444444;
}
.actions-section .actions-select {
  border-radius: 8px;
  border: 1px solid #ddd;
}
.actions-section .actions-display {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.actions-section .actions-placeholder {
  color: #777777;
}

@media (max-width: 768px) {
  .product-info-container .product-title {
    font-size: 1.5rem !important;
  }
  .product-info-container .price-section .price-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .quantity-controls {
    flex-direction: column;
    gap: 16px;
  }
  .quantity-controls .quantity-input-group {
    align-self: flex-start;
  }
}
.filter-count {
  color: #6c757d;
  font-size: 0.75em;
  font-weight: normal;
  margin-left: auto;
  flex-shrink: 0;
  margin-right: 4px;
}

.subcategory-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.subcategory-checkbox {
  margin-right: 8px;
  margin-left: 4px;
  transform: scale(1.1);
}

.subcategory-label,
.preselected-tag-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  justify-content: space-between;
}

#subcategory-list,
#brand-list,
#preselected-tags-list {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa #FFFFFF;
  scroll-behavior: smooth;
}
#subcategory-list::-webkit-scrollbar,
#brand-list::-webkit-scrollbar,
#preselected-tags-list::-webkit-scrollbar {
  width: 6px;
}
#subcategory-list::-webkit-scrollbar-track,
#brand-list::-webkit-scrollbar-track,
#preselected-tags-list::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 3px;
}
#subcategory-list::-webkit-scrollbar-thumb,
#brand-list::-webkit-scrollbar-thumb,
#preselected-tags-list::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 3px;
}
#subcategory-list::-webkit-scrollbar-thumb:hover,
#brand-list::-webkit-scrollbar-thumb:hover,
#preselected-tags-list::-webkit-scrollbar-thumb:hover {
  background: #777777;
}

.kpi-panel.dash-box,
.kpi-chart-box.dash-box,
.kpi-ranking-card.dash-box {
  border-radius: 4px;
}

.kpi-balance-display {
  background: #FFCC33;
  color: #151515;
  padding: 14px 5px 1px 10px;
  border-radius: 4px;
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.kpi-year-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.kpi-year-progress-header .kpi-year-progress-value {
  margin-left: auto;
}

.kpi-year-progress-bar.progress.arrow .progress-bar {
  background: linear-gradient(90deg, #FFCC33 0%, #ffd584 100%);
}

.kpi-year-progress-empty {
  opacity: 0.4;
  pointer-events: none;
}

.kpi-ranking-card.dash-box {
  text-align: center;
  flex: 1 1 auto;
  min-width: 200px;
  max-width: calc(20% - 1.2rem);
}

.kpi-ranking-card-empty {
  opacity: 0.4;
  pointer-events: none;
}

.kpi-ranking-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.kpi-charts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
}

.kpi-chart-container {
  flex: 0 1 auto;
  min-width: 300px;
  max-width: 100%;
}

.kpi-chart-container.single-chart {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.kpi-chart-container.two-charts {
  flex: 0 1 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
}

.kpi-chart-container:not(.single-chart):not(.two-charts) {
  flex: 0 1 calc(33.333% - 1rem);
  max-width: 500px;
}

.kpi-ranking-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

#kpi-performance-datatable-wrapper > .dash-box > .mb-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
#kpi-performance-datatable-wrapper > .dash-box > .mb-3 > .col {
  flex: 1 1 auto;
  min-width: 200px;
  margin-top: 0 !important;
}
#kpi-performance-datatable-wrapper > .dash-box > .mb-3 > .col.mb-3 {
  flex-shrink: 0;
  flex: 0 0 auto;
}

#kpi-performance-datatable-wrapper .form-floating {
  margin-bottom: 0;
  width: 100%;
}

#kpi-performance-datatable-wrapper .btn-primary {
  flex-shrink: 0;
}

#kpi-performance-datatable-wrapper .select2-container--default .select2-selection--single {
  height: 40px;
  border: 1px solid #d9d9d6;
  border-radius: 0px;
  background-color: #fff;
}
#kpi-performance-datatable-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding-left: 12px;
  padding-right: 20px;
  color: #444444;
  font-size: 0.9rem;
}
#kpi-performance-datatable-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  right: 8px;
}

#kpi-performance-datatable-wrapper .select2-container--default.select2-container--focus .select2-selection--single,
#kpi-performance-datatable-wrapper .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #FFCC33;
  box-shadow: 0 0 0 0.25rem rgba(255, 204, 51, 0.25);
  outline: 0;
}

#kpi-performance-datatable-wrapper .select2-dropdown {
  border: 1px solid #d9d9d6;
  border-radius: 0px;
}

@media (max-width: 992px) {
  .kpi-chart-container:not(.single-chart):not(.two-charts) {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .kpi-ranking-number {
    font-size: 3rem;
  }
  .kpi-chart-container.single-chart,
  .kpi-chart-container.two-charts {
    max-width: 100%;
  }
  .kpi-ranking-card.dash-box {
    max-width: 100%;
    min-width: 100%;
  }
  #kpi-performance-datatable-wrapper > .dash-box > .mb-3 {
    flex-direction: column;
  }
  #kpi-performance-datatable-wrapper > .dash-box > .mb-3 > .col {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 576px) {
  .kpi-ranking-number {
    font-size: 2.5rem;
  }
  .kpi-charts-wrapper,
  .kpi-ranking-wrapper {
    flex-direction: column;
  }
}/*# sourceMappingURL=app.css.map */

/* --- Proto Prize Layout (global) --- */
.proto-home-page {
  padding-top: 16px;
}

#header.header-inner-pages {
  left: 220px;
  width: calc(100% - 220px);
  background: linear-gradient(135deg, #ff6b5a 0%, #ef3e4b 100%);
  border-bottom: 1px solid #e4e8ef;
}

#header .container {
  max-width: none;
  width: 100%;
  height: 70px;
  padding: 0 16px;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

#header .logo {
  grid-column: 2;
  margin: 0 !important;
  justify-self: center;
}

#header .logo img {
  max-height: 48px;
  width: auto;
}

#header #navbar {
  grid-column: 3;
  justify-self: end;
}

#header .mobile-nav-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #ef4d4a;
  font-size: 22px;
}

#header .float-end {
  display: none;
}

.proto-home-page .container.wrapper-box {
  max-width: none;
  width: 100%;
  padding: 0 16px;
}

.proto-home-page .row {
  margin-left: 0;
  margin-right: 0;
}

.proto-home-page .proto-home-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  max-width: 220px;
  flex: 0 0 220px;
  background: #f3f5f8;
  border-right: 1px solid #e1e6ee;
  padding: 22px 18px;
  z-index: 1021;
}

.proto-home-page .proto-home-content {
  margin-left: 220px;
  flex: 0 0 calc(100% - 220px);
  max-width: calc(100% - 220px);
  padding: 0 0 18px;
}

.proto-home-page .nav.nav-pills {
  gap: 8px;
}

.proto-home-page .nav.nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #6b7f9d;
  padding: 10px 8px;
  background: transparent;
}

.proto-home-page .nav.nav-pills .nav-link i {
  font-size: 17px;
  line-height: 1;
}

.proto-home-page .nav.nav-pills .nav-link span {
  font-size: 16px;
}

.proto-home-page .nav.nav-pills .nav-link.active {
  color: #f04e3e;
  background: transparent;
}

.proto-panel {
  background: #f4f6f8;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(12, 22, 38, 0.06);
  padding: 22px 20px;
  margin-bottom: 14px;
}

.proto-welcome-label {
  color: #1d2432;
  font-size: 16px;
  line-height: 1.15;
  margin-bottom: 4px;
  display: block;
}

.proto-welcome .name {
  color: #f04e3e;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  margin-top: 0;
}

.proto-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proto-stat {
  text-align: center;
}

.proto-stat .label {
  color: #6f829f;
  font-size: 14px;
  line-height: 1.2;
}

.proto-stat .value {
  color: #f04e3e;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 6px;
}

.proto-stat .helper {
  color: #6f829f;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 2px;
}

.proto-highlight {
  background: linear-gradient(135deg, #ff6b5a 0%, #ef3e4b 100%);
  color: #fff;
}

.proto-highlight .title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.proto-highlight .value {
  font-size: 43px;
  font-weight: 700;
  line-height: 1.08;
  margin-top: 10px;
}

.proto-highlight .sub {
  font-size: 17px;
  line-height: 1.2;
  margin-top: 8px;
  opacity: 0.95;
}

.proto-info .title {
  color: #111a2c;
  font-size: 17px;
  font-weight: 700;
}

.proto-info .proto-info-text {
  margin-top: 10px;
  color: #6a7d99;
  font-size: 14px;
  line-height: 1.35;
}

.proto-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff6b5a 0%, #ef3e4b 100%);
  box-shadow: 0 5px 12px rgba(239, 62, 75, 0.25);
  border: 0 !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.proto-btn-main:hover,
.proto-btn-main:focus {
  color: #fff;
  text-decoration: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: 0 5px 12px rgba(239, 62, 75, 0.25) !important;
}

.context-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29, 36, 50, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 3000;
}

.context-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.context-modal-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 14px 28px rgba(20, 34, 56, 0.18);
  padding: 8px 10px 12px;
  transform: translateY(-110%);
  transition: transform 0.2s ease;
  z-index: 3001;
}

.context-modal-sheet.is-open {
  transform: translateY(0);
}

.context-modal-head {
  position: relative;
  text-align: center;
  margin-bottom: 8px;
}

.context-modal-head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f2737;
}

.context-modal-close {
  position: absolute;
  right: 0;
  top: -2px;
  border: 0;
  background: transparent;
  color: #7387a4;
  font-size: 28px;
  line-height: 1;
}

#contextSearchInput,
#contextComboSelect {
  width: 100%;
  height: 52px;
  border: 1px solid #d6deea;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 15px;
  color: #1b2433;
  background: #f9fbfd;
}

main.proto-home-page + #footer {
  display: none !important;
}

#contextSearchInput {
  margin-bottom: 8px;
}

#contextComboSelect {
  margin-bottom: 10px;
}

.context-modal-sheet .btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff6b5a 0%, #ef3e4b 100%);
}

@media (max-width: 991px) {
  #header.header-inner-pages {
    left: 0;
    width: 100%;
  }

  .proto-home-page {
    padding-top: 8px;
  }

  .proto-home-page .proto-home-sidebar {
    display: none;
  }

  .proto-home-page .proto-home-content {
    margin-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 104px;
  }

  .proto-home-page .container.wrapper-box {
    padding: 0 10px;
  }

  .proto-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .proto-welcome-label {
    font-size: 16px;
  }

  .proto-welcome .name {
    font-size: 41px;
  }

  .proto-stat .label {
    font-size: 14px;
  }

  .proto-stat .value {
    font-size: 36px;
  }

  .proto-stat .helper {
    font-size: 14px;
  }

  .proto-highlight .title {
    font-size: 15px;
  }

  .proto-highlight .value {
    font-size: 30px;
  }

  .proto-highlight .sub {
    font-size: 16px;
  }

  .proto-info .title {
    font-size: 31px;
  }

  .proto-info .proto-info-text {
    font-size: 14px;
  }

  .proto-btn-main {
    min-height: 52px;
    font-size: 16px;
  }

  .context-modal-sheet {
    left: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  #contextSearchInput,
  #contextComboSelect {
    font-size: 16px;
  }
}

/* --- Proto Home hard override (cache-safe + legacy override) --- */
body:has(main.proto-home-page) {
  background: #e9edf2;
}

body #footer {
  display: none !important;
}

main.proto-home-page ~ #footer,
body:has(main.proto-home-page) #footer {
  display: none !important;
}

main.proto-home-page,
main.proto-home-page .inner-page {
  background: #e9edf2;
  min-height: calc(100vh - 70px);
}

main.proto-home-page {
  padding-top: 86px !important;
}

main.proto-home-page .inner-page {
  padding-bottom: 16px;
  margin-bottom: 0 !important;
}

main.proto-home-page .proto-home-content {
  padding-top: 0;
}

main.proto-home-page .proto-panel {
  padding: 20px 22px;
  border-radius: 18px;
  margin-bottom: 14px;
}

main.proto-home-page .proto-welcome {
  min-height: 92px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  overflow: visible;
}

main.proto-home-page .proto-welcome-label {
  display: block !important;
  font-size: 16px !important;
  line-height: 1.15;
  font-weight: 400;
  color: #1e2433 !important;
  margin-bottom: 4px;
}

main.proto-home-page .proto-welcome .name {
  font-size: 42px !important;
  line-height: 1.12;
  font-weight: 700;
  color: #ef4d42 !important;
}

main.proto-home-page .proto-stat .label {
  font-size: 14px;
}

main.proto-home-page .proto-stat .value {
  font-size: 42px !important;
  line-height: 1.06;
}

main.proto-home-page .proto-stat .helper {
  font-size: 15px;
}

main.proto-home-page .proto-highlight .title {
  font-size: 16px;
  line-height: 1.06;
}

main.proto-home-page .proto-highlight .value {
  font-size: 48px;
  line-height: 1.08;
  margin-top: 10px;
}

main.proto-home-page .proto-highlight .sub {
  font-size: 15px;
  line-height: 1.25;
  margin-top: 8px;
}

main.proto-home-page .proto-info .title {
  font-size: 16px;
  line-height: 1.2;
}

main.proto-home-page .proto-info .proto-info-text {
  font-size: 14px;
  line-height: 1.35;
}

main.proto-home-page .proto-btn-main {
  min-height: 56px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
}

main.proto-home-page .proto-btn-main i {
  font-size: 16px;
}

@media (max-width: 1200px) {
  main.proto-home-page .proto-welcome-label {
    font-size: 16px !important;
  }

  main.proto-home-page .proto-welcome .name {
    font-size: 38px !important;
  }

  main.proto-home-page .proto-stat .value {
    font-size: 34px !important;
  }

  main.proto-home-page .proto-highlight .title {
    font-size: 16px;
  }

  main.proto-home-page .proto-highlight .value {
    font-size: 42px;
  }

  main.proto-home-page .proto-highlight .sub {
    font-size: 16px;
  }

  main.proto-home-page .proto-info .title {
    font-size: 16px;
  }

  main.proto-home-page .proto-info .proto-info-text {
    font-size: 14px;
  }

  main.proto-home-page .proto-btn-main {
    min-height: 54px;
    font-size: 16px;
  }

  main.proto-home-page .proto-btn-main i {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  main.proto-home-page,
  main.proto-home-page .inner-page {
    min-height: calc(100vh - 64px);
  }

  main.proto-home-page {
    padding-top: 72px !important;
  }

  main.proto-home-page .proto-panel {
    padding: 16px;
  }

  main.proto-home-page .proto-welcome-label {
    font-size: 16px !important;
    margin-bottom: 2px;
  }

  main.proto-home-page .proto-welcome .name {
    font-size: 34px !important;
  }

  main.proto-home-page .proto-stat .value {
    font-size: 36px !important;
  }

  main.proto-home-page .proto-highlight .title {
    font-size: 14px;
  }

  main.proto-home-page .proto-highlight .value {
    font-size: 32px;
  }

  main.proto-home-page .proto-highlight .sub {
    font-size: 14px;
  }

  main.proto-home-page .proto-info .title {
    font-size: 14px;
  }

  main.proto-home-page .proto-info .proto-info-text {
    font-size: 13px;
  }

  main.proto-home-page .proto-btn-main {
    min-height: 52px;
    font-size: 16px;
  }

  main.proto-home-page .proto-btn-main i {
    font-size: 16px;
  }
}

/* --- Proto Prize pages (Compras/Caderneta/Resultados) --- */
main.proto-prize-page,
main.proto-prize-page .inner-page {
  background: #e9edf2;
  min-height: calc(100vh - 70px);
}

main.proto-prize-page {
  padding-top: 86px !important;
}

main.proto-prize-page .inner-page {
  padding-bottom: 16px;
  margin-bottom: 0 !important;
}

main.proto-prize-page .proto-prize-content {
  padding-top: 0;
}

main.proto-prize-page .proto-panel {
  background: #f4f6f8;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(12, 22, 38, 0.06);
  padding: 18px 20px;
  margin-bottom: 14px;
}

main.proto-prize-page .proto-section-title {
  color: #1a2232;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 8px;
}

main.proto-prize-page .proto-info {
  background: #e1e6ef;
}

/* Keep "Como Funciona" identical to home across pages */
.proto-info-home {
  background: #f4f6f8 !important;
}

.proto-info-home .title {
  color: #111a2c !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.proto-info-home .proto-info-text {
  margin-top: 10px;
  color: #6a7d99 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

main.proto-prize-page .proto-info .title {
  color: #111a2c;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

main.proto-prize-page .proto-info .text {
  margin-top: 8px;
  color: #6a7d99;
  font-size: 14px;
  line-height: 1.35;
}

main.proto-prize-page .proto-campaign-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid #f04e3e;
  margin: 8px 0 14px;
  padding-bottom: 8px;
}

main.proto-prize-page .proto-campaign-line .title {
  color: #1a2232;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

main.proto-prize-page .proto-campaign-line .sum {
  color: #6f829f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

main.proto-prize-page .proto-table-wrap {
  overflow-x: auto;
}

main.proto-prize-page .proto-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

main.proto-prize-page .proto-table thead th {
  color: #6f829f;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 10px;
  border-bottom: 2px solid #d8dee8;
}

main.proto-prize-page .proto-table tbody td {
  color: #1e2738;
  font-size: 16px;
  padding: 10px 10px;
  border-bottom: 1px solid #dfe5ee;
}

main.proto-prize-page .proto-table tbody tr:last-child td {
  border-bottom: 0;
}

main.proto-prize-page .proto-table td:last-child,
main.proto-prize-page .proto-table th:last-child {
  text-align: right;
}

main.proto-prize-page .proto-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #efbf39;
  background: #f9efc9;
  color: #b16612;
  border-radius: 18px;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 14px;
}

main.proto-prize-page .proto-warning i {
  font-size: 15px;
}

main.proto-prize-page .proto-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  color: #6a7d99;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  padding: 26px 20px;
}

main.proto-prize-page .proto-empty i {
  font-size: 40px;
  color: #a9b6c8;
  margin-bottom: 12px;
}

main.proto-prize-page .proto-result-main {
  color: #f04e3e;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2px;
}

main.proto-prize-page .proto-result-sub {
  color: #6f829f;
  font-size: 14px;
  line-height: 1.35;
}

main.proto-prize-page .proto-result-date {
  color: #1c2433;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 2px;
}

main.proto-prize-page .proto-result-count {
  color: #f04e3e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  main.proto-prize-page .proto-section-title {
    font-size: 18px;
  }

  main.proto-prize-page .proto-info .title {
    font-size: 17px;
  }

  main.proto-prize-page .proto-info .text {
    font-size: 14px;
  }

  main.proto-prize-page .proto-campaign-line .title {
    font-size: 18px;
  }

  main.proto-prize-page .proto-campaign-line .sum {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  main.proto-prize-page,
  main.proto-prize-page .inner-page {
    min-height: calc(100vh - 64px);
  }

  main.proto-prize-page {
    padding-top: 72px !important;
  }

  main.proto-prize-page .proto-panel {
    padding: 14px;
    margin-bottom: 10px;
  }

  main.proto-prize-page .proto-info .title {
    font-size: 14px;
  }

  main.proto-prize-page .proto-info .text {
    font-size: 13px;
    margin-top: 6px;
  }

  main.proto-prize-page .proto-campaign-line {
    align-items: center;
    margin-top: 4px;
  }

  main.proto-prize-page .proto-campaign-line .title {
    font-size: 18px;
  }

  main.proto-prize-page .proto-section-title {
    font-size: 18px;
  }

  main.proto-prize-page .proto-campaign-line .sum {
    font-size: 14px;
  }

  main.proto-prize-page .proto-table {
    min-width: 100%;
  }

  main.proto-prize-page .proto-empty {
    min-height: 180px;
    font-size: 13px;
    padding: 14px 10px;
  }

  main.proto-prize-page .proto-empty i {
    font-size: 30px;
  }

  main.proto-prize-page .proto-table thead {
    display: none;
  }

  main.proto-prize-page .proto-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid #d9e0ea;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f7f9fb;
  }

  main.proto-prize-page .proto-table tbody td {
    border: 0;
    padding: 0;
    text-align: left !important;
  }

  main.proto-prize-page .proto-warning {
    font-size: 13px;
    margin-top: 8px;
  }
}

/* --- Profile + Legal pages on prize shell --- */
main.proto-profile-page .proto-panel,
main.proto-legal-page .proto-panel {
  padding: 24px 20px;
}

main.proto-profile-page .proto-prize-content,
main.proto-legal-page .proto-prize-content {
  padding-left: 0;
  padding-right: 0;
}

.proto-inline-topbar {
  height: 74px;
  border-bottom: 1px solid #d7dee8;
  background: linear-gradient(135deg, #ff7e70 0%, #f25b58 100%);
  margin: 0 0 14px;
  padding: 0 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proto-inline-topbar span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.proto-inline-back {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

.proto-profile-user-card {
  text-align: center;
}

.proto-profile-user-card i {
  color: #f04e3e;
  font-size: 66px;
  line-height: 1;
}

.proto-profile-user-card h3 {
  margin: 10px 0 2px;
  color: #111a2c;
  font-size: 20px;
  font-weight: 700;
}

.proto-profile-user-card p {
  margin: 0;
  color: #6f829f;
  font-size: 16px;
}

.proto-account-link {
  margin-top: 10px;
  border: 1px solid #e3e9f2;
  border-radius: 16px;
  background: #f8fafc;
  min-height: 76px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.proto-account-link:hover,
.proto-account-link:focus {
  color: inherit;
  text-decoration: none;
}

.proto-account-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbe2de;
  color: #f04e3e;
  font-size: 21px;
  flex: 0 0 44px;
}

.proto-account-link-text {
  flex: 1 1 auto;
  min-width: 0;
}

.proto-account-link-text strong {
  display: block;
  color: #1b2434;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.proto-account-link-text small {
  display: block;
  color: #6f829f;
  font-size: 14px;
  line-height: 1.25;
  margin-top: 2px;
}

.proto-account-link > i {
  color: #7b8ea9;
  font-size: 24px;
}

.proto-form-group {
  margin-bottom: 12px;
}

.proto-form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a2232;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.proto-form-label i {
  color: #f04e3e;
  font-size: 17px;
}

.proto-field-input.form-control {
  height: 48px;
  border-radius: 16px;
  border: 1px solid #ced7e4;
  background: #f8fafd;
  color: #1a2232;
  font-size: 16px;
  padding: 10px 14px;
}

.proto-form-actions {
  margin-top: 14px;
}

.proto-btn-secondary,
.proto-btn-logout,
.proto-btn-danger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 18px;
  min-height: 52px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  border: 0;
  outline: none !important;
  box-shadow: none !important;
}

.proto-btn-secondary {
  margin-top: 12px;
  background: #f4f6f8;
  color: #1a2232;
  border: 1px solid #d8e0eb;
}

.proto-btn-logout {
  margin-top: 12px;
  background: #6a7d99;
  color: #fff;
}

.proto-btn-danger {
  margin-top: 8px;
  background: linear-gradient(135deg, #ff6b5a 0%, #ef3e4b 100%);
  color: #fff;
}

.proto-btn-main:hover,
.proto-btn-main:focus,
.proto-btn-main:active,
.proto-btn-main:focus-visible,
.proto-btn-secondary:hover,
.proto-btn-secondary:focus,
.proto-btn-secondary:active,
.proto-btn-secondary:focus-visible,
.proto-btn-logout:hover,
.proto-btn-logout:focus,
.proto-btn-logout:active,
.proto-btn-logout:focus-visible,
.proto-btn-danger:hover,
.proto-btn-danger:focus,
.proto-btn-danger:active,
.proto-btn-danger:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
  text-decoration: none;
}

.proto-btn-main:hover,
.proto-btn-main:focus,
.proto-btn-main:active {
  color: #fff;
}

.proto-btn-danger:hover,
.proto-btn-danger:focus,
.proto-btn-danger:active {
  color: #fff;
}

.proto-btn-logout:hover,
.proto-btn-logout:focus,
.proto-btn-logout:active {
  color: #fff;
  background: #62738d;
}

.proto-btn-secondary:hover,
.proto-btn-secondary:focus,
.proto-btn-secondary:active {
  color: #1a2232;
  background: #eef2f7;
  border-color: #d8e0eb;
}

.proto-account-danger-zone {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #dde4ee;
}

.proto-account-danger-zone h4 {
  margin: 0 0 8px;
  color: #1a2232;
  font-size: 18px;
  font-weight: 700;
}

.proto-account-danger-zone p,
.proto-account-danger-zone li {
  color: #5b6f8d;
  font-size: 14px;
  line-height: 1.45;
}

.proto-account-danger-zone ul {
  margin: 8px 0 8px 18px;
  padding: 0;
}

.proto-legal-content {
  line-height: 1.65;
  color: #1e2738;
  font-size: 17px;
}

.proto-legal-content h1,
.proto-legal-content h2,
.proto-legal-content h3,
.proto-legal-content h4 {
  color: #f04e3e;
  font-weight: 700;
}

@media (max-width: 991px) {
  .proto-inline-topbar {
    height: 64px;
    margin-bottom: 10px;
    padding: 0 12px;
  }

  .proto-inline-topbar span {
    font-size: 15px;
  }

  .proto-inline-back {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .proto-profile-user-card i {
    font-size: 58px;
  }

  .proto-profile-user-card h3 {
    font-size: 18px;
  }

  .proto-profile-user-card p {
    font-size: 14px;
  }

  .proto-account-link {
    min-height: 68px;
    padding: 9px 12px;
    gap: 10px;
  }

  .proto-account-link-icon {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .proto-account-link-text strong {
    font-size: 16px;
  }

  .proto-account-link-text small {
    font-size: 13px;
  }
}


/* --- Proto Auth + Activation Layout (global) --- */
:root {
  --proto-red: #f25547;
  --proto-red-strong: #ef3e3e;
  --proto-text: #1d2430;
  --proto-muted: #6b7e9a;
  --proto-line: #d8dde5;
  --proto-card: #f3f5f8;
  --proto-blue-btn: #6a7d99;
}

body.proto-auth-page,
body.bg-login {
  background: linear-gradient(180deg, #ff6254 0%, #ef3e4b 100%);
  min-height: 100vh;
  margin: 0;
  padding: 16px;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--proto-text);
}

.proto-auth-shell {
  min-height: calc(100vh - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.proto-auth-login {
  width: 100%;
  max-width: 400px;
}

.proto-auth-logo {
  text-align: center;
  margin-bottom: 34px;
}

.proto-auth-logo img {
  width: 100%;
  max-width: 230px;
  height: auto;
}

.proto-auth-form-group,
.proto-field {
  margin-bottom: 14px;
}

.proto-auth-label,
.proto-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
}

.proto-auth-label i,
.proto-label i {
  font-size: 16px;
  line-height: 1;
  color: #ffd8d3;
}

.proto-auth-input-wrap,
.proto-input-wrap {
  position: relative;
}

.proto-auth-input,
.proto-input,
.proto-select,
.proto-textarea {
  width: 100%;
  border: 1px solid #d1d9e5;
  border-radius: 16px;
  background: #e9eef5;
  color: #1d2430;
  font-size: 15px;
  outline: 0;
  box-shadow: none;
}

.proto-auth-input,
.proto-input,
.proto-select {
  height: 46px;
  padding: 0 44px 0 16px;
}

.proto-textarea {
  padding: 12px 14px;
  min-height: 96px;
  resize: vertical;
}

.proto-auth-input::placeholder,
.proto-input::placeholder,
.proto-textarea::placeholder {
  color: #8f9db2;
}

.proto-auth-input:focus,
.proto-input:focus,
.proto-select:focus,
.proto-textarea:focus,
.proto-auth-btn:focus,
.proto-auth-btn:active,
.proto-btn:focus,
.proto-btn:active,
.btn:focus,
.btn:active,
button:focus,
a:focus {
  border-color: #bfc9d8;
  outline: 0 !important;
  box-shadow: none !important;
}

.proto-auth-eye,
.proto-input-actions {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #7f8da3;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proto-auth-btn,
.proto-btn {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.proto-auth-btn.proto-auth-btn-login,
.proto-btn.proto-btn-soft {
  background: #fff;
  color: var(--proto-red-strong);
}

.proto-auth-btn.proto-auth-btn-recover,
.proto-btn {
  background: linear-gradient(180deg, #ff6254 0%, #ef3e3e 100%);
  color: #fff;
}

.proto-auth-btn.proto-auth-btn-back,
.proto-btn.proto-btn-secondary {
  background: var(--proto-blue-btn);
  color: #fff;
}

.proto-auth-btn:hover,
.proto-btn:hover,
.proto-auth-btn:focus,
.proto-btn:focus {
  color: #fff;
  text-decoration: none;
}

.proto-auth-btn.proto-auth-btn-login:hover,
.proto-btn.proto-btn-soft:hover,
.proto-auth-btn.proto-auth-btn-login:focus,
.proto-btn.proto-btn-soft:focus {
  color: var(--proto-red-strong);
}

.proto-auth-links {
  text-align: center;
  margin-top: 18px;
}

.proto-auth-links a,
.proto-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
}

.proto-recover-wrap {
  width: 100%;
  max-width: 460px;
  background: var(--proto-card);
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(12, 22, 38, 0.08);
  padding: 30px 34px;
}

.proto-recover-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1c2432;
}

.proto-recover-desc {
  color: #60738f;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.proto-recover-wrap .proto-auth-label,
.proto-recover-wrap .proto-label {
  color: #1f2634;
}

.proto-recover-wrap .proto-auth-input,
.proto-recover-wrap .proto-input,
.proto-recover-wrap .proto-select,
.proto-recover-wrap .proto-textarea {
  background: #f8fafc;
}

.proto-recover-back {
  text-align: center;
  margin: 16px 0 0;
}

.proto-recover-back a,
.proto-recover-wrap .proto-link {
  color: var(--proto-red-strong);
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}

.proto-note {
  margin-top: 20px;
  border-radius: 14px;
  background: #e7ecf3;
  padding: 14px 16px;
  color: #5f7290;
  font-size: 14px;
  line-height: 1.45;
}

.proto-note h6 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1d2430;
}

.proto-help-wrap {
  max-width: 560px;
}

.proto-help-contact {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #5f7290;
}

.proto-help-contact a {
  color: var(--proto-red-strong);
  text-decoration: none;
}

.proto-help-contact span {
  display: block;
  margin-top: 2px;
}

.proto-help-checkbox {
  margin: 8px 0 14px;
  font-size: 13px;
  color: #5f7290;
}

.proto-help-checkbox label {
  margin: 0;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.proto-help-checkbox a {
  color: var(--proto-red-strong);
}

.proto-help-captcha-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.proto-help-captcha-image-wrap {
  height: 46px;
  border-radius: 12px;
  border: 1px solid #d1d9e5;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.proto-help-captcha-image {
  max-width: 100%;
  max-height: 42px;
}

.proto-field .select2-container {
  width: 100% !important;
}

.proto-field .select2-container .select2-selection--single {
  height: 46px !important;
  border: 1px solid #d1d9e5 !important;
  border-radius: 16px !important;
  background: #f8fafc !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.proto-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px !important;
  color: #1d2430 !important;
  font-size: 15px !important;
  padding-left: 14px !important;
  padding-right: 34px !important;
}

.proto-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px !important;
  right: 10px !important;
}

.proto-field .select2-container--default.select2-container--focus .select2-selection--single,
.proto-field .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #bfc9d8 !important;
  box-shadow: none !important;
}

.proto-field .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #8f9db2 !important;
}

.select2-dropdown {
  border: 1px solid #d1d9e5 !important;
  border-radius: 12px !important;
}

.select2-results__option {
  font-size: 14px;
}

.proto-activate-wrap,
.proto-onboarding-wrap {
  max-width: 448px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.proto-activate-wrap form,
.proto-onboarding-wrap form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proto-activate-label {
  color: #1f2634;
}

.proto-activate-progress,
.proto-onboarding-progress,
.proto-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 12px 0 14px;
}

.proto-activate-wrap .proto-activate-progress,
.proto-onboarding-wrap .proto-onboarding-progress {
  margin-top: auto;
}

.proto-activate-progress span,
.proto-onboarding-progress span,
.proto-progress span {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: #d7dce4;
}

.proto-activate-progress span.is-active,
.proto-onboarding-progress span.is-active,
.proto-progress span.active {
  width: 60px;
  background: #f05b53;
}

.proto-activate-actions,
.proto-activation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.proto-activate-actions.single,
.proto-activation-actions.single {
  grid-template-columns: 1fr;
}

.proto-password-input-wrap .proto-auth-input,
.proto-password-input-wrap .proto-input {
  padding-right: 108px;
}

.proto-password-tool {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #7f8da3;
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proto-password-tool-eye {
  right: 12px;
}

.proto-password-rules-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 6px 0 10px;
}

.proto-password-rules-line span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #d7dce4;
}

.proto-consent-card,
.proto-check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f8fb;
  border: 1px solid #d6dee8;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
  cursor: pointer;
}

.proto-consent-card input[type="checkbox"],
.proto-check-card input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 6px;
  border: 2px solid #c4cedb;
  flex: 0 0 24px;
  accent-color: #f05b53;
}

.proto-consent-text,
.proto-check-card label,
.proto-check-card .proto-check-text {
  color: #1d2430;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}

.proto-consent-text a,
.proto-check-card a {
  color: var(--proto-red-strong);
  text-decoration: underline;
}

.proto-onboarding-main,
.proto-onboarding {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.proto-onboarding-icon {
  margin-bottom: 18px;
}

.proto-onboarding-icon i,
.proto-onboarding .bi {
  font-size: 104px;
  color: #f05b53;
  line-height: 1;
}

.proto-onboarding-title,
.proto-onboarding h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #111a2c;
  line-height: 1.15;
}

.proto-onboarding-text,
.proto-onboarding p {
  margin: 10px auto 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 1.45;
  color: #5f7290;
}

.proto-auth-alert .alert {
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.proto-auth-input-wrap .fv-control-feedback,
.proto-auth-input-wrap .form-control-feedback,
.proto-input-wrap .fv-control-feedback,
.proto-input-wrap .form-control-feedback {
  top: 50% !important;
  right: 12px !important;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  z-index: 6;
  pointer-events: none;
}

.has-error .proto-auth-input,
.has-error .proto-input,
.has-error .proto-select,
.has-error .proto-textarea,
.proto-auth-input.is-invalid,
.proto-input.is-invalid,
.proto-select.is-invalid,
.proto-textarea.is-invalid {
  border-color: #ef4d5b;
}

@media (max-width: 600px) {
  body.proto-auth-page,
  body.bg-login {
    padding: 10px;
  }

  .proto-auth-shell {
    min-height: calc(100vh - 20px);
    padding: 0;
    align-items: stretch;
  }

  .proto-auth-login,
  .proto-recover-wrap,
  .proto-activate-wrap,
  .proto-onboarding-wrap {
    max-width: 100%;
  }

  .proto-recover-wrap {
    border-radius: 26px;
    min-height: calc(100vh - 20px);
    padding: 22px 18px;
  }

  .proto-help-captcha-row {
    grid-template-columns: 1fr;
  }

  .proto-activate-actions,
  .proto-activation-actions {
    gap: 8px;
  }

  .proto-onboarding-title,
  .proto-onboarding h2 {
    font-size: 26px;
  }

  .proto-onboarding-icon i,
  .proto-onboarding .bi {
    font-size: 90px;
  }

  .proto-onboarding-text,
  .proto-onboarding p,
  .proto-recover-desc {
    font-size: 14px;
  }
}
