/**
 *
 * `Grand Motors User Interface` tables design.
 *
 */
.gm-table {
  margin-bottom: 3em;
}
.gm-table table {
  border-spacing: 0;
  width: 736px;
  table-layout: fixed;
  
  letter-spacing: -.5px;
}
/* Wide version */
.wide .gm-table table {
  /*width: 1245px;*/
  width: 100%;
}

/* Headers of tables */
.gm-table thead td {
  padding: 7px 0;
  
  background: #e8ecef;
  color: #3d5971;
  
  font-size: 12px;
  letter-spacing: -.5px;
  font-weight: bold;
  text-align: center;
}

.gm-table tbody td {
  text-align: center;
  border-bottom: 1px solid #e8ecef;
  padding: 7px 0;
}

/* Each third row should be aligned left */
.gm-table td:nth-of-type(3) {
  text-align: left;
}

/* Each price row in header should be properly aligned */
.gm-table thead td:last-child {
  text-align: left;
}
.gm-table thead td:last-child>span {
  padding-left: 25px;
}
.wide .gm-table thead td:last-child>span {
  padding-left: 75px;
}


/* Sticky header */
.gm-table thead tr:nth-child(1) td {
    position: -webkit-sticky;
    position: sticky;
    top: 69px;
    z-index: 90;
}

/* Highlight on hover */
.gm-table tbody tr:hover {
  background: #e8ecef;
}


/**
 * Model field
 */
.gm-table .model-type {
  font-size: 13px;
  color: #888;
}
.gm-table .model-href {
  letter-spacing: -.5px;
}
.gm-table .model-country {
  font-size: smaller;
}

.gm-table span.model-name {
  white-space: nowrap;
}


/**
 * Bonuses list
 */
.gm-table ul.bonuses {
  list-style: none;
  padding-left: 25px;
  text-align: left;
  margin: 0;
}
.gm-table ul.bonuses li {
  font-size: 10px;
}
.gm-table ul.bonuses li:before {
  content: "\2022";
  color: red;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/**
 * Images
 */
/* Model image Assuming 84x55 */
.gm-table .model-image {
  width: 90%;
  height: auto;
}
/* Brand image. Assuming 92x24 */
.gm-table .brand-image {
  max-width: 100%;
}

/**
 * Small signs
 */
.gm-table .sign.best {
  display: block;
  width: 19px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px -36px no-repeat;
  margin: 0 auto;
}
.gm-table .sign.spec {
  display: block;
  width: 18px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px 0 no-repeat;
  margin: 0 auto;
}
.gm-table .sign.used {
  display: block;
  width: 18px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px -18px no-repeat;
  margin: 0 auto;
}

/**
 * Icons
 */
.gm-table .sign.stock {
  position: relative;
  margin-top: 18px;
  
  font-size: 12px;
}
.gm-table .sign.stock:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 18px;
  width: 20px;
  height: 16px;
  background: url(/images/icons/icons-catalog.png) -56px -59px no-repeat;
}

.gm-table .sign.transit {
  position: relative;
  margin-top: 19px;
  
  font-size: 12px;
}
.gm-table .sign.transit:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 10px;
  width: 20px;
  height: 17px;
  background: url(/images/icons/icons-catalog.png) -56px -75px no-repeat;
}

.gm-table .sign.invis {
  color: transparent;
}
.gm-table tr:hover .sign.invis {
  color: #3d5971;
}

/**
 * `Sold` row:
 */
.gm-table tr.sold td {
  opacity: .7;
}
.gm-table tr.sold td:last-child {
  opacity: 1;
}
.gm-table tr.sold td:last-child>div {
  opacity: .7;
}
.gm-table tr.sold td:last-child>.order-button {
  opacity: 1;
}

/**
 * Order section
 */
.gm-table .price-sign {
  width: 60%;
  display: table-cell;

  vertical-align: middle;
}
.gm-table .price-sign>div {
  letter-spacing: -.5px;
}
.gm-table .order-button {
    width: 40%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

/**
 * Price sign icons in order section
 */
.gm-table .price-sign.open,
.gm-table .price-sign.covered,
.gm-table .price-sign.spec-kont {
  position: relative;
  padding-top: 17px;
  
  font-weight: bold;
}
.gm-table .price-sign.open:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 40%;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -103px -59px no-repeat;
}
.gm-table .price-sign.covered:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 40%;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -103px -71px no-repeat;
}
.gm-table .price-sign.spec-kont:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 40%;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -103px -83px no-repeat;
}

.wide .price-sign.open,
.wide .price-sign.covered,
.wide .price-sign.spec-kont {
  padding-top: 0;
  padding-left: 25px;
}
.wide .price-sign.open:before,
.wide .price-sign.covered:before,
.wide .price-sign.spec-kont:before {
  padding-top: 0;
  left: 0;
}

/**
 * Order button
 */
.gm-table .btn-order {
  border: 1px solid #8293a3;
  padding: 4px 14px;
  background-color: #fff;
  width: 99px;
  text-decoration: none;
  color: #3F5970;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}
.gm-table .btn-order:hover {
  border: 1px solid #ff9900;

  background: #f3ee00;
  background: -moz-linear-gradient(top, #f3ee00 0%, #f0b200 100%);
  background: -webkit-linear-gradient(top, #f3ee00 0%,#f0b200 100%);
  background: linear-gradient(to bottom, #f3ee00 0%,#f0b200 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr='#f3ee00',
    endColorstr='#f0b200',
    GradientType=0
  );
  color: #3a596e;

  font-weight: bold;
}
.wide .btn-order {
  width: 125px;
}

.gm-table .btn-order.red {
  border: 1px solid #ff0000;
}
.gm-table .btn-order.green {
  border: 1px solid #41ad49;
}

.gm-table .btn-order.sold,
.gm-table .btn-order.sold:hover {
  opacity: 1;
  font-size: 1em;
  color: #ff0000;
  border: 2px solid #ff0000;
  font-weight: bold;
  letter-spacing: 1px;
  background: none;
}

/**
 * Text decorations
 */
.gm-table .red {
  color: #ff0000;
}
.gm-table .green {
  color: #41ad49;
}
.gm-table .bold {
  font-weight: bold;
}
.gm-table .larger {
  font-size: 14px;
}
.gm-table .spaced {
  letter-spacing: .5px !important;
}
.gm-table .strike {
  text-decoration: line-through;
}







/**
 * Table specifics
 */

/**
 * Stations table `table-stations`
 */

.gm-table.table-stations .price-sign {
  display: block;
  width: auto;
  text-align: center;
}
.wide .gm-table.table-stations .price-sign {
  display: block;
  width: auto;
  text-align: left;
}

.gm-table.table-stations .price-signs,
.gm-table.table-stations .order-button {
  display: block;
}
.wide .gm-table.table-stations .price-signs {
  display: table-cell;
  width: 60%;
}
.wide .gm-table.table-stations .order-button {
  display: table-cell;

  width: 40%;
  height: 100%;

  vertical-align: middle;
  text-align: right;
}

/* Small sizes == 736px */
.gm-table.table-stations td:nth-of-type(1) { width: 18px; }
.gm-table.table-stations td:nth-of-type(2) { width: 84px; }
.gm-table.table-stations td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-stations td:nth-of-type(4) { width: 63px; }
.gm-table.table-stations td:nth-of-type(5) { width: 68px; }
.gm-table.table-stations td:nth-of-type(6) { width: 104px; }
.gm-table.table-stations td:nth-of-type(7) { display: none; }
.gm-table.table-stations td:nth-of-type(8) { display: none; }
.gm-table.table-stations td:nth-of-type(9) { width: 61px; }
.gm-table.table-stations td:nth-of-type(10) { display: none; width: 97px; }
.gm-table.table-stations td:nth-of-type(11) { width: 101px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-stations td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-stations td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-stations td:nth-of-type(3) { width: auto; /*185px;*/ }
.wide .gm-table.table-stations td:nth-of-type(4) { width: 88px; }
.wide .gm-table.table-stations td:nth-of-type(5) { width: 88px; }
.wide .gm-table.table-stations td:nth-of-type(6) { width: 160px; }
.wide .gm-table.table-stations td:nth-of-type(7) {
  /*display: table-cell;*/
  display: none;
  width: 84px;
}
.wide .gm-table.table-stations td:nth-of-type(8) {
  display: none;
  /*display: table-cell;*/
  width: 105px;
}
.wide .gm-table.table-stations td:nth-of-type(9) { width: 127px; }
.wide .gm-table.table-stations td:nth-of-type(10) { display: none; }
.wide .gm-table.table-stations td:nth-of-type(11) { width: 306px; }

/**
 * Portable stations `table-port`
 */

.gm-table.table-port td:nth-of-type(10)>div {
  padding-left: 8px;

  font-size: 11px;
  text-align: left;
}

/* Small sizes == 736px */
.gm-table.table-port td:nth-of-type(1) { width: 18px; }
.gm-table.table-port td:nth-of-type(2) { width: 84px; }
.gm-table.table-port td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-port td:nth-of-type(4) { width: 63px; }
.gm-table.table-port td:nth-of-type(5) { display: none; }
.gm-table.table-port td:nth-of-type(6) { width: 108px; }
.gm-table.table-port td:nth-of-type(7) { display: none; }
.gm-table.table-port td:nth-of-type(8) { display: none; }
.gm-table.table-port td:nth-of-type(9) { display: none; }
.gm-table.table-port td:nth-of-type(10) { width: 64px; }
.gm-table.table-port td:nth-of-type(11) { width: 61px; }
.gm-table.table-port td:nth-of-type(12) { width: 198px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-port td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-port td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-port td:nth-of-type(3) { width: auto; /*185px;*/ }
.wide .gm-table.table-port td:nth-of-type(4) { width: 88px; }
.wide .gm-table.table-port td:nth-of-type(5) {
  display: table-cell;
  width: 88px;
}
.wide .gm-table.table-port td:nth-of-type(6) { width: 160px; }
.wide .gm-table.table-port td:nth-of-type(7) {
  display: table-cell;
  width: 50px;
}
.wide .gm-table.table-port td:nth-of-type(8) {
  display: table-cell;
  width: 80px;
}
.wide .gm-table.table-port td:nth-of-type(9) {
  display: table-cell;
  width: 59px;
}
.wide .gm-table.table-port td:nth-of-type(10) { display: none; }
.wide .gm-table.table-port td:nth-of-type(11) { width: 127px; }
.wide .gm-table.table-port td:nth-of-type(12) { width: 306px; }

/**
 * Stabilizers `table-stab`
 */

/* Small sizes == 736px */
.gm-table.table-stab td:nth-of-type(1) { width: 18px; }
.gm-table.table-stab td:nth-of-type(2) { width: 84px; }
.gm-table.table-stab td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-stab td:nth-of-type(4) { width: 63px; }
.gm-table.table-stab td:nth-of-type(5) { width: 108px; }
.gm-table.table-stab td:nth-of-type(6) { width: 125px; }
.gm-table.table-stab td:nth-of-type(7) { display: none; }
.gm-table.table-stab td:nth-of-type(8) { width: 198px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-stab td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-stab td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-stab td:nth-of-type(3) { width: auto; /*272px;*/ }
.wide .gm-table.table-stab td:nth-of-type(4) { width: 88px; }
.wide .gm-table.table-stab td:nth-of-type(5) { width: 159px; }
.wide .gm-table.table-stab td:nth-of-type(6) { width: 85px; }
.wide .gm-table.table-stab td:nth-of-type(7) {
  display: table-cell;
  width: 233px;
}
.wide .gm-table.table-stab td:nth-of-type(8) { width: 306px; }

/**
 * Masts `table-mast`
 */

/* Small sizes == 736px */
.gm-table.table-mast td:nth-of-type(1) { width: 18px; }
.gm-table.table-mast td:nth-of-type(2) { width: 84px; }
.gm-table.table-mast td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-mast td:nth-of-type(4) { width: 61px; }
.gm-table.table-mast td:nth-of-type(5) { display: none; }
.gm-table.table-mast td:nth-of-type(6) { width: 85px; }
.gm-table.table-mast td:nth-of-type(7) { display: none; }
.gm-table.table-mast td:nth-of-type(8) { display: none; }
.gm-table.table-mast td:nth-of-type(9) { width: 68px; }
.gm-table.table-mast td:nth-of-type(10) { width: 82px; }
.gm-table.table-mast td:nth-of-type(11) { width: 198px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-mast td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-mast td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-mast td:nth-of-type(3) { width: auto; /*183px;*/ }
.wide .gm-table.table-mast td:nth-of-type(4) { width: 88px; }
.wide .gm-table.table-mast td:nth-of-type(5) {
  display: table-cell;
  width: 88px;
}
.wide .gm-table.table-mast td:nth-of-type(6) { width: 158px; }
.wide .gm-table.table-mast td:nth-of-type(7) {
  display: table-cell;
  width: 86px;
}
.wide .gm-table.table-mast td:nth-of-type(8) {
  display: table-cell;
  width: 105px;
}
.wide .gm-table.table-mast td:nth-of-type(9) { display: none; }
.wide .gm-table.table-mast td:nth-of-type(10) { width: 129px; }
.wide .gm-table.table-mast td:nth-of-type(11) { width: 306px; }

/**
 * UPS `table-ups`
 */

/* Small sizes == 736px */
.gm-table.table-ups td:nth-of-type(1) { width: 18px; }
.gm-table.table-ups td:nth-of-type(2) { width: 84px; }
.gm-table.table-ups td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-ups td:nth-of-type(4) { width: 62px; }
.gm-table.table-ups td:nth-of-type(5) { display: none; }
.gm-table.table-ups td:nth-of-type(6) { width: 70px; }
.gm-table.table-ups td:nth-of-type(7) { display: none; }
.gm-table.table-ups td:nth-of-type(8) { width: 40px; }
.gm-table.table-ups td:nth-of-type(9) { width: 64px; display: none;}
.gm-table.table-ups td:nth-of-type(10) { width: 60px; }
.gm-table.table-ups td:nth-of-type(11) { width: 198px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-ups td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-ups td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-ups td:nth-of-type(3) { width: auto; /*182px;*/ }
.wide .gm-table.table-ups td:nth-of-type(4) { width: 88px; }
.wide .gm-table.table-ups td:nth-of-type(5) {
  display: table-cell;
  width: 90px;
}
.wide .gm-table.table-ups td:nth-of-type(6) { width: 150px; }
.wide .gm-table.table-ups td:nth-of-type(7) {
  display: table-cell;
  width: 95px;
}
.wide .gm-table.table-ups td:nth-of-type(8) { display: none; }
.wide .gm-table.table-ups td:nth-of-type(9) { width: 107px; display: none;}
.wide .gm-table.table-ups td:nth-of-type(10) { width: 125px; }
.wide .gm-table.table-ups td:nth-of-type(11) { width: 306px; }

/**
 * Welding power sources `table-weld`
 */

/* Small sizes == 736px */
.gm-table.table-weld td:nth-of-type(1) { width: 18px; }
.gm-table.table-weld td:nth-of-type(2) { width: 84px; }
.gm-table.table-weld td:nth-of-type(3) { width: auto; /*140px;*/ }
.gm-table.table-weld td:nth-of-type(4) { width: 60px; }
.gm-table.table-weld td:nth-of-type(5) { display: none; }
.gm-table.table-weld td:nth-of-type(6) { width: 78px; }
.gm-table.table-weld td:nth-of-type(7) { width: 96px; }
.gm-table.table-weld td:nth-of-type(8) { width: 62px; }
.gm-table.table-weld td:nth-of-type(9) { width: 198px; }

/* Wide sizes == 1245px */
.wide .gm-table.table-weld td:nth-of-type(1) { width: 18px; }
.wide .gm-table.table-weld td:nth-of-type(2) { width: 84px; }
.wide .gm-table.table-weld td:nth-of-type(3) { width: auto; /*183px;*/ }
.wide .gm-table.table-weld td:nth-of-type(4) { width: 87px; }
.wide .gm-table.table-weld td:nth-of-type(5) {
  display: table-cell;
  width: 89px;
}
.wide .gm-table.table-weld td:nth-of-type(6) { width: 158px; }
.wide .gm-table.table-weld td:nth-of-type(7) { width: 190px; }
.wide .gm-table.table-weld td:nth-of-type(8) { width: 128px; }
.wide .gm-table.table-weld td:nth-of-type(9) { width: 308px; }

/**
 * GM-Power mini table
 */
.gm-power {
  position: relative;
  box-sizing: border-box;
  width: 445px;

  border: 1px solid #c5cdd4;
  
  letter-spacing: -.5px;
}

.gm-power .power {
  position: absolute;
  top: 0;
  bottom: 0;
  float: left;
  display: inline-block;
  box-sizing: border-box;
  width: 185px;

  border-right: 1px solid #c5cdd4;
}
.gm-power .main-name {
  margin-top: 23px;
  text-align: center;
}
.gm-power .main-spec {
  margin-top: 7px;
  text-align: center;
  
  font-size: 18px;
  font-weight: bold;

  color: #2c5da0;
}


.gm-power .specs {
  margin-left: 185px;
  display: inline-block;
  width: 258px;
  height: 100%;
  
  padding: 7px 0;
}
.gm-power .spec-row {
  position: relative;
  
  height: 1.5em;
}
.gm-power .spec-row:after {
  content: '';
  display: block;
  clear: both;
}
.gm-power .spec-col {
  
}
.gm-power .spec-col:first-child {
  position: absolute;
  bottom: 0;
  
  width: 155px;
  float: left;
  
  text-align: right;
}
.gm-power .spec-col:last-child {
  width: 88px;
  float: right;
  
  text-align: left;
  
  position: absolute;
  bottom: 0;
  right: 0;
}

/**
 * UPS series mini table
 */
.gm-series {
  position: relative;
  width: 280px;
  height: 36px;
  
  letter-spacing: -.5px;
}
.gm-series .spec {
  position: absolute;
  top: 0;
  left: 0;
  
  box-sizing: border-box;
  width: 178px;
  height: 36px;
  
  border: 1px solid #c5cdd4;
}
.gm-series .spec-name {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  
  padding-top: 10px;
  width: 76px;
  
  text-align: right;
  
  font-size: 12px;
  font-weight: bold;
}
.gm-series .spec-value {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  
  padding-top: 8px;  
  width: 90px;
  
  color: #2c5da0;
  
  font-size: 14px;
  font-weight: bold;
}

.gm-series .btn-about-series {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 36px;
  
  border: 1px solid #ff9900;
  
  background: #f3ee00;
  background: -moz-linear-gradient(top, #f3ee00 0%, #f0b200 100%);
  background: -webkit-linear-gradient(top, #f3ee00 0%,#f0b200 100%);
  background: linear-gradient(to bottom, #f3ee00 0%,#f0b200 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr='#f3ee00',
    endColorstr='#f0b200',
    GradientType=0
  );
  color: #3a596e;

  font-size: 11px;
  font-weight: bold;
}


/**
 * Mobile view of gmui-tables
 */
.gm-power {
  /* display: none; */
} /* FIX ME!!! */

@media (max-width: 990px) {
  .gm-table table {
    width: 100%;
  }
  .gm-table thead {
    display: none;
  }
  
  .gm-table tbody tr,
  .gm-table tbody td {
    display: block;
    border: none;
  }
  .gm-table tbody td {
    border-bottom: none;
  }
  
  .gm-table tbody tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    
    border-bottom: 2px solid #e8ecef;
  }
  
  .gm-table tbody td {
    flex: 1 50%;
  }
  
  .gm-table tbody td:nth-child(1) {
    flex: 2 100%;
    
    width: 100% !important;
    
    text-align: left;
  }
  .gm-table tbody td:nth-child(1) .sign {
    display: inline-block;
  }
    
  .gm-table tbody td:nth-child(2) {

  }
  .gm-table tbody td:nth-child(3) {

  }
  
  .gm-table tbody td:last-child>div,
  .gm-table tbody td:last-child>div>a,
  .gm-table tbody td:last-child>div>button {
    display: block;
    width: 100%;
  }

  /**
   * table-stations specific
   */
  .gm-table.table-stations tbody td:nth-child(4)::before {
    content: 'Основная мощность';

    font-weight: bold;
  }
  
  .gm-table.table-stations tbody td:nth-child(5)::before {
    content: 'Резервная мощность';
    font-weight: bold;
  }
  .gm-table.table-stations tbody td:nth-child(6)>img {
    display: block;
    margin: auto;
  }
  .gm-table.table-stations tbody td:nth-child(6)::before {
    content: 'Двигатель';
    text-align: center;
    font-weight: bold;
  }
  
  .gm-table.table-stations tbody td:nth-child(7)>div::before {
    content: 'Наработка';
    text-align: center;
    font-weight: bold;
    display: block;
  }
  
  .gm-table.table-stations tbody td:nth-child(9)::before {
    content: 'Наличие';
    text-align: center;
    font-weight: bold;
    display: block;
  }
  .gm-table.table-stations tbody td:nth-child(9)>span {
    display: inline-block;
  }
  
  /**
   * table-stab specific
   */
  .gm-table.table-stab tbody td:nth-child(4)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-stab tbody td:nth-child(4)::after {
    content: ' кВА';
  }
  .gm-table.table-stab tbody td:nth-child(5)::before {
    content: 'Входное напряжение';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-stab tbody td:nth-child(6)::before {
    content: 'Выходное напряжение';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-stab tbody td:nth-child(7)::before {
    content: 'Тип стабилизатора';

    font-weight: bold;
    display: block;
  }

  /**
   * table-ups specific
   */
  .gm-table.table-ups tbody td:nth-child(4)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(4)::after {
    content: ' кВА';
  }
  .gm-table.table-ups tbody td:nth-child(5)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(5)::after {
    content: ' кВт';
  }
  .gm-table.table-ups tbody td:nth-child(6)::before {
    content: 'Коэфф. выходной мощности';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(7)::before {
    content: 'Напряжение вход/выход';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(8)::before {
    content: 'Фазы входа/выхода';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(9)::before {
    content: 'Время автономии';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(10)::before {
    content: 'Наличие';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-ups tbody td:nth-child(10)>span {
    display: inline-block;
  }

  /**
   * table-weld specific
   */
  .gm-table.table-weld tbody td:nth-child(4)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-weld tbody td:nth-child(4)::after {
    content: ' кВА';
  }
  .gm-table.table-weld tbody td:nth-child(5)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-weld tbody td:nth-child(5)::after {
    content: ' кВт';
  }
  .gm-table.table-weld tbody td:nth-child(6)::before {
    content: 'Сварочный ток ПН35%/ПН60%';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-weld tbody td:nth-child(7)::before {
    content: 'Двигатель';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-weld tbody td:nth-child(8)::before {
    content: 'Наличие';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-weld tbody td:nth-child(8)>span {
    display: inline-block;
  }

  /**
   * table-port specific
   */
  .gm-table.table-port tbody td:nth-child(4)::before {
    content: 'Мощность';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(4)::after {
    content: ' кВт';
  }
  .gm-table.table-port tbody td:nth-child(5)::before {
    content: 'Напряжение';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(5)::after {
    content: ' В';
  }
  .gm-table.table-port tbody td:nth-child(6)::before {
    content: 'Двигатель';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(7)::before {
    content: 'Бак';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(8)::before {
    content: 'Запуск';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(9)::before {
    content: 'Топливо';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(10)::before {
    content: 'Описание';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(11)::before {
    content: 'Наличие';

    font-weight: bold;
    display: block;
  }
  .gm-table.table-port tbody td:nth-child(11)>span {
    display: inline-block;
  }


  /**
   * ELEMENTS ORDER
   */
  /**
   * Table weld
   */
  .table-weld td:nth-child(1) {
    order: 1;
  }
  .table-weld td:nth-child(2) {
    order: 2;
  }
  .table-weld td:nth-child(3) {
    order: 4;
  }
  .table-weld td:nth-child(4),
  .table-weld td:nth-child(5),
  .table-weld td:nth-child(6),
  .table-weld td:nth-child(9) {
    order: 6;
  }
  
  .table-weld td:nth-child(7) {
    order: 3;
  }
  .table-weld td:nth-child(8) {
    order: 5;
  }
  
  .table-weld td:nth-child(9) {
    flex: 2 100%;
    width: 100% !important;
  }
  
  /**
   * Table UPS:
   */
  .table-ups td:nth-child(1) {
    order: 1;
  }
  .table-ups td:nth-child(2) {
    order: 2;
  }
  .table-ups td:nth-child(3) {
    order: 4;
  }
  .table-ups td:nth-child(4) {
    order: 3;
  }
  .table-ups td:nth-child(5),
  .table-ups td:nth-child(6),
  .table-ups td:nth-child(7),
  .table-ups td:nth-child(8),
  .table-ups td:nth-child(9),
  .table-ups td:nth-child(10),
  .table-ups td:nth-child(11) {
    order: 5;
  }
  
  .table-ups td:nth-child(11) {
    flex: 2 100%;
    width: 100% !important;
  }
  
  
  /**
   * Table stations
   */
  .table-stations td:nth-child(1) {
    order: 1;
  }
  .table-stations td:nth-child(2) {
    order: 2;
  }
  .table-stations td:nth-child(3) {
    order: 4;
  }
  .table-stations td:nth-child(4) {
    order: 6;
  }
  .table-stations td:nth-child(6) {
    order: 3;
  }
  
  .table-stations td:nth-child(5) {
    order: 6;
  }
  .table-stations td:nth-child(7) {
    order: 6;
  }
  .table-stations td:nth-child(8) {
    order: 7;
  }
  .table-stations td:nth-child(9) {
    order: 5;
  }
  .table-stations td:nth-child(10) {
    order: 7;
  }
  .table-stations td:nth-child(11) {
    order: 8;
  }
  
  .table-stations td:nth-child(11) {
    flex: 2 100%;
    width: 100% !important;
  }
  .table-stations td:nth-child(11)>div {
    display: block !important;
    width: 100% !important;
    margin: auto !important;
  }
  
  .table-stations .price-sign {
    padding-top: 0 !important;
    padding-left: 60px !important;
  }
  
  /**
   * Table Stab
   */
  .table-stab td:nth-child(1) {
    order: 1;
  }
  .table-stab td:nth-child(2) {
    order: 2;
  }
  .table-stab td:nth-child(3) {
    order: 4;
  }
  .table-stab td:nth-child(4) {
    order: 3;
  }
  
  .table-stab td:nth-child(5) {
    order: 5;
  }
  .table-stab td:nth-child(6) {
    order: 5;
  }
  .table-stab td:nth-child(7) {
    order: 5;
  }
  .table-stab td:nth-child(8) {
    order: 8;
    
    flex: 2 100%;
    width: 100% !important;
  }

  /**
   * Table port
   */
  .table-port td:nth-child(1) {
    order: 1;
  }
  .table-port td:nth-child(2) {
    order: 2;
  }
  .table-port td:nth-child(3) {
    order: 4;
  }
  .table-port td:nth-child(4) {
    order: 6;
  }
  .table-port td:nth-child(5) {
    order: 5;
  }
  .table-port td:nth-child(6) {
    order: 3;
  }
  .table-port td:nth-child(7) {
    order: 7;
  }
  .table-port td:nth-child(8) {
    order: 8;
  }
  .table-port td:nth-child(9) {
    order: 9;
  }
  .table-port td:nth-child(10) {
    order: 10;
  }
  .table-port td:nth-child(11) {
    order: 11;
  }
  .table-port td:nth-child(12) {
    order: 12;
    
    flex: 2 100%;
    width: 100% !important;
  }

  /**
   * Table mast
   */
  .table-mast td:nth-child(1) {
    order: 1;
  }
  .table-mast td:nth-child(2) {
    order: 2;
  }
  .table-mast td:nth-child(3) {
    order: 4;
  }
  .table-mast td:nth-child(4)::before {
    content: 'Мощность генератора:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(4) {
    order: 6;
  }
  .table-mast td:nth-child(5)::before {
    content: 'Запуск:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(5) {
    order: 5;
  }
  .table-mast td:nth-child(6)::before {
    content: 'Двигатель:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(6) {
    order: 3;
  }
  .table-mast td:nth-child(7)::before {
    content: 'Топливо:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(7) {
    order: 7;
  }
  .table-mast td:nth-child(8)::before {
    content: 'Объем бака:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(8) {
    order: 8;
  }
  .table-mast td:nth-child(9)::before {
    content: 'Запуск:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(9) {
    order: 9;
  }
  .table-mast td:nth-child(10)::before {
    content: 'Наличие:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(10) {
    order: 10;
  }
  .table-mast td:nth-child(10)>* {
    color: unset !important;
  }
  .table-mast td:nth-child(11)::before {
    content: 'Цена:';
    display: block;
    font-weight: bold;
    letter-spacing: -.5px;
  }
  .table-mast td:nth-child(11) {
    order: 11;
    
    flex: 2 100%;
    width: 100% !important;
  }



  /**
   * Mobile view of gm-power category
   */
  .gm-power {
    width: 100%;
  }

  .gm-power .power {
    display: block;
    float: none;
    position: relative;
    margin: 0 auto;
    border-right: none;
    border-bottom: 1px solid #c5cdd4;
  }

  .gm-power .specs {
    display: block;
    float: none;
    margin-left: 0;
    position: relative;
  }


  /** FINAL ELEMENTS POSITION **/
  /**
   * table-port
   */
  .gm-table.table-port tbody tr {
    display: block;
    position: relative;

    height: 253px;
  }
  .gm-table.table-port tbody td {
    display: block !important;
    position: absolute;
  }
  .gm-table.table-port tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-port tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-port tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-port tbody td:nth-child(4) {
    top: 170px;
    left: 0;
    width: 130px !important;
    text-align: left;
  }
  .gm-table.table-port tbody td:nth-child(4)::before {
    float: left;
    margin-right: 5px;
  }
  /* data */
  .gm-table.table-port tbody td:nth-child(5) {
    top: 190px;
    left: 0;
    width: 130px !important;
    text-align: left;
  }
  .gm-table.table-port tbody td:nth-child(5)::before {
    float: left;
    margin-right: 5px;
  }
  
  .gm-table.table-port tbody td:nth-child(6) {
    top: 25px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-port tbody td:nth-child(6)::before {
    float: left;
    margin-right: 5px;
    line-height: 24px;
  }
  
  /* data */
  .gm-table.table-port tbody td:nth-child(7) {
    top: 103px;
    right: 0;
    width: 170px !important;
    text-align: right;
  }
  .gm-table.table-port tbody td:nth-child(7)::before {
    float: left;
    margin-right: 5px;
  }
  /* data */
  .gm-table.table-port tbody td:nth-child(8) {
    top: 120px;
    right: 0;
    width: 170px !important;
    text-align: right;
  }
  .gm-table.table-port tbody td:nth-child(8)::before {
    float: left;
    margin-right: 5px;
  }
  /* data */
  .gm-table.table-port tbody td:nth-child(9) {
    top: 138px;
    right: 0;
    width: 170px !important;
    text-align: right;
  }
  .gm-table.table-port tbody td:nth-child(9)::before {
    float: left;
    margin-right: 5px;
  }
  
  .gm-table.table-port tbody td:nth-child(10) {
    display: none !important;
  }
  
  .gm-table.table-port tbody td:nth-child(11) {
    top: 48px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-port tbody td:nth-child(11)::before {
    float: left;
    margin-right: 5px;
  }
  .gm-table.table-port tbody td:nth-child(11) .sign::before {
    top: 0;
    left: -25px;
  }
  .gm-table.table-port tbody td:nth-child(11) .sign {
    margin-left: 25px;
    margin-top: 0;
  }
  
  .gm-table.table-port tbody td:nth-child(11) .sign.invis {
    color: #3F5970;
    margin-left: 0;
  }

  .gm-table.table-port tbody td:nth-child(12) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .price-sign {
    top: -35px;
    right: 0;
    position: absolute;
    width: 170px !important;
    
    text-align: left;
  }
  .price-sign>div:empty {
    display: none;
  }
  .price-sign>div::before {
    position: absolute;
    left: 0;
    top: 0;
    
    content: 'Цена';
    font-weight: bold;
  }
  .price-sign>div {
    margin-top: 18px;
    padding-right: 3px;
  }
  .price-sign>.bold {
    background: #fff;
    
    border: 1px solid #8293a3;
  
    text-align: right;
  }

  /**
   * table-stations
   */
  .gm-table.table-stations tbody tr {
    display: block;
    position: relative;

    height: 250px;
  }
  .gm-table.table-stations tbody td {
    display: block !important;
    position: absolute;
  }
  
  .gm-table.table-stations tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-stations tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-stations tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-stations tbody td:nth-child(4) {
    top: 88px;
    right: 0px;
    width: 77px !important;
    text-align: left;
  }
  .gm-table.table-stations tbody td:nth-child(4)::before {
    position: absolute;
    left: -93px;
    content: 'Осн.мощн.'
  }
  /* data */
  .gm-table.table-stations tbody td:nth-child(5) {
    top: 128px;
    right: 0px;
    width: 77px !important;
    text-align: left;
  }
  .gm-table.table-stations tbody td:nth-child(5)::before {
    position: absolute;
    left: -93px;
    content: 'Резерв.мощн.'
  }
  
  .gm-table.table-stations tbody td:nth-child(6) {
    top: 25px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-stations tbody td:nth-child(6)::before {
    float: left;
    margin-right: 5px;
    line-height: 24px;
  }
  
  /* data */
  .gm-table.table-stations tbody td:nth-child(7) {
    top: 68px;
    right: 0;
    width: 170px !important;
    text-align: left;
  }
  .gm-table.table-stations tbody td:nth-child(7) .bold::before {
    text-align: left;
    position: absolute;
    left: -75px;
  }
  .gm-table.table-stations tbody td:nth-child(7) .bold {
    text-align: left;
    position: absolute;
    left: 75px;
  }
  
  /* data */
  .gm-table.table-stations tbody td:nth-child(8) {
    top: 138px;
    right: 0;
    width: 170px !important;
    text-align: right;
  }
  .gm-table.table-stations tbody td:nth-child(8)::before {
    float: left;
    margin-right: 5px;
  }
  
  .gm-table.table-stations tbody td:nth-child(9) {
    top: 48px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-stations tbody td:nth-child(9)::before {
    float: left;
    margin-right: 5px;
  }
  .gm-table.table-stations tbody td:nth-child(9) .sign::before {
    top: 0;
    left: -25px;
  }
  .gm-table.table-stations tbody td:nth-child(9) .sign {
    margin-left: 25px;
    margin-top: 0;
  }
  .gm-table.table-stations tbody td:nth-child(10) {
    display: none !important;
  }
  .gm-table.table-stations tbody td:nth-child(11) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .table-stations .price-sign {
    top: -16px;
    right: 0;
    position: absolute !important;
    width: 140px !important;
    
    text-align: right !important;
    padding-left: 30px !important;
    padding-right: 3px;
    
    border: 1px solid #3F5970;
  }
 
  .table-stations .price-sign::before {
    left: 3px !important;
  }
  .table-stations .price-sign>div:empty {
    display: none;
  }
  .table-stations .price-signs::before {
    position: absolute;
    right: 143px;
    top: -35px;    
    content: 'Цена';
    font-weight: bold;
  }
  .table-stations .price-sign>div {
    margin-top: 18px;
  }
  .table-stations .price-sign>.bold {
    background: #fff;
    
    border: 1px solid #8293a3;
  
    text-align: right;
  }


  /**
   * table-ups
   */
  .gm-table.table-ups tbody tr {
    display: block;
    position: relative;

    height: 310px;
  }
  .gm-table.table-ups tbody td {
    display: block !important;
    position: absolute;
  }
  
  .gm-table.table-ups tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-ups tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-ups tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-ups tbody td:nth-child(4) {
    top: 180px;
    left: 93px;
    width: 130px !important;
    text-align: left;
  }
  .gm-table.table-ups tbody td:nth-child(4)::before {
    position: absolute;
    left: -93px;
  }
  /* data */
  .gm-table.table-ups tbody td:nth-child(5) {
    top: 200px;
    left: 93px;
    width: 77px !important;
    text-align: left;
  }
  .gm-table.table-ups tbody td:nth-child(5)::before {
    position: absolute;
    left: -93px;
  }
  
  .gm-table.table-ups tbody td:nth-child(6) {
    top: 85px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-ups tbody td:nth-child(6)::before {
    float: left;
    margin-right: 5px;
  }
  
  /* data */
  .gm-table.table-ups tbody td:nth-child(7) {
    top: 163px;
    right: 0;
    width: 170px !important;
    text-align: center;
  }
  
  /* data */
  .gm-table.table-ups tbody td:nth-child(8) {
    display: none !important;
  }
  
  .gm-table.table-ups tbody td:nth-child(9) {
    top: 20px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-ups tbody td:nth-child(9)::before {
    float: left;
    margin-right: 5px;
  }
  .gm-table.table-ups tbody td:nth-child(9):empty {
    display: none !important;
  }
  
  .gm-table.table-ups tbody td:nth-child(10) .sign::before {
    top: 0;
    left: -25px;
  }
  .gm-table.table-ups tbody td:nth-child(10) .sign {
    margin-left: 25px;
    margin-top: 0;
  }
  .gm-table.table-ups tbody td:nth-child(10) {
    top: 40px;
    right: 0;
    width: 170px !important;
    text-align: right;
  }
  .gm-table.table-ups tbody td:nth-child(10)::before {
    position: absolute;
  }
  .gm-table.table-ups tbody td:nth-child(10) .invis {
    color: #3F5970;
  }
  
  .gm-table.table-ups tbody td:nth-child(11) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .table-ups .price-sign {
    display: none;
  }

  /**
   * table-stab
   */
  .gm-table.table-stab tbody tr {
    display: block;
    position: relative;

    height: 265px;
  }
  .gm-table.table-stab tbody td {
    display: block !important;
    position: absolute;
  }
  
  .gm-table.table-stab tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-stab tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-stab tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-stab tbody td:nth-child(4) {
    top: 180px;
    left: 75px;
    width: 120px !important;
    text-align: left;
  }
  .gm-table.table-stab tbody td:nth-child(4)::before {
    position: absolute;
    left: -73px;
  }
  /* data */
  .gm-table.table-stab tbody td:nth-child(5) {
    top: 90px;
    right: 0px;
    width: 170px !important;
    text-align: center;
  }
  .gm-table.table-stab tbody td:nth-child(5)::before {
    display: block;
  }
  
  .gm-table.table-stab tbody td:nth-child(6) {
    top: 140px;
    right: 0;
    width: 170px !important;
    text-align: center;
  }
  .gm-table.table-stab tbody td:nth-child(6)::before {
    display: block;
  }
  
  /* data */
  .gm-table.table-stab tbody td:nth-child(7) {
    top: 20px;
    right: 0;
    width: 170px !important;
    text-align: center;
  }
  
  .gm-table.table-stab tbody td:nth-child(8) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .table-stab .price-sign {
    display: none;
  }

/**
   * table-weld
   */
  .gm-table.table-weld tbody tr {
    display: block;
    position: relative;

    height: 280px;
  }
  .gm-table.table-weld tbody td {
    display: block !important;
    position: absolute;
  }
  
  .gm-table.table-weld tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-weld tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-weld tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-weld tbody td:nth-child(4) {
    top: 198px;
    left: 93px;
    width: 77px !important;
    text-align: left;
  }
  .gm-table.table-weld tbody td:nth-child(4)::before {
    position: absolute;
    left: -93px;
  }
  /* data */
  .gm-table.table-weld tbody td:nth-child(5) {
    top: 218px;
    left: 93px;
    width: 77px !important;
    text-align: left;
  }
  .gm-table.table-weld tbody td:nth-child(5)::before {
    position: absolute;
    left: -93px;
  }
  
  .gm-table.table-weld tbody td:nth-child(7) {
    top: 25px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-weld tbody td:nth-child(7)::before {
    float: left;
    margin-right: 5px;
    line-height: 24px;
  }
  
  /* data */
  .gm-table.table-weld tbody td:nth-child(6) {
    top: 108px;
    right: 0;
    width: 170px !important;
    text-align: center;
  }
  .gm-table.table-weld tbody td:nth-child(6) .bold::before {
    text-align: left;
    position: absolute;
    left: -75px;
  }
  .gm-table.table-weld tbody td:nth-child(6) .bold {
    text-align: left;
    position: absolute;
    left: 75px;
  }
  
  /* data */
  .gm-table.table-weld tbody td:nth-child(8) {
    top: 48px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-weld tbody td:nth-child(8)::before {
    float: left;
    margin-right: 5px;
  }
  .gm-table.table-weld tbody td:nth-child(8) .sign::before {
    top: 0;
    left: -25px;
  }
  .gm-table.table-weld tbody td:nth-child(8) .sign {
    margin-left: 25px;
    margin-top: 0;
  }

  .gm-table.table-weld tbody td:nth-child(8) .sign.invis {
    color: #3F5970;
    margin-left: 0;
  }

  .gm-table.table-weld tbody td:nth-child(9) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .table-weld .price-sign {
    top: -16px;
    right: 0;
    position: absolute !important;
    width: 140px !important;
    
    text-align: right;
    padding-left: 30px !important;
    padding-right: 3px;
  }
 
  .table-weld .price-sign::before {
    left: 3px !important;
  }
  .table-weld .price-sign>div:empty {
    display: none;
  }
  .table-weld .price-sign>div::before {
    position: absolute;
    left: 30px;
    top: -18px;
    
    content: 'Цена';
    font-weight: bold;
  }
  .table-weld .price-sign>div {
    margin-top: 0px;
    padding: 0 3px;
  }
  .table-weld .price-sign>.bold {
    background: #fff;
    
    border: 1px solid #8293a3;
  
    text-align: right;
  }

/**
   * table-mast
   */
  .gm-table.table-mast tbody tr {
    display: block;
    position: relative;

    height: 257px;
  }
  .gm-table.table-mast tbody td {
    display: block !important;
    position: absolute;
  }
  
  .gm-table.table-mast tbody td:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-mast tbody td:nth-child(2) {
    top: 25px;
    left: 0;
    width: 130px;
  }
  .gm-table.table-mast tbody td:nth-child(3) {
    top: 105px;
    left: 0;
    width: 130px;
  }
  /* data */
  .gm-table.table-mast tbody td:nth-child(4) {
    top: 118px;
    right: 0px;
    width: 170px !important;
    text-align: center;
  }
  .gm-table.table-mast tbody td:nth-child(4)::before {
    display: block;
  }
  /* data */
  .gm-table.table-mast tbody td:nth-child(5) {
    top: 86px;
    right: 0px;
    width: 120px !important;
    text-align: left;
  }
  .gm-table.table-mast tbody td:nth-child(5)::before {
    position: absolute;
    left: -50px;
  }
  
  .gm-table.table-mast tbody td:nth-child(6) {
    top: 25px;
    right: 0;
    width: 170px !important;
  }
  .gm-table.table-mast tbody td:nth-child(6)::before {
    float: left;
    margin-right: 5px;
    line-height: 24px;
  }
  
  /* data */
  .gm-table.table-mast tbody td:nth-child(7) {
    top: 188px;
    left: 0;
    width: 130px !important;
    text-align: right;
  }
  .gm-table.table-mast tbody td:nth-child(7)::before {
    float: left;
    margin-right: 5px;
  }
  
  /* data */
  .gm-table.table-mast tbody td:nth-child(8) {
    top: 168px;
    left: 0;
    width: 130px !important;
    text-align: right;
  }
  .gm-table.table-mast tbody td:nth-child(8)::before {
    float: left;
    margin-right: 5px;
  }
  
  .gm-table.table-mast tbody td:nth-child(9) {
    display: none !important;
  }

  
  .gm-table.table-mast tbody td:nth-child(10) {
    top: 48px;
    right: 0;
    width: 170px !important;
    text-align: left;
  }
  .gm-table.table-mast tbody td:nth-child(10)::before {
    position: absolute;
  }
  .gm-table.table-mast tbody td:nth-child(10) .sign {
    position: absolute;
    left: 60px;
    padding-left: 23px;
    margin-top: 0;
  }
  .gm-table.table-mast tbody td:nth-child(10) .sign::before {
    top: 0; left: 0;
  }
  .gm-table.table-mast tbody td:nth-child(11) {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .gm-table.table-mast tbody td:nth-child(11)::before {
    display: none !important;
  }
  
  .table-mast .price-sign {
    top: -40px;
    right: 0;
    position: absolute !important;
    width: 160px !important;
    
    text-align: right;
    padding-left: 30px !important;
    padding-right: 3px;
  }
 
  .table-mast .price-sign::before {
    display: none !important;
  }
  .table-mast .price-sign>div:empty {
    display: none;
  }
  .table-mast .price-sign>div::before {
    position: absolute;
    left: 30px;
    top: 0;
    
    content: 'Цена';
    font-weight: bold;
  }
  .table-mast .price-sign>div {
    margin-top: 18px;
  }
  .table-mast .price-sign>.bold {
    background: #fff;
    
    border: 1px solid #8293a3;
  
    text-align: right;
  }

} /* @media (max-width: 757px) */


/**
 *
 * /Grandmotors tables design.
 *
 */

/*****************************************************************************/
/* GM TILE                                                                   */
/*****************************************************************************/

/**
 * Main container for tiles
 */
.gm-tileset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/**
 * Basic tile settings
 */
.gm-tile {
  position: relative;
  box-sizing: border-box;
  width: 353px;
  
  border: 1px solid #cacbd0;
  padding: 9px;
  margin: 7px;
}
.gm-tile:nth-child(2n+1) {
  width: 360px;
  margin-left: 0;
  margin-right: 7px;
}
.gm-tile:nth-child(2n+2) {
  width: 360px;
  margin-left: 7px;
  margin-right: 0;
}


.wide .gm-tile {
  width: 396px;
}

.wide .gm-tile:nth-child(3n+1) {
  width: 403px;
  margin-left: 0;
  margin-right: 7px;
}
.wide .gm-tile:nth-child(3n+2) {
  width: 396px;
  margin-left: 7px;
  margin-right: 7px;
}
.wide .gm-tile:nth-child(3n+3) {
  width: 403px;
  margin-left: 7px;
  margin-right: 0;
}

.gm-tile:hover {
  background: #e8ecef;
}

/**
 * Inline elements
 */
.gm-tile .nowrap {
  white-space: nowrap;
}

.gm-tile .main-char {
  font-size: larger;
  font-weight: bold;
}
 
/**
 * Tile fields setttings
 */
.gm-tile .type {
  font-size: 9pt;
  letter-spacing: -.5pt;
  color: #838383;
}
.gm-tile .name {
  font-size: 13pt;
  letter-spacing: 0;
}
.gm-tile .country {
  font-size: 9pt;
}
.gm-tile .images-list img.only {
  width: 100%;
  height: auto;
  border: 1px solid #caced1;
  margin: 9px 0 7px 0;
}
.gm-tile .images-list img.multiple {
  width: 100%;
  box-sizing: border-box;
  height: auto;
  border: 1px solid #caced1;
  margin: 9px 0 7px 0;
}
.gm-tile .images-list table {
  border-spacing: 0;
}
.gm-tile .images-list table>tbody>tr>td:first-child {
  padding-right: 5px;
}
.gm-tile .images-list table>tbody>tr>td:last-child {
  padding-left: 5px;
}
.gm-tile .images-list table>tbody>tr>td:first-child>img {
  /*margin-right: 5px;*/
  box-sizing: border-box;
}
.gm-tile .images-list table>tbody>tr>td:last-child>img {
  /*margin-left: 5px;*/
  box-sizing: border-box;
}


.gm-tile .cols-2 {
  display: block;
  clear: both;
  min-height: 60px;
}
.gm-tile .cols-2>div {
  display: inline-block;
  width: 50%;
  margin: 0;
  box-sizing: border-box;
}
.gm-tile .cols-2>div:first-child {
  float: left;
}

.gm-tile .read-more {
  display: block;
  box-sizing: border-box;
  
  padding: 9px 0;
  
  background: #2c5da0;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/**
 * Parameters table
 */
.gm-tile .parameters table {
  width: 100%;
  border-collapse: collapse;
  
  margin-bottom: 69px;
}
.gm-tile .parameters td {
  border-bottom: 1px solid #cacfd3;
  vertical-align: middle;
}
.gm-tile .param-name {
  font-weight: bold;
}
.gm-tile .param-value {
  text-align: right;
}


.price-and-order {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 96%;
}

/**
 * IE FIX:;
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .price-and-order {
    width: auto;
  }
}

.price-and-order>tbody>tr>td{
  width: 50%;
  
  vertical-align: bottom;
}
.price {
  width: auto;
  vertical-align: bottom;
}
/**
 * Price section
 */
.gm-tile .price table {
  width: 100%;
}

.gm-tile .price-string {
  color: #858585;
}

.gm-tile .price .old-price {
  color: #858585;
  text-decoration: line-through;
  letter-spacing: -.5px;
  line-height: 1em;
}
.gm-tile .price .discount {
  color: #2e5495;
  letter-spacing: -.5px;
  line-height: 1em;
}
.gm-tile .price .current {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 1em;
}

.gm-tile .text-red {
  color: #fb0000;
}
.gm-tile .text-green {
  color: #3caf47;
}
.gm-tile .text-blue {
  color: #2c5da0;
}

/**
 * Stock
 */
.gm-tile .stock {
  text-align: center;
  line-height: 20px;
  margin-bottom: 5px;
}
.gm-tile .icon-transit {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
}
.gm-tile .icon-transit:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 17px;
  background: url(/images/icons/icons-catalog.png) -56px -75px no-repeat;
}
.gm-tile .icon-instock {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
}
.gm-tile .icon-instock:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 16px;
  background: url(/images/icons/icons-catalog.png) -56px -59px no-repeat;
}

/**
 * Order button
 */
.gm-tile .btn-order {
  display: block;
  width: 100%;
  box-sizing: border-box;
  
  padding: 9px 0;
  
  border: 1px solid #fa9b01;
  
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f5ee00+0,f0b102+100 */
  background: #f5ee00; /* Old browsers */
  background: -moz-linear-gradient(top, #f5ee00 0%, #f0b102 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f5ee00 0%,#f0b102 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f5ee00 0%,#f0b102 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5ee00', endColorstr='#f0b102',GradientType=0 ); /* IE6-9 */
  
  color: #435c60;
  text-decoration: none;
  text-align: center;
}

.gm-tile .btn-order:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f0b102+0,f5ee00+100 */
  background: #f0b102; /* Old browsers */
  background: -moz-linear-gradient(top, #f0b102 0%, #f5ee00 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f0b102 0%,#f5ee00 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f0b102 0%,#f5ee00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0b102', endColorstr='#f5ee00',GradientType=0 ); /* IE6-9 */
}

/**
 * Signs
 */
.gm-tile .signs {
  display: inline-block;
  height: 60px;
}
.gm-tile .sign.best {
  position: relative;
  color: #00a831;
  padding-left: 20px;
}
.gm-tile .sign.best:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 19px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px -36px no-repeat;
}

.gm-tile .sign.discount {
  position: relative;
  color: #ff9b00;
  padding-left: 20px;
}
.gm-tile .sign.discount:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px 0 no-repeat;
  margin: 0 auto;
}

.gm-tile .sign.used {
  position: relative;
  color: #fa0203;
  padding-left: 20px;
}
.gm-tile .sign.used:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url(/images/icons/icons-catalog.png) -37px -18px no-repeat;
  margin: 0 auto;
}

/**
 * Mobile view
 */
@media(max-width: 757px) {
  .gm-tile {
    width: 100%;
    margin: 7px;
  }
  .gm-tile:nth-child(2n+1) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .gm-tile:nth-child(2n+2) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  
  .wide .gm-tile {
    width: 100%;
  }
  
  .wide .gm-tile:nth-child(3n+1) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .wide .gm-tile:nth-child(3n+2) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .wide .gm-tile:nth-child(3n+3) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
} /* @<757px */


/**
 * GMForm
 */
.gm-form {
  box-sizing: border-box;
  border: 1px solid #ff9801;

  background: #fff6cd;
  color: #3f576f;
  
  padding: 14px;
}

.gm-form .col2:first-child {
  padding-right: 8px;
}

.gm-form .col2:last-child {
  padding-left: 8px;
}

.gm-form .col2>div {
  margin-top: 1em;
}

.gm-form .header {
  font-size: larger;
  font-weight: bold;
  margin: .5em .2em;
}

.gm-form .hint-caution {
  color: #727677;
  font-size: smaller;
  margin-top: 2em;
}

.gm-form .hint {
  color: #727677;
  font-size: 11px;
}

.gm-form .redstar {
  color: #ff6352;
}
.gm-form .redstar:after {
  content: '*';
}

.gm-form textarea {
  min-height: 8em;
  resize: vertical;
  box-sizing: border-box;
}

.gm-form select,
.gm-form textarea,
.gm-form input[type="text"],
.gm-form input[type="submit"],
.gm-form input[type="button"] {
  outline: none;
  width: 100%;
  display: block;
  border: 1px solid #adadad;
}

.gm-form input[type="submit"] {
  text-align: center;
  color: #3e5a72;
  font-weight: bolder;
  font-size: larger;
  padding: .7em;
  margin-top: 1em;
  border: 1px solid #fea900;
  background: #ffda29;
  background: -moz-linear-gradient(top, #ffda29 0%, #ffb82a 100%);
  background: -webkit-linear-gradient(top, #ffda29 0%,#ffb82a 100%);
  background: linear-gradient(to bottom, #ffda29 0%,#ffb82a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffda29', endColorstr='#ffb82a',GradientType=0 );
}
.gm-form input[type="submit"][disabled] {
  background: #cecece;
  background: -moz-linear-gradient(top, #cecece 0%, #aaaaaa 100%);
  background: -webkit-linear-gradient(top, #cecece 0%,#aaaaaa 100%);
  background: linear-gradient(to bottom, #cecece 0%,#aaaaaa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cecece', endColorstr='#aaaaaa',GradientType=0 );
  border: 1px solid #888;
}

.gm-form .invalid {
  box-shadow: 0 0 2px 1px #f00 inset;
}

/**
 * Mobile
 */
@media(max-width: 757px) {
  .gm-form .col2:first-child {
    padding-right: 0;
  }
  
  .gm-form .col2:last-child {
    padding-left: 0;
  }
  .gm-form .col2 {
    width: 100%;
  }
}

/**
 * Popup form
 */
.gm-form-popup {
  display: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  background: #FFF;
  border: 1px solid #3F5970;
  position: absolute;
  width: 290px;
  z-index: 10;
  padding: 0;
}
.gm-form-popup .gm-form .col2:first-child {
  padding-right: 0;
}

.gm-form-popup .gm-form .col2:last-child {
  padding-left: 0;
}
.gm-form-popup .gm-form .col2 {
  width: 100%;
}

/**
 * GM PROJECT
 */
/**
 * Non-wide version
 */
.gm-project-container {
  border-left: 1px solid #c5cdd4;
  border-right: 1px solid #c5cdd4;
  border-top: 1px solid #c5cdd4;
}
.gm-project.horizontal {
  display: flex;
  flex-direction: row;
  
  border-bottom: 1px solid #c5cdd4;
  box-sizing: border-box;
}
.gm-project.horizontal:hover {
  background: #e8ecef;
}

.gm-project.horizontal .left-column {
  padding: 10px 7px;
  flex-grow: 0;
  width: 326px;
  box-sizing: border-box;
  
  display: flex;
}
.gm-project.horizontal .middle-column {
  width: 255px;
  height: 178px;
  box-sizing: border-box;
}
.gm-project.horizontal .middle-column>img {
  width: 255px;
  height: 178px;
}
.gm-project.horizontal .right-column {
  padding: 10px 7px 0 7px;
  flex-shrink: 0;
  flex-grow: 0;
  width: 160px;
  box-sizing: border-box;
  position: relative;
}
.gm-project.horizontal .project-button {
  position: absolute;
  bottom: 7px;
  left: 7px;
  right: 7px;
}

.gm-project.horizontal .description-column {
  width: 165px;
  box-sizing: border-box;
}
.gm-project.horizontal .logo-column {
  width: 122px;
  box-sizing: border-box;
}

.gm-project.horizontal .hv-sign {
  display: inline-block;
  width: 13px;
  height: 11px;
  background: url(/images/icons/icon-hv-small.png) 10% 60% no-repeat;
}

.gm-project.horizontal .project-button-href {
  display: block;
  background: #2c5da0;
  color: #fff;
  
  padding: 7px;
  
  text-decoration: none;
  text-align: center;
}

.gm-project.horizontal .logo-column>img {
  display: block;
  margin: auto;
  border: 1px solid #c5cdd4;
}

.gm-project.horizontal .project-country {
  font-size: 10px;
  text-align: center;
}

.gm-project.horizontal .project-type {
  color: #808080;
  font-size: 14px;
}
.gm-project.horizontal .project-power {
  margin-top: 16px;
  line-height: 100%;
  color: #2c5da0;
  font-size: 18px;
  font-weight: bold;
}

.gm-project.horizontal .project-description {
  margin-top: 13px;
  font-size: 13px;
  color: #3f5970;
  font-weight: bold;
}

.gm-project.horizontal .project-contents div {
  font-size: 11px;
}

.gm-project.horizontal .project-details {
  padding-bottom: 35px;
}

.gm-project.horizontal .project-details div {
  font-size: 11px;
  letter-spacing: -.8px;
}
.gm-project.horizontal div.list-header {
  color: #808080;
  font-size: 14px;
  margin-top: .3em;
  margin-bottom: -.2em;
}

/**
 * Wide version
 */
.wide .gm-project-container {
  border-left: 1px solid #c5cdd4;
  border-right: 1px solid #c5cdd4;
  border-top: 1px solid #c5cdd4;
}

.wide .gm-project.horizontal {
  display: flex;
  flex-direction: row;
  
  border-bottom: 1px solid #c5cdd4;
  box-sizing: border-box;
}
.wide .gm-project.horizontal:hover {
  background: #e8ecef;
}
.wide .gm-project.horizontal .left-column {
  padding: 57px 20px 11px 11px;
  flex-grow: 1;
  
  display: flex;
}

.wide .gm-project.horizontal .right-column {
  padding: 50px 20px 11px 20px;
  flex-shrink: 0;
  /*flex-grow: 1;*/
}

/**
 * Left column
 */
.wide .gm-project.horizontal .data-container {
  display: flex;
  flex-direction: row;
}
.wide .gm-project.horizontal .description-column {
  flex-grow: 1;
}

.wide .gm-project.horizontal .project-type {
  color: #808080;
  font-size: 11pt;
}
.wide .gm-project.horizontal .project-power {
  margin-top: 16px;
  
  line-height: 100%;
  
  color: #2c5da0;
  font-size: 25pt;
  font-weight: bold;
}

.wide .gm-project.horizontal .project-hv {
  height: 18px;
  font-size: 10pt;
  color: #2c5da0;
  font-weight: bold;
}

.wide .gm-project.horizontal .project-description {
  margin-top: 13px;
  width: 267px;
  
  font-size: 11pt;
  color: #3f5970;
  font-weight: bold;
}

.wide .gm-project.horizontal .logo-column {
  width: 128px;
  flex-shrink: 0;
}

.wide .gm-project.horizontal .logo-column>img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  
  border: 1px solid #c5cdd4;
}

.wide .gm-project.horizontal .logo-column .project-country {
  margin-top: 7px;
  
  font-size: 9pt;
  color: #3f5970;
  text-align: center;
}

/**
 * Middle column
 */
.wide .gm-project.horizontal .middle-column {
  width: 355px;
  height: 235px;
}
.wide .gm-project.horizontal .middle-column img {
  width: 353px;
  height: 235px;
  border-left: 1px solid #c8d0d6;
  border-right: 1px solid #c8d0d6;
}

/**
 * Right column
 */
.wide .gm-project.horizontal .project-details {
  padding-bottom: 0;
}
.wide .gm-project.horizontal .right-column {
  display: flex;
  flex-direction: row;
  width: 447px;
  box-sizing: border-box;
}
.wide .gm-project.horizontal .project-contents {
  display: block;
  flex-grow: 1;
  padding-right: 7px;
}
.wide .gm-project.horizontal .project-contents div {
  font-size: 11pt;
}
.wide .gm-project.horizontal .project-details {
  width: 205px;
  flex-shrink: 0;
}
.wide .gm-project.horizontal .project-equipment {
  min-height: 130px;
}
.wide .gm-project.horizontal .project-details div {
  font-size: 11pt;
}

.wide .gm-project.horizontal .project-button {
  position: static;
}

.wide .gm-project.horizontal .project-button-href {
  display: block;
  background: #2c5da0;
  color: #fff;
  
  padding: 7px;
  
  text-decoration: none;
  text-align: center;
}

.wide .gm-project.horizontal .list-header {
  color: #808080;
  font-size: 11pt !important;
  margin-bottom: 7px;
  margin-top: 7px;
}
.wide .gm-project.horizontal .hv-sign {
  display: inline-block;
  width: 13px;
  height: 11px;
  background: url(/images/icons/icon-hv-small.png) 10% 60% no-repeat;
}


.gm-project-container,
.wide .gm-project-container {
  border: none;
}

.gm-project.horizontal {
  margin: 7px 0;
  border: 1px solid #cccccc;
}


/**
 * Mobile version
 */
@media (max-width: 757px) {
  .wide .gm-project.horizontal .project-details {
    padding-bottom: 0;
  }
  .gm-project.horizontal .project-details {
    padding-bottom: 0;
  }
  /**
   * RESET:
   */
  .gm-project.horizontal,
  .gm-project.horizontal .left-column,
  .gm-project.horizontal .middle-column,
  .gm-project.horizontal .right-column,
  .gm-project.horizontal .description-column,
  .gm-project.horizontal .logo-column,
  .gm-project.horizontal .project-contents,
  .gm-project.horizontal .project-details,
  .gm-project.horizontal .middle-column img,
  .gm-project-container {
    display: block !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
  }
  
  .gm-project.horizontal .project-button {
    position: static !important;

    width: 210% !important; /* PATCH */
  }
  
  .gm-project.horizontal {
    margin: 11px 0 !important;
    border: 1px solid #c4cdd4 !important;
    padding: 11px !important;
  }
  
  .gm-project.horizontal .left-column {
    position: relative !important;
    min-height: 147px !important;
  }
  
  .gm-project.horizontal .logo-column {
    position: absolute !important;
    width: 100px !important;
    right: 0px;
    top: 0px;
  }
  
  .gm-project.horizontal .description-column {
    width: 63.77% !important;
    max-width: 63.77% !important;
  }
  
  .gm-project.horizontal .project-description {
    margin-top: 11px !important;
    font-size: 12px !important;
    width: 100%; !important;
    max-width: 100% !important;
  }
  
  .gm-project.horizontal .project-power {
    font-size: 20px !important;
    margin-top: 9px !important;
  }
  
  .gm-project.horizontal .project-type {
    font-size: 12px !important;
  }
  
  .gm-project.horizontal .middle-column {
    width: 100% !important;
    height: auto !important;
  }
  .gm-project.horizontal .middle-column img {
    width: 100% !important;
    height: auto !important;
    border: 1px solid #c4cdd4 !important;
  }
  
  .gm-project.horizontal .right-column {
    display: flex !important;
  }
  
  .wide .gm-project.horizontal .project-equipment,
  .gm-project.horizontal .project-equipment {
    order: 0;
    width: 50% !important;
  }
  .wide .gm-project.horizontal .list-header,
  .gm-project.horizontal .list-header {
    font-size: 12px !important;
    color: #3d596f !important;
    font-weight: bold !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .gm-project.horizontal .project-equipment div {
    font-size: 12px !important;
  }
  
  .gm-project.horizontal .project-details {
    width: 50% !important;
  }
  .wide .gm-project.horizontal .project-contents,
  .gm-project.horizontal .project-contents {
    order: 1;
    padding-left: 1em !important;
    width: 50% !important;
  }
  .gm-project.horizontal .project-contents div {
    font-size: 12px !important;
  }

  .gm-project.horizontal .project-equipment {
    min-height: 137px !important;
  }
} /* @mobile */


/**
 * Table-port patch
 */
.table-port .price-open,
.table-port .price-covered {
  padding-left: 16px;
  position: relative;
}
.table-port .price-open:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 2px;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -103px -59px no-repeat;
}
.table-port .price-covered:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 2px;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -103px -59px no-repeat;
  background-position: -103px -71px;
}
.table-port .price-open.red:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 2px;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -145px -59px no-repeat;
}
.table-port .price-covered.red:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 3px;
  left: 2px;
  width: 21px;
  height: 12px;
  background: url(/images/icons/icons-catalog.png) -145px -59px no-repeat;
  background-position: -145px -71px;
}


@media (max-width: 320px) {
  .table-port .price-sign {
    width: 160px !important;
  }
}

@media (max-width: 990px) {
  .gm-table.table-port tbody td:nth-child(5) {
    width: 134px !important;
  }

  .gm-table.table-port tbody tr {
    height: 273px;
  }

  .price-sign>.bold.red {
    border: 1px solid #ff0000;
  }

  .price-sign {
    top: -37px;
  }
  .price-sign:before {
    position: absolute;
    left: 0;
    top: -18px;
    content: 'Цена';
    font-weight: bold;
  }

  .price-sign>div::before {
    content: '';
    top: 3px;
    left: 2px;
  }

  .price-sign>div:nth-child(1) {
    margin-top: 0;
  }
  .price-sign>div:nth-child(2) {
    margin-top: 3px;
  }
}

@media (min-width: 990px) {
  .not-wide .gm-table.table-port .price-sign>div::before {
    display: none;
  }
}
