@charset "UTF-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

a {
  background-color: transparent;
  text-decoration: none;
  display: inline-block;
  outline: none;
  color: inherit;
}

img {
  max-width: 100%;
  border-style: none;
  display: block;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
select,
input,
textarea {
  outline: none;
}

textarea {
  resize: none;
  min-height: 12rem;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background: none;
  border: none;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

[hidden] {
  display: none;
}

@font-face {
  font-family: BMW;
  src: url("../fonts/BMWTypeNextTT-Regular.woff2");
  font-weight: normal;
}

@font-face {
  font-family: BMW;
  src: url("../fonts/BMWTypeNextTT-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: BMW;
  src: url("../fonts/BMWTypeNextTT-Bold.woff2");
  font-weight: bold;
}

body {
  font-family: BMW;
  font-size: 1.6rem;
  font-weight: normal;
  background: #1C69D4;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

main {
  flex: 1 0 auto;
}

main .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

footer {
  flex: 0 0 auto;
}

.bg-overlay {
  display: block;
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: calc(100% + 8.8rem);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.bg-overlay.is-active {
  opacity: 1;
  z-index: 9;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 95vw;
  min-width: 1140px;
  height: 100%;
}

.content {
  padding: 4rem 0;
}

header {
  background: #fff;
  color: #000;
  padding: 1.5rem 0;
  border-bottom: 1px solid #dcdcdc;
  z-index: 20;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .cart {
  position: absolute;
  z-index: 3;
  top: 8.9rem;
  left: 0;
  margin-left: calc(50vw - 50%);
  width: calc(100vw - 34px);
  opacity: 0;
  z-index: -10;
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
  transition: 0.2s opacity, 0.35s -webkit-transform;
  transition: 0.2s opacity, 0.35s transform;
  transition: 0.2s opacity, 0.35s transform, 0.35s -webkit-transform;
  pointer-events: none;
}

header .cart .group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1C69D4;
  padding: 0 0 5rem;
}

header .cart .group a {
  text-decoration: underline;
}

header .profile__text{border-bottom:1px solid;}
header .profile__text:hover{border-color:transparent;}

header #cart {
  position: relative;
}

header #cart .text-lg {
  margin-bottom: 5px;
}

header .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.header__basket .icon {
  cursor: pointer;
}

.header__basket.is-show .cart {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  z-index: 30;
  pointer-events: all;
}

.basket__popover {
  position: relative;
  background: #1C69D4;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  opacity: 1;
  z-index: 1;
  width: auto;
  margin-left: 2rem;
}

.basket__popover.active {
  padding: 0.8rem 1.5rem;
  opacity: 1;
  z-index: 1;
  width: auto;
  margin-left: 2rem;
}

.basket__popover::before {
  content: "";
  border: 0.8rem solid transparent;
  border-right: 1rem solid #1C69D4;
  position: absolute;
  left: -1.8rem;
  top: calc(50% - 0.6rem);
}

.basket__popover .col {
  display: flex;
  align-items: center;
}

.basket__popover .col:not(:first-child) {
  margin-left: 1.5rem;
}

.basket__popover .col .icon {
  margin-right: 5px;
}

footer .copyright {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.header__basket,
.panel,
.profile__bar {
  display: flex;
  align-items: center;
}

.profile__text {
  margin: 0 1rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sep {
  width: 1px;
  height: 25px;
  align-self: center;
  background: #D9D9D9;
  margin: 0 2.5rem;
}

.link-underline {
  text-decoration: underline;
}

.steps {
  color: #BBD2F3;
  line-height: 1;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.steps .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps .col {
  margin: 0 2.083vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps .icon {
  margin-right: 2rem;
}

.steps .sub-title {
  color: #fff;
}

.steps .btn {
  min-width: 36rem;
  padding: 2rem;
}

.steps .btn.loading{background-blend-mode:difference;text-indent:250%;}

.steps .btn-download{min-width:26rem;}

.title {
  font-size: 3.6rem;
}

.sub-title {
  font-size: 2.6rem;
}

.title,
.sub-title {
  font-weight: 300;
}

.title-group {
  text-align: center;
  margin-bottom: 3rem;
}

.text-sm {
  font-size: 14px;
  color: #8E8E8E;
  font-weight: 300;
}

.text-lg {
  font-size: 2rem;
  font-weight: 300;
}

#auth, .form {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

#auth .form-row:not(:last-child), .form .form-row:not(:last-child) {
  margin-bottom: 2rem;
}

.form button {
  width: 100%;
  background: #76aeff;
	color:#fff;
  text-transform: uppercase;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	transition:0.2s;
}

.form button:hover {
  background: #557db8;
}

#search {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}

#search .icon {
  position: absolute;
  top: calc(50% - 11px);
  left: 2rem;
}

#search .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #ccc;
  right: -2rem;
}

#search.preloader .icon{background:url(/static/img/preloader.gif) no-repeat center;background-size:125%;}
#search.preloader .icon svg{visibility:hidden;}

#search .form-field {
  padding-left: 8rem;
  padding-right: 12rem;
  font-size: 1.8rem;
  padding: 2.4rem 12rem 2.4rem 8rem;
}

#search button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10%;
  right: 1rem;
  width: 8rem;
  height: 80%;
  background: #f2f2f2;
  transition: 0.35s background-color;
  border-radius: 2px;
}

#search button:hover {
  background: #dcdcdc;
}

.form-label {
  display: block;
  margin-bottom: 1rem;
}

.form-field {
  width: 100%;
  padding: 2rem;
  color: #000;
  border: none;
  transition: 0.35s box-shadow;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.text-result {
  color: #FFA7A7;
  margin: 1rem 0 4rem;
}

.list__result {
  width: 100%;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  /*align-items: flex-start;*/
  color: #000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.list__result th, .list__result td{font-size:13px;}

.list__result th.filter_col{padding:0;}
.list__result th input{width:100%;border:0;padding:1rem;}

#stock__info .col {
  padding: 6rem 20rem;
  width: 50%;
}

#stock__info .col:last-child {
  background: #f2f2f2;
}

#stock__info .row:not(:last-child) {
  margin-bottom: 2rem;
}

#stock__info .sub-title {
  position: relative;
}

#stock__info .sub-title span {
  color: #1C69D4;
}

#stock__info .sub-title::after {
  content: "";
  display: inline-block;
  margin: 1.5rem auto;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}

.btn {
  padding: 1.35rem 2rem;
  min-width: 22rem;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  font-size: 14px;
  transition: 0.35s background-color;
  background-color: #fff;
  color: #000;
  font-weight: bold;
}

.btn.btn-primary {
  background-color: #1C69D4;
  color: #fff;
}

.btn.btn-primary:hover {
  background-color: #1547ac;
}

.btn.btn-default:hover {
  background-color: #f2f2f2;
}
.sort-icon {
  cursor: pointer;
}
.price::after {
  content: " ₸";
}

td .price{text-align:right;display:block;white-space:nowrap;}
td .price:after{content:"";}

.quantity-container {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.quantity-container button,
.quantity-field {
  width: 4.6rem;
  height: 4.6rem;
}

.quantity-field {
  width: 5rem;
  border: 1px solid #BBD2F3;
}

.quantity-container button {
  background-color: #1C69D4;
  color: #fff;
  transition: 0.35s background-color;
}

.quantity-container button:hover {
  background: #1547ac;
}

.quantity-container button:disabled{
	background-image: url(/static/img/admin/load.gif);
	background-repeat: no-repeat;
	background-position: center;
	color: #1C69D4;
}

.quantity-container + button{margin-left:1rem;}

.quantity-field {
  text-align: center;
  border-left: 0;
  border-right: 0;
}

.flex{display:flex;}

#cart__info{flex-wrap:nowrap;}

#cart__info .col,
#cart .col,
.flex .col {
  width: calc(33.1% - 3rem);
  margin: 3rem 1rem;
}

#cart__info .col:first-child,
#cart .col:first-child,
.flex .col:first-child{margin-left:3rem;}

#cart__info .col:last-child,
#cart .col:last-child,
.flex .col:last-child{margin-right:3rem;}

#cart__info .text-lg,
#cart .text-lg {
  text-align: center;
  margin-bottom: 2rem;
}

#cart__info .total,
#cart .total {
  text-align: center;
  color: #1C69D4;
  margin-top: 2.4rem;
}

#cart__info .total{display:flex;justify-content:center;}
#cart__info .total span{margin-left:10px;}
#cart__info .total .checkbox{width:20px;height:20px;cursor:pointer;}

.table-scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 2rem;
}

.header__basket .table-scroll{max-height: 50vh;}

.table-scroll::-webkit-scrollbar {
  width: 4px;
  height: 0;
  background: #dcdcdc;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: #1C69D4;
}

table {
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 1rem;
}

table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

table th {
  color: #8E8E8E;
  font-weight: 400;
  text-align: left;
}

table td {
  vertical-align: middle;
}
/*
table th,
table td {
  width: calc(20% - 24rem);
}

table th:last-child,
table td:last-child {
  width: 3rem;
}

table th:nth-child(3),
table td:nth-child(3) {
  width: 10rem;
}

table th:nth-child(5),
table td:nth-child(5) {
  width: 11rem;
}
*/

td .art{color:#1C69D4;display:block;margin-bottom:4px;font-size:11px;}
td .name{text-transform:capitalize;}

table .quantity-container button,
table .quantity-field {
  height: 2.4rem;
	font-size:12px;
}

table .quantity-container button {
  width: 2.4rem;
}

table .quantity-container button.minus {
  font-family: verdana;
}

table .quantity-field {
  width: 3rem;
}

.remove {
  cursor: pointer;
  width: 1.1rem;
  height: 1.5rem;
  background: url(../img/svg/remove.svg) no-repeat center/100%;
}

.remove.loading{background-image:url(/static/img/preloader.gif);background-size:cover;}

.search_field{padding:10px 25px;margin-bottom:30px;text-align:center;width:350px;}

#user_orders .fullwidth{width:100%;}
#user_orders th{width:auto;text-align:center;padding:20px 15px;}
#user_orders tr{transition:0.3s;}
#user_orders tr.success{background-color:#e9ffeb !important;}
#user_orders tr.updated{background-color:#f6dddd !important;}
#user_orders tr.empty td{padding:0;height:5px;border:1px solid #e6e6e6;border-width:1px 0;}
#user_orders td{width:auto;text-align:center;height:50px;}
#user_orders td input{text-align:center;padding:0 5px 5px;max-width:100px;border:0;background:transparent;border-bottom:1px solid;margin-bottom:5px;}
#user_orders td .transfer_number{margin-bottom:10px;}
#user_orders td .transfer_number:last-child{margin-bottom:0px;}
#user_orders .product__card td{text-align:left;}
#user_orders a{color:#1C69D4;text-decoration:underline;}
#user_orders a:hover{text-decoration:none;}

#user_orders table tbody tr:nth-child(4n-1){background:#fff;}
#user_orders table tbody tr:nth-child(4n+1){background:#f2f2f2;}
#user_orders table tbody tr.title_row{cursor:pointer;}

#user_orders table tbody tr.active{display:table-row!important;background:#000 !important;}
#user_orders table tbody tr.title_row.active{color:#fff;}
#user_orders table tbody tr.title_row.active > td{font-weight:500;}
#user_orders table tbody tr.title_row.active a{color:#fff;}
#user_orders table tbody tr.title_row.active input{color:#fff;border-color:#fff;}
#user_orders table tbody tr.none.active > td{padding-top:0;}
#user_orders table tbody tr.active .product__card{border-radius:15px;overflow:hidden;}

#user_orders .sub_table thead tr:nth-child(odd){background:#f2f2f2;}
#user_orders .sub_table thead th{padding:15px;border-right:1px solid #ccc;}
#user_orders .sub_table thead th:last-child{border-right:0;}

#user_orders .sub_table tr:nth-child(odd){background:#fff;}
#user_orders .sub_table tr:nth-child(even){background:#f2f2f2;}
#user_orders .sub_table td{text-align:center;border-right:1px solid #e6e6e6;border-left:1px solid #e6e6e6;line-height:1.8;}
#user_orders .sub_table td:first-child{border-left:0;}
#user_orders .sub_table td:last-child{border-right:0;}
#user_orders .sub_table tr {
  display: table-row!important;
}
.filter-input {
  padding: 7px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
#data-grid table{color:#000;}
#data-grid table th{padding:20px 35px;font-size:1.8rem;}
#data-grid table th a{font-size:14px;font-weight:500;font-family:BMW;}
#data-grid table td{padding:25px 35px;font-size:1.8rem;}
#data-grid table .filters td{padding:5px;}
#data-grid table .filters td input{padding:5px;}

#data-grid .pager{font-weight:300;}
#data-grid .pager a{background:#fff;color:#000;border:0;padding:3px 5px;}
#data-grid .pager .page a{width:20px;text-align:center;padding:3px 0;}
#data-grid b{font-weight:500;}

.h-opacity {
  transition: opacity 0.35s;
}

.h-opacity:hover {
  opacity: 0.65;
}

.h-underline:hover {
  text-decoration: underline;
}

.h-color {
  transition: color 0.15s;
}

.h-color:hover {
  color: #1C69D4;
}

.none{display:none!important;}
.loading{background-image:url(/static/img/loading.svg);background-repeat:no-repeat;background-position:center;background-size:50%;text-indent:200%;overflow:hidden;white-space:nowrap;}

@media only screen and (max-width: 1580px) {
  header {
    padding: 1.5rem 0;
  }

  .container {
    min-width: auto;
    max-width: 95vw;
  }
}

@media only screen and (max-width: 1380px) {
  body {
    font-size: 1.4rem;
  }

  .container {
    max-width: 96%;
  }

  #cart__info .col,
  #cart .col {
    padding: 3rem 1rem 2rem 3rem;
  }

  table td,
  table th {
    font-size: 12px;
  }

  #stock__info .col {
    padding: 5rem 14rem;
  }
}