.shoplist {
  padding: 30px 0;
  display: flex; }
  @media only screen and (max-width: 720px) {
    .shoplist {
      flex-direction: column; } }
  .shoplist .left {
    width: 300px;
    position: relative; }
    @media only screen and (max-width: 720px) {
      .shoplist .left {
        width: 100%; } }
    .shoplist .left .in {
      background: #fff;
      position: sticky;
      top: 0;
      left: 0;
      height: 70vh;
      overflow: auto;
      transition: height .5s ease;
      box-shadow: 0 0 5px 0 #aaa; }
      .shoplist .left .in.active {
        height: 100vh; }
      @media only screen and (max-width: 720px) {
        .shoplist .left .in {
          height: auto !important; } }
      .shoplist .left .in .searchwrap {
        margin: 10px 10px 0 10px; }
      .shoplist .left .in .orderwrapselect {
        margin: 10px 10px 0 10px;
        display: flex;
        border: 1px solid #ccc;
        border-radius: 5px;
        align-items: center;
        color: #999; }
        .shoplist .left .in .orderwrapselect .orderwrapdesc {
          padding: 0 5px; }
        .shoplist .left .in .orderwrapselect select {
          border: 0;
          flex: 1; }
      .shoplist .left .in .pricewrap {
        padding: 10px 10px;
        display: flex; }
        .shoplist .left .in .pricewrap .inside {
          flex: 2;
          border: 1px solid #ccc;
          padding: 10px 5px;
          text-align: center;
          max-width: 100%; }
        .shoplist .left .in .pricewrap .sep {
          flex: 1;
          text-align: center;
          color: #999;
          font-size: 32px; }
          @media only screen and (max-width: 1000px) {
            .shoplist .left .in .pricewrap .sep {
              font-size: 20px; } }
      .shoplist .left .in .formpart {
        padding: 0 10px 10px 10px; }
      .shoplist .left .in .checkpart {
        display: flex;
        align-items: center;
        padding: 10px 10px 10px 10px;
        cursor: pointer; }
        .shoplist .left .in .checkpart .ico {
          width: 30px;
          text-align: center;
          color: #999; }
          .shoplist .left .in .checkpart .ico .fa-square-check {
            color: #0a0; }
        .shoplist .left .in .checkpart .desc {
          flex: 1;
          color: #999; }
      .shoplist .left .in .categories {
        padding-top: 10px; }
        .shoplist .left .in .categories .call {
          border-bottom: 2px solid #d42427;
          display: block; }
          .shoplist .left .in .categories .call span {
            display: inline-block;
            padding: 5px 15px;
            background: #d42427;
            color: #fff; }
        .shoplist .left .in .categories .categoriesIn {
          background: #222; }
          .shoplist .left .in .categories .categoriesIn .cone {
            background: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee; }
            .shoplist .left .in .categories .categoriesIn .cone .desc {
              color: #333;
              padding: 10px;
              flex: 1; }
              .shoplist .left .in .categories .categoriesIn .cone .desc.selected {
                background: #d42427;
                color: #fff; }
            .shoplist .left .in .categories .categoriesIn .cone .ico {
              color: #666;
              border-left: 1px solid #eee;
              width: 30px;
              text-align: center;
              display: flex;
              justify-content: center;
              align-items: center; }
          .shoplist .left .in .categories .categoriesIn .sub {
            padding-left: 10px; }
            .shoplist .left .in .categories .categoriesIn .sub .sub2 {
              padding-left: 10px; }
  .shoplist .right {
    flex: 3;
    padding: 0 10px;
    box-sizing: border-box; }
    @media only screen and (max-width: 720px) {
      .shoplist .right {
        margin-top: 20px;
        padding: 0 0px; } }
    .shoplist .right .in {
      background: #fff;
      box-shadow: 0 0 5px 0 #aaa; }
      .shoplist .right .in .productlist {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; }

.product {
  flex: 0 0 300px;
  box-sizing: border-box;
  margin: 20px 5px;
  position: relative;
  box-shadow: 0 0 0px 0 #fff;
  transition: all .5s ease;
  border-radius: 15px 15px 0 0; }
  .product .moredata {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0 0px 0 #fff;
    overflow: hidden;
    max-height: 0px;
    transition: all .5s ease;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 15px 15px; }
    .product .moredata .btnadd {
      padding: 10px 15px;
      background: #d42427;
      color: #fff;
      border-radius: 15px;
      font-weight: bold;
      cursor: pointer; }
  .product .photo {
    height: 220px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all .5s ease; }
  .product .bands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    padding: 5px;
    min-height: 20px; }
    .product .bands .oneb {
      border-radius: 5px;
      padding: 1px 4px; }
    .product .bands .factory {
      background: #eee;
      color: #444; }
    .product .bands .others {
      padding-left: 5px;
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
      .product .bands .others .promo {
        background: #d42427;
        color: #fff; }
  .product .desc {
    padding: 0 5px 5px 5px; }
    .product .desc .name {
      color: #222;
      font-size: 16px;
      font-weight: bold;
      border-bottom: 1px solid #aaa;
      min-height: 42px;
      display: flex;
      align-items: center;
      letter-spacing: 1px; }
    .product .desc .price {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      .product .desc .price .value {
        color: #666;
        font-weight: bold; }
        .product .desc .price .value.promo {
          color: #d42427; }

.productone {
  padding: 30px 0; }
  .productone .productitemslist {
    padding: 20px 10px; }
    .productone .productitemslist .pione {
      padding: 10px;
      border-bottom: 1px solid #eee;
      display: flex;
      flex-wrap: wrap; }
      .productone .productitemslist .pione .piname {
        flex: 1;
        color: #444; }
      .productone .productitemslist .pione .piprice {
        display: flex;
        justify-items: center;
        align-items: center;
        padding: 0 5px;
        flex-wrap: wrap;
        text-align: center; }
        .productone .productitemslist .pione .piprice .price {
          flex: 1;
          color: #444;
          letter-spacing: 2px; }
        .productone .productitemslist .pione .piprice .old {
          flex: 1;
          color: #f00;
          margin-left: 5px;
          text-decoration: line-through;
          letter-spacing: 2px; }
        .productone .productitemslist .pione .piprice .piprice_lowest {
          flex: 0 0 100%;
          font-size: 11px;
          text-align: center;
          color: #777;
          letter-spacing: 1px; }
      .productone .productitemslist .pione .pioption {
        display: flex;
        justify-items: flex-end;
        align-items: center; }
        .productone .productitemslist .pione .pioption .bibtn {
          padding: 8px 10px;
          background: #d42427;
          color: #fff;
          cursor: pointer;
          border-radius: 5px;
          font-size: 14px;
          font-weight: bold; }
      .productone .productitemslist .pione .miniinfonosell {
        font-size: 11px;
        color: #444;
        width: 130px;
        text-align: center; }
      .productone .productitemslist .pione .pimore {
        flex: 0 0 100%;
        padding: 3px;
        margin: 5px 0px;
        border: 1px solid #eee;
        background: #fafafa; }
        .productone .productitemslist .pione .pimore dl {
          display: flex;
          justify-items: center;
          padding: 5px 0; }
          .productone .productitemslist .pione .pimore dl dt {
            flex: 1;
            text-align: right;
            padding-right: 5px;
            font-weight: bold;
            font-size: 13px;
            padding-top: 2px; }
            .productone .productitemslist .pione .pimore dl dt:after {
              content: ':'; }
          .productone .productitemslist .pione .pimore dl dd {
            flex: 3; }
  .productone .ones {
    flex: 0 0 49%;
    color: #222;
    margin-top: 20px; }
    @media only screen and (max-width: 720px) {
      .productone .ones {
        flex: 0 0 100%; } }
    .productone .ones .btns {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px; }
      .productone .ones .btns .one {
        font-size: 22px;
        font-weight: bold;
        display: block;
        padding: 10px 15px;
        color: #fff;
        background: #d42427;
        border: 2px solid #d42427;
        border-radius: 5px;
        cursor: pointer;
        margin: 10px; }
    .productone .ones .gallery {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
      .productone .ones .gallery .one {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        background-color: #fff;
        border: 1px solid #ccc;
        box-sizing: border-box;
        flex: 1 0 24%;
        margin: 10px .5%;
        height: 100px; }
        .productone .ones .gallery .one:first-of-type {
          flex: 0 0 99%;
          height: 400px; }
    .productone .ones .productdetails h4 {
      text-align: center;
      font-weight: bold;
      color: #222;
      font-size: 26px; }
    .productone .ones .productdetails h5 {
      text-align: center;
      font-weight: normal;
      color: #d42427;
      font-size: 18px; }
    .productone .ones .productdetails .factory {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px 0; }
      .productone .ones .productdetails .factory .img {
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        box-sizing: border-box; }
      .productone .ones .productdetails .factory .name {
        color: #777;
        letter-spacing: 2px;
        padding: 0 5px;
        box-sizing: border-box; }
    .productone .ones .productdetails .videobox {
      padding: 10px; }
      .productone .ones .productdetails .videobox video {
        background: #000; }
      .productone .ones .productdetails .videobox .descin {
        text-align: justify; }
    .productone .ones .productdetails2 .shortdesc {
      font-weight: bold;
      line-height: 1.6;
      padding: 10px; }
    .productone .ones .productdetails2 .desc {
      line-height: 1.4;
      padding: 10px; }
  .productone .top {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 720px) {
      .productone .top {
        flex-direction: column; } }
  .productone .mid {
    display: flex; }
    .productone .mid .ones {
      flex: 0 0 99%; }

.camp_details {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-right: 5px;
  background: #f6f6f6; }
  .camp_details .onedata, .camp_details .onedata2 {
    text-align: center;
    color: #666;
    letter-spacing: 2px;
    font-size: 16px;
    flex: 0 0 48%;
    margin: 10px 1%; }
    .camp_details .onedata b, .camp_details .onedata2 b {
      display: block; }
  .camp_details .onedata2 {
    flex: 0 0 98%; }

/*# sourceMappingURL=sklep.css.map */
