@charset "UTF-8";

:root {
  --topnav-height: 8vh;
  --footer-height: 8vh;
  --topnav-z-index: 1000;
  --footer-z-index: 1000;
  --menu-z-index: 3000;
}

html, body {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
  display: none;
}

.h-fit {
  height: fit-content !important;
}

@media (min-width: 600px) {
  .h-fit {
    /* height: fit-content !important; */
    min-height: 70% !important;
  }
}

.absolute-text-center {
  position: absolute;
  top: 45%;
}

.ratio-1 {
  aspect-ratio: 1 !important;
}

.fs-7 {
  font-size: 0.875rem !important;
}

.fs-8 {
  font-size: 0.75rem !important;
}

.fs-9 {
  font-size: 0.625rem !important;
}

.fs-10 {
  font-size: 0.5rem !important;
}

.btn-mobile {
  transition: none !important;
  box-shadow: none !important;
}

.btn-mobile:hover {
    box-shadow: none !important;
    transform: translateY(0px) !important;
}

.btn-mobile:focus {
  box-shadow: none !important;
  transform: translateY(0px) !important;
}

.mobile-rounded-header-container {
  background-color: white;
  border: solid 3px #c5003e;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50%;
  height: 60px;
  margin: 0.5rem;
  padding: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.125rem;
  text-align: center;
}

.mobile-pagination-buttons-container {
  background-color: white;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.mobile-copy-small-button {
  background-color: #E6E6E6;
  border-color: #E6E6E6;
  aspect-ratio: 1 !important;
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 100rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.mobile-copy-small-button img {
  width: 50%;
  height: 50%;
  position: relative !important;
  line-height: 0 !important;

}

/* P A G I N A T I O N */

.mobile-pagination {
  width: 100%;
  height: 75%;
}

.mobile-pagination-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1;
}

.mobile-pagination-button button {
  color:#636D80 !important;
  background-color: white !important;
  border: solid 1px #636D80 !important;
  border-radius: 50% !important;
  height: 24px !important;
  width: auto !important;
  aspect-ratio: 1;
  margin: 0 !important;
}

@media (min-width: 600px) {
  .mobile-pagination-button button {
    height: 28px !important;
  }
}

.mobile-pagination-button button.selected {
  background-color: #c5003e !important;
  color:white !important;
  border: solid 1px #c5003e !important;
}

.mobile-pagination-button button.navigation {
  background-color: #E6E6E6 !important;
  border: solid 1px #636D80 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-pagination-button button p {
  margin-bottom: 0 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  transform: translateY(1px);
}

.mobile-pagination-button button img {
  height: 55% !important;
  object-fit: contain;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0px !important;
}

/* Mobile base layout */

.mobile-topnav {
  position: fixed;
  top: 0;
  height: var(--topnav-height);
  max-height: var(--topnav-height);
  z-index: var(--topnav-z-index);
}

.mobile-topnav-logo {
  min-height: 2vh;
  max-height: 4vh;
}

.mobile-content {
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 600px) {
  .mobile-content {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.mobile-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  height: var(--footer-height);
  max-height: var(--footer-height);
  z-index: var(--footer-z-index);
}

.mobile-footer-content {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

@media (min-width: 600px) {
  .mobile-footer-content {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.mobile-content-with-topnav {
  padding-top: var(--topnav-height);
}

.mobile-content-with-footer {
  padding-bottom: var(--footer-height);
}

/* Mobile menu */

.mobile-menu {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  z-index: var(--menu-z-index);
  background-color: #c5003e;
  color: white;
  overflow-y: hidden;
  flex: 1 1 auto;
}

.mobile-menu-close-button {
  aspect-ratio: 1;
  max-width: 130px;
}

.mobile-menu-header {
  height: var(--topnav-height);
  max-height: var(--topnav-height);
  z-index: var(--topnav-z-index);
}

.mobile-menu-content {
  display: flex;
  flex: 1;
  position: relative;
}

.mobile-menu-content h2 {
  font-size: 1.5rem;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.mobile-menu-li-item, .mobile-menu-li-item-sm, .mobile-menu-li-item-md {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: inherit;
  margin-bottom: 1rem;
}

.mobile-menu-li-item a {
  font-size: 1.5rem;
}

.mobile-menu-li-item img {
  max-height: 2rem;
  max-width: 2rem;
  aspect-ratio: 1;
  object-fit: contain;
  margin-right: 0.75rem;
}

.mobile-menu-li-item-sm a {
  font-size: 1rem;
}

.mobile-menu-li-item-sm img {
  max-height: 1.5rem;
  max-width: 1.5rem;
  aspect-ratio: 1;
  object-fit: contain;
  margin-right: 0.75rem;
}

.mobile-menu-li-item-md a {
  font-size: 1.25rem;
}

.mobile-menu-li-item-md img {
  max-height: 1.75rem;
  max-width: 1.75rem;
  aspect-ratio: 1;
  object-fit: contain;
  margin-right: 0.75rem;
}

.btn-close-menu {
  background-color: transparent;
  box-shadow: none !important;
}

.btn-mobile-back {
  aspect-ratio: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.btn-mobile-back img {
  aspect-ratio: 1;
  max-width: 60%;
  max-height: 60%;
  transform: translateX(-5%);
  object-fit: scale-down;
}

.btn-mobile-datasheet {
  aspect-ratio: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.btn-mobile-datasheet img {
  aspect-ratio: 1;
  max-width: 40%;
  max-height: 40%;
  object-fit: contain;
}

.btn-square, .btn-circle, .btn-close-menu {
  min-height: 5vh;
  max-height: 5vh;
  aspect-ratio: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.btn-circle {
  border-radius: 50%;
}

.btn-close-menu img {
  max-width: 100%;
  max-height: 100%;
}

.btn-circle img, .btn-square img {
  max-width: 45%;
  max-height: 45%;
}

.btn-bg-white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Login */

.mobile-login-body-container{
  height:83.5%;
}

.mobile-login-header-container{
  position: sticky; 
  top: 0;
  height: 12.5%;
  background-image: url("/img/icons/mobile-header-plain.png");
  background-size: 100%;
}

.mobile-login-logo{
  height: 35%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.mobile-login-title{
  width: auto;
  height: auto;
  margin: 0 auto;
  position: relative;
  text-align: center !important;
  padding-bottom:12%;
}

.mobile-login-footer-container{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4%;
}

.mobile-login-font{
  font-size: 1rem !important;
}

.mobile-login-font-small{
  font-size: 0.7rem !important;
  line-height: 0.7rem;
}

.mobile-login-button{
  border-radius: 5rem;
  line-height: 0.7rem;
}

.mobile-login-form-border{
  border-color: #636D80;
}

.mobile-login-form-container{
  width:90%
}

.mobile-login-form{
  padding-bottom:12%;
}

.mobile-page-title{
  font-size: 4rem !important;
  color: #c5003e;
  margin-bottom: 0 !important;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}

.mobile-login-link{
  text-align: center;
}

/* N E W S */
.mobile-news-title{
  font-size: 1.5rem !important;
  color: #c5003e;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
.mobile-news-button-container{
  padding-bottom: 3%;
}
.mobile-news-button{
  border-radius: 5rem;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border-radius: 1rem;
}
.mobile-news-icon{
  height: 1.5rem;
}

.mobile-news-form-container{
  width:50%;
}


/* Dashboard */

.mobile-dashboard-cards-container {
  position: relative;
  bottom: 0;
}

.mobile-dashboard-category-button-container {
  flex: 1;
  justify-content: center;
  align-content: center;
  aspect-ratio: 1 unset !important;
  height: 100% !important;
}

.mobile-dashboard-category-button-container.checked {
  flex: 2;
  aspect-ratio: unset !important;
  height: 100% !important;
}

.mobile-dashboard-category-button-container input {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
}

.mobile-dashboard-category-selector-label {
  aspect-ratio: 1;
  border-radius: 100rem !important;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin: 0px auto !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1rem;
  color: #636d80;
  background-color: #e6e6e6;
  height: 100%;
}

.mobile-dashboard-category-selector-label img {
  max-width: 55%;
  max-height: 55%;
  aspect-ratio: 1;
  object-fit: contain;
}

.mobile-dashboard-category-selector-label.checked {
  aspect-ratio: auto;
  flex: 3;
  background-color: #c5003e;
  color: white;
}

.mobile-dashboard-category-selector-label.checked p {
  font-size: 0.55rem;
  text-align: center;
}

.mobile-dashboard-category-selector-label:not(.checked) p {
  display: none;
}

.mobile-dashboard-category-selector-vr {
  display: inline-block;
  align-self: stretch;
  width: 3px;
  margin: 0.25rem 0.15rem;
  background-color: #c5003e;
  border-radius: 100rem;
}

.mobile-dashboard-form-factors-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-width: 40%;
  max-width: 100%;
  min-height: 20px;
}

.mobile-dashboard-form-factor-selector {
  /*max-height: 28px;*/
  max-width: 40% !important;
  width: fit-content;
  margin: 0 0.125rem;
  margin-bottom: 0.5rem;
}

.mobile-dashboard-form-factor-selector button {
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  border-radius: 100rem;
  color: #636D80;
  background-color: #E6E6E6;
  display: flex !important; 
  align-items: center !important;
}

.mobile-dashboard-card {
  max-width: 75%;
  max-height: 60vh;
}

.mobile-dashboard-card-left {
  border-start-start-radius: 1rem !important;
  border-end-start-radius: 1rem !important;
  border-end-end-radius: 0rem !important;
  border-start-end-radius: 0rem !important;
}

.mobile-dashboard-card-right {
  border-start-start-radius: 0rem !important;
  border-end-start-radius: 0rem !important;
  border-end-end-radius: 1rem !important;
  border-start-end-radius: 1rem !important;
}

.mobile-new-product-label {
  font-size: 0.625rem;
  position: absolute;
  top: 34px;
  left: -10px;
  border-start-start-radius: 50rem;
  border-end-start-radius: 50rem;
  border-end-end-radius: 100rem;
  border-start-end-radius: 100rem;
}

.mobile-dashboard-card-logo {
  max-width: 70%;
  max-height: 440px
}

.mobile-dashboard-card-supplier-logo {
  max-width: 50%;
}

.mobile-dashboard-card-image {
  min-height: 200px;
}

.mobile-dashboard-card-image img {
  width: 90%;
  height: 90%;
  aspect-ratio: 1;
  object-fit: scale-down;
  margin: auto;
}

.mobile-dashboard-card-image p {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #676767 !important;
  position: relative;
  top: -1.5rem !important;
}

.mobile-dashboard-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #636D80;
}

.mobile-dashboard-card-price-category-btn {
  aspect-ratio: 1;
}

.mobile-dashboard-card-price-category-btn > p {
  line-height: inherit !important;
  font-weight: 700 !important;
  font-size: 0.75rem;
  /* margin: 10px 0px; */
}

.mobile-dashboard-card-price-category-btn.disabled {
  background-color: #D4D4D4 !important;
  color: #636D80 !important;
}


/* C A R D */

.mobile-custom-shadow {
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.25) !important; /* x y blur spread color */
}

#copy-img{
  margin-left: 10px;
}

.mobile-card-description-container{
  background-color:#D4D4D4;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.mobile-card-desc-title{
  font-size:0.85rem;
  font-weight:700;
}

.mobile-card-desc{
  line-height:1rem;
}

.mobile-search-card-container{
  border-bottom-right-radius: 1rem; 
  border-bottom-left-radius: 1rem;
  background-color:#F2F2F2
}

.mobile-search-card-left{
  border-right: 1.5px solid; 
  border-color:#D4D4D4;
}

.mobile-search-card-right{
  border-left: 1.5px solid; 
  border-color:#D4D4D4;
}
.mobile-search-card-txt{
  font-size:0.85rem;
}

/* S E A R C H */
.mobile-search-form {
  display:flex;
  flex-direction:row;
}

.mobile-search-input {
  flex-grow:2;
  border:none;
}

.mobile-search-input:focus {
  outline: none;
}

.mobile-search-button {
  height: 5vh;
  width: 5vh;
  background-color: white;
  border-top-left-radius: 100rem; 
  border-bottom-left-radius: 100rem;
  text-align: center;
}

.mobile-search-button img {
  height: 50%;
  width: 50%;
  aspect-ratio: 1;
}

.mobile-custom-search{
  height: 5vh;
  border-radius: 100rem;
  outline: 0;
  border: 2px solid white;
  width: 100%;
}

#expand-container {
  overflow: hidden;
}

#expand-contract {
  margin-top: -100%;
  transition: left .3s ease-in-out;
  -webkit-transition: left .3s ease-in-out;
}

#expand-contract.expanded {
  margin-top: 0;
}

.mobile-search-bar-container{
  display:flex;
  flex-direction:row;
}

#expand {
  animation: searchExpand .5s forwards;
}

@keyframes searchExpand {
  100% { flex: 1;}
}

/* S E A R C H  F I L T E R S */


.mobile-rounded-header-container-search {
  background-color: white;
  border: solid 3px #c5003e;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  height: 60px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  text-align: center;
}

.mobile-rounded-header-container-search img {
  height: 50%;
}

.mobile-search-filters-containers {
  width: 100%;
  border: solid 3px #c5003e;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7vh;
  margin: 0.5rem;
  padding: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.125rem;
  text-align: center;
}

.mobile-search-filter-button {
  border-radius: 5rem;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border-radius: 1.5rem !important;
  height:65%;
  display: flex;
  font-size: 0.875rem !important;
  justify-content: center;
  align-items: center;
}

.mobile-search-category-button-container {
  flex: 1;
  justify-content: center;
  align-content: center;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

.mobile-search-category-button-container.checked {
  flex: 1;
  height: 100% !important;
  display: flex;
}

.mobile-search-sorting-button {
  border:none;
  height:100%;
  width:100%;
  background-color: transparent !important;
}

.mobile-rotate-img {
  transform: rotate(180deg) !important;
}

.mobile-search-category-selector-label {
  border-radius: 100rem !important;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  background-color:#E6E6E6;
}

.mobile-search-category-selector-label img {
  height: 90%;
  object-fit: contain;
  display: none;
}

.mobile-search-category-selector-label.checked img {
  display: inline;
}

.mobile-search-category-selector-label.checked {
  background-color: #c5003e;
  color: white !important;
}

.mobile-search-category-selector-label.checked p {
  text-align: center;
  text-transform: uppercase;
}

.mobile-hidden{
  visibility: hidden;
}

.mobile-dashboard-detail-card > .card-header {
  margin: 0;
}

.mobile-dashboard-detail-card > .card-header > div, .mobile-dashboard-detail-card > .card-body > div {
  padding: 0.75rem !important;
}

.mobile-dashboard-detail-card > .card-body > .card-body-left {
  border-right: 2px solid #D4D4D4;
}

.mobile-dashboard-detail-card > .card-body > .card-body-right {
  border-left: 2px solid #D4D4D4;
}

/* DETAILS VIEW */

.mobile-carousel-control-prev, .mobile-carousel-control-next {
  position: absolute;
  top: 40%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem !important;
  height: 2.5rem !important;
  aspect-ratio: 1 !important;
  opacity: 1 !important;
  margin: 0;
  padding: 0;
}

.mobile-carousel-control-prev img, .mobile-carousel-control-next img {
  width: 45% !important;
  height: 45% !important;
}

.mobile-carousel-control-prev {
  left: 0;
  margin-left: 1.5rem;
}

.mobile-carousel-control-next {
  right: 0;
  margin-right: 1.5rem;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 2rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  padding: 0;
  margin-right: 2px;
  margin-left: 2px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #E6E6E6;
  background-clip: padding-box;
  box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.25) !important; /* x y blur spread color */
  border: 0;
  opacity: 1;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #c5003e;
}

  /* P R O D U C T  M A I N  C A R D */

.mobile-main-product-card {
  height: 215px;
}

.mobile-main-product-card-hr{
  height: 2px !important;
}

.mobile-detail-main-card-image {
  max-height: 150px;
  aspect-ratio: 1 !important;
  margin: 0;
}

.mobile-detail-main-card-image img {
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: scale-down;
  margin: auto;
}

/* D E T A I L S  B U T T O N S */

.mobile-details-filters-button {
  font-weight: 700 !important;
  font-size: .75rem !important;
  /*max-height: 25px;*/
  height: 100% !important;
  width: fit-content;
  border-radius: 100rem;
  color: #636D80;
  background-color: #E6E6E6;
  display: flex !important; 
  align-items: center !important;
  justify-content: center !important;
}

.mobile-details-filters-button-number {
  font-weight: 700;
  font-size: .50rem;
  height: 18px;
  width: 18px;
  border-radius: 100rem;
  color: #c5003e;
  background-color: #fff;
  display: flex !important; 
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.mobile-details-filters-button-number p {
  margin-bottom: 0 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  transform: translateY(1px);
}

.mobile-detail-search-type {
  height: 2.5rem;
  width: fit-content;
  background-color: #c5003e;
  border-top-right-radius: 100rem; 
  border-bottom-right-radius: 100rem;
  text-align: center;
}

.mobile-detail-search {
  height: 2.5rem;
  outline: 0;
  border: 2px solid #c5003e;
  width: 100%;
  border-left:none;
}

.mobile-detail-search::placeholder {
  text-align: right; 
}

.mobile-detail-button {
  height: 2.5rem;
  width: 2.5rem;
  background-color: white;
  border-top-left-radius: 100rem; 
  border-bottom-left-radius: 100rem;
  text-align: center;
  border: 2px solid #c5003e;
  border-right: none;
}

.mobile-detail-button img {
  height: 50%;
  width: 50%;
  aspect-ratio: 1;
}

.mobile-details-filters-button-number-txt{
  transform: translateY(1px);
}