@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
header {
  width: 100%;
  color: white;
}

.header-top {
  width: 100%;
  height: 70px;
  padding: 6px 10px;
  background-color: #667788;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .left {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.header-top .left img {
  height: 100%;
  width: auto;
}
.header-top .left .slogan {
  font-weight: 300;
  font-size: 20px;
}
.header-top .right {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-top .right .select-currency {
  color: white;
  background-color: rgba(17, 51, 85, 0.3);
  border: 1px solid white;
}
.header-top .right .cart {
  color: white;
}
.header-top .right .login-icon {
  color: white;
  cursor: pointer;
  width: 1rem;
}

.header-bottom {
  background-color: #334455;
  width: 100%;
  height: 35px;
  padding: 0px 10px;
}
.header-bottom ul {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-bottom ul li {
  padding: 5px 25px;
  list-style: none;
}
.header-bottom ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

@media only screen and (max-width: 700px) {
  .header-top {
    width: 100%;
    height: auto;
    padding: 6px 10px;
    background-color: #667788;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-top .left {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-top .left img {
    height: 3rem;
  }
  .header-top .left .slogan {
    font-weight: 300;
    font-size: 20px;
  }
  .header-top .right {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .header-top .right .select-currency {
    color: white;
    background-color: rgba(17, 51, 85, 0.3);
    border: 1px solid white;
  }
  .header-top .right .cart {
    color: white;
  }
  .header-bottom {
    background-color: #334455;
    width: 100%;
    height: auto;
    padding: 0px 10px;
  }
  .header-bottom ul {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .header-bottom ul li {
    padding: 5px 25px;
    list-style: none;
  }
  .header-bottom ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
  }
}
.main {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.side-menu label {
  font-weight: 700;
  color: #aaa;
}
.side-menu input {
  padding: 2px 4px;
}
.side-menu input[type=submit] {
  font-weight: 800;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #113355;
}

.side-menu-list ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 3px 8px;
  color: #113355;
  border-left: 4px solid #ddd;
}

.content {
  width: 1100px;
  padding: 0 10px;
}

@media only screen and (max-width: 700px) {
  .main {
    width: 100%;
    padding: 10px;
    display: block;
  }
  .side-menu {
    display: none;
  }
  .content {
    max-width: 1100px;
    width: 100%;
    padding: 0 10px;
  }
}
.slideshow-container {
  max-width: 1100px;
  position: relative;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.slideshow-container .prev,
.slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgba(0, 130, 255, 0.9019607843);
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  color: #0084ff;
}

.dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  background: #666;
  background: rgba(30, 60, 150, 0.6);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  color: rgba(0, 130, 255, 0.9019607843);
}

.active,
.dot:hover {
  background-color: rgba(0, 130, 255, 0.9019607843);
}

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

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 700px) {
  .slideshow-container .prev,
  .slideshow-container .next {
    font-size: 10px;
  }
}
.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.home-product-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  padding: 10px 2px;
}

@media only screen and (max-width: 700px) {
  .col-2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.banner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.product-series-table a {
  text-decoration: none;
  font-size: 20px;
  color: #0062a0;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 0;
}

.product-card-carousel .container {
  position: relative;
  width: 90%;
  margin-right: auto;
  box-shadow: 2px 2px 5px #888;
  /* Position the "next button" to the right */
  /* On hover, add a black background color with a little bit see-through */
}
.product-card-carousel .container .mySlides {
  display: none;
  width: 100%;
  height: 40vh;
  padding: 0rem;
}
.product-card-carousel .container .mySlides img {
  display: block;
  width: 80%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.product-card-carousel .container .prev,
.product-card-carousel .container .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #0062a0;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.product-card-carousel .container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.product-card-carousel .container .prev:hover,
.product-card-carousel .container .next:hover {
  background-color: rgba(0, 99, 160, 0.1529411765);
}
.product-card-carousel .container .row {
  width: 100%;
  /* Six columns side by side */
}
.product-card-carousel .container .row .column {
  width: 100%;
  padding: 0.5rem;
  float: left;
  width: 20%;
  /* Add a transparency effect for thumnbail images */
}
.product-card-carousel .container .row .column img {
  width: 100%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-carousel .container .row .column .demo {
  opacity: 0.6;
}
.product-card-carousel .container .row .column .active,
.product-card-carousel .container .row .column .demo:hover {
  background-color: white;
  opacity: 1;
}
.product-card-carousel .container .row:after {
  content: "";
  display: table;
  clear: both;
}

.product-card-details {
  font-size: 14px;
}
.product-card-details ul ul {
  padding: 0 1rem;
  list-style: disc;
}
.product-card-details p {
  font-size: 14px;
  color: rgb(68, 68, 68);
  font-weight: 400;
  line-height: 21px;
}
.product-card-details li {
  font-size: 14px;
  color: rgb(68, 68, 68);
  font-weight: 400;
  line-height: 21px;
}
.product-card-details img {
  width: 1rem;
}

@media only screen and (max-width: 700px) {
  .product-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 1rem;
  }
  .product-card-carousel .container {
    position: relative;
    width: 100%;
    margin-right: auto;
    box-shadow: 2px 2px 5px #888;
    /* Position the "next button" to the right */
    /* On hover, add a black background color with a little bit see-through */
  }
  .product-card-carousel .container .mySlides {
    display: none;
    width: 100%;
    height: 40vh;
    padding: 0rem;
  }
  .product-card-carousel .container .mySlides img {
    display: block;
    width: 80%;
    height: 90%;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
  .product-card-carousel .container .prev,
  .product-card-carousel .container .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #0062a0;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-select: none;
  }
  .product-card-carousel .container .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .product-card-carousel .container .prev:hover,
  .product-card-carousel .container .next:hover {
    background-color: rgba(0, 99, 160, 0.1529411765);
  }
  .product-card-carousel .container .row {
    width: 100%;
    /* Six columns side by side */
  }
  .product-card-carousel .container .row .column {
    width: 100%;
    padding: 0.5rem;
    float: left;
    width: 20%;
    /* Add a transparency effect for thumnbail images */
  }
  .product-card-carousel .container .row .column img {
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-card-carousel .container .row .column .demo {
    opacity: 0.6;
  }
  .product-card-carousel .container .row .column .active,
  .product-card-carousel .container .row .column .demo:hover {
    background-color: white;
    opacity: 1;
  }
  .product-card-carousel .container .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-card-details img {
    width: 1rem;
  }
}
.model-list-box .model-list-title {
  background-color: #667788;
  padding: 4px;
}
.model-list-box .model-list-title button {
  color: rgba(102, 119, 136, 0.8);
  background-color: white;
  border: none;
  padding: 4px 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.model-list-box .model-list-title .active {
  color: #113355;
}

.model-list-table td {
  color: #667788;
}
.model-list-table p {
  color: #667788;
}
.model-list-table .model-image {
  width: 20%;
}
.model-list-table .model-details {
  width: 50%;
}
.model-list-table .model-price {
  width: 10%;
  font-size: 14px;
}
.model-list-table .add-to-quotation {
  width: 20%;
  font-size: 14px;
}
.model-list-table .add-to-quotation label {
  color: #667788;
}
.model-list-table .add-to-quotation input[type=number] {
  width: 60px;
  margin-top: 5px;
}
.model-list-table .add-to-quotation input[type=submit] {
  font-weight: 700;
  padding: 2px 4px;
  margin-top: 10px;
}

.w-25 {
  width: 25% !important;
}

.accessories-list-table td,
.options-list-table td {
  color: #667788;
  padding: 8px;
}
.accessories-list-table p,
.options-list-table p {
  color: #667788;
}
.accessories-list-table .model-details,
.options-list-table .model-details {
  width: 60%;
}
.accessories-list-table .model-price,
.options-list-table .model-price {
  width: 20%;
  font-size: 14px;
}
.accessories-list-table .add-to-quotation,
.options-list-table .add-to-quotation {
  width: 20%;
  font-size: 14px;
}
.accessories-list-table .add-to-quotation label,
.options-list-table .add-to-quotation label {
  color: #667788;
}
.accessories-list-table .add-to-quotation input[type=number],
.options-list-table .add-to-quotation input[type=number] {
  width: 60px;
  margin-top: 5px;
}
.accessories-list-table .add-to-quotation input[type=submit],
.options-list-table .add-to-quotation input[type=submit] {
  font-weight: 700;
  padding: 2px 4px;
  margin-top: 10px;
}

.datadownloads-list-table {
  padding: 6px 12px;
  border: 1px solid #ccc;
}
.datadownloads-list-table table {
  padding: 6px 12px;
  border: 1px solid #ccc;
}
.datadownloads-list-table h3 {
  color: #113355;
}
.datadownloads-list-table td a {
  font-size: 14px;
  color: #0062a0;
}
.datadownloads-list-table tr {
  border: none;
}

.tabcontent {
  width: 100%;
  display: none;
  border-top: none;
}

#displayAddToQuotationMessageBox {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.089);
  z-index: 9999;
}
#displayAddToQuotationMessageBox a {
  text-decoration: none;
}
#displayAddToQuotationMessageBox #displayAddToQuotationMessageBoxContent {
  position: relative;
  background-color: white;
  width: 50%;
  margin: auto;
  margin-top: 10%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
}
#displayAddToQuotationMessageBox #displayAddToQuotationMessageBoxTitle {
  width: 100%;
  color: #2698f2;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 30px 10px 20px;
  text-align: center;
  text-transform: uppercase;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxClose {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxDescription {
  color: #aeaaa5;
  font-size: 14px;
  font-weight: 600;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxDescription b {
  color: #777471;
  font-weight: 800;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxButtons {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxButtons .displayAddToQuotationMessageButtons {
  background-color: #0062a0;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
}
#displayAddToQuotationMessageBox .displayAddToQuotationMessageBoxButtons .displayAddToQuotationMessageButtons a {
  color: white;
}

.quotation-table table {
  font-size: 14px;
}
.quotation-table table thead {
  background-color: #f7f7f7;
}
.quotation-table table thead th {
  padding: 5px 10px;
}
.quotation-table table td {
  padding: 5px 10px;
}
.quotation-table input[type=submit] {
  float: right;
  background-color: #667788;
  border: none;
  margin-top: 1rem;
  padding: 6px 10px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 3px;
}
.quotation-table .remove-button {
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.quotation-table .remove-button a {
  color: #a00000;
}

footer {
  background-color: #334455;
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  gap: 2rem;
  padding: 1rem;
  margin-top: 1rem;
}
footer div {
  color: white;
}
footer a {
  color: #bcf;
}
footer img {
  width: 30px;
}

.request-quotation-form {
  font-size: 14px;
}
.request-quotation-form .form-group {
  background-color: #dddddd;
  padding: 4px;
  margin-top: 4px;
}
.request-quotation-form input,
.request-quotation-form select {
  width: 300px;
}
.request-quotation-form button {
  background-color: #667788;
  border: none;
  margin-top: 1rem;
  padding: 6px 10px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.bg-color {
  background-color: #f1f5fa;
  padding: 4px 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3rem;
}

.btn {
  background-color: #667788;
  border: none;
  margin-top: 1rem;
  padding: 6px 10px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

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

.category-description-box .column {
  padding: 2rem;
}
.category-description-box .column h2 {
  background-color: white;
  font-size: 1rem;
  color: #113355;
  font-weight: 700;
}
.category-description-box .column ul {
  list-style-position: outside;
  list-style: disc;
}

.category-content {
  padding-top: 1rem;
}

.product-card-description h3 {
  background-color: white;
  font-size: 1rem;
  color: #113355;
  font-weight: 700;
}
.product-card-description ul {
  list-style: disc;
}
.product-card-description ul ul {
  padding-left: 2rem;
  list-style: disc;
}
.product-card-description .file-icon {
  width: 1rem;
}/*# sourceMappingURL=style.css.map */