* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen,
    ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial,
    sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  height: 100%;
}
body {
  position: relative;
  min-height: 100%;
  color: #555555;
  background-color: #ffffff;
  margin: 0;
}
/* h1,
h2,
h3,
h4,
h5 {
  color: #394352;
} */
.content-wrapper {
  /* width: 1050px; */
  margin: 0 auto;
}
.my-5 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.px-4 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
header {
  border-bottom: 1px solid #eeeeee;
}
header .content-wrapper {
  display: flex;
}
header h1 {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 20px;
  margin: 0;
  padding: 24px 0;
}
header nav {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: center;
  align-items: center;
}
header nav a {
  text-decoration: none;
  color: #555555;
  padding: 10px 10px;
  margin: 0 10px;
}
header nav a:hover {
  color: #89111e !important;
}
header .link-icons {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
header .link-icons a {
  text-decoration: none;
  color: #394352;
  padding: 0 10px;
}
header .link-icons a:hover {
  color: #4e5c70;
}
header .link-icons a i {
  font-size: 28px;
}
header .link-icons a span {
  display: inline-block;
  text-align: center;
  background-color: #89111e !important;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 4px;
}
.nav.nav-tabs {
  margin-bottom: 25px;
  border-bottom: 0;
}
.personal-status {
  display: inline-block;
  padding: 10px;
  font-weight: 700;
}
.form-tabs .nav-link {
  color: #212529 !important;
}
.form-tabs .nav-link:hover {
  border: 1px solid transparent !important;
}
.form-tabs .nav-link.active {
  color: #89111e !important;
  border: 2px solid #89111e !important;
  border-radius: 5px !important;
}
.form-tabs sup {
  color: #89111e !important;
  font-size: 16px;
  font-weight: 700;
}
.mandatory-text {
  color: #89111e;
  font-size: 14px;
  font-weight: 600;
}
main .featured {
  display: flex;
  flex-direction: column;
  background-image: url(imgs/featured-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
main .featured h2 {
  display: inline-block;
  margin: 0;
  width: 1050px;
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman,
    serif;
  font-size: 68px;
  color: #ffffff;
  padding-bottom: 10px;
}
main .featured p {
  display: inline-block;
  margin: 0;
  width: 1050px;
  font-size: 24px;
  color: #ffffff;
}
main .recentlyadded h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.products {
    min-height: 68vh;
}
.product-img img {
  width: 100%;
  height: 100%;
}
main .recentlyadded .products,
main .products .products-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
main .recentlyadded .products .product,
main .products .products-wrapper .product {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}
main .recentlyadded .products .product img,
main .products .products-wrapper .product img {
  transform: scale(1);
  transition: transform 1s;
}
main .recentlyadded .products .product .name,
main .products .products-wrapper .product .name {
  display: block;
  color: #000;
  padding: 20px 0 2px 0;
  font-size: 18px;
  font-weight: 500 !important;
}
main .recentlyadded .products .product .price,
main .products .products-wrapper .product .price {
  display: block;
}
main .recentlyadded .products .product .rrp,
main .products .products-wrapper .product .rrp {
  color: #bbbbbb;
  text-decoration: line-through;
}
main .recentlyadded .products .product:hover img,
main .products .products-wrapper .product:hover img {
  transform: scale(1.05);
  transition: transform 1s;
}
/* main .recentlyadded .products .product:hover .name,
main .products .products-wrapper .product:hover .name {
  text-decoration: underline;
} */
main > .product {
  display: flex;
  padding: 40px 0;
}
main > .product > div {
  padding-left: 15px;
}
main > .product h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 0;
  padding: 20px 0 10px 0;
}
main > .product .price {
  display: block;
  font-size: 22px;
  color: #999999;
}
main > .product .rrp {
  color: #bbbbbb;
  text-decoration: line-through;
  font-size: 22px;
  padding-left: 5px;
}
main > .product form {
  display: flex;
  flex-flow: column;
  margin: 40px 0;
}
main > .product form input[type="number"] {
  width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}
main > .product form input[type="submit"] {
  background: #4e5c70;
  border: 0;
  color: #ffffff;
  width: 400px;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
main > .product form input[type="submit"]:hover {
  background: #434f61;
}
main > .products h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}
main > .products .buttons {
  text-align: right;
  padding-bottom: 40px;
}
main > .products .buttons a {
  display: inline-block;
  text-decoration: none;
  margin-left: 5px;
  padding: 12px 20px;
  border: 0;
  background: #4e5c70;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}
main > .products .buttons a:hover {
  background: #434f61;
}
main .cart h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}
main .cart table {
  width: 100%;
}
main .cart table thead td {
  padding: 30px 0;
  border-bottom: 1px solid #eeeeee;
}
main .cart table thead td:last-child {
  text-align: right;
}
main .cart table tbody td {
  padding: 5px 0;
  border-bottom: 1px solid #eeeeee;
}
main .cart table tbody td:last-child {
  text-align: right;
}
main .cart table .img {
  width: 80px;
}
main .cart table .remove {
  color: #b80f0a;
  font-size: 14px;
  font-weight: 600;
  padding-top: 3px;
  text-decoration: underline;
}
main .cart table .remove:hover {
  text-decoration: underline;
}
main .cart table .price {
  color: #999999;
  font-size: 20px;
}
main .cart table a {
  text-decoration: none;
  color: #555555;
}
main .cart table .delivery-text {
  font-size: 18px;
  font-weight: 600;
}
main .cart table .delivery-price {
  color: #89111e;
  font-size: 20px;
  font-weight: 700;
}
main .cart table .fa-solid {
  color: #394352;
  font-size: 26px;
  margin-left: 28px;
}

main .cart table input[type="number"] {
  width: 68px;
  padding: 10px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}
main .cart .subtotal {
  text-align: right;
  padding: 40px 0;
}
main .cart .subtotal .text {
  padding-right: 40px;
  font-size: 22px;
}
main .cart .subtotal .price {
  font-size: 22px;
  color: #999999;
}
main .cart .buttons {
  text-align: right;
  padding-bottom: 40px;
}
main .cart .buttons input[type="submit"] {
  margin-left: 5px;
  padding: 12px 20px;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  letter-spacing: 0.7px;
}

main .cart .buttons input[type="submit"].btn-outline-secondary {
  border: 1px solid #434f61 !important;
}


main .cart .buttons input[type="submit"]:hover {
  background: #434f61;
}
main .placeorder h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}
main .placeorder p {
  text-align: center;
}
footer {
  /* position: absolute; */
  bottom: 0;
  border-top: 1px solid #eeeeee;
  padding: 20px 0;
  width: 100%;
}

/* CUSTOM STYLE */

.navbar-brand {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
}
.navbar-brand img {
  width: 100%;
  height: auto;
}

.product:hover > * {
  text-decoration: none;
}

.section-box {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  overflow: hidden;
  max-height: 450px;
}

.section-box button {
  display: none;
}

.section-box h2{
  font-size: 22px !important;
  font-weight: bold;
  position: relative;
  margin: 0 !important;
  border-bottom: 0 !important;
  transition: 0.5s !important;
}

.section-box:hover {
  box-shadow: 1px 1px 8px 2px rgb(0 0 0 / 20%);
  transition: 0.5s;
  cursor: pointer;
}

.section-box:hover h2 {
  display: none;
}

.section-box button {
  position: relative;
  bottom: -50px;
  display: block;
  width: 70%;
  font-size: 22px;
  margin: 28px auto;
  padding: 10px 15px;
  border-radius: 50px;
  color: #fff;
  background-color:#89111e;
  border: 0;
  transition: 0.5s;
}


.section-box:hover button {
  bottom: 5px;
}

.section-box-image {
  display: flex;
  align-items: center;
  min-height: 350px;
  text-align: center;
}

.section-box-image img {
  width: 100%;
  height: 100%;
}

.ssl-logo {
    display: inline-block;
    width: auto;
    margin-left: 25px;
}

.full-width {
  width: 100% !important;
} 

.navbar {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #f7f8fb;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
  padding-top: 15px !important;
}

.navbar .pull-right {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .pull-right p {
  margin-bottom: 0;
  font-size: 18px;
}

.navbar .pull-right p span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  color: #89111e;
  font-size: 22px;
}

.navbar-nav .nav-item {
  margin-right: 15px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #000 !important;
}
.navbar .pull-right .link-icons {
  justify-content: flex-start !important;
}

.navbar .pull-right .link-icons a {
  position: relative;
}

.navbar-nav .nav-link.active {
  color: #89111e !important;
}

span.fa-solid {
  font-family: "FontAwesome";
  color: #000;
}

.header {
  background-image: linear-gradient(#fff, #002780);
  padding: 25px 0 10px 0;
  margin-top: -7px;
}

.round-notice-wrapper {
  width: 100%;
  max-width: 400px;
}

.round-notice-wrapper h1 {
  font-size: 20px;
  letter-spacing: -0.8px;
  margin-bottom: 5px;
}

.home-wrapper {
  min-height: 70vh;
}

.round-notice {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 4px solid #889ac4;
  background-color: #fff;
  text-align: center;
  line-height: 90px;
  margin: 0 auto 15px;
  overflow: hidden;
}

.round-notice.flag {
  background-image: url("assets/images/steag_ro.png");
  background-size: contain;
}

.round-notice span {
  font-size: 40px;
  color: #305098;
}

.round-notice img {
  width: 80%;
  height: 80%;
}

.round-notice-wrapper p {
  margin-bottom: 5px;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.contact-wrapper {
    min-height: 84vh;
}

.legal-terms .go-back {
  margin: 15px 0 25px 0;
}

.legal-terms h1 {
  font-size: 30px;
  margin-bottom: 25px;
}

.legal-terms h2 {
  font-size: 24px;
  margin: 25px 0;
}

.legal-terms p,
.legal-terms ul li {
  font-size: 15px;
}

.price {
  color: #89111e !important;
  font-size: 24px;
  font-weight: 700;
}

.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 305px;
  min-height: 305px;
}

.image-wrapper img {
  width: 85%;
  height: 85%;
}

.card:hover {
  box-shadow: 1px 1px 8px 2px rgb(0 0 0 / 20%);
  transition: 0.5s;
}

/* PRODUCT */

.product-description {
  margin-bottom: 50px;
}

.product-detail form {
  display: flex;
  margin: 15px 0;
}

.product-detail form input {
  margin-right: 10px;
}

.product-image-wrapper .image {
  margin-bottom: 25px;
  text-align: center;
}

.product-image-wrapper .image img {
  width: 90%;
}

.display-5 {
  font-size: 40px !important;
}

.product-detail p {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-detail h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.product-description h2 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
.product-description h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}

.info-box {
  height: 100%;
  padding: 25px 30px;
  background-color: #f7f8fb;
  border-radius: 3px;
  border: 1px solid #ccc;
}

.info-box p {
  font-size: 16px;
  line-height: 22px;
}

.thumbnails li {
  width: 24%;
  height: 140px;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 150px;
}

.thumbnails li img {
  width: 80%;
  height: auto;
}

.thumbnails li embed {
  position: relative;
  z-index: -1;
}

.modal-body {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-container {
  width: 100%;
  height: 100%;
  max-height: 640px;
}

.modal-image-container img {
  width: auto;
  height: 100%;
}

.modal-body embed {
  position: relative;
  z-index: 0 !important;
}

.modal-content {
  height: 90vh;
}

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

.mail-row {
  border-bottom: 1px solid #dedede;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.mail-row span {
  display: inline-block;
  vertical-align: middle;
}

.mail-row span:first-child {
  font-weight: 700;
}

.contact-feature {
  background-color: #002780 !important;
  padding: 5px 10px;
}

.contact-feature span {
  display: inline-block;
  margin-right: 7px;
}

.lead {
  margin-bottom: 10px;
  font-weight: 400;
}

.about-wrapper {
  min-height: 93.2vh;
}

.about-wrapper .go-back {
  margin-bottom: 35px;
}

.about-wrapper .row {
  align-items: center;
}

.about-wrapper h1 {
  font-size: 24px;
  line-height: 32px;
  margin: 35px 0 10px 0;
}

.about-image img {
  width: 100%;
  height: auto;
}

.go-back {
  font-size: 18px !important;
  line-height: 25px;
}
.go-back:hover {
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.8;
}
.go-back span {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px !important;
}
.go-back .fas {
  margin-right: 7px;
  font-size: 20px;
  line-height: 24px;
}

.form-wrapper {
  margin-top: 35px;
  padding: 15px;
}

.form-wrapper .alert {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.video-container {
  background: url("../assets/images/spinner.gif");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.mail-content {
  padding-bottom: 35px;
  min-height: 90vh;
}

.cart {
  min-height: 85vh;
}

.cart-table thead td {
  font-size: 22px;
}

.cart-table .img a {
  display: block;
  width: 100px;
  height: 100px;
}

.cart-table .img a img {
  width: 100%;
  height: 100%;
}

.return-policy {
    min-height: 82vh;
}

.cart-table td a {
  font-size: 18px;
}

.cookies-panel {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 12%;
  box-shadow: 0px -2px 2px rgba(0,0,0,0.3);
  z-index: 999;
  /* background-color: #f8f8f8; */
  background-color: #002780;
}

.cookies-panel p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  width: 70%;
}
.cookies-panel p a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.cookies-panel p a:hover {
  cursor: pointer;
}
.cookies-panel .btn {
  background-color: #89111e;
  border-color: #fff;
}
.cookies-modal .modal-body {
  display: block;
  text-align: left;
  padding-left: 35px;
  padding-right: 35px;
  overflow-y: auto;
}

.cookies-modal .modal-title {
  font-size: 24px;
}

.cookies-modal .modal-body h2 {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 28px;
}

.cookies-modal .modal-body p,
.cookies-modal .modal-body ul li {
  font-size: 14px;
  line-height: 18px;
}
.cookies-modal .modal-body a {
  color: #002780;
}

/* MOBILE */

@media (max-width: 991px) {
  .navbar .pull-right .contacts {
    display: none;
  }
  .navbar .pull-right {
    position: absolute;
    min-width: 50px;
    top: 30px;
    right: 115px;
  }
  .product-image-wrapper .thumbnails {
    display: none;
  }
footer {
     text-align: center;
  }
  footer .row {
      justify-content: center !important;
  }
  .ssl-logo {
      display: block;
      margin-left: 0;
      margin-top: 15px;
  }
  .ssl-logo div {
      margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .round-notice-wrapper h1 {
    font-size: 18px;
  }
  .round-notice-wrapper h1 {
    font-size: 12px;
  }
  .card-body h5 {
      font-size: 16px;
  }
  .card-body .price {
      font-size: 20px;
  }
}

@media (max-width: 767px) {
  .display-5 {
    font-size: 30px !important;
  }
  .header {
    padding: 20px 0 !important;
  }
  .header .container {
    display: none;
  }
    .navbar .pull-right {
        right: 90px;
    }
  .card {
    margin-bottom: 15px !important;
  }
  ol, ul {
    padding-left: 10px !important;
  }
  .footer .row {
    text-align: center;
  }
  .product-description .row > div {
    margin-bottom: 15px;
  }
  .cart-table .img a {
    width: 80px;
    height: 80px;
  }
  main .cart table a {
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
  }
  main .cart table .price {
    font-size: 14px;
  }
  main .cart table .quantity {
    text-align: center;
  }
  main .cart table input[type="number"] {
    width: 46px;
  }
  main .cart table td.img {
    width: auto !important;
  }
  main .cart h1 {
    padding: 12px 0;
  }
  main .cart table thead td {
    font-size: 14px;
  }
  .delivery-text {
    display: inline-block;
    font-size: 12px !important;
    line-height: 14px;
    font-weight: 500;
  }
  .personal-status {
    display: none;
  }
  .subtotal span {
    font-size: 18px !important;
  }
  .px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .ssl-icon > div {
      width: auto;
  }
}

.products .col-md-3 {
  display: none;
}
.products .col-md-4.all-display {
  display: block !important;
}
.go-home {
  display: none;
}

.products .col-md-3 .card {
  position: relative
}

.products .col-md-3:nth-child(4) .card:after,
.products .col-md-3:nth-child(1) .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-image: url("./assets/images/stoc-epuizat.png");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: not-allowed;
}

/* Hardware */

.hardware-wrapper .row {
  margin-bottom: 25px !important;
}

.hardware-wrapper .alert {
  font-size: 18px;
}

.hardware-wrapper .go-back {
  margin-bottom: 25px;
}

.hardware-intro {
  height: 200px;
  display: flex;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 25px;
  background-image: url("./assets/images/intro-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hardware-intro h1 {
  margin: 0;
  font-size: 65px;
  line-height: 70px;
  color: #fff;
  text-shadow: 4px 2px 2px rgba(0,0,0,0.9);
  font-weight: 700;
  text-align: center;
}

.hardware-box {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 15px 10px 0 15px;
}

.hardware-box .image {
  width: 100%;
  height: 164px;
  margin-bottom: 25px;
  text-align: center;
  overflow-x: hidden;
}

.hardware-box .image img {
  object-fit: cover;
  max-height: 160px;
}

.hardware-box .name {
  display: block;
  min-height: 67px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.hardware-box a.link {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 50px;
  color: #fff;
  background-color: #89111e;
  border: 0;
  margin: 0 auto 20px;
  text-decoration: none;
  text-align: center;
}

.hardware-box a.link:hover {
  opacity: 0.8;
  cursor: pointer;
}

@media (min-width: 1199px) and (max-width: 1399px) {
  .hardware-box a.link { 
    font-size: 15px;
    padding: 6px 1px;
  }
  .hardware-box .name {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .hardware-box a.link { 
    font-size: 14px;
    padding: 6px 2px;
  }
  .hardware-box .name {
    font-size: 15px;
    line-height: 17px;
  }
}