@charset "UTF-8";
@import url(./mpw.css);
@import url(./font.css);
@import url(./display.css);
@import url(./fontawesome/css/all.min.css);
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --color-blue-one: rgb(56, 56, 250);
  --color-blue-two: rgb(39, 39, 206);
  --color-blue-tree: rgb(12, 12, 168);
  --color-purple-one: rgb(54, 54, 119);
  --color-blue-four: rgb(57, 56, 231);
  --color-dark: #1c1c1c;
  --color-orange: #fca22a;
  --color-green: #21b360;
  --color-blue: #0e385d;
  --color-gray1: #6a6a6a;
  --color-gray2: #555;
  --color-dd: rgb(62, 78, 152);
  --color-gradient-green: #21b75f;
  --color-gradient-blue: #31386e;
  --gradient: linear-gradient(to right, #21b75f 0%, #31386e 100%);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 14px;
}

a,
input,
textarea,
select,
button {
  outline: none;
  text-decoration: none;
}

iframe {
  width: 100%;
  max-width: 100%;
  max-height: 300px;
}

.pos-relative {
  position: relative;
}

.inp-title {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--color-blue-one);
  letter-spacing: 0.5px;
}

.req::after {
  content: "*";
  color: red;
  margin-left: 3px;
}

.warn-req::after {
  content: "*";
  color: yellow;
  margin-left: 3px;
}

.inpTxt,
.txtArea {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.inpTxt:focus,
.txtArea:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(57, 56, 231, 0.7);
          box-shadow: 0 0 0 2px rgba(57, 56, 231, 0.7);
}

.txtArea {
  resize: none;
}

.filter-select {
  padding: 5px;
}

.vanishElem {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

::-moz-selection {
  color: #fff;
  white-space: nowrap;
  background-color: var(--color-green);
}

::selection {
  color: #fff;
  white-space: nowrap;
  background-color: var(--color-green);
}

.page-width {
  width: 90%;
  max-width: 95%;
  margin: auto;
}

.page-content {
  padding: 20px;
  min-height: 50vh;
}

.link-green-orange,
.link-orange-green,
.link-white,
.link-black-green,
.link-black-orange,
.view-item-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 25px;
  padding: 15px 25px;
  border: 1px solid transparent;
  font-weight: 500;
  cursor: pointer;
}

.btn.btn-blue-green {
  background-color: var(--color-blue);
  color: #fff;
}

.btn.btn-blue-green.small {
  padding: 6px 12px !important;
}

.btn.btn-blue-green:hover {
  background-color: var(--color-green);
}

.btn.btn-orange-green {
  background-color: var(--color-orange);
  color: #fff;
}

.btn.btn-orange-green.small {
  padding: 6px 12px;
}

.btn.btn-orange-green:hover {
  background-color: var(--color-green);
}

.link-white {
  color: #fff;
}

.link-green-orange {
  color: var(--color-green);
}

.link-green-orange:hover {
  color: var(--color-orange);
}

.link-orange-green {
  color: var(--color-orange);
}

.link-orange-green:hover {
  color: var(--color-green);
}

.link-black-green {
  color: #333;
}

.link-black-green:hover {
  color: var(--color-green);
}

.link-black-orange {
  color: #333;
}

.link-black-orange:hover {
  color: var(--color-orange);
}

.view-item-link {
  color: #444;
}

.view-item-link:hover {
  color: var(--color-blue-one);
}

header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  height: 208px;
}

header .LandingPage {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

header .LandingPage img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

header .logo {
  position: relative;
  width: 160px;
  height: 100%;
  z-index: 2;
  margin-right: 35px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .logo .imglogo {
  width: 100%;
  -webkit-filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.6));
          filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.6));
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header nav {
  position: relative;
  height: 54px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
  border-radius: 15px 0 0 0;
  overflow: hidden;
}

header nav .top-grad,
header nav .bot-grad {
  width: 100%;
}

header nav .top-grad {
  position: absolute;
  height: 27px;
}

header nav .bot-grad {
  height: 100%;
}

header nav .top-grad {
  background: #1e1ed1;
  background: -webkit-gradient(linear, left top, right top, from(#1e1ed1), to(rgba(30, 30, 209, 0.3)));
  background: linear-gradient(90deg, #1e1ed1 0%, rgba(30, 30, 209, 0.3) 100%);
}

header nav .bot-grad {
  background: #0b0bad;
  background: -webkit-gradient(linear, left top, right top, from(#0b0bad), to(rgba(51, 51, 102, 0.5)));
  background: linear-gradient(90deg, #0b0bad 0%, rgba(51, 51, 102, 0.5) 100%);
}

header nav .links {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

header nav .links .social-media-link {
  padding: 0 20px;
}

header nav .links .social-media-link i {
  font-size: 30px;
  color: #fff;
}

header .singinup-links {
  position: absolute;
  right: 30px;
  top: 40px;
  z-index: 2;
  border-radius: 3px;
  overflow: hidden;
}

#header,
#nav-mobile,
#profile-mobile {
  background-color: var(--color-blue-two);
  color: #fff;
}

#header {
  position: relative;
  padding: 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
  z-index: 10;
}

#header a {
  color: #fff;
}

#header .imglogo {
  width: 50px;
}

#nav-mobile,
#profile-mobile {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  border-top: 1px solid #f9f9f9;
  z-index: 9;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  display: none;
}

#nav-mobile .nav-links,
#profile-mobile .nav-links {
  margin: 0;
  padding: 0;
  text-align: center;
}

#nav-mobile .nav-links li,
#profile-mobile .nav-links li {
  margin: 0;
  padding: 0;
}

#nav-mobile .nav-links li a,
#profile-mobile .nav-links li a {
  font-weight: 300;
  display: block;
  color: #fff;
  font-weight: 400;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  font-size: 18px;
  text-transform: uppercase;
}

.gradient-menu {
  background: #2727ce;
  background: -webkit-gradient(linear, left top, left bottom, from(#2727ce), color-stop(52%, #2727ce), color-stop(57%, #0c0ca8), to(#0c0ca8));
  background: linear-gradient(180deg, #2727ce 0%, #2727ce 52%, #0c0ca8 57%, #0c0ca8 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gradient-menu li {
  position: relative;
}

.gradient-menu li:not(:last-child) {
  margin-right: 26px;
}

.gradient-menu li:not(:last-child)::after {
  position: absolute;
  content: "";
  z-index: 3;
  right: -15px;
  bottom: 4px;
  opacity: 0.5;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
}

.gradient-menu li a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

ul.nav-links {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links li:not(:last-child) {
  margin-right: 26px;
}

ul.nav-links li:not(:last-child)::after {
  position: absolute;
  content: "";
  z-index: 3;
  right: -15px;
  bottom: 4px;
  opacity: 0.5;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
}

ul.nav-links li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.page-title {
  margin-top: 20px;
  margin-bottom: 70px;
  text-align: center;
}

.page-title span {
  position: relative;
  color: var(--color-blue-tree);
}

.page-title span::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: var(--color-blue-tree);
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.home-images div {
  margin-left: 5px;
}

.item-cat-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item-cat-container .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 1%;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
  height: 240px;
  max-width: 320px;
  min-width: 200px;
}

.item-cat-container .box > img {
  width: 100%;
  height: calc(100% - 25px);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.item-cat-container .box > span {
  font-size: 16px;
  display: block;
  text-align: center;
  height: 25px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.item-cat-container .box:hover {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
}

.item-cat-container .box:hover > img {
  width: 100%;
  height: 100%;
}

.items-filter {
  padding: 10px 20px;
  max-width: 240px;
}

.items-filter .if-title {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 16px;
}

.items-filter .if-content:not(:last-child) {
  border-bottom: 1px solid var(--color-blue-one);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.items-filter .if-options {
  list-style: none;
}

.items-filter .if-options li:not(:last-child) {
  margin-bottom: 10px;
}

.items-filter .if-options label {
  padding-left: 10px;
  cursor: pointer;
}

.items-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.items-sort:first-child {
  border-bottom: 1px solid var(--color-blue-one);
  margin-bottom: 20px;
}

.items-sort:last-child {
  border-top: 1px solid var(--color-blue-one);
  margin-top: 20px;
}

.items-sort .filter {
  display: none;
}

.form-filter-items {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.item-promo,
.item-top {
  position: relative;
}

.item-promo::after, .item-promo::before,
.item-top::after,
.item-top::before {
  position: absolute;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  padding: 2px;
  letter-spacing: 0.5px;
}

.item-promo::after {
  content: "PROMO";
  background-color: rgba(221, 61, 61, 0.6);
  width: 60px;
  top: 0;
  right: 0;
}

.item-top::before {
  content: "TOP";
  background-color: rgba(61, 138, 221, 0.6);
  width: 45px;
  top: 0;
}

.items {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.items .item {
  padding: 30px 20px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.items .item:hover {
  -webkit-box-shadow: 0 0 5px 1px rgba(10, 10, 144, 0.2);
          box-shadow: 0 0 5px 1px rgba(10, 10, 144, 0.2);
}

.items .item .img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 220px;
  height: 220px;
  max-width: 250px;
  max-height: 250px;
  background: none;
}

.items .item .img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
}

.items .item .title_desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 25px;
}

.items .item .title_desc .title {
  font-weight: 600;
  font-size: 20px;
}

.items .item .title_desc .desc {
  font-size: 12px;
  letter-spacing: 0.3px;
}

.items .item .price-box {
  position: relative;
}

.items .item .price,
.items .item .delimer {
  font-weight: 500;
  position: relative;
  color: var(--color-blue-two);
}

.items .item .price {
  font-size: 2.5rem;
  margin-left: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.items .item .price::after {
  content: " лв";
  font-size: 1rem;
}

.items .item .delimer {
  top: -15px;
  left: -19px;
  font-size: 1rem;
}

.items .item .add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
  min-height: 150px;
  max-height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
}

.items .item .add-to-cart .addBnt {
  color: var(--color-blue-two);
  font-size: 18px;
  padding: 5px 30px;
  cursor: pointer;
  border: 1px solid var(--color-blue-one);
  border-radius: 2px;
  background-color: rgba(57, 56, 231, 0.7);
  color: #fff;
}

.price,
.delimer {
  font-weight: 500;
  position: relative;
  color: var(--color-blue-two);
}

.price {
  font-size: 2.5rem;
  margin-left: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.price::after {
  content: " лв";
  font-size: 1rem;
}

.price.small {
  font-size: 1.5rem;
}

.price.small::after {
  font-size: 0.8rem;
}

.delimer {
  top: -15px;
  left: -19px;
  font-size: 1rem;
}

.delimer.small {
  font-size: 0.7rem;
  top: -11px;
  left: -16px;
}

.img-cover,
.img-contain {
  overflow: hidden;
}

.img-cover img,
.img-contain img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.img-cover img {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.images-box {
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}

.images-box .view-img {
  width: 260px;
  height: 260px;
  padding-bottom: 10px;
}

.images-box .view-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.images-box .preview-imgs img {
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.images-box .preview-imgs img.active {
  border-color: var(--color-blue-one);
}

.item-price-box {
  -ms-flex-item-align: center;
      align-self: center;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 50px;
  align-self: center;
  min-height: 150px;
  max-height: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
}

.cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart-quantity .dec-quantity,
.cart-quantity .inc-quantity {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 1.4;
  background-color: var(--color-blue-four);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid var(--color-blue-four);
  cursor: pointer;
}

.cart-quantity .dec-quantity {
  border-radius: 2px 0 0 2px;
}

.cart-quantity .inc-quantity {
  border-radius: 0 2px 2px 0;
}

.cart-quantity .inp-quantity {
  width: 50px;
  height: 30px;
  text-align: center;
  border-top: 1px solid var(--color-blue-four);
  border-bottom: 1px solid var(--color-blue-four);
  border-left: none;
  border-right: none;
  color: #555;
}

.cart-item-remove {
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #999;
}

.cart-item-remove:hover {
  color: red;
}

.order-section-title {
  font-weight: 500;
  font-size: 16px;
}

#itemToCart {
  position: absolute;
  z-index: 10;
  background-color: #88f7b8;
  border-radius: 5px;
  padding: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 2px solid #5eed51;
  color: #444;
  font-weight: 400;
}

#itemToCart.show {
  display: block !important;
}

.cart-table,
.tb-ship-data-order-complete {
  border-collapse: collapse;
}

.cart-table thead,
.tb-ship-data-order-complete thead {
  background-color: var(--color-blue-one);
  color: #fff;
  font-size: 18px;
}

.cart-table th,
.cart-table td,
.tb-ship-data-order-complete th,
.tb-ship-data-order-complete td {
  padding: 10px;
  border-bottom: 1px solid var(--color-blue-one);
}

.cart-table {
  width: 100%;
}

.cart-table .cart-items-mobile-show {
  display: none;
}

.tb-ship-data-order-complete td:first-child {
  font-size: 13px;
  text-align: right;
}

.order-total-price-pay {
  padding: 0 20px;
}

.order-total-price-pay.nn {
  text-align: right;
  margin-top: 10px;
  padding: 0;
}

.order-total-price-pay .total-price {
  background-color: #eee;
  padding: 15px;
  font-weight: 500;
  font-size: 18px;
}

.order-total-price-pay .total-price span::after {
  content: "лв";
  font-size: 12px;
  margin-left: 2px;
}

footer,
.footer {
  padding: 0 20px;
  background: #3535ec;
  background: -webkit-gradient(linear, left top, right top, from(#3535ec), to(#333379));
  background: linear-gradient(90deg, #3535ec 0%, #333379 100%);
  color: #fff;
}

footer {
  margin-top: 100px;
  border-top: 1px solid #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 120px;
}

footer a {
  color: #fff;
}

footer iframe {
  width: 100%;
  height: 200px;
  max-height: 200px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  color: #ccc;
  text-align: center;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  text-decoration: underline;
}
