/* variables.css */
:root {
  --primary-color: #005bc8;
  --secondary-color: #0d0d0e;
  --background-color-light-gray: #f0f2f4;
  --color-black: #000000;
  --color-white: #fff;
  --alert-color: #da3e00;
  --info-color: #00851d;
  --warn-color: #ffaf11;
  --divider-color: #ccc;
}


/* index.css */
html,
body,
h1,
h4,
h6,
p {
  margin: 0px;
  padding: 0px;
}

* {
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--background-color-light-gray);
}

.nav-top {
  height: 3rem;
  background-color: var(--primary-color);
}

.nav-top-black {
  height: 3rem;
  background-color: var(--secondary-color);
}

.nav-bottom {
  background-color: var(--background-color-light-gray);
}

.nav-bottom-text {
  font-size: 10px;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 3rem;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.hero-container {
  background-color: var(--primary-color) !important;
  color: var(--color-white);
}
.custom-hero-img {
  height: 180px;
}

/* ========================= Don't change below css it is linked to js code ---============================ */

.modelImage {
  display: none;
  max-width: 100%!important;
}

#flexiMessage {
  display: none;
}

#haMessage {
  display: none;
}

#wirelessNote {
  display: none;
}

#Gen2Gen1NotAllowedNote {
  display: none;
}

/*============================================================================================================*/

.section_compareModels {
  min-height: 70vh;
}

.text-small {
  font-size: 14px;
}

.text-primary {
  color: var(--primary-color);
}

.underline1 {
  text-decoration: underline dotted;
    text-decoration-color: var(--primary-color); /* Change the color */
    text-decoration-thickness: 3px; /* Adjust the thickness */
}

a {
  text-decoration: none!important;
}

.custom-modal .modal-dialog {
  width: 50%; 
  min-width: 50%;
  background-color: var(--background-color-light-gray)!important;
}




.flexiModuleImg {
  height: 120px;
}


.custom-card-v2 {
  display: block;
  padding: 12px;
  box-shadow: 0px 0px 6px 0px #0000001a;
  border-radius: 5px;
  font-size: 16px;
  background-color: rgba(0, 91, 200, 0.1);
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.custom-card-v2-warn {
  display: block;
  padding: 12px;
  box-shadow: 0px 0px 6px 0px #0000001a;
  border-radius: 5px;
  font-size: 16px;
  background: var(--warn-color);
  color: var(--text-color);
  margin-bottom: 10px;
}

.custom-card {
  display: block;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #0000001a;
  box-shadow: 0px 0px 6px 0px #0000001a;
  border-radius: 5px;
}

.custom-divider {
  border: 0;
  height: 1px;
  background: var(--divider-color);
  margin: 10px;
}

.custom-height {
  height: auto!important;
}

.custom-alert-info,
.custom-alert-green,
.custom-alert-red {
  padding: 8px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
}

.custom-alert-info {
  background-color: rgba(0, 91, 200, 0.1);
  color: var(--primary-color);
}

.custom-alert-green {
  background-color: rgba(134, 244, 96, 0.2);
  color: var(--info-color);
}

.custom-alert-red {
  background-color: rgba(218, 62, 0, 0.1);
  color: var(--alert-color);
}

.custom-info-message-sm {
  background-color: rgba(0, 91, 200, 0.1);
  color: var(--primary-color);
  padding: 4px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}

.custom-warn-message-sm {
  background-color: rgba(218, 62, 0, 0.1);
  color: var(--alert-color);
  padding: 4px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}

.custom-select-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.custom-select {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border: 3px solid #696a6b;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
}
.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-black);
  transform: translateY(-50%);
}
.custom-select.open::after {
  border-top: none;
  border-bottom: 5px solid #000;
}
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border: 1px solid #ced4da;
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.custom-options.open {
  display: block;
}
.custom-option {
  padding: 0.375rem 0.75rem;
  cursor: pointer;
}
.custom-option:hover {
  background-color: var(--background-color-light-gray);
}




@media (max-width: 600px) {
  .custom-modal .modal-dialog {
    width: 100%; 
    min-width: 100%;
    background-color: var(--background-color-light-gray)!important;
  }
  
}