@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,300,400,500,700");
.color-primary {
  color: #54A522 !important;
}

.color-error {
  color: #980000;
}

.pointer {
  cursor: pointer;
}

.to-right {
  text-align: right;
}

.to-center {
  text-align: center;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.pad40 {
  padding: 40px;
}

.pad10l {
  padding-left: 10px;
}

.pad20l {
  padding-left: 20px;
}

.pad30l {
  padding-left: 30px;
}

.pad40l {
  padding-left: 40px;
}

.pad10r {
  padding-right: 10px;
}

.pad20r {
  padding-right: 20px;
}

.pad30r {
  padding-right: 30px;
}

.pad40r {
  padding-right: 40px;
}

.pad10t {
  padding-top: 10px;
}

.pad20t {
  padding-top: 20px;
}

.pad20tb {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad30t {
  padding-top: 30px;
}

.pad40t {
  padding-top: 40px;
}

.pad40tb {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.hidden {
  display: none !important;
}

.rows {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
}
.rows > p {
  padding: 5px 0px;
  font-size: 14px;
}
.rows > p:last-child {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
  -moz-flex: 1;
  flex: 1;
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
}
.rows > p:last-child:before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  height: 1px;
  margin: 0px 6px;
}

.columns {
  display: -moz-flex;
  display: flex;
}
.columns.center {
  -moz-align-items: center;
  align-items: center;
}
.columns .flex1 {
  -moz-flex: 1;
  flex: 1;
}

.toup {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  line-height: 40px;
}
.toup p {
  position: absolute;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  background: #54A522 url(../pic/toup.svg) no-repeat center center;
  background-size: 10px auto;
  border-radius: 100%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.toup p:hover {
  transform: scale(1.6);
}
.toup:before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(84, 165, 34, 0.3);
  border-radius: 100%;
  animation: toups 1s infinite;
  animation-timing-function: ease-in-out;
}

.message {
  position: fixed;
  right: 20px;
  bottom: 0px;
  z-index: 15;
  width: 360px;
  text-align: left;
}

.message-box {
  background-color: #fff;
  width: 360px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
  text-align: left;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.message-box.big {
  width: 860px;
}
.message-box .head {
  display: flex;
  align-items: center;
  background-color: #FF9913;
  color: #fff;
}
.message-box .head .title {
  padding: 0px 10px;
  flex: 1;
}
.message-box .head .title small {
  color: #fff;
}
.message-box .head .icon-close {
  flex: 0 0 38px;
  cursor: pointer;
  padding: 10px 0px;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.message-box .head .icon-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.message-box.success .head {
  background-color: #54A522;
}
.message-box.akcent .head {
  background-color: #FF9913;
}
.message-box.error .head {
  background-color: #980000;
}
.message-box .content {
  padding: 10px;
  font-size: 90%;
  overflow: auto;
  font-size: 16px;
  max-height: 600px;
}
.message-box.visible {
  margin-left: 360px;
  opacity: 0;
}

@keyframes toups {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.6);
  }
  100% {
    transform: scale(1);
  }
}
.tooltype {
  position: absolute;
  z-index: 9;
  background-color: #2C364A;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  max-width: 200px;
  text-align: center;
  border-radius: 2px;
}
.tooltype:before {
  content: "";
  display: block;
  margin: 0px auto;
  position: absolute;
  border: 6px solid transparent;
  border-bottom: 6px solid #2C364A;
  margin-top: -18px;
}

.full-form {
  padding: 20px;
}
.full-form input, .full-form textarea {
  display: block;
  padding: 20px;
  font-size: 14px;
  width: 100%;
  min-width: 200px;
  resize: none;
  margin-bottom: 20px;
  border: 1px solid #EDEDEE;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.full-form input:focus, .full-form textarea:focus {
  border-color: #54A522;
}
.full-form input.errors, .full-form textarea.errors {
  border-color: #980000;
}
.full-form button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 20px;
  font-size: 16px;
  background-color: #54A522;
  color: #fff;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.full-form button:hover {
  background-color: #43841B;
}
.full-form button.full {
  width: 100%;
}
.full-form button.akcent {
  background-color: #FF9913;
}
.full-form button.akcent:hover {
  background-color: #E68A11;
}
.full-form > i {
  font-style: normal;
  padding: 0px 0px 10px 0px;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #666;
}
.full-form.nopad {
  padding: 0px;
}

.loader {
  margin: 0px auto;
  height: 15px;
  width: 105px;
  align-items: center;
  overflow: hidden;
}
.loader i {
  display: block;
  float: left;
  background-color: #fff;
  height: 15px;
  width: 15px;
  margin-right: 2px;
  vertical-align: middle;
  animation: delay 0.8s infinite ease-in-out;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.loader i:nth-child(1) {
  background-color: #754FA0;
}
.loader i:nth-child(2) {
  background-color: #09b7bf;
  animation-delay: -0.7s;
}
.loader i:nth-child(3) {
  background-color: #90d36b;
  animation-delay: -0.6s;
}
.loader i:nth-child(4) {
  background-color: #f2d40d;
  animation-delay: -0.5s;
}
.loader i:nth-child(5) {
  background-color: #fcb12b;
  animation-delay: -0.4s;
}
.loader i:nth-child(6) {
  background-color: #ed1b72;
  animation-delay: -0.3s;
}

@keyframes delay {
  0%, 40%, 100% {
    transform: scaleY(0.05);
    -webkit-transform: scaleY(0.05);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@media screen and (max-width: 700px) {
  .head {
    padding-bottom: 20px;
    flex-wrap: wrap;
    -moz-justify-content: center;
    justify-content: center;
  }
  .head .city {
    width: 100vw;
    -moz-flex: 1;
    flex: 1;
  }
  .slider {
    display: none;
  }
  .tocall p:after {
    display: none;
  }
  .tocall {
    top: auto;
    left: 20px;
    bottom: 100px;
  }
  .tocartfix {
    top: auto;
    left: 20px;
    bottom: 170px;
  }
  .toup {
    left: 20px;
  }
  .footer .site {
    -moz-flex-direction: column;
    flex-direction: column;
  }
  .footer .phone {
    text-align: center;
  }
  .footer .links {
    display: none;
  }
  .itemcard {
    padding-left: 0px;
  }
  .site-head .search {
    width: 95%;
  }
  .mobile-wrap {
    -moz-flex-direction: column;
    flex-direction: column;
    -moz-align-items: center;
    align-items: center;
  }
  .mobile-wrap.reverse {
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .mobile-widthfull {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
  .catalog {
    padding-left: 0px;
  }
  .mobile-hidden {
    display: none !important;
  }
  .mobile-visibility {
    display: block !important;
  }
  .mobile-visibility.td {
    display: table-cell !important;
  }
  .itemdescription .rows p:last-child {
    white-space: normal;
  }
  .kontakty .maps {
    margin-top: 60px;
  }
  .kontakty > div {
    width: 100%;
  }
  .kontakty > div:first-child {
    margin-right: 0px !important;
  }
  .nopad {
    padding-left: 0px !important;
  }
  .up-block {
    margin-top: 20px;
  }
}/*# sourceMappingURL=adapt.css.map */