html {
  margin: 0;
  padding: 0; }

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', serif;
  margin: 0;
  min-height: 100vh;
  padding: 0; }

.center {
  margin: 0 auto;
  max-width: 1200px; }

.header {
  background-color: #00a4db;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative; }
  .header .center {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 50px; }
    .header .center a.logo {
      background-image: url("/images/logo-1.png");
      display: block;
      height: 46px;
      width: 105px; }
    .header .center .menu {
      margin: 0 0 0 20px;
      display: flex;
      flex-grow: 1;
      padding: 0;
      height: 50px;
      flex-direction: row; }
.header .center .menu > li {
  list-style: none;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  margin-right: 20px;
  position: relative;
}
      .header .center .menu a {
        color: #fff;
        font-size: 16px;}
        .header .center .menu > li:last-of-type {
          margin-right: 0; }
.header .center > a {
  color: #fff;
  font-size: 16px;
  margin-left: 20px;
}
.header .center .menu > li:hover > a, .header .center .menu > li > ul li:hover a {
  color: #d1d1d1;
}
.header .center .menu > li:hover ul {
  display: flex;
}
.header .center .menu > li ul {
  display: none;
  border-top: 3px solid #69bbd6;
  background-color: #00a4db;
  position: absolute;
  top: 100%;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.header .center .menu > li ul li {
  list-style: none;
  display: block;
  white-space: nowrap;
  padding: 0 40px 0 20px;
  height: 30px;
  line-height: 30px;
}

.header .center .menu > li ul li a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 16px;
}


.contentWrapper {
  flex-grow: 1;
  margin: 0 auto;
  padding-top: 20px;
  width: 1200px; }
  .contentWrapper .goodsList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%; }
    .contentWrapper .goodsList .goodsInfo {
      border: 1px solid rgba(30, 199, 255, 0.1);
      border-radius: 4px;
      margin: 0 5% 20px 0;
      padding-bottom: 20px;
      transition: all .25s;
      width: 30%; }
      .contentWrapper .goodsList .goodsInfo:nth-of-type(3n) {
        margin-right: 0; }
      .contentWrapper .goodsList .goodsInfo:hover {
        border: 1px solid rgba(30, 199, 255, 0.8); }
        .contentWrapper .goodsList .goodsInfo:hover .fastBuy {
          background-color: #1ec7ff !important; }
      .contentWrapper .goodsList .goodsInfo .img {
        height: 200px;
        margin: 10px 0;
        text-align: center; }
        .contentWrapper .goodsList .goodsInfo .img img {
          max-height: 100%;
          max-width: 100%; }
      .contentWrapper .goodsList .goodsInfo .name {
        color: #007ea8;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 26px;
        font-weight: 300;
        margin: 20px 0 10px 0;
        padding: 0 15px;
        text-align: center; }
      .contentWrapper .goodsList .goodsInfo .shortInfo {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 16px;
        font-weight: 300;
        margin: 25px 0 15px 0; }
        .contentWrapper .goodsList .goodsInfo .shortInfo p {
          margin: 0;
          text-align: center; }
      .contentWrapper .goodsList .goodsInfo .price {
        color: #1ec7ff;
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 15px;
        padding: 0 15px;
        text-align: center; }
        .contentWrapper .goodsList .goodsInfo .price i {
          font-size: 24px; }
      .contentWrapper .goodsList .goodsInfo .buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-around; }
        .contentWrapper .goodsList .goodsInfo .buttons .showMore {
          color: #00a4db;
          height: 40px;
          line-height: 40px; }
          .contentWrapper .goodsList .goodsInfo .buttons .showMore:hover {
            color: rgba(0, 164, 219, 0.5);
            cursor: pointer; }
        .contentWrapper .goodsList .goodsInfo .buttons .fastBuy {
          background-color: rgba(0, 164, 219, 0.4);
          border-radius: 4px;
          color: #fff;
          cursor: pointer;
          height: 40px;
          line-height: 40px;
          padding: 0 25px;
          text-transform: uppercase;
          transition: all .25s; }
          .contentWrapper .goodsList .goodsInfo .buttons .fastBuy:hover {
            background-color: #1ec7ff; }
          .contentWrapper .goodsList .goodsInfo .buttons .fastBuy:active {
            background-color: #00a4db !important; }
  .contentWrapper .basketItems {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 0; }
    .contentWrapper .basketItems > li {
      background: #fafafa;
      border: 1px solid #eeeff0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      list-style: none;
      margin-bottom: 25px;
      padding: 15px 10px;
      width: 100%; }
      .contentWrapper .basketItems > li .image {
        background-position: top center;
        background-size: contain;
        background-repeat: no-repeat;
        align-self: stretch;
        margin-right: 4%;
        text-align: center;
        width: 168px; }
      .contentWrapper .basketItems > li .info {
        align-self: stretch;
        flex-grow: 1; }
        .contentWrapper .basketItems > li .info .name {
          color: #131313;
          font-size: 13px;
          font-weight: 600;
          margin-bottom: 10px;
          text-transform: uppercase; }
        .contentWrapper .basketItems > li .info > .count {
          color: #404040;
          font-size: 13px;
          margin-bottom: 10px;
          font-weight: 300; }
          .contentWrapper .basketItems > li .info > .count .minus {
            border: 1px solid #e5e5e5;
            border-right: none;
            color: #e5e5e5;
            cursor: pointer;
            float: left;
            margin-bottom: 10px;
            text-align: center;
            width: 25px; }
            .contentWrapper .basketItems > li .info > .count .minus:hover {
              color: #38383f; }
          .contentWrapper .basketItems > li .info > .count .count {
            border: 1px solid #e5e5e5;
            border-left: none;
            border-right: none;
            color: #38383f;
            float: left;
            margin-bottom: 10px;
            text-align: center;
            width: 25px; }
          .contentWrapper .basketItems > li .info > .count .plus {
            border: 1px solid #e5e5e5;
            border-left: none;
            color: #e5e5e5;
            cursor: pointer;
            margin-right: 20px;
            margin-bottom: 10px;
            float: left;
            text-align: center;
            user-select: none;
            width: 25px; }
            .contentWrapper .basketItems > li .info > .count .plus:hover {
              color: #38383f; }
          .contentWrapper .basketItems > li .info > .count .remove {
            background: #ff5749;
            color: #fff;
            display: inline-block;
            height: 20px;
            line-height: 20px;
            padding: 0 10px;
            text-decoration: none; }
        .contentWrapper .basketItems > li .info .price {
          color: #131313;
          font-size: 25px;
          font-weigh: 300; }
        .contentWrapper .basketItems > li .info ul {
          margin: 0 0 20px 0;
          padding: 0; }
          .contentWrapper .basketItems > li .info ul li {
            color: #404040;
            font-size: 13px;
            list-style: none; }
      .contentWrapper .basketItems > li > .priceAndCount {
        display: flex;
        flex-direction: row;
        color: #00a4db;
        font-size: 20px;
        font-weight: 600;
        margin: 15px 0;
        text-align: center;
        width: 100%; }
        .contentWrapper .basketItems > li > .priceAndCount .price {
          width: 50%; }
          .contentWrapper .basketItems > li > .priceAndCount .price span {
            color: #000;
            display: inline-block;
            font-weight: 300;
            margin-right: 10px; }
        .contentWrapper .basketItems > li > .priceAndCount .count {
          width: 50%; }
          .contentWrapper .basketItems > li > .priceAndCount .count span {
            color: #000;
            display: inline-block;
            font-weight: 300;
            margin-right: 10px; }
      .contentWrapper .basketItems > li > .price {
        color: #00a4db;
        font-size: 30px;
        font-weight: 600;
        text-align: center;
        width: 100%; }
        .contentWrapper .basketItems > li > .price span {
          display: inline-block;
          font-weight: 300;
          margin-right: 10px; }
  .contentWrapper .fullPriceCount {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: left; }
    .contentWrapper .fullPriceCount .name {
      display: inline-block;
      width: 120px; }
    .contentWrapper .fullPriceCount span {
      color: #131313;
      font-weight: 600;
      font-size: 30px; }
      .contentWrapper .fullPriceCount span small {
        font-size: 24px;
        font-weight: 300; }
  .contentWrapper .basketWrapper {
    display: flex;
    flex-direction: row; }
    .contentWrapper .basketWrapper .basketItems {
      margin-right: 50px;
      width: calc(50% - 50px); }
    .contentWrapper .basketWrapper .paymentForm {
      margin: 20px 0 0;
      width: 50%; }
      .contentWrapper .basketWrapper .paymentForm label {
        color: #565656;
        display: block;
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 10px; }
        .contentWrapper .basketWrapper .paymentForm label span {
          color: red; }
      .contentWrapper .basketWrapper .paymentForm .field {
        margin-bottom: 20px; }
      .contentWrapper .basketWrapper .paymentForm .input {
        height: 36px;
        line-height: 36px;
        margin-bottom: 20px;
        font-size: 14px;
        width: 100%;
        padding: 0 20px; }
  .contentWrapper .continueOrderButton {
    background: #00c061;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin: 20px 0;
    text-align: center;
    padding: 10px 0;
    width: 100%; }
  .contentWrapper .cityOffice {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0; }
    .contentWrapper .cityOffice li {
      list-style: none;
      margin: 0 0 15px 0;
      padding: 0;
      width: 30%;
      text-align: center; }
  .contentWrapper .paymentForm .label {
    display: grid;
    grid-template-columns: 160px auto; }
    .contentWrapper .paymentForm .label span {
      font-weight: 600; }

.footer {
  border-top: 2px solid #1ec7ff;
  padding: 20px 0; }

/*# sourceMappingURL=main.css.map */
