/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.styledCheckbox label:after,
.styledRadio label:after {
  content: '';
  display: table;
  clear: both;
}
.styledCheckbox .cr,
.styledRadio .cr {
  position: relative;
  display: inline-block;
  border: 1px solid #a9a9a9;
  border-radius: 0.25em;
  width: 1.3em;
  height: 1.3em;
  float: left;
  margin-right: 0.5em;
}
.styledRadio .cr {
  border-radius: 50%;
}
.styledCheckbox .cr .cr-icon,
.styledRadio .cr .cr-icon {
  position: absolute;
  font-size: 0.8em;
  line-height: 0;
  top: 50%;
  left: 20%;
}
.styledRadio .cr .cr-icon {
  margin-left: 0.04em;
}
.styledCheckbox label input[type="checkbox"],
.styledRadio label input[type="radio"] {
  display: none;
}
.styledCheckbox label input[type="checkbox"] + .cr > .cr-icon,
.styledRadio label input[type="radio"] + .cr > .cr-icon {
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  transition: all 0.3s ease-in;
}
.styledCheckbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.styledRadio label input[type="radio"]:checked + .cr > .cr-icon {
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}
.styledCheckbox label input[type="checkbox"]:disabled + .cr,
.styledRadio label input[type="radio"]:disabled + .cr {
  opacity: 0.5;
}
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('/fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('/fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('/fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('/fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('/fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fly-flower-left {
  background: url(/images/fly-flower-left.png) no-repeat;
  width: 151px;
  height: 238px;
  margin-left: -150px;
  z-index: 1;
  position: absolute;
}
.fly-flower-right {
  background: url(/images/fly-flower-right.png);
  width: 150px;
  height: 250px;
  position: absolute;
  margin-left: 961px;
  z-index: 1;
}
.logo a {
  display: block;
  background: url(/images/logo.png) no-repeat left 0px;
}
.prefooter .guarantee {
  background: url(/images/footer-flowers.png) no-repeat center 4px;
}
.prefooter .delivery {
  background: url(/images/footer-delivery.png) no-repeat center 4px;
}
.prefooter .secure {
  background: url(/images/footer-secure.png) no-repeat center 4px;
}
.footer .cards {
  background: url(/images/footer-cards.png) no-repeat top left;
  width: 188px;
  height: 68px;
  float: left;
  margin-right: 10px;
  background-size: cover;
}
.footer .swedbank {
  background: url(/images/footer-swedbank.png) no-repeat top left;
  width: 151px;
  height: 32px;
  float: left;
  margin-right: 10px;
}
.footer .seb {
  background: url(/images/footer-seb.png) no-repeat top left;
  width: 73px;
  height: 32px;
  float: left;
  margin-right: 10px;
}
.footer .norvik {
  background: url(/images/footer-norvik.png) no-repeat top left;
  width: 200px;
  height: 32px;
  float: left;
  margin-right: 10px;
}
.footer .citadele {
  background: url(/images/footer-citadele-m.png) no-repeat top left;
  height: 32px;
  width: 146px;
  float: left;
  margin-right: 10px;
}
.footer .latcard {
  background: url(/images/footer-latcard.png) no-repeat top left;
  width: 120px;
  height: 32px;
  float: left;
  margin-right: 10px;
  cursor: pointer;
}
.footer .bitcoin {
  background: url(/images/footer-bitcoin.png) no-repeat top left;
  width: 151px;
  height: 32px;
  float: left;
  margin-right: 10px;
}
.footer .webmoney {
  background: url(/images/footer-webmoney.png) no-repeat top left;
  width: 180px;
  height: 40px;
  float: left;
  margin-right: 10px;
}
.phone-block .details {
  background: url(/images/phone-new.png) left 1px no-repeat;
}
.qickdelivery {
  background: url(/images/clock.png) left 1px no-repeat;
}
.social-btn .facebook {
  background: url(/images/icon-fb.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.social-btn .vk {
  background: url(/images/icon-vk.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.social-btn .twitter {
  background: url(/images/icon-twitter.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.social-btn .instagram {
  background: url(/images/icon-instagram.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.social-btn .gplus {
  background: url(/images/icon-gplus.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.social-btn .draugem {
  background: url(/images/icon-draugem.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}
.lang-ru {
  background: url(/images/lang-ru.png) no-repeat top left;
}
.lang-lv {
  background: url(/images/lang-lv.png) no-repeat top left;
}
.lang-en {
  background: url(/images/lang-en.png) no-repeat top left;
}
.sprite-icon-basket {
  background: url(/images/icon-basket.png) no-repeat top left;
}
.sprite-icon-profile {
  background: url(/images/icon-profile.png) no-repeat top left;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
strong,
b {
  font-weight: 400;
}
.only-pc {
  display: inherit;
}
.only-mobile {
  display: none;
}
.only-phone {
  display: none;
}
.only-notbig {
  display: inherit;
}
.only-big {
  display: none;
}
body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.7px;
}
.center-container {
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
}
.def-hide {
  display: none;
}
a:link,
a:visited {
  font-family: 'Oswald', sans-serif;
  color: #000;
  text-decoration: underline;
  outline: none;
}
a:hover {
  text-decoration: none;
  color: #333;
}
h1 {
  color: #000;
  font-size: 32px;
  font-weight: normal;
}
h2 {
  color: #000;
  font-size: 30px;
  font-weight: normal;
  margin: 12px 0 12px 0;
}
h3 {
  color: #4c4c4c;
  font-size: 28px;
  font-weight: normal;
}
.button,
a.button,
a.button:link,
a.button:visited,
.button-green,
a.button-green,
a.button-green:link,
a.button-green:visited {
  background: #EA2386;
  display: block;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font: 16px/17px 'Oswald', sans-serif;
  padding: 15px 15px 15px 15px;
  margin-top: 5px;
  cursor: pointer;
  border-bottom: 5px solid #bd196b;
  font-weight: normal;
}
a.button:hover,
.button:hover {
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
}
.button-green,
a.button-green,
a.button-green:link,
a.button-green:visited {
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
}
a.button-green:hover,
.button-green:hover {
  background: #EA2386;
  border-bottom: 5px solid #bd196b;
}
.button.big {
  padding: 10px 10px;
}
.phone-en:before {
  content: 'LV/EN: ';
}
.phone-ru:before {
  content: 'RU: ';
}
.columns {
  overflow: hidden;
}
.column {
  float: left;
  margin-bottom: 10px;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.anim-border {
  background: none;
  border: 0;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #e0e0e0;
  position: relative;
  vertical-align: middle;
}
.anim-border::before,
.anim-border::after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}
.anim-border::before,
.anim-border::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform-origin: center;
}
.anim-border::before {
  border-top: 1px solid #70ab2b;
  border-bottom: 1px solid #70ab2b;
  transform: scale3d(0, 1, 1);
}
.anim-border::after {
  border-left: 1px solid #70ab2b;
  border-right: 1px solid #70ab2b;
  transform: scale3d(1, 0, 1);
}
.anim-border:hover::before,
.anim-border:hover::after {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s;
}
/* Cначала обозначаем стили для IE8 и более старых версий
т.е. здесь мы немного облагораживаем стандартный чекбокс. */
.mobileCheckbox {
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
/* Это для всех браузеров, кроме совсем старых, которые не поддерживают
селекторы с плюсом. Показываем, что label кликабелен. */
.mobileCheckbox + label {
  cursor: pointer;
}
/* Далее идет оформление чекбокса в современных браузерах, а также IE9 и выше.
Благодаря тому, что старые браузеры не поддерживают селекторы :not и :checked,
в них все нижеследующие стили не сработают. */
/* Прячем оригинальный чекбокс. */
.mobileCheckbox:not(checked) {
  position: absolute;
  opacity: 0;
}
.mobileCheckbox:not(checked) + label {
  position: relative;
  /* будем позиционировать псевдочекбокс относительно label */
  padding: 0 0 0 47px;
  /* оставляем слева от label место под псевдочекбокс */
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.mobileCheckbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  width: 33px;
  height: 33px;
  background: white;
  border: 1px solid #bf799c;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.mobileCheckbox:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
  /* анимация, чтобы чекбокс переключался плавно */
  opacity: 0;
}
/* Меняем фон чекбокса, когда он включен. */
.mobileCheckbox:checked + label:before {
  background: #bd196b;
}
/* Сдвигаем переключатель чекбокса, когда он включен. */
.mobileCheckbox:checked + label:after {
  opacity: 1;
}
/* Показываем получение фокуса. */
.mobileCheckbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(189, 25, 107, 0.06);
}
.datepicker {
  width: 287px;
  font-size: 18px;
}
.datepicker--cell {
  height: 37px;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #4a4a4a;
  font-size: 0.85em;
}
.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
  text-decoration: line-through;
  opacity: 0.4;
}
.main-shadow {
  min-height: 1000px;
}
.deliveries-view img {
  max-width: 93%;
  border: 1px solid #c7cab7;
}
.delivery-date-stopped {
  background-color: #f50049;
  color: white;
  font-size: 20px;
  padding: 10px;
  display: none;
}
#current-time-riga {
  border: 1px dashed #d2d2d2;
  width: 287px;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 16px;
  background-color: #f1f1f1;
}
#current-time-riga b {
  color: #4c4c4c;
  font-weight: normal;
}
#current-time-riga strong {
  color: #4c4c4c;
  font-weight: normal;
  font-size: 1.4em;
}
.filter-left-menu {
  width: 188px;
  border: 1px solid #dedede;
  background: #f7f7f7;
  float: left;
  margin-left: 4px;
  margin-top: 15px;
}
.filter-left-menu strong {
  font-weight: 400;
  font-size: 20px;
  padding: 8px 12px;
  display: block;
}
.filter-left-menu label.black-box {
  margin-bottom: 2px;
}
.filter-left-menu .filters-group {
  margin-left: 8px;
}
.filter-left-menu .filters-group label {
  font-size: 16px;
  margin-bottom: 3px;
}
.filter-left-menu .filters-group label.black-box .checkmark {
  top: 0px;
}
.filter-left-menu .filters-group.common {
  margin-left: 14px;
}
.filter-left-menu .filters-group a:link,
.filter-left-menu .filters-group a:visited {
  text-decoration: none;
}
.filter-apply-box {
  border: 5px solid #fff;
  border-left: none;
  background: #333;
  color: white;
  font-size: 16px;
  position: absolute;
  margin-left: 190px;
  display: none;
  z-index: 99;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.filter-apply-box .in {
  padding: 10px;
}
.filter-apply-box:before {
  margin: 14px 0 0 -10px;
  display: block;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #333 transparent transparent;
}
.filter-apply-box strong {
  font-weight: 300;
  color: white;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.color-items {
  overflow: hidden;
}
.color-items .color-item {
  width: 33px;
  height: 33px;
  float: left;
  margin: 3px;
  border: 4px solid #F7F7F7;
  cursor: pointer;
  padding: 0;
  box-shadow: 0px 0px 2px 0px #333;
}
.color-items .color-item:hover {
  border: 4px solid #75B320;
}
.color-items .color-item.selected {
  border: 4px solid #75B320;
}
.color-items .color-item-multicolor {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff3232+0,dce52b+30,1e5799+68,ff89f5+100 */
  background: #ff3232;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ff3232 0%, #dce52b 30%, #1e5799 68%, #ff89f5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #ff3232 0%, #dce52b 30%, #1e5799 68%, #ff89f5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #ff3232 0%, #dce52b 30%, #1e5799 68%, #ff89f5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3232', endColorstr='#ff89f5', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.make-bouquet-service {
  margin-bottom: 20px;
}
.make-bouquet-service .text {
  background-color: #f1e9ff;
  border: 1px solid #bd196b;
  border-left: 4px solid #bd196b;
  padding: 10px;
  margin-bottom: 15px;
}
.minimum-order-attention {
  margin-bottom: 20px;
  display: none;
}
.minimum-order-attention .text {
  border: 1px solid #bd434c;
  border-left: 4px solid #bd434c;
  background-color: #ffe0d7;
  padding: 10px;
  margin-bottom: 15px;
}
#list-products {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1005px) {
  .main-shadow {
    margin-left: 10px;
  }
}
.main-content {
  width: 100%;
  min-height: 1000px;
  background: white;
  border: 0px solid #918673;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.pager {
  border: 1px solid #b5bea6;
  border-width: 1px 0 1px 0;
  font: bold 15px/15px 'Oswald', sans-serif;
  padding: 10px 0;
  margin-top: 15px;
  float: left;
  width: 925px;
  margin-left: 15px;
}
.pager a.button,
.pager .button,
.pager span.button,
.pager em.button {
  margin-top: 10px;
  padding: 8px;
  width: 350px;
}
.pager .total-info {
  color: #4c4c4c;
  padding: 10px 0;
}
.pager .pages {
  text-align: right;
  float: right;
  width: 700px;
}
.pager .pages a,
.pager .pages b {
  color: #4c4c4c;
  padding: 10px 15px;
  border: 1px solid #b5bea6;
  text-decoration: none;
  border-right-width: 0px;
  display: inline-block;
}
.pager .pages a.selected,
.pager .pages b.selected {
  background: #feeef9;
  color: #bd196b;
}
.pager .pages a:hover {
  background: #FAF6FE;
}
.pager .pages a.disabled {
  color: #999;
  background: #fff;
  cursor: default;
}
.pager .pages a:nth-of-type(1) {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.pager .pages b {
  border: 1px solid transparent;
}
.pager .pages a:nth-of-type(14),
.pager .pages a:nth-of-type(26) {
  border-right-width: 1px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.pager .pages a:nth-of-type(15),
.pager .pages a:nth-of-type(27) {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 5px 0 0 108px;
}
.pager .pages a:last-child {
  border-right-width: 1px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.social-btn {
  overflow: hidden;
  width: 240px;
  margin-bottom: 13px;
}
.social-btn > div {
  float: left;
  margin-right: 5px;
}
.social-btn > div a {
  color: transparent;
  text-decoration: none;
}
.social-btn > div:hover {
  opacity: 0.7;
}
.mobile-social-btn {
  display: none;
}
.lang-select {
  float: right;
  overflow: hidden;
  width: 123px;
  margin-top: -7px;
}
.lang-select a {
  opacity: 0.3;
  display: block;
  width: 34px;
  height: 23px;
  float: right;
  margin-left: 5px;
  border: 1px solid #705b07;
}
.lang-select a:hover {
  opacity: 1;
}
.top-links {
  background-color: #e2e2e2;
  padding: 8px 0;
  border-bottom: 5px solid #d2d2d2;
}
.top-links a:link,
.top-links a:visited {
  font-weight: normal;
  font-size: 15px;
  margin: 7px;
  color: #333;
  text-decoration: none;
}
.top-links a:link b,
.top-links a:visited b {
  font-weight: normal;
}
.top-links a:hover {
  color: #000;
  text-decoration: underline;
}
.find-line {
  position: absolute;
  z-index: 2;
  width: 468px;
  border: 1px solid #75349C;
  margin-bottom: 13px;
  height: 33px;
}
.find-line .button {
  float: right;
  background-color: #75349C;
  border: 0;
  border-left: 1px solid #75349C;
  color: white;
  font: bold 15px/15px 'Oswald', sans-serif;
  padding: 9px 10px 10px;
  text-align: center;
  width: 80px;
  margin: 0;
}
.find-line .button:hover {
  background-color: #FFCF0B;
}
.find-line input[type=text] {
  font: normal 16px/16px 'Oswald', sans-serif;
  padding: 6px;
  color: #4c4c4c;
  width: calc(100% - 105px);
  border: 0;
  outline: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 31px;
}
.mobile-find-line.hidden-pc {
  display: none;
}
.Firefox .find-line input[type=text] {
  padding-top: 8px;
}
.gblock {
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  width: 238px;
  height: 52px;
  line-height: 1;
  font-size: 13px;
}
.gblock .icon {
  width: 78px;
  height: 52px;
  border-right: 1px solid #e0e0e0;
  float: left;
  position: relative;
}
.gblock .icon i {
  background: url(/images/icon-profile.png) no-repeat top left;
  display: block;
  width: 46px;
  height: 53px;
  margin: 8px 0 0 20px;
}
.gblock .icon span {
  background: #000 none repeat scroll 0 0;
  color: #fff;
  display: none;
  font-size: 15px;
  line-height: 16px;
  padding: 3px 7px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 2;
}
.gblock .icon b {
  position: absolute;
  margin: -19px 0 0 0;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.53);
}
.gblock .icon b a:link,
.gblock .icon b a:visited {
  color: #000;
}
.gblock .icon.user i {
  background: url(/images/icon-profile.png) no-repeat top left;
  margin-top: 1px;
}
.gblock .icon.basket i {
  background: url(/images/icon-basket.png) no-repeat top left;
  margin: 6px 0 0 11px;
}
.gblock .i-title {
  float: left;
  margin-left: 5px;
  margin-top: 2px;
  color: #4c4c4c;
  font-size: 1.1em;
}
.gblock .i-desc {
  float: left;
  margin-left: 5px;
  color: #4c4c4c;
  margin-top: 5px;
  width: 145px;
}
.gblock .i-desc em {
  font-style: normal;
  display: inline-block;
  color: #ffffff;
  font-weight: normal;
}
.gblock .i-desc span {
  display: block;
}
.gblock.notify {
  border: 1px solid #E42084;
  background-color: #E42084;
}
.gblock.notify .icon span {
  display: block;
}
.gblock.notify .i-title {
  color: white;
}
.gblock.notify .i-desc {
  color: white;
}
.gblock-hi {
  cursor: pointer;
}
.gblock-hi:hover {
  border: 1px solid #6B9F31;
  background-color: #6B9F31;
  color: white;
}
.gblock-hi:hover .i-title {
  color: white;
}
.gblock-hi:hover .i-desc {
  color: white;
}
#user-placeholder {
  position: relative;
  margin-bottom: 10px;
}
header {
  height: 140px;
  background: #fce8c9;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fce8c9), color-stop(44%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fce8c9 0%, #ffffff 44%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fce8c9', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
}
header .top-menu {
  padding-top: 15px;
  padding-left: 5px;
}
header .top-menu a:link,
header .top-menu a:visited {
  font-weight: bold;
  font-size: 15px;
  margin: 7px;
}
header .block-center {
  float: right;
  width: 470px;
  margin-top: 12px;
  margin-right: 0px;
}
header .block-right {
  float: right;
  width: 240px;
  margin-left: 15px;
  margin-top: 12px;
  border-left: 1px solid #d1d1d1;
  padding-left: 15px;
  height: 115px;
}
header .logo {
  margin: 33px 0 0 15px;
  float: left;
}
header .logo .only-phone {
  display: none;
}
header .logo b {
  color: #4c4c4c;
  margin: -45px 0 0 92px;
  display: block;
  font-size: 15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
header .logo a {
  display: block;
  width: 230px;
  height: 68px;
}
header .logo strong {
  font-size: 12px;
  margin-top: 90px;
  width: 160px;
  text-decoration: none;
  display: block;
  position: absolute;
}
header .phone-block {
  width: 230px;
  text-align: right;
  float: right;
}
header .phone-block a {
  font: 32px 'Oswald', sans-serif;
  text-decoration: none;
}
header .phone-block .phone-ru:before,
header .phone-block .phone-en:before {
  content: 'LV:';
  position: absolute;
  margin-left: -28px;
  color: #AB84DC;
}
header .phone-block .phone-ru:before {
  content: 'RU:';
}
header .phone-block .button {
  margin-top: 15px;
}
header .phone-block .write {
  margin-top: 15px;
  text-align: center;
}
header .phone-block .write a {
  color: #bd196b;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header .phone-block .write a b {
  border-bottom: 1px dashed #bd196b;
}
header .phone-block .write a:hover b {
  border-bottom: 1px solid transparent;
}
header .phone-block .addr {
  font-size: 18px;
  margin-top: 7px;
}
header .qickdelivery {
  position: absolute;
  border1: 1px solid blue;
  width: 175px;
  margin: 19px 0 0 490px;
  color: #4c4c4c;
}
header .qickdelivery strong {
  font: bold 21px/19px 'Oswald', sans-serif;
  display: block;
  margin-left: 50px;
  letter-spacing: -0.6px;
}
header .qickdelivery em {
  font-size: 22px;
  display: block;
  font-style: normal;
}
header .qickdelivery p {
  margin: 6px 0 0 3px;
  font-size: 17px;
  width: 120px;
  line-height: 17px;
}
header .block-right-basket {
  margin: 15px 0 0 660px;
  position: absolute;
  width: 283px;
}
header .block-right-basket .links {
  text-align: center;
}
header .block-right-basket .logon,
header .block-right-basket .account {
  color: #bd196b;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header .block-right-basket .logon b,
header .block-right-basket .account b {
  border-bottom: 1px dashed #bd196b;
}
header .block-right-basket .logon:hover b,
header .block-right-basket .account:hover b {
  border-bottom: 1px solid transparent;
}
header .block-right-basket .account b {
  border-bottom: 1px solid #bd196b;
}
header .block-right-basket .account:hover b {
  border-bottom: 1px solid transparent;
}
header .block-right-basket .basket {
  cursor: pointer;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px dashed #51a73b;
  height: 67px;
  margin-top: 8px;
}
header .block-right-basket .basket:hover {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
header .block-right-basket .basket strong {
  font-size: 29px;
  color: #738722;
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 70px;
}
header .block-right-basket .basket strong:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f103";
  float: right;
  margin: 20px 10px 0 0;
}
header .block-right-basket .basket div {
  color: #4c4c4c;
  margin: -5px 0 0 70px;
  font: 14px/16px 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
}
header .block-right-basket .basket .on-empty {
  display: none;
}
header .block-right-basket .basket.empty {
  background-color: #fff;
  background-image: url(../images/basket-empty.png);
}
header .block-right-basket .basket.empty .on-empty {
  display: block;
}
header .block-right-basket .basket.empty .on-filled {
  display: none;
}
header .block-right-basket .basket.empty strong:before {
  display: none;
}
header .block-right-basket .basket.empty:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.2);
  cursor: default;
}
header .block-right-basket .like-info {
  color: #bd196b;
  text-decoration: none;
  font: 14px/14px 'Oswald', sans-serif;
  margin-top: 5px;
  font-weight: bold;
  text-align: center;
}
nav.menu-line {
  height: 50px;
  border: 1px solid #d3c5aa;
  border-width: 1px 0;
  background: #fceccc;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZWNjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkM2M1YWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #fceccc 0%, #d3c5aa 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceccc), color-stop(100%, #d3c5aa));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fceccc 0%, #d3c5aa 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fceccc 0%, #d3c5aa 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fceccc 0%, #d3c5aa 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fceccc 0%, #d3c5aa 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceccc', endColorstr='#d3c5aa', GradientType=0);
  /* IE6-8 */
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 14px -8px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 1px 14px -8px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 1px 14px -8px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
nav.menu-line a:link,
nav.menu-line a:visited {
  color: #4c4c4c;
  display: block;
  font: 18px/50px 'Oswald', sans-serif;
  font-weight: 300;
  float: left;
  padding: 0 6px;
  text-decoration: none;
  letter-spacing: 0.7px;
}
nav.menu-line a:hover {
  -webkit-box-shadow: 0px 6px 24px #342911;
  -moz-box-shadow: 0px 6px 24px #342911;
  box-shadow: 0px 6px 24px #342911;
}
nav.menu-line a:after {
  content: '';
  height: 30px;
  border-right: 1px solid #c1b297;
  width: 0px;
  position: absolute;
  margin-left: 15px;
  margin-top: 10px;
  -webkit-box-shadow: 0 0 7px 1px #EDDC9B;
  -moz-box-shadow: 0 0 7px 1px #EDDC9B;
  box-shadow: 0 0 7px 1px #EDDC9B;
}
nav.menu-line a:last-of-type:after {
  border-right: 1px solid transparent;
}
nav.menu-line .ml-item-group-4 {
  display: none;
}
.menu-filter {
  margin-top: 5px;
  z-index: 2;
}
.menu-filter > strong {
  background: #faffe7;
  border: 1px solid #c3c7b3;
  border-bottom-width: 0px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font: 15px/63px 'Oswald', sans-serif;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  text-align: center;
  color: #4c4c4c;
  margin-top: -107px;
  position: absolute;
  cursor: pointer;
}
.menu-filter p {
  background: #faffe7;
  color: #4c4c4c;
  font: 14px/16px 'Oswald', sans-serif;
  display: block;
  margin: 0;
  padding: 5px 5px 5px 15px;
  border: 1px solid #c3c7b3;
  border-width: 1px 0 1px 0;
  width: 940px;
}
.menu-filter .filters {
  background: #dce6cd url(../images/filter-bg.jpg);
  border-bottom: 1px solid #c3c7b3;
  overflow: hidden;
}
.menu-filter .filters strong {
  color: #bd196b;
  font-size: 19px;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.menu-filter .filters label {
  font: bold 14px/17px 'Oswald', sans-serif;
  color: #4c4c4c;
  padding: 2px 8px 2px 20px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: transparent;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-collapse: separate;
}
.menu-filter .filters label a {
  text-decoration: none;
}
.menu-filter .filters label:hover {
  text-decoration: none;
}
.menu-filter .filters label:hover a {
  color: #4c4c4c;
  text-decoration: none;
}
.menu-filter .filters label.checked {
  background: #b78ae7;
  color: white;
}
.menu-filter .filters label.checked a {
  color: white;
  text-decoration: none;
}
.menu-filter .filters label.checked:hover {
  text-decoration: none;
  background: #a579d5;
}
.menu-filter .filters label.checked:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f13a";
  position: absolute;
  margin: 2px 0 0 -16px;
}
.menu-filter .filter-group {
  padding: 10px 0 0 15px;
}
.menu-filter a.button {
  font-size: 14px;
  padding: 1px 15px;
  display: inline-block;
}
.menu-filter .filter-flowers-list {
  overflow: hidden;
  height: 138px;
}
#all-flowers-filter {
  height: 271px;
  border-top: 1px solid #c3c7b3;
}
#all-flowers-filter .group1 label:nth-of-type(3) {
  margin-left: 0;
}
#all-flowers-filter .col1 {
  width: 245px;
}
#all-flowers-filter .col1 label {
  color: #824EA3;
}
#all-flowers-filter .col1 label a {
  color: #824EA3;
}
#all-flowers-filter .col1 label.checked {
  color: #fff;
}
#all-flowers-filter .col1 label.checked a {
  color: #fff;
}
#all-flowers-filter .col1 label:nth-of-type(1) {
  color: #4c4c4c;
}
#all-flowers-filter .col1 label.checked {
  color: #ffffff;
}
#all-flowers-filter .col2 {
  width: 280px;
}
#all-flowers-filter .col3 {
  width: 230px;
}
#all-flowers-filter .column {
  height: 271px;
}
#all-flowers-filter label {
  display: table;
}
#all-flowers-filter .col2,
#all-flowers-filter .col3,
#all-flowers-filter .col4 {
  padding-top: 2px;
}
#all-flowers-filter .specials {
  margin-top: 20px;
}
#all-flowers-filter .button {
  padding: 5px 5px;
  margin-top: 43px;
}
.menu-filter-wedding > strong {
  margin-left: 580px;
}
.menu-filter-wedding label {
  display: table;
}
.menu-filter-wedding .group2 span {
  color: #4c4c4c;
  font-size: 15px;
  display: block;
  padding: 5px 20px 10px 0;
}
.menu-filter-wedding .group2 strong {
  margin-top: 10px;
  color: #4c4c4c;
}
.menu-filter-wedding .col1 {
  width: 325px;
}
.menu-filter-wedding .col2 {
  width: 290px;
}
.menu-filter-wedding .col3 {
  width: 330px;
}
.menu-filter-wedding .filters {
  border-top: 1px solid #c3c7b3;
  margin-top: -30px;
}
.l_en .menu-filter-wedding > strong {
  margin-left: 507px;
}
.l_lv .menu-filter-wedding > strong {
  margin-left: 452px;
}
.l_lv .menu-filter-wedding .col2 {
  width: 270px;
}
.l_lv .menu-filter-wedding .col3 {
  width: 360px;
}
.menu-filter-match > strong {
  margin-left: 5px;
}
.menu-filter-match .filters {
  height: 220px;
}
.menu-filter-match .col1 {
  width: 230px;
}
.menu-filter-match .col1 .details {
  width: 230px;
}
.menu-filter-match .column:hover {
  background: rgba(250, 255, 231, 0.4);
  height: 220px;
}
.menu-filter-match .col2 {
  width: 255px;
}
.menu-filter-match .col2 .details {
  width: 240px;
}
.menu-filter-match .col3 {
  width: 285px;
}
.menu-filter-match .col3 .details label {
  display1: table;
}
.menu-filter-match .col4 {
  width: 190px;
}
.menu-filter-match .col4 .details label {
  display: table;
}
.menu-filter-match .group1 label:nth-of-type(3) {
  margin-left: 20px;
}
.menu-filter-match .group2 label:nth-of-type(4) {
  margin-left: 39px;
}
.menu-filter-match .group2 label:nth-of-type(6) {
  margin-left: 1px;
}
.menu-filter-match .group4 label {
  display: inline-block;
  float: left;
  width: 106px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-filter-match .group4 label:nth-of-type(odd) {
  position: static;
  margin-right: 1px;
  margin-top: 2px;
}
.l_lv .menu-filter-match .col2 .details {
  width: 220px;
}
.l_lv .menu-filter-match .group1 label:nth-of-type(3) {
  margin-left: 25px;
}
.l_lv .menu-filter-match .group2 label:nth-of-type(2) {
  margin-left: 25px;
}
.l_lv .menu-filter-match .group2 label:nth-of-type(4) {
  margin-left: 25px;
}
.l_lv .menu-filter-match .group3 label:nth-of-type(4) {
  margin-left: 13px;
}
.l_lv .menu-filter-match .group3 label:nth-of-type(6) {
  margin-left: 5px;
}
#all-occasion-filter {
  display: none;
  position: relative;
  margin-top: -257px;
  height: 255px;
  border-top: 1px solid #c3c7b3;
}
#all-occasion-filter label {
  display: table;
  margin-left: 0;
}
#all-occasion-filter .column {
  height: 255px;
}
#all-occasion-filter .col1 {
  width: 484px;
}
#all-occasion-filter .col1 span {
  color: #4c4c4c;
  font-size: 15px;
  display: block;
  padding: 5px 20px 10px 0;
}
#all-occasion-filter .col1 strong {
  color: #4c4c4c;
}
#all-occasion-filter .col3 {
  width: 245px;
}
#all-occasion-filter .col4 {
  width: 230px;
  padding-top: 25px;
}
#all-occasion-filter .col4 .button {
  margin: 10px 0 0 19px;
  padding: 5px 5px;
}
.info-helpers {
  overflow: hidden;
}
.info-helpers .helper {
  width: 457px;
  height: 250px;
  margin: 20px 1px 0 15px;
  float: left;
  cursor: pointer;
}
.info-helpers .helper strong {
  font: bold 29px/30px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-align: center;
}
.info-helpers .helper a.button {
  padding: 7px 25px;
  position: absolute;
  margin: 205px 0 0 250px;
}
.info-helpers .helper-match {
  background: url(../images/info-helper-match.jpg) center center;
}
.info-helpers .helper-match strong {
  text-shadow: -1px 0 #464341, 0 1px #464341, 1px 0 #464341, 0 -1px #464341, 0 0 10px #9211E6, 0 0 10px #9211E6;
  margin-top: 10px;
}
.info-helpers .helper-season {
  background: url(../images/info-helper-season.jpg) center center;
}
.info-helpers .helper-season strong {
  font-size: 35px;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 10px #fff, 0 0 10px #fff;
  margin-top: 200px;
  letter-spacing: 3px;
}
.products {
  overflow: hidden;
  margin-left: -4px;
}
.products .product {
  display: block;
  float: left;
  width: 188px;
  border: 1px solid #e0e0e0;
  margin: 15px 0 0 4px;
  cursor: pointer;
}
.products .product .image {
  overflow: hidden;
  width: 178px;
  height: 178px;
  margin: 4px;
}
.products .product .image img {
  width: 178px;
  height: 178px;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.products .product .length {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 35px;
  height: 35px;
  position: relative;
  float: right;
  right: 6px;
  margin-top: -39px;
  padding: 6px 0 6px 7px;
  text-align: center;
  color: #fff;
  background: url(/images/pl.png) #333 no-repeat 3px center;
  background-size: contain;
}
.products .product .info {
  display: block;
  text-decoration: none;
  background: #fce8c9;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fce8c9), color-stop(44%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fce8c9 0%, #ffffff 44%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fce8c9', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
  border-top: 1px solid #c3c7b3;
}
.products .product .info strong {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #333;
  display: block;
  text-align: center;
  margin: 10px 0 0 0;
  height: 38px;
  text-decoration: none;
}
.products .product .info span {
  display: block;
  color: #4c4c4c;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 5px;
}
.products .product .info span b {
  font-size: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
}
.products .product .info span b sup {
  color: #4c4c4c;
}
.products .product .info span i {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  text-decoration: none;
}
.products .product .info i.fa {
  float: right;
  margin: -37px 5px 0 0;
  color: #6faf17;
  opacity: 0.5;
}
.products .product .info small {
  font: bold 12px/15px 'Oswald', sans-serif;
  color: #4c4c4c;
  display: block;
  text-align: center;
}
.products .product .info .button {
  width: 128px;
  margin: 10px auto;
  padding: 6px 0 ;
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
}
.products .product:hover {
  border: 1px solid #70ab2b;
  background-color: rgba(111, 175, 23, 0.16);
  /*img {
        width: @productWidth *@productZoomCoef;
        height: @productWidth *@productZoomCoef;
        margin-left: -(@productWidth*(@productZoomCoef - 1)/2);
        margin-top: -(@productWidth*(@productZoomCoef*0.8 - 1)/2);
      }*/
}
.products .product:hover .button {
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
}
.products .product:hover i.fa {
  opacity: 1;
}
.products .product .label {
  padding: 8px;
  position: absolute;
  float: left;
  margin-top: -6px;
  margin-left: 19px;
  -webkit-border-radius: 0 4px 0 4px;
  -moz-border-radius: 0 4px 0 4px;
  border-radius: 0 4px 4px 0;
  -webkit-transform: rotate(11deg);
  -moz-transform: rotate(11deg);
  -o-transform: rotate(11deg);
  -ms-transform: rotate(11deg);
  transform: rotate(11deg);
}
.products .product .label:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(136, 183, 213, 0);
  border-width: 20px 21px 20px 21px;
  top: 50%;
  margin-top: -20px;
}
.products .product .label:before {
  content: '';
  z-index: 2;
  position: absolute;
  top: 42%;
  right: 100%;
  width: 7px;
  height: 7px;
  opacity: 0.95;
  background: #ffffff;
  border-radius: 7px;
  -webkit-box-shadow: inset 0.5px 0 rgba(0, 0, 0, 0.6);
  box-shadow: inset 0.5px 0 rgba(0, 0, 0, 0.6);
}
.products .product .label span {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}
.products .plabel-PROFIT {
  border: 1px solid #E80707;
  background-color: rgba(255, 112, 8, 0.08);
}
.products .plabel-PROFIT .label {
  background-color: #E80707;
}
.products .plabel-PROFIT .label:after {
  border-right-color: #E80707;
}
.products .plabel-TASTY {
  border: 1px solid #D91FAD;
  background-color: rgba(255, 112, 8, 0.08);
}
.products .plabel-TASTY .label {
  background-color: #D91FAD;
}
.products .plabel-TASTY .label:after {
  border-right-color: #D91FAD;
}
.products .plabel-CHICLY {
  border: 1px solid #000;
  background-color: rgba(255, 112, 8, 0.08);
}
.products .plabel-CHICLY .label {
  background-color: #000;
}
.products .plabel-CHICLY .label:after {
  border-right-color: #000;
}
.products .product-promo-line {
  display: block;
  float: left;
  margin-top: 15px;
  width: 100%;
}
.products .loveis-promo-line {
  height: 399px;
  background: #f4e3ce url(../images/loveis_bg.jpg);
}
.products .loveis-promo-line h1 {
  color: #b3170b;
  position: absolute;
  width: 960px;
  font-size: 35px;
  margin-top: 10px;
  margin-left: 15px;
}
.products .loveis-promo-line h1 em {
  color: #bd196b;
  font-style: normal;
  display: inline-block;
  margin-right: 20px;
}
.products .loveis-promo-line .promo-product {
  color: #83982e;
  position: absolute;
  font-weight: bold;
}
.products .loveis-promo-line .promo-product-291 {
  color: #0074DB;
  font-size: 65px;
  margin: 100px 0 0 280px;
}
.products .loveis-promo-line .promo-product-216 {
  color: #E61B2E;
  font-size: 65px;
  margin: 250px 0 0 800px;
}
.products .loveis-promo-line .button {
  position: absolute;
  padding: 10px 30px;
  font-size: 20px;
}
.products .loveis-promo-line .promo-product-button-291 {
  margin: 345px 0 0 110px;
}
.products .loveis-promo-line .promo-product-button-216 {
  margin: 345px 0 0 580px;
}
.prefooter {
  margin-top: 30px;
  background: #dce6cd url(/images/footer-cover.jpg);
  background-size: cover;
  background-position: center top;
  height: 265px;
  overflow: hidden;
}
.prefooter div {
  width: 33%;
  float: left;
  text-align: center;
  color: #4c4c4c;
  font-size: 16px;
}
.prefooter div strong {
  color: #bd196b;
  font-size: 19px;
  display: block;
  letter-spacing: 1px;
  margin: 150px 0 3px 0;
}
.footer {
  overflow: hidden;
  background-color: #333333;
  border-top: 5px solid #333333;
}
.footer .col {
  float: left;
  margin: 20px 0 0px 29px;
}
.footer .col strong {
  color: #fff;
  font-size: 19px;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: normal;
}
.footer a {
  font-size: 14px;
  color: #9a9a9a;
  text-decoration: none;
}
.footer a:hover {
  color: #2ff03d;
  text-decoration: underline;
}
.footer .col1 {
  width: 290px;
}
.footer .col1 div {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
}
.footer .col1 div em {
  color: #2ff03d;
  font-style: normal;
}
.footer .col2 {
  width: 240px;
}
.footer .col3 {
  width: 170px;
  float: right;
  text-align: right;
  margin-right: 30px;
}
.footer .col3 b {
  display: block;
  color: #fff;
}
.footer .col3 i {
  display: block;
  font-style: normal;
  color: #fff;
}
.footer .col3 div {
  margin-top: 0px;
  color: #fff;
}
.footer .col3 .footer-logo {
  margin-bottom: 20px;
}
.footer .col3 .footer-logo img {
  width: 100%;
}
.footer .col1 a:after,
.footer .col2 a:after {
  content: "";
  display: block;
  margin-bottom: 5px;
}
.footer .social {
  margin-top: 15px;
}
.footer .payment-systems {
  width: 960px;
  float: left;
}
.footer .payment-systems > div {
  overflow: hidden;
  margin-bottom: 5px;
  margin-left: 190px;
}
.footer .payment-systems div.d-cards {
  margin-left: 0px;
  position: absolute;
  margin-top: 3px;
}
.footer h4 {
  color: #2ff03d;
  font: normal 14px "Oswald", sans-serif;
  margin: 0 0 5px 0;
  font-weight: normal;
}
.footer .copyright.col1 {
  width: auto;
  color: #9a9a9a;
}
.footer .copyright.col1 div {
  color: #9a9a9a;
  font-weight: normal;
}
.footer .copyright.col1 div em {
  color: white;
}
.footer .copyright.col1 .developer {
  font-weight: normal;
  margin-bottom: 25px;
}
.footer .copyright.col1 .developer b {
  font-weight: normal;
  color: #fff;
}
.footer .copyright.col1 .developer img {
  vertical-align: middle;
}
.footer .footer-cover img {
  margin-left: auto;
  margin-right: auto;
}
.basket-open {
  display: none;
  width: 400px;
  background: #fff;
  border: 1px solid #333;
  position: absolute;
  z-index: 100;
  margin: 131px 0 0 681px;
}
.basket-open .product {
  margin: 0 5px;
  border-top: 1px solid #c3c7b3;
  overflow: hidden;
}
.basket-open .product:first-child {
  border-top-width: 0;
}
.basket-open .product .image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid #c3c7b3;
  margin: 5px;
  float: left;
}
.basket-open .product .image:hover {
  border: 1px solid #000;
}
.basket-open .product .image img {
  width: 50px;
  height: 50px;
}
.basket-open .product .info {
  float: left;
  color: #4c4c4c;
  width: 155px;
}
.basket-open .product .info a {
  font: bold 14px/14px 'Oswald', sans-serif;
  margin-top: 4px;
}
.basket-open .product .info a i {
  color: #000;
  font-style: normal;
}
.basket-open .product .info strong {
  font-weight: normal;
  font-size: 14px;
}
.basket-open .product span {
  display: block;
  font-size: 22px;
  position: absolute;
  width: 252px;
  text-align: right;
  margin-top: 35px;
  color: #88a028;
  font-weight: bold;
}
.basket-open .product span i {
  color: #4c4c4c;
  font-style: normal;
}
.basket-open .product .remove {
  background: url(/images/icon-basket-remove.png) no-repeat center center;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  margin: 5px 0 0 235px;
  font-size: 1.4em;
  color: #956464;
  cursor: pointer;
}
.basket-open .product .remove:hover {
  color: #bd196b;
}
.basket-open .total {
  display: block;
  font-size: 22px;
  text-align: right;
  color: #88a028;
  font-weight: bold;
  margin: 0 5px;
  border-top: 1px solid #c3c7b3;
  padding: 5px 1px;
}
.basket-open .total i {
  color: #4c4c4c;
  font-style: normal;
}
.basket-open .total .button {
  padding: 10px 0;
}
.product-added-to-basket-msg {
  border: 1px solid #dedede;
  background: #f7f7f7;
  width: 100%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
}
.in-basket-block {
  margin: 10px 0;
  display: none;
}
.in-basket-block.show {
  display: inherit;
}
.in-basket-block .in-basket {
  background: #2f2f2f;
  color: white;
  padding: 10px;
}
.in-basket-block .open-basket .button-green {
  margin-top: 0;
}
/*
@media screen and (min-width: 1500px) {
  .content-container {
    width: 1195px;
  }
  .main-shadow {
    width: 1195px;
  }
  .main-content {
    width: 1195px;
  }
  .fly-flower-right {
    margin-left: 1120px;
  }
  .info-helpers .helper {
    width: 573px;
    background-size: cover !important;
  }
  .info-helpers .helper a.button {
    margin-left: 370px;
  }
  header .block-right-basket {
    margin-left: 910px;
  }
  header .phone-block {
    margin-left: 680px;
  }
  .basket-open {
    margin-left: 910px;
  }

  .menu-filter-match .col1 {
    width: 290px;
  }
  .menu-filter-match .col2 {
    width: 340px;
  }
  .menu-filter-match .col3 {
    width: 320px;
  }
  .menu-filter-match .col4 {
    width: 245px;
  }
}
*/
.content-container {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  width: 100%;
}
.content-container .information-content {
  display: table-row-group;
  opacity: 0.8;
}
.content-container .information-content .center-container {
  border: 1px solid #eee;
  background: #fbfbfb;
  padding: 10px;
}
.content-container .information-content h1,
.content-container .information-content h2,
.content-container .information-content h3 {
  font-size: 14px;
  margin: 15px;
  padding: 0;
}
.content-container .information-content p {
  text-align: justify;
  margin: 0 15px;
  font-size: 12px;
  color: #4c4c4c;
}
.content-container .information-content li {
  font-size: 12px;
  color: #4c4c4c;
}
.content-container .information-content > p:first-child {
  margin-top: 100px;
}
.content-container .page {
  display: table-header-group;
}
.product-details .product-info {
  margin: 10px 0 0 0;
  min-height: 425px;
}
.product-details .product-info .call-info {
  margin-top: 8px;
  text-align: right;
  color: #4c4c4c;
}
.product-details .product-info .call-info .phone-en,
.product-details .product-info .call-info .phone-ru {
  text-decoration: none;
}
.product-details .product-info .tab-prod-name {
  display: none;
  font: 400 30px/30px 'Oswald', sans-serif;
  color: #000;
  margin: 0 0 15px 0;
}
.product-details .product-info .tab-prod-comment {
  display: none;
  font: 400 15px/15px 'Oswald', sans-serif;
  color: #666;
  margin: -5px 0 15px 0;
}
.product-details .product-info .col1 {
  width: 408px;
  position: absolute;
}
.product-details .product-info .col1 .image {
  overflow: hidden;
  width: 400px;
  height: 400px;
  margin: 4px;
  border: 1px solid #c3c7b3;
}
.product-details .product-info .col1 .image:hover {
  border: 1px solid #B78AE7;
}
.product-details .product-info .col1 .image img {
  width: 400px;
  height: 400px;
}
.product-details .product-info .col1 .image-desc {
  position: absolute;
  width: 396px;
  height: 48px;
  background: #E1C5FF;
  color: #000;
  margin-top: -55px;
  margin-left: 7px;
  font: bold 20px/22px 'Oswald', sans-serif;
  text-align: center;
  opacity: 0.7;
  display: none;
}
.product-details .product-info .col1 .add-images {
  overflow: hidden;
}
.product-details .product-info .col1 .add-images .add-image {
  cursor: pointer;
  overflow: hidden;
  width: 84px;
  height: 84px;
  margin: 4px 15px 4px 4px;
  float: left;
  border: 1px solid #c3c7b3;
}
.product-details .product-info .col1 .add-images .add-image:hover,
.product-details .product-info .col1 .add-images .add-image.selected {
  border: 1px solid #B78AE7;
}
.product-details .product-info .col1 .add-images .add-image img {
  width: 84px;
  height: 84px;
}
.product-details .product-info .col1 .add-images .add-image:nth-of-type(4n) {
  margin-right: 0;
}
.product-details .product-info .col1 .show-all-add-images {
  display: none;
}
.product-details .product-info .col1 .show-all-add-images a {
  display: none;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.product-details .product-info .col2 {
  width: auto;
  margin: 0;
  margin-left: 425px;
}
.product-details .product-info .col2 h1 {
  font: normal 30px/30px 'Oswald', sans-serif;
  color: #000;
  margin: 0 0 5px 0;
}
.product-details .product-info .col2 .prod-comment {
  font-size: 13px;
  color: #666;
  margin: 0 0 15px 0;
}
.product-details .product-info .col2 .call-info {
  text-align: left;
}
.product-details .product-info .col2 .variants strong {
  color: #bd196b;
  margin-bottom: 8px;
  display: block;
}
.product-details .product-info .col2 .variants strong.small1 {
  display: none;
}
.product-details .product-info .col2 .variants .variant {
  border: 1px solid #c3c7b3;
  height: 55px;
  margin-bottom: 8px;
  cursor: pointer;
}
.product-details .product-info .col2 .variants .variant em {
  font-style: normal;
}
.product-details .product-info .col2 .variants .variant i {
  width: 27px;
  height: 27px;
  position: absolute;
  border: 1px solid #c3c7b3;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 12px 0 0 12px;
}
.product-details .product-info .col2 .variants .variant > b {
  margin: 8px 0 0 56px;
  display: block;
  color: #4c4c4c;
  font-size: 17px;
}
.product-details .product-info .col2 .variants .variant span {
  margin: 0px 0 0 56px;
  font-size: 14px;
  color: #4c4c4c;
  display: block;
}
.product-details .product-info .col2 .variants .variant span.small1,
.product-details .product-info .col2 .variants .variant span.small2 {
  display: none;
}
.product-details .product-info .col2 .variants .variant .cost {
  float: right;
  width: 103px;
  height: 55px;
  border-left: 1px solid #c3c7b3;
  background: #f8ffdb;
  text-align: center;
}
.product-details .product-info .col2 .variants .variant .cost b {
  margin-top: 13px;
  display: block;
  color: #738722;
  font-size: 25px;
}
.product-details .product-info .col2 .variants .variant .cost input {
  width: 70px;
  height: 25px;
  font-size: 20px;
  margin-left: 5px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  position: absolute;
}
.product-details .product-info .col2 .variants .variant .cost input:-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.product-details .product-info .col2 .variants .variant .cost input::-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.product-details .product-info .col2 .variants .variant .cost input:-ms-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.product-details .product-info .col2 .variants .variant .cost input::-webkit-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.product-details .product-info .col2 .variants .variant:hover {
  background: #faf6fe;
}
.product-details .product-info .col2 .variants .variant.selected {
  background: #f3e9fe;
}
.product-details .product-info .col2 .variants .variant.selected > b {
  color: #bd196b;
}
.product-details .product-info .col2 .variants .variant.selected i:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f00c';
  position: absolute;
  font-size: 2.5em;
  margin: -8px 0 0 -1px;
  color: #bd196b;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
  text-shadow: -1px 0 #464341, 0 1px #464341, 1px 0 #464341, 0 -1px #464341, 0 0 10px #9211E6, 0 0 2px #9211E6;
}
.product-details .product-info .col2 .variants .variant:last-child > b {
  margin-top: 1px;
}
.product-details .product-info .col2 .variants .variant:last-child span {
  line-height: 14px;
}
.product-details .product-info .col2 .variants .variant:last-child .cost b {
  text-align: left;
  margin-left: 5px;
}
.product-details .product-info .col2 .product-cut-variants {
  overflow: hidden;
  margin-left: -5px;
  position: relative;
}
.product-details .product-info .col2 .product-cut-num {
  border: 1px solid #c3c7b3;
  width: 93px;
  float: left;
  margin-left: 5px;
  margin-bottom: 5px;
  text-align: center;
  cursor: pointer;
}
.product-details .product-info .col2 .product-cut-num i {
  font-style: normal;
  font-size: 25px;
  color: #bd196b;
}
.product-details .product-info .col2 .product-cut-num i span {
  margin-left: 5px;
}
.product-details .product-info .col2 .product-cut-num .cost {
  color: #738722;
  font-size: 25px;
  font-weight: bold;
}
.product-details .product-info .col2 .product-cut-num:hover {
  background: #faf6fe;
}
.product-details .product-info .col2 .product-cut-num.selected {
  background: #f3e9fe;
  border: 1px solid #bd196b;
}
.product-details .product-info .col2 #product-price-custom.product-price-custom-cut .cost input {
  width: 35px;
}
.product-details .product-info .col2 #product-price-custom.product-price-custom-cut .cost b {
  margin-bottom: 0px;
  margin-top: 2px;
  line-height: 26px;
}
.product-details .product-info .col2 .consist {
  color: #4c4c4c;
}
.product-details .product-info .col2 .consist strong {
  color: #bd196b;
  margin: 20px 0 8px 0;
  display: block;
}
.product-details .product-info .col2 .short-desc {
  color: #4c4c4c;
}
.product-details .product-info .col2 .short-desc strong {
  color: #bd196b;
  margin: 20px 0 8px 0;
  display: block;
}
.product-details .product-info .tab-desc {
  display: none;
  float: left;
  margin-right: 20px;
  color: #4c4c4c;
}
.product-details .product-info .tab-desc strong {
  color: #bd196b;
  margin: 20px 0 8px 0;
  display: block;
}
.product-details .product-info .tab-desc div p:first-child {
  margin-top: 0px;
}
.product-details .product-info .free-card {
  color: #bd196b;
  font-size: 20px;
  text-align: center;
}
.product-details .product-info .product-social {
  position: absolute;
  margin: 6px 0 0 5px;
}
.product-details .additions {
  margin: 40px 0 0 22px;
}
.product-details .additions h4 {
  font: bold 30px/30px 'Oswald', sans-serif;
  color: #738722;
  margin: 0 0 5px 0;
}
.product-details .additions > strong {
  color: #bd196b;
  margin-bottom: 8px;
  display: block;
}
.product-details .additions .menu {
  width: 205px;
}
.product-details .additions .menu a {
  display: block;
  color: #4c4c4c;
  text-decoration: none;
  font: bold 16px/16px 'Oswald', sans-serif;
  border-bottom: 1px solid #c1b297;
  padding: 14px 0px 14px 0px;
}
.product-details .additions .menu a:hover {
  text-decoration: underline;
}
.product-details .additions .menu a.selected {
  background: #f3e9fe;
  color: #bd196b;
}
.product-details .additions .menu a:last-child {
  border-bottom: 1px solid transparent;
}
.product-details .additions .column:nth-of-type(2) {
  width: 720px;
}
.product-details .additions .products {
  margin-left: 8px;
  width: 710px;
  height: 636px;
}
.product-details .additions .products .product {
  margin: 0 0 15px 15px;
}
.product-details .additions .products .product i {
  font: bold 23px/23px 'Oswald', sans-serif;
  color: #738722;
  margin: 4px 0 10px 4px;
  float: left;
  display: block;
  width: 67px;
  text-align: center;
}
.product-details .additions .products .product .button {
  float: right;
  margin-right: 10px;
  width: 135px;
}
.product-details .pager {
  margin-left: 22px;
  width: 693px;
  height: auto;
  border-bottom: 0px solid transparent;
}
.product-details .pager .total-info {
  border-bottom: 1px solid #b5bea6;
  padding: 0 0 10px 15px;
  margin: 0;
}
.product-details .pager .pages {
  padding: 10px 0;
  border-bottom: 1px solid #b5bea6;
  float: none;
  width: auto;
  text-align: left;
  background: #fce8c9;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fce8c9), color-stop(44%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fce8c9 0%, #ffffff 44%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fce8c9', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
}
.product-details .pager .pages .def {
  display: inherit;
}
.product-details .pager .pages .ph {
  display: none;
}
.product-details.product-images-less-than-2 .add-images {
  display: none;
}
.prod-prices {
  width: 370px;
  float: left;
  overflow: hidden;
}
.prod-prices .prod-price {
  border-top: 1px solid #ddd;
  overflow: hidden;
  padding-bottom: 13px;
  padding-top: 7px;
  width: 370px;
}
.prod-prices .prod-price .add-calc {
  width: 106px;
  height: 50px;
  border: 1px solid #ddd;
  float: right;
  margin: 6px 0 0 10px;
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
  cursor: pointer;
}
.prod-prices .prod-price .add-calc .fa {
  margin: 14px 0 0 5px;
  color: #fff;
  display: inline-block;
  position: absolute;
}
.prod-prices .prod-price .add-calc b {
  font-weight: 300;
  color: white;
  font-size: 29px;
  margin-left: 40px;
  line-height: 51px;
}
.prod-prices .prod-price .add-calc:hover {
  background: #EA2386;
  border-bottom: 5px solid #bd196b;
}
.prod-prices .prod-price .num-info {
  float: left;
  width: 130px;
  color: #333;
  font-weight: 300;
}
.prod-prices .prod-price .num-info b {
  font-weight: 400;
  color: #000;
}
.prod-prices .prod-price .num-info .num-pieces {
  font-size: 30px;
}
.prod-prices .prod-price .num-info .num-boxes {
  font-size: 16px;
  margin-top: -7px;
  color: #666;
}
.prod-prices .prod-price .cost-info {
  float: right;
  width: 120px;
  font-size: 30px;
  text-align: right;
}
.prod-prices .prod-price .cost-info b {
  font-weight: 400;
  color: #000;
  font-size: 41px;
}
.prod-prices .prod-price .cost-info b em {
  font-style: normal;
}
.prod-prices .prod-price .cost-info sup {
  color: #666;
  margin-right: 5px;
  vertical-align: sub;
}
.prod-prices .prod-price:first-child {
  border-top: none;
}
.prod-cost-row {
  overflow: hidden;
}
.prod-order-col {
  float: right;
  width: 348px;
  margin: 13px 0 10px 10px;
}
.prod-order-col .prod-order-box {
  border: 1px solid #d2d2d2;
  background: #e2e2e229;
}
.prod-order-col .prod-order-subtotal {
  overflow: hidden;
  background: #d2d2d2;
}
.prod-order-col .prod-order-subtotal .prod-order {
  margin: 0;
  float: left;
  width: 180px;
}
.prod-order-col .prod-order-subtotal .prod-order strong {
  font-weight: 300;
  font-size: 28px;
  margin-left: 3px;
}
.prod-order-col .prod-order-subtotal .prod-order-num {
  float: right;
  width: 102px;
  padding-top: 1px;
}
.prod-order-col .prod-order-subtotal .prod-order-num input {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100px;
  font-size: 24px;
  font-weight: 300;
  padding: 1px;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #b7b6b6;
}
.prod-order-col .prod-order-help {
  font-weight: 300;
  font-size: 14px;
  padding: 5px;
}
.prod-order-col .prod-order-help.nocalc {
  font-size: 18px;
  margin: 20px 30px;
  text-align: center;
}
.l_lv .prod-order-col .prod-order-subtotal .prod-order {
  width: 243px;
}
.prod-order-calc {
  display: none;
}
.prod-order-calc .calculator {
  font-size: 26px;
  font-weight: 300;
  color: #333;
  padding: 10px 4px;
}
.prod-order-calc .calculator b {
  font-weight: 300;
  color: #000;
}
.prod-order-calc .calculator em {
  font-weight: 400;
  font-style: normal;
  color: #60981e;
}
.prod-order-calc .calculator i {
  font-weight: 300;
  font-style: normal;
}
.prod-num-outofstock {
  display: none;
}
.prod-num-outofstock .prod-num-outofstock-message {
  font-size: 16px;
  background-color: #e42084;
  padding: 5px;
  color: white;
}
.prod-num-outofstock .btn {
  width: auto;
  height: 50px;
  border: 1px solid #ddd;
  text-align: center;
  margin: 10px;
  background-color: #75B320;
  border-bottom: 5px solid #60981e;
  cursor: pointer;
}
.prod-num-outofstock .btn b {
  font-weight: 300;
  color: white;
  font-size: 29px;
  line-height: 51px;
}
.prod-num-outofstock .btn:hover {
  background: #EA2386;
  border-bottom: 5px solid #bd196b;
}
.prod-order-info {
  border: 1px solid #dedede;
  background: #f7f7f7;
  float: left;
  width: 368px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
}
.prod-order-info strong {
  font-size: 18px;
  color: black;
  font-weight: 400;
  margin-bottom: 6px;
  display: block;
}
.prod-order-info table {
  width: 100%;
}
.prod-order-info table th {
  font-weight: 400;
  width: 92px;
  text-align: right;
  font-size: 18px;
  color: #333;
}
.prod-order-info table td {
  font-weight: 300;
  padding-left: 5px;
  font-size: 18px;
}
.prod-col-1 {
  width: 370px;
  float: left;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom {
  background: #f8ffdb;
  height: 75px;
  margin-bottom: -5px;
  border: 1px solid #c3c7b3;
  border-bottom: none;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost {
  float: none;
  width: auto;
  overflow: hidden;
  border: none;
  height: 65px;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet {
  width: 165px;
  float: left;
  margin-left: 10px;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet b {
  font-size: 16px;
  color: #4c4c4c;
  margin-left: 0;
  display: block;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet .sbtn {
  width: 37px;
  height: 37px;
  float: left;
  background-color: #b5c89e;
  background-position: center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet .sbtn:hover {
  background-color: #9bae86;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet .sbtn.minus {
  background-image: url("data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUwIDUwIiBoZWlnaHQ9IjUwcHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MCA1MCIgd2lkdGg9IjUwcHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxyZWN0IGZpbGw9Im5vbmUiIGhlaWdodD0iNTAiIHdpZHRoPSI1MCIvPjxsaW5lIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjQiIHgxPSI5IiB4Mj0iNDEiIHkxPSIyNSIgeTI9IjI1Ii8+PC9zdmc+");
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet .sbtn.plus {
  background-image: url("data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iMTI4cHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMjggMTI4OyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgd2lkdGg9IjEyOHB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Zz48bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojMkYzNDM1O3N0cm9rZS13aWR0aDoxMjtzdHJva2UtbWl0ZXJsaW1pdDoxMDsiIHgxPSIxMy43ODciIHgyPSIxMTQuMjEzIiB5MT0iNjQuMDAxIiB5Mj0iNjQuMDAxIi8+PGxpbmUgc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6IzJGMzQzNTtzdHJva2Utd2lkdGg6MTI7c3Ryb2tlLW1pdGVybGltaXQ6MTA7IiB4MT0iNjQiIHgyPSI2NCIgeTE9IjEzLjc4NyIgeTI9IjExNC4yMTMiLz48L2c+PC9zdmc+");
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost .flowers-in-bouquet input {
  float: left;
  position: relative;
  margin-left: 0;
  width: 70px;
  height: 37px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 28px;
  color: #bd196b;
  text-align: center;
}
.product-cutflowers.product-details .product-info .col2 #product-price-custom .cost #custom-cut-sum {
  float: left;
  width: 120px;
  font-size: 45px;
  margin: 32px 0 0 7px;
  color: #738722;
}
.comments {
  margin: 40px 0 0 18px;
}
.comments strong {
  color: #bd196b;
  margin-bottom: 8px;
  display: block;
  font-size: 22px;
}
.comments .comment {
  margin-top: 20px;
  color: #4c4c4c;
  margin-left: 0px;
}
.comments .comment .name {
  font-weight: bold;
}
.comments .comment .text {
  font-size: 14px;
}
.comments .comment .stars {
  margin-top: 10px;
}
.comments .comment .stars b,
.comments .comment .stars i {
  font-size: 1.5em;
  color: #fff;
  text-shadow: -1px 0 #464341, 0 1px #464341, 1px 0 #464341, 0 -1px #464341, 0 0 10px #9211E6, 0 0 10px #9211E6;
}
.comments .comment .rating {
  color: #AE84C9;
  font-size: 18px;
  margin: -23px 0 5px 125px;
}
.comments .comment .summary {
  font-size: 14px;
  margin-bottom: 10px;
}
.comments .x-switch-container {
  display: none;
}
.comments .col1 {
  width: 511px;
}
.comments .col2 {
  width: 416px;
  margin-left: 15px;
}
.delivery-photos p {
  font-size: 16px;
  color: #4c4c4c;
  text-align: justify;
  margin-right: 14px;
  max-width: 1076px;
}
.delivery-images img {
  border: 1px solid #c7cab7;
  margin: 0 3px 0px 0;
  width: 130px;
}
.p_reviews .new-comment .text-content p {
  color: #1F2F16;
}
.your-rating {
  overflow: hidden;
}
.your-rating div {
  width: 41px;
  height: 41px;
  float: left;
  margin-right: 1px;
}
.your-rating div:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f006';
  font-size: 2.5em;
  color: #f3e9fe;
  text-shadow: -1px 0 #bd196b, 0 1px #bd196b, 1px 0 #bd196b, 0 -1px #bd196b;
  margin: 1px;
  cursor: pointer;
}
.your-rating div.selected:before {
  color: #B084E7;
  content: '\f005';
}
.your-rating div:hover:before {
  color: #933de5;
  content: '\f005';
}
.new-comment {
  background: #dce6cd url(../images/filter-bg.jpg);
}
.new-comment strong {
  color: #bd196b;
  margin-bottom: 8px;
  display: block;
  font-size: 22px;
  margin-top: 15px;
}
.new-comment strong.def-hide {
  display: none;
}
.new-comment label {
  color: #4c4c4c;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.new-comment input,
.new-comment textarea {
  color: #4c4c4c;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  font-size: 17px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
}
.new-comment input:-moz-placeholder,
.new-comment textarea:-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.new-comment input::-moz-placeholder,
.new-comment textarea::-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.new-comment input:-ms-input-placeholder,
.new-comment textarea:-ms-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.new-comment input::-webkit-input-placeholder,
.new-comment textarea::-webkit-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.new-comment textarea {
  width: 520px;
  height: 140px;
  margin-bottom: 15px;
}
.new-comment input {
  width: 381px;
}
.new-comment .button {
  width: 150px;
  padding: 10px;
  margin-top: 17px;
}
.new-comment .error {
  color: #5F3109;
  background: #ffc592;
  padding: 10px;
  font-size: 16px;
  margin-top: 16px;
  display: none;
}
.new-comment > h2 {
  color: #bd196b;
  margin-bottom: 8px;
  display: block;
  font-size: 22px;
  margin-top: 15px;
  text-align: center;
  padding: 15px;
}
.new-comment .col1 {
  margin-left: 22px;
  width: 525px;
}
.new-comment .col2 {
  width: 375px;
  margin-left: 15px;
}
.new-comment .col2 label {
  margin-top: 15px;
}
.text-content p {
  color: #4c4c4c;
  font-size: 16px;
  text-align: justify;
  margin: 0 0 4px 0;
  line-height: 22px;
  font-weight: 300;
}
.text-content b,
.text-content strong {
  color: #000;
  font-weight: 400;
}
#wedding-filters label {
  padding-left: 8px;
  margin-left: -8px;
  display: table;
}
#wedding-filters label:before {
  display: none;
}
#wedding-filters .col2 label:nth-of-type(2) {
  margin-bottom: 20px;
}
.ul-custom-format ul {
  margin-left: 0;
  /* Remove the default left margin */
  padding-left: 0;
  /* Remove the default left padding */
  margin-top: 2px;
}
.ul-custom-format ul > li {
  position: relative;
  /* Create a positioning context */
  margin: 0 0 10px 25px;
  /* Give each list item a left margin to make room for the numbers */
  padding: 0px 2px;
  /* Add some spacing around the content */
  list-style: none;
  /* Disable the normal item numbering */
  color: #4c4c4c;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
}
.ul-custom-format ul > li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #7C39C5;
  content: '\f08a';
  position: absolute;
  top: -2px;
  left: -28px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  height: 15px;
  /* Some space between the number and the content in browsers that support
       generated content but not positioning it */
  margin-right: 8px;
  padding: 5px;
  text-align: center;
  font-size: 1.3em;
}
.page-text {
  padding: 0;
}
.page-text ul {
  margin-left: 0;
  /* Remove the default left margin */
  padding-left: 0;
  /* Remove the default left padding */
  margin-top: 2px;
}
.page-text ul > li {
  position: relative;
  /* Create a positioning context */
  margin: 0 0 10px 25px;
  /* Give each list item a left margin to make room for the numbers */
  padding: 0px 2px;
  /* Add some spacing around the content */
  list-style: none;
  /* Disable the normal item numbering */
  color: #4c4c4c;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
}
.page-text ul > li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #7C39C5;
  content: '\f08a';
  position: absolute;
  top: -2px;
  left: -28px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  height: 15px;
  /* Some space between the number and the content in browsers that support
       generated content but not positioning it */
  margin-right: 8px;
  padding: 5px;
  text-align: center;
  font-size: 1.3em;
}
.page-text #list-products {
  margin-left: -15px;
}
.page-text #list-products .product {
  margin-left: 14px;
}
.p_index_index .page-text,
.p_reviews .page-text {
  padding-right: 0;
}
.gallery-slick {
  margin: 10px 30px;
  width: 858px;
}
ul.slick-dots {
  margin-bottom: 0px;
}
ul.slick-dots > li {
  margin-left: 5px;
}
ul.slick-dots > li::before {
  display: none !important;
}
.slick-slide {
  border: 1px solid #D8CBE8;
  margin: 5px;
}
.menu-filter-arrangements > strong {
  margin-left: 311px;
}
.menu-filter-arrangements label {
  display: table;
}
.menu-filter-arrangements .col1 {
  width: 365px;
}
.menu-filter-arrangements .col2 {
  width: 260px;
}
.menu-filter-arrangements .col3 {
  width: 330px;
}
.menu-filter-arrangements .filters {
  border-top: 1px solid #c3c7b3;
  margin-top: -30px;
}
.l_en .menu-filter-arrangements > strong {
  margin-left: 213px;
}
.l_lv .menu-filter-arrangements .col1 {
  width: 325px;
  margin-right: 45px;
}
.l_lv .menu-filter-arrangements > strong {
  margin-left: 190px;
}
.menu-filter-cutflowers > strong {
  margin-left: 152px;
  margin-top: -77px;
}
.menu-filter-cutflowers p {
  font-size: 1px;
  height: 3px;
  border-bottom: 0;
}
.l_en .menu-filter-cutflowers > strong {
  margin-left: 94px;
}
.l_lv .menu-filter-cutflowers > strong {
  margin-left: 126px;
}
.menu-filter-premium > strong {
  margin-left: 436px;
  margin-top: -77px;
}
.menu-filter-premium p {
  font-size: 1px;
  height: 3px;
  border-bottom: 0;
}
.l_en .menu-filter-premium > strong {
  margin-left: 349px;
}
.l_lv .menu-filter-premium > strong {
  margin-left: 316px;
}
.menu-filter-gifts > strong {
  margin-left: 706px;
  margin-top: -91px;
}
.menu-filter-gifts #gifts-filters {
  border-bottom: 0px solid transparent;
}
.l_lv .menu-filter-gifts > strong {
  margin-left: 526px;
}
#add-to-basket {
  padding: 20px 0;
  font-size: 30px;
  font-weight: 300;
}
#add-to-basket.waiting:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f021";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  font-size: 40px;
  margin: -10px 0 0 -60px;
  position: absolute;
}
#add-to-basket.success:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f046";
  font-size: 40px;
  margin: -10px 0 0 -60px;
  position: absolute;
}
#list-gifts .product {
  cursor: default;
}
#list-gifts .product a.gimg {
  cursor: default;
}
#list-gifts .product .button {
  cursor: pointer;
}
#list-gifts .product .button.waiting:before,
#list-gifts .product .button.success:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f046";
  margin-right: 10px;
  position: absolute;
  margin-left: -18px;
  margin-top: 1px;
}
#list-gifts .product .button.waiting:before {
  content: "\f021";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
#login-widget {
  position: absolute;
  width: 267px;
  background-color: #f9fff4;
  border: 1px solid #b0b49e;
  -webkit-box-shadow: 0px 4px 7px -2px #bd196b;
  -moz-box-shadow: 0px 4px 7px -2px #bd196b;
  box-shadow: 0px 4px 7px -2px #bd196b;
  z-index: 9;
  margin: 0px 0 0 225px;
  padding: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
#login-widget label {
  display: block;
  color: #738722;
  font: bold 16px "Oswald", sans-serif;
  margin: 2px;
}
#login-widget label a {
  float: right;
  position: relative;
  margin-top: -1px;
  color: #bd196b;
}
#login-widget input {
  font-size: 16px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  width: 244px;
  margin-bottom: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#login-widget input:-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
#login-widget input::-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
#login-widget input:-ms-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
#login-widget input::-webkit-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
#login-widget input:not(.tel) {
  padding: 3px;
}
#login-widget input.error {
  background: #fee7d5;
  border: 1px solid #ca886d;
}
#login-widget .register {
  margin-bottom: 8px;
}
#login-widget .register a {
  color: #bd196b;
  font: bold 16px "Oswald", sans-serif;
}
#login-widget .button {
  padding: 10px 0;
}
#login-widget input[type=submit] {
  visibility: hidden;
  position: absolute;
  left: -1000px;
}
#login-widget .result.error {
  color: red;
}
#login-widget .action-register {
  display: none;
}
#login-widget .action-register .tel {
  padding-left: 50px;
}
#login-widget .action-register .intl-tel-input {
  margin-bottom: 10px;
}
.basket-steps {
  overflow: hidden;
  margin: 10px 0 20px 0;
}
.basket-steps .step {
  float: left;
  display: inline-table;
  margin: 0 0px 0 25px;
  font: 600 20px "Oswald", sans-serif;
}
.basket-steps .step:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f142  ";
  margin-right: 10px;
  position: absolute;
  margin: 8px 0 0 -14px;
  color: #4c4c4c;
  font-size: 18px;
  -webkit-font-smoothing: none !important;
  -moz-osx-font-smoothing: none !important;
  font-smooth: never;
}
.basket-steps .step.active {
  color: #E42084;
}
.basket-steps .step.active:before {
  color: #E42084;
}
.basket-steps .step:last-child {
  margin-right: 0;
}
.basket-steps .step:first-child {
  margin-left: 0;
}
.basket-steps .step:first-child:before {
  display: none;
}
.basket-list thead {
  border-bottom: 1px dashed #717171;
}
.basket-list tfoot {
  border-top: 1px dashed #717171;
}
.basket-list tfoot th {
  padding-top: 10px;
  color: #bd196b;
  font-size: 18px;
}
.basket-list tfoot th:nth-of-type(1) {
  text-align: right;
  padding-right: 10px;
}
.basket-list th {
  font: 600 15px "Oswald", sans-serif;
  color: #4c4c4c;
  text-align: left;
  padding-bottom: 10px;
}
.basket-list th:nth-of-type(1) {
  width: 60px;
}
.basket-list th:nth-of-type(3) {
  width: 180px;
}
.basket-list th:nth-of-type(4) {
  width: 120px;
}
.basket-list th:nth-of-type(5) {
  width: 80px;
}
.basket-list th:nth-of-type(6) {
  width: 80px;
}
.basket-list th:nth-of-type(7) {
  width: 80px;
}
.basket-list td {
  text-align: left;
  padding-top: 1px;
  font: 400 15px "Oswald", sans-serif;
  color: #4c4c4c;
}
.basket-list .item.color1 {
  background-color: #fdf3f8;
}
.basket-list .item.color1 td {
  background-color: #fdf3f8;
}
.basket-list .item.color2 {
  background-color: #ececec;
}
.basket-list .item.color2 td {
  background-color: #ececec;
}
.basket-list .item.color3 td {
  background-color: white;
}
.basket-list .item strong {
  font-weight: normal;
  color: #7A7A7A;
  font-size: 15px;
}
.basket-list .item a {
  font: 400 15px "Oswald", sans-serif;
  color: #4c4c4c;
}
.basket-list .item a:hover {
  color: #bd196b;
}
.basket-list .item .num b:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 28px;
  content: '\f146';
  color: #90a636;
}
.basket-list .item .num i:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 28px;
  content: '\f0fe';
  color: #90a636;
}
.basket-list .item .num span {
  display: inline-block;
  font-size: 20px;
  width: 50px;
  text-align: center;
  position: absolute;
  margin-top: 2px;
}
.basket-list .item .num i,
.basket-list .item .num b {
  display: inline-block;
  width: 25px;
  height: 27px;
  cursor: pointer;
}
.basket-list .item .num i:hover:before,
.basket-list .item .num b:hover:before {
  color: #bd196b;
}
.basket-list .item .num i {
  margin-left: 50px;
}
.basket-list .subhead {
  padding-bottom: 8px;
  padding-left: 60px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #bd196b;
  font-size: 18px;
}
.basket-list .supertotal {
  font-size: 24px;
}
.basket-list em {
  display: none;
}
.basket-list.additional-services {
  margin-bottom: 24px;
}
.basket-delivery-city .head {
  font: 400 18px "Oswald", sans-serif;
  color: #4c4c4c;
  margin-right: 10px;
}
.basket-delivery-city #city {
  position: absolute;
  margin-top: -11px;
}
.basket-delivery-city .q .head,
.basket-delivery-city .q #city {
  float: left;
}
.card-params .card {
  margin-bottom: 15px;
}
.card-params .card .card-head {
  background: #fce8c9;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fce8c9), color-stop(44%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fce8c9 0%, #ffffff 44%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fce8c9 0%, #ffffff 44%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fce8c9', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
  border: 1px solid #d3c5aa;
  border-width: 1px 0;
  overflow: hidden;
  padding-bottom: 10px;
  min-height: 73px;
}
.card-params .card .card-head img {
  margin: 5px 0 1px 5px;
  border: 1px solid #d3c5aa;
  width: 70px;
  height: 70px;
  position: absolute;
}
.card-params .card .card-head .inf {
  margin-left: 85px;
  overflow: hidden;
}
.card-params .card .card-head > b {
  color: #4c4c4c;
  position: absolute;
  font-weight: normal;
  margin: 6px 0 0 10px;
}
.card-params .card .card-head > b i {
  font-weight: bold;
  font-style: normal;
  color: #bd196b;
}
.card-params .card .card-head > b strong {
  color: #bd196b;
  font-size: 14px;
  font-weight: normal;
}
.card-params .card .card-head .type {
  display: inline-block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 20px;
  margin-right: 40px;
  cursor: pointer;
  border: 1px solid #90a636;
}
.card-params .card .card-head .type .n1 {
  display: none;
}
.card-params .card .card-head .type em {
  font-style: normal;
}
.card-params .card .card-head .type:last-child {
  margin-right: 0;
}
.card-params .card .card-head .type b {
  position: absolute;
  white-space: nowrap;
  padding: 1px 5px;
  font-size: 14px;
  margin: -1px 0 0 5px;
  border: 1px solid #ff8774;
  background: #ff8774;
  color: white;
}
.card-params .card .card-head .type:hover {
  color: white;
  border: 1px solid #b78ae7;
}
.card-params .card .card-head .type.selected {
  background-color: #b78ae7;
  border: 1px solid #bd196b;
}
.card-params .card .params {
  display: none;
}
.card-params .card .params .text {
  display: none;
}
.card-params .card .params .text strong {
  color: #4c4c4c;
  font-weight: normal;
  display: block;
  margin: 10px 0 0 0;
  max-width: 500px;
}
.card-params .card .params .text strong i {
  font-style: normal;
  color: #bd196b;
}
.card-params .card .params .text textarea {
  font-size: 16px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 3px;
  width: 500px;
  margin: 10px 0 20px 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 130px;
}
.card-params .card .params .select-art .products {
  margin-left: 8px;
}
.card-params .card .params .select-art .products .product {
  margin: 0 0 15px 14px;
}
.card-params .card .params .select-art .products .product i {
  font: bold 23px/23px 'Oswald', sans-serif;
  color: #738722;
  margin: 4px 0 10px 4px;
  float: left;
  display: block;
  width: 67px;
  text-align: center;
}
.card-params .card .params .select-art .products .product .button {
  float: right;
  margin-right: 10px;
  width: 135px;
}
.card-params .card .params .list-cards {
  margin: 15px 0 0 -23px;
}
.card-params .card .params .pager {
  display: none;
}
.card-params .card .params .art-icon-free {
  display: none;
  position: absolute;
  margin: 0 0 0 515px;
}
.card-params .card .params .art-icon-free .icon {
  border: 1px solid #d3c5aa;
  width: 130px;
  height: 130px;
  background-size: cover;
  background-image: url(/repository/products/398/1044/1044-500.jpg);
}
.card-params .card .params .art-icon-free .price {
  position: absolute;
  white-space: nowrap;
  padding: 1px 5px;
  font-size: 14px;
  margin: -23px 0 0 91px;
  border: 1px solid #ff8774;
  background: #ff8774;
  color: white;
}
.card-params .card .params .art-icon-free .size {
  color: #a34c4c;
}
.card-params .card .params .art-icon {
  display: none;
  position: absolute;
  margin: 0 0 0 515px;
}
.card-params .card .params .art-icon .icon {
  border: 1px solid #d3c5aa;
  width: 130px;
  height: 130px;
  background-size: cover;
}
.card-params .card .params .art-icon .price {
  position: absolute;
  white-space: nowrap;
  padding: 1px 5px;
  font-size: 14px;
  margin: -23px 0 0 103px;
  border: 1px solid #ff8774;
  background: #ff8774;
  color: white;
}
.continue-to-ordering,
.continue-to-confirm,
.continue-to-payment,
.continue-on-payer-info {
  padding: 15px 20px 15px 40px;
  display: inline-block;
  width: 410px;
}
.continue-to-payment-checkbox {
  overflow: hidden;
}
.continue-to-payment-checkbox .iamagreewithrules {
  padding: 10px 20px 10px 0px;
  display: inline-block;
  width: 460px;
}
.continue-to-ordering:before,
.continue-to-confirm:before,
.continue-to-payment:before,
.continue-on-payer-info:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f04e";
  position: absolute;
  margin-left: -25px;
}
.order-page {
  padding: 10px 16px;
}
.total-errors div {
  color: #a34c4c;
}
.total-errors div:before {
  content: '!';
  margin-right: 10px;
  color: red;
  font-weight: bold;
}
input.use_placeholder {
  box-sizing: border-box;
  width: 100%;
  height: calc(40px - -2px);
  margin: 0;
  padding: 13px;
  border: 1px solid #c7cab7;
  background: #fff;
  resize: none;
  outline: none;
}
input.use_placeholder[required]:focus {
  border-color: #333;
}
input.use_placeholder[required]:focus + label[placeholder]:before {
  color: #333;
}
input.use_placeholder[required]:focus:not(.use_placeholder_hide) + label[placeholder]:before,
input.use_placeholder[required]:valid:not(.use_placeholder_hide) + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -19.5px) scale(1, 1);
}
input.use_placeholder[required]:-webkit-autofill:not(.use_placeholder_hide) + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -19.5px) scale(1, 1);
}
input.use_placeholder[required]:valid.use_placeholder_hide + label[placeholder]:before {
  visibility: hidden;
}
input.use_placeholder[required]:invalid + label[placeholder][alt]:before {
  content: attr(alt);
}
input.use_placeholder[required] + label[placeholder] {
  display: block;
  pointer-events: none;
  line-height: 40px;
  margin-top: calc(-40px - 2px);
  margin-bottom: 0;
}
input.use_placeholder[required] + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(13px + 2px);
  padding: 0 2px;
  color: #4c4c4c;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}
input.use_placeholder[required].tel + label[placeholder]:before {
  margin: 0 calc(13px + 2px + 30px);
}
textarea.use_placeholder,
#addr_full {
  box-sizing: border-box;
  width: 100%;
  height: calc(100px - -2px);
  margin: 0;
  padding: 37px;
  background: #fff;
  resize: none;
  outline: none;
  padding: 3px;
  border: 1px solid #c7cab7;
}
textarea.use_placeholder[required]:focus,
#addr_full[required]:focus {
  border-color: #333;
}
textarea.use_placeholder[required]:focus + label[placeholder]:before,
#addr_full[required]:focus + label[placeholder]:before {
  color: #333;
}
textarea.use_placeholder[required]:focus:not(.use_placeholder_hide) + label[placeholder]:before,
#addr_full[required]:focus:not(.use_placeholder_hide) + label[placeholder]:before,
textarea.use_placeholder[required]:valid:not(.use_placeholder_hide) + label[placeholder]:before,
#addr_full[required]:valid:not(.use_placeholder_hide) + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -55.5px) scale(1, 1);
}
textarea.use_placeholder[required]:-webkit-autofill:not(.use_placeholder_hide) + label[placeholder]:before,
#addr_full[required]:-webkit-autofill:not(.use_placeholder_hide) + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -55.5px) scale(1, 1);
}
textarea.use_placeholder[required]:valid.use_placeholder_hide + label[placeholder]:before,
#addr_full[required]:valid.use_placeholder_hide + label[placeholder]:before {
  visibility: hidden;
}
textarea.use_placeholder[required]:invalid + label[placeholder][alt]:before,
#addr_full[required]:invalid + label[placeholder][alt]:before {
  content: attr(alt);
}
textarea.use_placeholder[required] + label[placeholder],
#addr_full[required] + label[placeholder] {
  display: block;
  pointer-events: none;
  line-height: 100px;
  margin-top: calc(-100px - 2px);
  margin-bottom: 0;
}
textarea.use_placeholder[required] + label[placeholder]:before,
#addr_full[required] + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(37px + 2px);
  padding: 0 2px;
  color: #4c4c4c;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}
textarea.use_placeholder[required].tel + label[placeholder]:before,
#addr_full[required].tel + label[placeholder]:before {
  margin: 0 calc(37px + 2px + 30px);
}
.order-form .field {
  float: left;
  margin-right: 15px;
  width: calc(33% - 10px);
  padding: 10px 0;
}
.order-form .field:last-child {
  margin-right: 0;
}
.order-form .field input {
  width: 100%;
}
.order-form .field.field-phone .intl-tel-input {
  width: 100%;
}
.order-form .field.field-phone .intl-tel-input .selected-flag .iti-flag {
  bottom: 2px;
}
.order-form .field.field-phone .intl-tel-input .flag-dropdown {
  top: 1px;
}
.order-form .address-full {
  margin: 15px 0 10px;
}
.order-form .callforaddress-cnt {
  margin-top: 20px;
}
.order-form .delivery-address-info.info {
  font-weight: bold;
  margin-bottom: 15px;
}
.order-form .delivery-address-info-2.info {
  font-weight: bold;
  color: #7b7b7b;
}
.order-form .delivery-address-info-2-comment.info {
  font-size: 0.9em;
  color: #7b7b7b;
  margin-top: -3px;
}
.order-form .delivery-address-case.info {
  font-weight: bold;
  margin: 15px 0;
}
.order-form .delivery-address-details {
  margin-top: 20px;
  margin-bottom: 20px;
}
.order-form .delivery-address-details em {
  color: #738722;
  font-size: 18px;
  margin: -3px 0 0 2px;
  position: absolute;
  background: #f8ffdb;
  font-style: normal;
  padding: 1px 3px;
  white-space: nowrap;
}
.order-form .delivery-address-details .resolve_delivery_address_group {
  margin-top: 20px;
  margin-bottom: 20px;
}
.order-form .delivery-address-details #delivery_address_location {
  width: calc(100% - 190px);
  float: left;
  margin-right: 0;
}
.order-form .delivery-address-details #delivery_address2_field {
  width: calc(100% - 190px);
  float: left;
}
.order-form .delivery-address-details #delivery_address2 {
  width: 100%;
  height: 47px;
  resize: none;
}
.order-form .delivery-address-details .knowAddress1-result .button {
  float: left;
  width: 140px;
  padding: 10px;
  margin-top: 12px;
  margin-left: 15px;
  display: none;
}
.order-form .delivery-address-details .basket-self-delivery-address {
  display: block;
  color: #4c4c4c;
  margin-bottom: 15px;
}
.order-form .delivery-address-details .basket-self-delivery-address div {
  font-weight: bold;
}
.order-form .delivery-address-details .knowAddress4-result p {
  color: #7b7b7b;
}
.order-form .please-wait-while-update-address {
  border: 1px solid #b0d897;
  background-color: #cff3cb;
  max-width: 770px;
  padding: 10px;
  margin-top: 3px;
  padding-left: 45px;
  display: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.order-form .please-wait-while-update-address:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f110";
  position: absolute;
  margin: 1px 0 0 -30px;
  color: #4c4c4c;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.order-form .knowAddress-result {
  max-width: 770px;
  margin-top: 20px;
  border: 1px solid #c3c7b3;
  padding: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.order-form .knowAddress-result input[type=text] {
  padding: 10px;
}
.order-form .knowAddress1-result .field {
  width: 100%;
}
.order-form .knowAddress2-result .field {
  width: 300px;
}
.order-form .info-address-over {
  margin-bottom: 20px !important;
}
.order-form .info-address-over b {
  color: #4c4c4c;
}
.order-form .knowAddress-result {
  display: none;
}
.order-form .knowAddress-answer {
  margin-top: 20px;
}
.order-form .delivery-address-price {
  border: 1px solid #c3c7b3;
  padding: 10px;
  max-width: 770px;
  margin-top: 10px;
  background: #fcfff0;
  display: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.order-form .delivery-address-cantfind {
  border: 1px solid rgba(209, 189, 105, 0.29);
  padding: 10px;
  max-width: 770px;
  margin-top: 10px;
  background: rgba(209, 189, 105, 0.18);
  display: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.order-form .delivery-address-cantfind b {
  color: #4c4c4c;
}
.order-form .fulladdress-is-not-full {
  font-size: 0.9em;
  margin-top: 20px;
}
.order-form .fulladdress-is-not-full b {
  color: #4c4c4c;
}
.order-form .mobileCheckbox.doubleLine:not(checked) + label {
  display: block;
  width: 420px;
}
.order-form .mobileCheckbox.doubleLine:not(checked) + label:before {
  top: 5px;
}
.order-form .mobileCheckbox.doubleLine:not(checked) + label:after {
  top: 15px;
}
.order-form .are-you-client {
  margin: 10px 0;
}
.order-form .are-you-client strong {
  color: #4c4c4c;
  font-size: 15px;
  display: block;
  font-weight: bold;
}
.order-form .order-login {
  width: 565px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #c7cab7;
  padding: 10px;
  background: #FFFDF7;
}
.order-form .order-login .button {
  width: 150px;
  padding: 10px;
}
.order-form .order-login h2 {
  margin-top: 0;
}
.order-form .order-login .result.error {
  color: red;
}
.order-form .personal-info {
  overflow: hidden;
  margin-top: -10px;
}
.order-form .personal-info .client-new-info {
  margin-bottom: 10px;
}
.order-form .personal-info .passblock {
  display: none;
}
.order-form .personal-info .passblock .button {
  width: 150px;
  padding: 10px 0;
  margin-top: 5px;
}
.order-form .personal-info .error1 {
  color: #5F3109;
  background: #F4E7CB;
  padding: 10px;
  font-size: 16px;
  display: none;
}
.order-form .personal-info .result.error {
  color: red;
  margin-top: 5px;
}
.order-form .personal-info .pasword-for-login small {
  display: block;
  font-size: 15px;
  color: #888;
}
.order-form .personal-info #user_password {
  float: left;
}
.order-form .personal-info .restoreblock {
  float: left;
  margin-top: 10px;
}
.order-form .iamrecblock {
  margin-top: 20px;
}
.order-form .iamrecblock label {
  color: #4c4c4c;
}
.order-form .rec-info {
  margin-top: 12px;
}
.order-form .personal-info-continue div {
  color: #4c4c4c;
}
.order-form .personal-info-continue strong {
  color: #4c4c4c;
  font-size: 15px;
  display: block;
  font-weight: normal;
}
.order-form h2 {
  margin-bottom: 5px;
}
.order-form input[type=text],
.order-form input[type=email],
.order-form input[type=phone],
.order-form input[type=password],
.order-form select,
.order-form textarea,
.order-form .input {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 3px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.order-form input[type=text].error,
.order-form input[type=email].error,
.order-form input[type=phone].error,
.order-form input[type=password].error,
.order-form select.error,
.order-form textarea.error,
.order-form .input.error {
  border: 1px solid #CB9F98;
}
.order-form .input.empty {
  color: #7C854D;
  cursor: text;
}
.order-form input[type=phone] {
  padding-left: 45px;
}
.order-form .info,
.order-form label {
  color: #4c4c4c;
  margin: 6px 1px 2px;
}
.order-form .comment {
  font-size: 15px;
  border: 1px solid #c3c7b3;
  padding: 8px;
}
.order-form .comment strong {
  color: darkred;
  display: block;
  font-weight: normal;
  font-size: 15px;
}
.order-form .comment strong a {
  color: #D93A3A;
}
.order-form .cities {
  margin-top: 7px;
}
.order-form .cities .city {
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #c3c7b3;
  margin: 0 0 5px 0;
  padding: 4px 0px 3px 5px;
  width: 310px;
  cursor: pointer;
}
.order-form .cities .city strong {
  color: #4c4c4c;
  font-weight: normal;
}
.order-form .cities .city em {
  background: #f8ffdb;
  float: right;
  color: #738722;
  font-weight: bold;
  font-style: normal;
  padding: 4px 6px;
  margin-top: -4px;
  border-left: 1px solid #c3c7b3;
}
.order-form .cities .city em b {
  color: #d20808;
  font-size: 1.1em;
  display: none;
}
.order-form .cities .city:hover {
  background: #faf6fe;
}
.order-form .cities .city.selected {
  background: #f3e9fe;
}
.order-form .cities .city.selected > strong {
  color: #bd196b;
}
.order-form .cities .city.custom-city i {
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  width: 200px;
}
.order-form .cities .city.custom-city em {
  padding: 25px 6px;
  margin-top: -25px;
}
.order-form .cities .custom_cost {
  margin-top: 10px;
  display: none;
}
.order-form .cities.addedMoney .city em {
  width: 56px;
}
.order-form .address {
  overflow: hidden;
  margin-top: 10px;
}
.order-form .address .col1 {
  width: 335px;
  min-height: 370px;
  border-right: 1px solid #CAB4E7;
}
.order-form .address .col2 {
  opacity: 0.2;
  padding-left: 10px;
  width: 570px;
}
.order-form .address .col2 select {
  width: 320px;
}
.order-form .address .col2 label {
  width: 310px;
}
.order-form .address .col2 input[type=checkbox] {
  margin-top: 8px;
}
.order-form .address select {
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 2px 5px;
}
.order-form .address .organization,
.order-form .address .hotel,
.order-form .address .department,
.order-form .address .adr_callforaddress,
.order-form .address .other_city {
  margin-top: 10px;
  display: none;
}
.order-form .address .house-inf {
  overflow: hidden;
}
.order-form .address .house,
.order-form .address .corp,
.order-form .address .flat {
  float: left;
  width: 100px;
}
.order-form .address .address-comment {
  height: 50px;
}
.order-form .address .self-delivery {
  display: none;
}
.order-form .address .self-delivery > div {
  margin: 20px 0 0 0;
  border: 1px solid #D3C4E1;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 10px;
  background: #faf6fe;
}
.order-form .delivery-date a {
  font-weight: bold;
  margin-right: 20px;
  text-decoration: none;
  border-bottom: 1px dashed #5B7100;
  color: #5B7100;
  font-size: 15px;
}
.order-form .delivery-date a:hover,
.order-form .delivery-date a.selected {
  border-bottom: 1px dashed #bd196b;
  color: #bd196b;
}
.order-form .datepick-input {
  cursor: text;
}
.order-form .datepick-input b {
  color: black;
  font-size: 15px;
}
.order-form .comment-block {
  margin: 10px 0;
}
.order-form .comment-block div {
  color: #4c4c4c;
}
.order-form .comment-block #order-comment {
  width: 500px;
  margin-top: 10px;
}
.order-form .additional-services h2 {
  margin-bottom: 15px;
}
.delivery-datepick {
  position: absolute;
  display: none;
  z-index: 2;
}
.please-select-date {
  background-color: rgba(255, 255, 255, 0.33);
  color: rgba(156, 103, 62, 0.54);
  font-size: 40px;
  padding: 30px;
  position: absolute;
  text-align: center;
  width: 880px;
  z-index: 1;
}
.delivery-time {
  overflow: hidden;
  opacity: 0.2;
  margin-top: 40px;
  margin-bottom: 44px;
  border: 1px solid #888080;
  background: #FCF7FF;
  width: 878px;
  padding: 2px 0 2px 5px;
}
.delivery-time.hidden {
  display: none;
}
.delivery-time .time {
  float: left;
  padding: 15px 15px 10px 2px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #c3c7b3;
  cursor: pointer;
  margin-right: 5px;
  background: #F4FFE1;
}
.delivery-time .time b,
.delivery-time .time i,
.delivery-time .time span {
  font-size: 22px;
  font-weight: normal;
  font-style: normal;
  color: #5B7100;
  text-align: right;
  display: inline-block;
  width: 22px;
}
.delivery-time .time b:after,
.delivery-time .time i:after,
.delivery-time .time span:after {
  content: '00';
  font-size: 12px;
  position: absolute;
  margin: -10px 0 0 0;
  z-index: 0;
}
.delivery-time .time em:after {
  content: '....';
  font-weight: normal;
  font-style: normal;
  margin: 0 2px;
}
.delivery-time .time.night {
  background: #eee;
  color: #555;
  border: 1px solid #555;
}
.delivery-time .time.night b,
.delivery-time .time.night i {
  color: #555;
}
.delivery-time .time.night em:after {
  margin-left: 5px;
}
.delivery-time .time.night i {
  width: 15px;
}
.delivery-time .time:hover {
  background: #fd91c7;
  border: 1px solid #bd196b;
}
.delivery-time .time:hover b,
.delivery-time .time:hover i,
.delivery-time .time:hover em {
  color: #fff;
}
.delivery-time .time.selected {
  background: #ea2386;
  border: 1px solid #bd196b;
  color: #fff;
}
.delivery-time .time.selected b,
.delivery-time .time.selected i,
.delivery-time .time.selected em,
.delivery-time .time.selected span {
  color: #fff;
}
.delivery-time .time.night:hover {
  background: #fd91c7;
  border: 1px solid #bd196b;
}
.delivery-time .time.night.selected {
  background: #ea2386;
  border: 1px solid #bd196b;
  color: #fff;
}
.delivery-time .time.night.selected b,
.delivery-time .time.night.selected i,
.delivery-time .time.night.selected em,
.delivery-time .time.night.selected span {
  color: #fff;
}
.delivery-time .time.visible {
  visibility: visible;
}
.delivery-time .time.hidden {
  visibility: hidden;
}
.delivery-time .imposible {
  background: #fafbd4 none repeat scroll 0 0;
  border: 1px solid #c7cb4e;
  display: none;
  font-weight: bold;
  margin: 3px 0;
  padding: 3px;
  position: absolute;
  text-align: center;
  width: 870px;
  color: #704907;
}
.delivery-time .imposible span {
  display: block;
  font-weight: normal;
}
.delivery-time .imposible span b {
  display: none;
}
.delivery-time .imposible span em {
  font-style: normal;
}
.delivery-time .time.quick {
  position: absolute;
  width: 130px;
  height: 40px;
  background: #FAFBD4;
  border: 1px solid #C7CB4E;
  margin-top: -6px;
  z-index: 1;
}
.delivery-time .time.quick span {
  position: absolute;
  font-size: 16px;
  margin: 24px 0 0 0;
  width: 146px;
  text-align: center;
}
.delivery-time .time.quick span:after {
  display: none;
}
.delivery-time .time.quick b {
  margin-left: 30px;
}
.delivery-time .time.quick i,
.delivery-time .time.quick b,
.delivery-time .time.quick span,
.delivery-time .time.quick em {
  color: #8E8300;
}
.delivery-time .time.quick:hover {
  border-color: #9F8B13;
}
.delivery-time .time.quick:hover i,
.delivery-time .time.quick:hover b,
.delivery-time .time.quick:hover span,
.delivery-time .time.quick:hover em {
  color: #524C02;
}
.delivery-time .time.quick.selected {
  background: #ea2386;
  border: 1px solid #bd196b;
}
.delivery-time .time.quick.selected b,
.delivery-time .time.quick.selected i,
.delivery-time .time.quick.selected em,
.delivery-time .time.quick.selected span {
  color: #fff;
}
.delivery-time-list {
  display: none;
}
.delivery-time-list-style {
  overflow: hidden;
  border: 1px solid #888080;
  width: 420px;
}
.delivery-time-list-style.hidden {
  display: none;
}
.delivery-time-list-style .time {
  border: 1px solid #c3c7b3;
  cursor: pointer;
  background: #F4FFE1;
  margin: 2px;
}
.delivery-time-list-style .time div.a,
.delivery-time-list-style .time div.b {
  font-size: 0.85em;
  margin-top: 4px;
  color: #3a3839;
  font-style: italic;
}
.delivery-time-list-style .time .spec {
  margin: 5px;
}
.delivery-time-list-style .time b,
.delivery-time-list-style .time i,
.delivery-time-list-style .time span {
  font-size: 22px;
  font-weight: normal;
  font-style: normal;
  color: #5B7100;
  text-align: right;
  display: inline-block;
  width: 22px;
}
.delivery-time-list-style .time b:after,
.delivery-time-list-style .time i:after,
.delivery-time-list-style .time span:after {
  content: '00';
  font-size: 12px;
  position: absolute;
  margin: -1px 0 0 0;
  z-index: 0;
}
.delivery-time-list-style .time span {
  float: right;
  font-size: 14px;
  width: auto;
  text-align: right;
  margin-top: -2px;
  font-weight: bold;
  padding: 2px;
  color: black;
  white-space: nowrap;
}
.delivery-time-list-style .time span u {
  text-decoration: none;
  display: block;
}
.delivery-time-list-style .time span strong {
  display: inline-block;
  background-color: #f8ffdb;
  float: right;
  border: 1px solid #738722;
  color: #305600;
  padding: 0 2px;
}
.delivery-time-list-style .time span:after {
  display: none;
}
.delivery-time-list-style .time em:after {
  content: '....';
  font-weight: normal;
  font-style: normal;
  margin: 0 2px;
}
.delivery-time-list-style .time.night {
  background: #eee;
  color: #555;
  border: 1px solid #555;
}
.delivery-time-list-style .time.night b,
.delivery-time-list-style .time.night i {
  color: #555;
}
.delivery-time-list-style .time.night em:after {
  margin-left: 5px;
}
.delivery-time-list-style .time.night i {
  width: 15px;
}
.delivery-time-list-style .time:hover {
  background: #faf6fe;
  border: 1px solid #b78ae7;
}
.delivery-time-list-style .time:hover b,
.delivery-time-list-style .time:hover i,
.delivery-time-list-style .time:hover em {
  color: #bd196b;
}
.delivery-time-list-style .time.selected {
  background: #b880f5;
  border: 1px solid #6E449C;
  color: #fff;
}
.delivery-time-list-style .time.selected b,
.delivery-time-list-style .time.selected i,
.delivery-time-list-style .time.selected em,
.delivery-time-list-style .time.selected span {
  color: #fff;
}
.delivery-time-list-style .time.night:hover {
  background: #f0ecf4;
}
.delivery-time-list-style .time.night.selected {
  background: #b880f5;
}
.delivery-time-list-style .time.visible {
  display: block;
}
.delivery-time-list-style .time.hidden {
  display: none;
}
.delivery-time-list-style .time.quick {
  background: #FAFBD4;
  border: 1px solid #C7CB4E;
  z-index: 1;
}
.delivery-time-list-style .time.quick span {
  float: right;
  text-align: center;
}
.delivery-time-list-style .time.quick span:after {
  display: none;
}
.delivery-time-list-style .time.quick b {
  margin-left: 0px;
}
.delivery-time-list-style .time.quick i,
.delivery-time-list-style .time.quick b,
.delivery-time-list-style .time.quick span,
.delivery-time-list-style .time.quick em {
  color: #8E8300;
}
.delivery-time-list-style .time.quick:hover {
  border-color: #9F8B13;
}
.delivery-time-list-style .time.quick:hover i,
.delivery-time-list-style .time.quick:hover b,
.delivery-time-list-style .time.quick:hover span,
.delivery-time-list-style .time.quick:hover em {
  color: #524C02;
}
.delivery-time-list-style .time.quick.selected {
  background: #ea2386;
  border: 1px solid #bd196b;
}
.delivery-time-list-style .time.quick.selected b,
.delivery-time-list-style .time.quick.selected i,
.delivery-time-list-style .time.quick.selected em,
.delivery-time-list-style .time.quick.selected span {
  color: #fff;
}
.night-up {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #555;
  border-bottom-width: 0;
  margin: -35px 0 0 620px;
  position: absolute;
  padding: 5px 0;
  width: 248px;
  text-align: center;
  background: #eee;
  color: #555;
}
.night-up strong {
  color: #738722;
  font-size: 25px;
  font-weight: normal;
  margin: -5px 0 0 10px;
  position: absolute;
  background: #f8ffdb;
}
.night-up-left {
  margin-left: 0;
  width: 166px;
}
.night-up-left strong {
  margin-left: -27px;
}
.time_pick .timepicker_wrap.inline-timepicker {
  display: block;
  position: relative;
  top: 0;
  float: none;
  overflow: hidden;
  margin: 10px 0;
  box-shadow: none;
  border: none;
  background: transparent;
}
.exacttime {
  margin: 30px 0 60px 0;
}
.exacttime .settings {
  display: none;
}
.exacttime .error {
  font-size: 14px;
  color: #D55A08;
}
.exacttime .time_pick .timepicker_wrap.inline-timepicker {
  padding-left: 40px;
}
.exacttime .comment {
  margin-top: 28px;
  color: #4c4c4c;
  width: 500px;
  float: left;
}
.exacttime .comment .quick span {
  font-weight: bold;
}
.exacttime .add {
  color: #4c4c4c;
  font-size: 15px;
}
.exacttime .add b,
.exacttime .add i {
  font-style: normal;
  font-weight: normal;
  color: #4c4c4c;
  font-size: 14px;
}
.exacttime .add em {
  color: #738722;
  font-size: 18px;
  margin: -3px 0 0 2px;
  position: absolute;
  background: #f8ffdb;
  font-style: normal;
  padding: 1px 3px;
}
.exacttime .add .night,
.exacttime .add .quick {
  margin: 9px 0;
}
.exacttime .add .today {
  font-weight: bold;
}
.exacttime .add .today b {
  font-size: 18px;
}
.exacttime .params {
  width: 300px;
  float: left;
  padding: 25px 0 0;
}
.exacttime .params strong {
  font-weight: normal;
}
.exacttime .params div input {
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #555;
  width: 50px;
  padding: 8px;
  text-align: center;
}
.exacttime .params .add em {
  position: relative;
}
.exacttime .params-notoday {
  display: none;
  padding-top: 15px;
}
.exacttime .params-notoday a {
  display: inline-block;
  margin-top: 10px;
}
.next-day-date {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 0px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #555;
  border-top-width: 0;
  margin: 58px 0 0 670px;
  position: absolute;
  padding: 5px 0;
  width: 198px;
  text-align: center;
  background: #e42084;
  color: #fff;
}
.next-day-date b {
  color: #fff;
}
.cur-day-date {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 0px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #555;
  border-top-width: 0;
  margin: 58px 0 0 0px;
  padding: 5px 0;
  width: 655px;
  text-align: center;
  background: #6b9f31;
  color: #fff;
  position: absolute;
}
.cur-day-date b {
  color: #fff;
}
label strong.add-cost {
  color: #738722;
  font-size: 16px;
  font-weight: bold;
  margin: -2px 0 0 10px;
  position: absolute;
  background: #f8ffdb;
  padding: 1px 5px;
  border: 1px solid #738722;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  white-space: nowrap;
}
.order-additions .addition {
  margin-bottom: 22px;
}
.tab-settings {
  overflow: hidden;
  margin: 15px 0 15px 15px;
}
.tab-settings .tab-menu {
  float: left;
  width: 240px;
  min-height: 300px;
}
.tab-settings .tab-menu a {
  display: block;
  color: #4c4c4c;
  text-decoration: none;
  font: bold 16px/16px 'Oswald', sans-serif;
  border-bottom: 1px solid #c1b297;
  padding: 14px 10px 14px 10px;
}
.tab-settings .tab-menu a:hover {
  text-decoration: underline;
}
.tab-settings .tab-menu a.selected {
  background: #f3e9fe;
  color: #bd196b;
}
.tab-settings .tab-menu a:last-child {
  border-bottom: 1px solid transparent;
}
.tab-settings .column {
  margin-left: 15px;
  width: 675px;
}
.account-settings h2 {
  font-size: 25px;
  color: #bd196b;
  margin-top: 0;
}
.account-settings .field {
  margin-bottom: 10px;
}
.account-settings .field strong {
  font-size: 16px;
  color: #4c4c4c;
  display: block;
  font-weight: normal;
}
.account-settings .field input,
.account-settings .field textarea {
  width: 500px;
  color: #4c4c4c;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  font-size: 17px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
}
.account-settings .field #phone,
.account-settings .field #email {
  width: 300px;
}
.account-settings .button {
  padding: 15px 0;
  width: 500px;
  margin-top: 30px;
}
.account-settings .purchase {
  padding: 5px;
  display: block;
  text-decoration: none;
  background: #f2f2f2;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 10%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(10%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 10%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f2f2 0%, #ffffff 10%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f2f2 0%, #ffffff 10%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 10%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
  border: 1px solid #cbcbcb;
  margin-bottom: 10px;
  min-height: 58px;
}
.account-settings .purchase .state {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #21517D;
  color: #21517D;
  display: inline-block;
  font-size: 14px;
  margin-top: 5px;
  padding: 5px;
  width: 210px;
}
.account-settings .purchase .state.s100 {
  background: #fbfff5 none repeat scroll 0 0;
  border: 1px solid darkolivegreen;
  color: darkolivegreen;
}
.account-settings .purchase .state.s101 {
  background: #FFF2F2 none repeat scroll 0 0;
  border: 1px solid #8E422F;
  color: #8E422F;
}
.account-settings .purchase .inf {
  cursor: pointer;
}
.account-settings .purchase .number,
.account-settings .purchase .date,
.account-settings .purchase .sum {
  font-size: 15px;
  color: #4c4c4c;
  line-height: 15px;
}
.account-settings .purchase .number {
  color: #bd196b;
  border-bottom: 1px dashed #bd196b;
  display: inline-block;
}
.account-settings .purchase .sum {
  margin-top: 5px;
}
.account-settings .purchase .inf > div:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f103';
  color: #EADBBD;
  font-size: 40px;
  float: right;
  margin-right: 10px;
  margin-top: 10px;
}
.account-settings .purchase:hover {
  background: #dbdbdb;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #dbdbdb 0%, #ffffff 30%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dbdbdb), color-stop(30%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #dbdbdb 0%, #ffffff 30%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #dbdbdb 0%, #ffffff 30%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #dbdbdb 0%, #ffffff 30%);
  /* IE10+ */
  background: linear-gradient(to bottom, #dbdbdb 0%, #ffffff 30%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fce8c9', endColorstr='#ffffff', GradientType=0);
  /* IE6-8 */
  border-color: #9b9a9a;
}
.account-settings .purchase:hover .inf > div:before {
  color: #9b9a9a;
}
.account-settings .purchase .prodprev {
  width: 400px;
  margin: -75px 0 0 230px;
  overflow: hidden;
  position: absolute;
}
.account-settings .purchase .prodprev div {
  width: 35px;
  height: 35px;
  float: left;
  margin: 0 1px 1px 0;
}
.account-settings .purchase .prodprev div img {
  width: 35px;
  height: 35px;
}
.account-settings .purchase.opened .prodprev {
  display: none;
}
.account-settings .purchase.opened .inf > div:before {
  content: '\f102';
}
.account-settings .purchase .totals {
  margin-top: 15px;
  display: none;
}
.account-settings .delivery-info {
  font-size: 14px;
  color: #4c4c4c;
}
.account-settings .delivery-info strong {
  display: block;
}
.account-settings .basket-list {
  margin-top: 15px;
}
.account-settings .basket-list th:nth-of-type(3) {
  width: 100px;
}
.account-settings .basket-list th:nth-of-type(4) {
  width: 80px;
}
.account-settings .basket-list th:nth-of-type(5) {
  width: 80px;
}
.account-settings .basket-list th:nth-of-type(6) {
  width: 80px;
}
.account-settings .basket-list th:nth-of-type(7) {
  width: 81px;
}
.checkout-list h2 {
  margin-bottom: 0px;
}
.purchase-review-block {
  margin-top: 20px;
  padding: 15px;
  border-top: 1px dashed #4c4c4c;
  /* label {
    color: #4c4c4c;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    margin: 5px 0;
  }
  input, textarea {
    //.placeholder(#7C854D);
    color: #4c4c4c;
    .box-sizing(border-box);
    padding: 5px;
    font-size: 17px;
    //background: #fbfeec;
    .inner-shadow(0, 0, 5px, 0.2);
    border: 1px solid #c7cab7;
  }*/
}
.purchase-review-block h2 {
  margin: 5px 0;
}
.purchase-review-block p {
  font-size: 16px;
  color: #4c4c4c;
}
.purchase-review-block .images {
  overflow: hidden;
}
.purchase-review-block .field {
  margin-bottom: 15px;
}
.purchase-review-block .image {
  display: block;
  cursor: pointer;
  border: 1px solid #a2b598;
  background: #fff center center no-repeat;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 12px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  float: left;
  width: 146px;
  height: 146px;
  margin: 10px 10px 10px 0px;
  background-size: contain;
}
.purchase-review-block textarea {
  width: 520px;
}
.purchase-review-block input {
  width: 381px;
}
.purchase-review-block .button {
  width: 150px;
  padding: 10px;
  margin-top: 17px;
}
.purchase-review-block .error {
  color: #5F3109;
  padding: 10px;
  font-size: 16px;
  margin-top: 16px;
  display: none;
}
.purchase-review-block .comment {
  margin: 10px;
  color: #4c4c4c;
  border: 1px solid #c7cab7;
  padding: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}
.purchase-review-block .comment .name,
.purchase-review-block .comment .summary {
  display: none;
}
.purchase-review-block .comment .text {
  font-size: 14px;
}
.purchase-review-block .comment .stars {
  margin-top: 10px;
}
.purchase-review-block .comment .stars b,
.purchase-review-block .comment .stars i {
  font-size: 1.5em;
  color: #fff;
  text-shadow: -1px 0 #464341, 0 1px #464341, 1px 0 #464341, 0 -1px #464341, 0 0 10px #9211E6, 0 0 10px #9211E6;
}
.purchase-review-block .comment .rating {
  color: #AE84C9;
  font-size: 18px;
  margin: -23px 0 5px 125px;
}
.envelope {
  position: relative;
  margin: 18px auto 0;
  width: 50px;
  height: 36px;
  background: #CAA9EF;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 1px #CAA9EF inset;
}
.envelope:before,
.envelope:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-width: 18px 26px;
}
.envelope:before {
  border-bottom-color: #CAA9EF;
  top: -100%;
  left: 0px;
}
.envelope:after {
  border-right-color: #E6D8F5;
  border-left-color: #F3E9FE;
  border-bottom-color: #F3E9FE;
  top: 0;
  border-radius: 0 0 5px 5px;
  transform: rotate(360deg);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.paper {
  background: #fff;
  width: 40px;
  height: 46px;
  margin: 0 auto;
  border-radius: 5px;
  position: absolute;
  left: 6px;
  top: -23px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  animation: out 5s infinite linear;
}
.paper:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  background: #F2DEAF;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}
@keyframes out {
  0% {
    top: -20px;
  }
  25% {
    top: -12px;
  }
  50% {
    top: -20px;
  }
  75% {
    top: -12px;
  }
}
.delivery-reports .report .inf > div::before {
  margin-top: -10px;
}
.delivery-reports .report .icon {
  width: 50px;
  margin-right: 10px;
}
.delivery-reports .report .number,
.delivery-reports .report .date {
  position: absolute;
  margin-left: 60px;
  margin-top: -49px;
}
.delivery-reports .report .date {
  margin-top: -29px;
}
.delivery-reports .report .msg {
  position: absolute;
  margin-left: 200px;
  margin-top: -52px;
  font-size: 16px;
  color: #4c4c4c;
  width: 420px;
}
.delivery-reports .report .msg b {
  font-size: 16px;
  display: block;
  color: #4c4c4c;
}
.delivery-reports .report.viewed .envelope {
  background-color: #DAC6F1;
}
.delivery-reports .report.viewed .envelope:before {
  border-bottom-color: #dac6f1;
}
.delivery-reports .report.viewed .paper {
  display: none;
}
.delivery-reports .report .comment .date {
  margin: 0;
  position: static;
}
.my-reviews .product {
  width: 150px;
  height: 190px;
  margin: 0 10px 10px 0;
}
.my-reviews .product .image {
  width: 143px;
  height: 143px;
}
.my-reviews .product .image img {
  width: 100%;
  height: auto;
  min-width: 143px;
  min-height: 143px;
}
.my-reviews .product .write {
  text-align: center;
}
.my-reviews .product:hover img {
  width: 100%;
  height: auto;
}
.all-reviews .comments {
  margin-left: 0;
  margin-top: 0;
}
.all-reviews .comment {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}
.all-reviews .comment strong {
  margin-bottom: 0;
}
.all-reviews .comment .text {
  margin-bottom: 10px;
  clear: left;
}
.all-reviews .comment .prodimage {
  width: 100px;
  height: 100px;
  float: left;
  margin-right: 10px;
}
.all-reviews .comment .prodimage img {
  width: 100px;
  height: 100px;
}
.all-reviews .comment .revsubInfo {
  float: left;
}
.all-reviews .comment .prodname strong {
  font-size: 16px;
}
.all-reviews .comment .dimg {
  overflow: hidden;
}
.all-reviews .comment .dimg img {
  width: 153px;
  height: 153px;
  margin: 0 10px 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.p_reviews .pager {
  margin-bottom: 15px;
}
.index-reviews .comment {
  margin-left: 0;
}
.support-messages {
  border-top-width: 0;
  padding: 0;
  margin-top: 0;
}
.support-messages .button {
  width: 200px;
}
.support-messages .list .message {
  overflow: hidden;
  border-color: #DBE0D8;
}
.support-messages .list .message .icon {
  width: 50px;
  margin-right: 10px;
  float: left;
}
.support-messages .list .message .headinf {
  float: left;
  height: 60px;
  width: 150px;
  margin-right: 10px;
}
.support-messages .list .message .headinf .not_read {
  background: #bd196b;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 1px 8px;
}
.support-messages .list .message .headinf .is_read {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 1px 8px;
}
.support-messages .list .message .headinf .user {
  font-size: 16px;
  color: #bd196b;
}
.support-messages .list .message .headinf .user a {
  font-size: 16px;
  font-weight: bold;
  color: #bd196b;
}
.support-messages .list .message .headinf .date {
  font-size: 13px;
}
.support-messages .list .message .text {
  float: left;
  width: 440px;
  font-size: 14px;
  color: #4c4c4c;
}
.support-messages .list .message.viewed .envelope {
  background-color: #DAC6F1;
}
.support-messages .list .message.viewed .envelope:before {
  border-bottom-color: #dac6f1;
}
.support-messages .list .message.viewed .paper {
  display: none;
}
.support-messages .list .message .bouquet-preview {
  width: 400px;
  height: 400px;
}
.result-place.error {
  color: #5F3109;
  background: #ffc592;
  padding: 10px;
  font-size: 16px;
  margin-top: 16px;
  display: none;
}
.result-place.success {
  color: #263729;
  background: #c7f1cb;
  padding: 10px;
  font-size: 16px;
  margin-top: 16px;
  display: none;
}
.no-items-block {
  border: 1px solid #c3c7b3;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  font-size: 22px;
  margin: 30px 0;
  color: #4c4c4c;
}
#indexSlider {
  /*.caption7 {
    .caption();
    text-shadow: -2px 0 #464341, 0 2px  #464341, 2px 0  #464341, 0 -2px  #464341, 0 0 15px #e61816, 0 0 15px #E61816;
    text-align: left;
    position:absolute;
    left:40px;
    top: 0px;
    width:900px;
    height:330px;
    font-size: 51px;

    em {
      display: block;
      font-size: 50px;
      line-height: 60px;
      color: #fff;
      font-style: normal;
      margin-bottom: 10px;
    }
    i {
      font-size: 34px;
      font-style: normal;
      text-shadow: none;
      margin-top: 40px;
      display: block;
    }
  }*/
}
#indexSlider .caption {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-align: center;
}
#indexSlider .caption1 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-align: center;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #e61816, 0 0 15px #E61816;
  text-align: left;
  position: absolute;
  left: 350px;
  top: 120px;
  width: 600px;
  height: 30px;
}
#indexSlider .caption1 em {
  display: block;
  font-size: 40px;
  color: #D7A2FF;
  font-style: normal;
  margin-bottom: 10px;
}
#indexSlider .caption2 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #464341, 0 0 15px #464341;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 90px;
  width: 960px;
  height: 30px;
  font-size: 60px;
}
#indexSlider .caption2 em {
  display: block;
  font-size: 80px;
  color: #78E804;
  font-style: normal;
  margin-bottom: 30px;
}
#indexSlider .caption3 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #464341, 0 0 15px #464341;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 50px;
  width: 960px;
  height: 30px;
  font-size: 50px;
}
#indexSlider .caption3 em {
  display: block;
  font: bold 60px/60px 'Oswald', sans-serif;
  color: #3FF1FB;
  font-style: normal;
  margin-bottom: 30px;
}
#indexSlider .caption5 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #464341, 0 0 15px #464341;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 960px;
  height: 30px;
  font-size: 50px;
  margin-top: 0;
}
#indexSlider .caption5 em {
  display: block;
  font: bold 40px/40px 'Oswald', sans-serif;
  color: #3FF1FB;
  font-style: normal;
  margin-bottom: 265px;
}
#indexSlider .caption4 {
  color: white;
  display: block;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #464341, 0 0 15px #464341;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 960px;
  height: 30px;
  font-size: 50px;
  margin-top: 0;
  font: bold 40px/40px 'Oswald', sans-serif;
}
#indexSlider .caption4 em {
  display: block;
  font: bold 40px/40px 'Oswald', sans-serif;
  color: #FEFD9C;
  font-style: normal;
  margin-bottom: 270px;
}
#indexSlider .caption6 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-align: center;
  text-shadow: -2px 0 #464341, 0 2px #464341, 2px 0 #464341, 0 -2px #464341, 0 0 15px #e61816, 0 0 15px #E61816;
  text-align: left;
  position: absolute;
  left: 40px;
  top: 0px;
  width: 900px;
  height: 330px;
  font-size: 51px;
}
#indexSlider .caption6 em {
  display: block;
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  font-style: normal;
  margin-bottom: 10px;
}
#indexSlider .caption6 i {
  font-size: 34px;
  font-style: normal;
  text-shadow: none;
  margin-top: 40px;
  display: block;
}
#indexSlider .desc6 a:link,
#indexSlider .desc6 a:visited {
  color: #45FF50;
}
#indexSlider .slide7 .caption7 {
  font: bold 40px/40px 'Oswald', sans-serif;
  color: white;
  display: block;
  text-shadow: -2px 0 #0D7A84, 0 2px #0D7A84, 2px 0 #0D7A84, 0 -2px #0D7A84;
  position: absolute;
  left: 40px;
  top: 5px;
  margin: 0;
  width: 900px;
  height: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 53px;
  line-height: 50px;
  letter-spacing: 3px;
}
#indexSlider .slide7 .bouquet-image {
  position: absolute;
  width: 356px;
  margin-top: 95px;
}
#indexSlider .slide7 .bouquet-image img {
  display: block;
  width: 255px;
  height: 255px;
  margin: 0 auto;
}
#indexSlider .slide7 .bouquet-image strong {
  text-shadow: -1px 0 #0b0504, 0 1px #0B0504, 1px 0 #0B0504, 0 -1px #0B0504;
  color: #ff0000;
  display: block;
  font-size: 40px;
  letter-spacing: 4px;
  margin-top: -34px;
  text-align: center;
}
#indexSlider .slide7 .slide-discount-block {
  position: absolute;
  width: 513px;
  height: 186px;
  margin: 112px 0 0 350px;
}
#indexSlider .slide7 .slide-discount-block .bg {
  opacity: 0.36;
  background: white;
  border: 1px solid #747474;
  position: absolute;
  width: 513px;
  height: 186px;
}
#indexSlider .slide7 .slide-discount-block .content {
  text-align: center;
  position: absolute;
  width: 513px;
  height: 186px;
}
#indexSlider .slide7 .slide-discount-block .content .discount {
  text-shadow: -2px 0 #a65037, 0 2px #a65037, 2px 0 #a65037, 0 -2px #a65037;
  color: #f06e6e;
  display: block;
  font-size: 110px;
  letter-spacing: 9px;
  margin-top: -20px;
  font-weight: bold;
}
#indexSlider .slide7 .slide-discount-block .content .total {
  text-shadow: -2px 0 #105e10, 0 2px #105e10, 2px 0 #105e10, 0 -2px #105e10;
  color: #98f67e;
  display: block;
  font-size: 65px;
  letter-spacing: 4px;
  margin-top: -35px;
  font-weight: bold;
}
#indexSlider .slide7 .slide-discount-block .content .num {
  color: #0d3e08;
  font-size: 30px;
  margin-top: -18px;
}
#indexSlider .slide7 .slide-discount-block .content .num b {
  font-size: 1.4em;
  color: #a37105;
}
#indexSlider .slide7 a.button {
  position: absolute;
  width: 513px;
  display: block;
  margin: 310px 0 0 350px;
  padding: 10px 0;
}
.p_index h2 {
  margin: 15px 0 0 0px;
}
.index-products {
  overflow: hidden;
  /* .n-9, .n-10 {
    display: none;
  }*/
}
.index-products h2 {
  margin-top: 30px;
}
.index-products .button.big {
  display: inline-block;
  margin-top: 15px;
}
.products-one-line .n-5 {
  display: none;
}
@media screen and (min-width: 15000px) {
  .products-one-line .index-products .n-5 {
    display: block;
  }
}
/*
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #7035C4;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}*/
.view-more-products {
  overflow: hidden;
}
.view-more-products a.button {
  padding: 10px;
  display: inline-block;
  float: right;
  margin-top: 10px;
}
.popup-widget {
  position: absolute;
  background-color: #f9fff4;
  border: 1px solid #b0b49e;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 1px 7px -2px #bd196b;
  -moz-box-shadow: 0px 1px 7px -2px #bd196b;
  box-shadow: 0px 1px 7px -2px #bd196b;
  z-index: 9;
  margin: 5px 0 0 -1px;
  padding: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.popup-widget .error {
  color: #5F3109;
  background: #ffc592;
  padding: 10px;
  font-size: 16px;
  margin: 10px 0 16px 0;
  display: none;
}
.popup-widget label {
  display: block;
  color: #738722;
  font: bold 16px "Oswald", sans-serif;
  margin: 2px;
}
.popup-widget label a {
  float: right;
  position: relative;
  margin-top: -1px;
  color: #bd196b;
}
.popup-widget input,
.popup-widget textarea {
  font-size: 16px;
  background: #fbfeec;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 3px;
  width: 294px;
  margin-bottom: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.popup-widget input:-moz-placeholder,
.popup-widget textarea:-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.popup-widget input::-moz-placeholder,
.popup-widget textarea::-moz-placeholder {
  color: #7C854D;
  opacity: 1;
}
.popup-widget input:-ms-input-placeholder,
.popup-widget textarea:-ms-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.popup-widget input::-webkit-input-placeholder,
.popup-widget textarea::-webkit-input-placeholder {
  color: #7C854D;
  opacity: 1;
}
.popup-widget input.error {
  background: #fee7d5;
  border: 1px solid #ca886d;
}
.popup-widget .button {
  padding: 10px 0;
}
.popup-widget input[type=submit] {
  visibility: hidden;
  position: absolute;
  left: -1000px;
}
#writeus-widget {
  width: 440px;
  margin: 149px 0 0 298px;
}
#writeus-widget textarea {
  width: 417px;
  height: 150px;
}
#redial-widget {
  width: 350px;
  margin: 112px 0 0 250px;
}
#redial-widget .tel,
#redial-widget .intl-tel-input {
  margin: 15px 0;
  width: 327px;
}
.basket-item-added {
  position: fixed;
  width: 300px;
  height: 115px;
  border: 1px solid #B78AE7;
  z-index: 999;
  border-width: 5px 5px 0 5px;
  margin: -22px 0 0 650px;
  display: none;
}
.basket-item-added strong {
  font-size: 35px;
  color: #738722;
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 75px;
  margin-top: 15px;
  display: block;
}
.basket-item-added em {
  background: #B78AE7;
  color: white;
  display: block;
  font-style: normal;
  padding: 10px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 12px;
  text-align: center;
}
.payment-variant {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  margin-bottom: 10px;
  min-height: 130px;
  padding-right: 10px;
  padding-left: 1px;
  /*&.paypal {
    min-height: 256px;
    .pay .button:link, .pay .button:visited {
      background-color: #fd1302;
    }
  }*/
}
.payment-variant .payment-logo-mobile {
  display: none;
}
.payment-variant .gr {
  display: block;
  overflow: hidden;
}
.payment-variant .payment-logo {
  position: absolute;
  float: left;
  margin-top: 10px;
  width: 19%;
  height: auto;
  max-width: 190px;
  display: block;
}
.payment-variant .info {
  margin-left: 21%;
  width: 55%;
  position: relative;
  float: left;
}
.payment-variant .bank-icons img {
  margin: 0 10px 10px 0;
}
.payment-variant .desc {
  width: 55%;
  margin-left: 21%;
}
.payment-variant .desc .comment {
  font-size: 0.9em;
  color: #8B8B8B;
  margin-bottom: 10px;
}
.payment-variant .desc .comment a {
  color: #8B8B8B;
}
.payment-variant h2 {
  color: #738722;
  display: inline-block;
  font-size: 14px;
  margin: 5px 0 0;
}
.payment-variant h3 {
  margin: 10px 0 20px 0;
  font-size: 18px;
  color: #bd196b;
}
.payment-variant h3 div {
  font-size: 15px;
  color: #4c4c4c;
}
.payment-variant .pay {
  float: right;
  width: 21%;
  margin-top: 21px;
  position: relative;
  margin-left: 0;
}
.payment-variant .pay .total {
  text-align: center;
  color: #738722;
  font-size: 35px;
}
.payment-variant .pay .button {
  padding: 10px 0;
}
/*
.payment-variant {
  .box-shadow(none);
  border: 0;
  border-bottom: 1px solid #dac3e8;
  padding-bottom: 10px;
  overflow: hidden;
  .payment-logo {
    position: absolute;
    float: left;
    margin-top: 10px;
    width: 19%;
    height: auto;
    max-width: 190px;
  }
  .pay {
    float: right;
    width: 21%;
    margin-top: 21px;
    position: relative;
    margin-left: 0;
  }
  .info {
    margin-left: 21%;
    width: 55%;
    position: relative;
    float: left;
  }
  .desc {
    width: 55%;
    margin-left: 21%;
  }
}
*/
.success-purchase-info .tel {
  font-size: 25px;
  display: inline-block;
  margin-top: 10px;
}
.success-purchase-info .pnum {
  font-weight: normal;
  color: #bd196b;
  font-size: 20px;
}
.success-purchase-info .pnum span {
  font-size: 25px;
  color: #4c4c4c;
}
.success-purchase-info a.button {
  padding: 10px 0px;
  width: 400px;
}
.success-purchase-info .purchase .inf {
  display: none;
}
.success-purchase-info .purchase .totals {
  display: block;
}
.errorPage h1 {
  font-size: 40px;
}
#user-restore .login {
  margin: 10px 0;
  max-width: 300px;
  width: 100%;
}
#user-restore .tel {
  display: none;
}
#user-restore .result-place {
  max-width: 500px;
}
#user-restore p {
  max-width: 500px;
}
#user-restore .button {
  max-width: 300px;
  padding: 10px 0;
}
#user-restore b {
  color: #4c4c4c;
}
.bouquet-preview .images .image {
  background-size: cover;
  width: 452px;
  height: 452px;
  border: 1px solid #c7cab7;
  float: left;
  margin: 0 10px 10px 0;
}
.bouquet-preview .images img {
  max-width: 90%;
  border: 1px solid #c7cab7;
  margin: 0 10px 10px 0;
}
.order-call-us {
  background-color: #d2d2d2;
  color: #333;
  padding: 10px;
  letter-spacing: 0.9px;
  font-size: 16px;
}
.order-call-us a {
  font-size: 20px;
  color: #54112f;
  text-decoration: none;
  border-bottom: 1px dashed #54112f;
}
.top-socials {
  margin-top: 15px;
}
p.wait-payment-notify {
  font-size: 20px;
}
p.wait-payment-notify span {
  font-weight: bold;
}
#site_like {
  margin: -20px 0 0 140px;
}
.vk-fb-like {
  position: absolute;
}
.social-fb-like {
  position: absolute;
}
.x-switch-tab img {
  opacity: 0.5;
}
.x-switch-tab img:hover {
  opacity: 1;
}
.x-switch-tab a.active img {
  opacity: 1;
}
.catalog-christmas .products {
  background-image: url(/images/christmas-products-bg.jpg);
}
.catalog-christmas .products .product {
  background: white;
}
.catalog-christmas .products .product .info {
  background: #cadec0;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZThjOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #cadec0 0%, #ffffff 44%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cadec0), color-stop(44%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #cadec0 0%, #ffffff 44%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #cadec0 0%, #ffffff 44%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #cadec0 0%, #ffffff 44%);
  /* IE10+ */
  background: linear-gradient(to bottom, #cadec0 0%, #ffffff 44%);
  /* W3C */
}
.update-cache {
  display: block;
}
.header-notify {
  border: 1px solid #95030E;
  background: #bc4a50;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
  color: white;
}
.header-notify b {
  font-size: 20px;
  color: #FFFFAD;
}
.delivery-date {
  min-height: 300px;
}
.delivery-date .datepicker-inline {
  margin-top: 10px;
}
.add-to-basket-attention,
.delivery-date-min-attention {
  border: 1px solid #AB0104;
  background-color: rgba(171, 1, 4, 0.13);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #AB0104;
  text-align: center;
  font-size: 1.2em;
  padding: 10px 35px;
  margin-top: 10px;
}
.add-to-basket-attention em,
.delivery-date-min-attention em,
.add-to-basket-attention b,
.delivery-date-min-attention b,
.add-to-basket-attention strong,
.delivery-date-min-attention strong {
  font-weight: bold;
  font-style: normal;
}
.add-to-basket-attention em,
.delivery-date-min-attention em {
  font-size: 1.2em;
}
.delivery-date-min-attention {
  width: 815px;
}
.delivery-date-min-attention b,
.delivery-date-min-attention strong,
.delivery-date-min-attention em {
  color: #AB0104;
}
.promo-8-march-slide a.button {
  position: absolute;
  margin: -130px 0 0 25px;
  padding: 10px 10px;
  background-color: #b78ae7;
}
.promo-8-march-slide a.button:hover {
  background-color: #90a636;
}
.march-8-delay {
  border-left: 3px solid #b18e04;
  margin: 5px 30px 5px 10px;
  font-size: 15px;
  background: #FCFCEB;
  padding: 10px;
}
.march-8-delay i,
.march-8-delay em {
  font-style: normal;
}
.march-8-delay strong {
  color: #b18e04;
}
.march-8-delay em {
  color: #4f4547;
}
.march-8-delay i {
  color: #538229;
  font-weight: bold;
  font-size: 16px;
}
.march-8-delay b {
  display: block;
  color: #538229;
  font-weight: bold;
  font-size: 16px;
}
.list-products-gifts .products .product .info strong {
  height: 20px;
}
.breadcrumbs {
  display: block;
  padding: 3px 2px;
}
.breadcrumbs a img {
  display: none;
}
.breadcrumbs ol {
  display: block;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-block;
  margin-right: 5px;
}
.breadcrumbs li:after {
  margin-left: 5px;
  content: '>';
  display: inline-block;
}
.breadcrumbs li a {
  color: #333;
  font-size: 13px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.mobile-menu-line {
  display: none;
}
.p_basket .information-content {
  display: none;
}
.p_user .information-content {
  display: none;
}
.p_user .order-form .field {
  float: none;
  margin: 0;
  margin-bottom: 15px;
}
.p_user .account-settings .order-form .field {
  margin-bottom: 3px;
}
.inform-sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  background-color: white;
  border-right: 1px solid #666;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 8px;
  -webkit-box-shadow: 0px 6px 354px #666;
  -moz-box-shadow: 0px 6px 354px #666;
  box-shadow: 0px 6px 354px #666;
}
.inform-sidenav .hr {
  height: 1px;
  border-top: 1px solid #f5ebfd;
  margin: 0 8px;
}
.inform-sidenav a {
  padding: 8px 8px 8px 15px;
  text-decoration: none;
  font-size: 25px;
  color: #4c4c4c;
  display: block;
  transition: 0.3s;
}
.inform-sidenav a:hover {
  color: #bd196b;
}
.inform-sidenav span a {
  padding: 3px 5px 2px 10px;
  text-decoration: none;
  font-size: 18px;
  color: #4c4c4c;
  display: block;
  transition: 0.3s;
  border-left: 2px solid #999;
  margin: 10px;
}
.inform-sidenav span a:hover {
  color: #bd196b;
}
.inform-sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-siznave: 36px;
  margin-left: 50px;
}
.reviews-hidesocial-onmobile {
  display: block;
}
.reviews-showsocial-mobile {
  display: none;
}
.mobile-social-container {
  margin: 10px 10px;
  height: 420px;
}
.mobile-delivery-images {
  margin-left: 10px;
}
.search-results h1 {
  margin-bottom: 15px;
  margin-left: 15px;
}
.search-results .search-info {
  margin-bottom: 5px;
  margin-left: 15px;
  color: #333;
}
.search-results .search-info p {
  margin: 5px 0;
  font-size: 0.9em;
  color: #666;
}
.basket-dialog {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(255, 255, 255, 0.7);
  /* Black w/ opacity */
}
.basket-dialog .bd-border {
  width: 820px;
  height: 421px;
  background: rgba(117, 52, 156, 0.6);
  margin: 10% auto 0 auto;
  padding: 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.basket-dialog .bd-content {
  width: 100%;
  height: 100%;
  background: white;
}
.basket-dialog #bd-close {
  width: 58px;
  height: 58px;
  background-color: #70ab2b;
  float: right;
  margin: 8px;
  cursor: pointer;
}
.basket-dialog #bd-close b {
  background: url(/images/icon-add-plus.svg) no-repeat;
  background-size: cover;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
  display: block;
  margin: 14px 15px;
}
.basket-dialog #bd-close:hover {
  background: #75349c;
}
.basket-dialog .bd-header {
  background: #efffe4;
  border-bottom: 1px solid #75349c;
  height: 75px;
  overflow: hidden;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.basket-dialog .bd-header .info {
  float: left;
  line-height: 24px;
  margin: 15px 0 0 120px;
  width: 270px;
}
.basket-dialog .bd-header .info em,
.basket-dialog .bd-header .info i,
.basket-dialog .bd-header .info span {
  font-style: normal;
  display: inline;
}
.basket-dialog .bd-header .info:before {
  position: absolute;
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: url(/images/icon-basket.svg) no-repeat;
  margin: 5px 0 0 -57px;
}
.basket-dialog .bd-header .info strong {
  font-size: 25px;
  color: #4c4c4c;
  display: block;
}
.basket-dialog .bd-header .info a:link,
.basket-dialog .bd-header .info a:visited {
  font-size: 20px;
  color: #bd196b;
}
.basket-dialog .bd-header .btn {
  float: left;
  background: #def7c0;
  color: #636b59;
  font-size: 25px;
  text-align: center;
  width: 275px;
  border: 1px solid #70ab2b;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  height: 58px;
  margin: 8px 0 0 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.basket-dialog .bd-header .btn:hover {
  background-color: #75349c;
  border: 1px solid #75349c;
  color: white;
}
.basket-dialog .bd-additional {
  height: 215px;
  /*.swiper-button-next, .swiper-button-prev {
      left: auto;
      right: auto;
      position: relative;
      margin-top: -50px;
    }*/
}
.basket-dialog .bd-additional .bd-additional-items {
  position: absolute;
  overflow: hidden;
  height: 190px;
  width: 780px;
}
.basket-dialog .bd-additional strong {
  font-size: 25px;
  color: #4c4c4c;
  display: block;
  padding: 10px 0 10px 62px;
}
.basket-dialog .bd-additional .swiper-slide {
  width: 100px;
}
.basket-dialog .bd-additional .item {
  width: 100px;
  border: 1px solid #c6b5d3;
}
.basket-dialog .bd-additional .item .img {
  width: 100px;
  height: 100px;
  background-size: cover;
  border-bottom: 1px solid #c6b5d3;
}
.basket-dialog .bd-additional .item .added {
  display: none;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
}
.basket-dialog .bd-additional .item .added span,
.basket-dialog .bd-additional .item .added b {
  color: #738722;
  font-size: 16px;
  display: block;
  text-align: center;
}
.basket-dialog .bd-additional .item .added b {
  font-size: 70px;
  line-height: 74px;
}
.basket-dialog .bd-additional .item.is-used .added {
  display: block;
}
.basket-dialog .bd-additional .price {
  width: 70px;
  text-align: center;
  color: #738722;
  height: 40px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 25px;
  font-size: 23px;
  padding-top: 7px;
}
.basket-dialog .bd-additional .plus {
  width: 40px;
  float: right;
  background-color: #75349c;
  height: 40px;
  padding: 11px 0 0 12px;
  cursor: pointer;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.basket-dialog .bd-additional .plus b {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  background: url(/images/icon-add-plus.svg) no-repeat;
}
.basket-dialog .bd-additional .plus:hover {
  background-color: #70ab2b;
}
.basket-dialog .bd-additional .bd-swiper-container {
  width: 652px;
  height: 165px;
}
.basket-dialog .bd-additional .swiper-scrollbar {
  background-color: #ced2cb;
}
.basket-dialog .bd-additional .swiper-scrollbar-drag {
  background-color: #7FA255;
}
.basket-dialog .bd-additional .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D\'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg\'%20viewBox%3D\'0%200%2027%2044\'%3E%3Cpath%20d%3D\'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z\'%20fill%3D\'%2375349c\'%2F%3E%3C%2Fsvg%3E");
  right: 17px;
}
.basket-dialog .bd-additional .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D\'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg\'%20viewBox%3D\'0%200%2027%2044\'%3E%3Cpath%20d%3D\'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z\'%20fill%3D\'%2375349c\'%2F%3E%3C%2Fsvg%3E");
  left: 17px;
}
.basket-dialog .bd-create-or-continue {
  overflow: hidden;
  margin: 19px 22px;
}
.basket-dialog .bd-create-or-continue .bd-create-order {
  float: left;
  padding: 10px;
  width: 50%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  background-color: #70ab2b;
  color: white;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.basket-dialog .bd-create-or-continue .bd-create-order:hover {
  background-color: #75349c;
  color: white;
}
.basket-dialog .bd-create-or-continue .bd-continue-shopping {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding-left: 20px;
  color: #4c4c4c;
}
.basket-dialog .bd-create-or-continue .bd-continue-shopping span {
  display: block;
  color: #9e9e9e;
}
.basket-dialog .bd-create-or-continue .bd-continue-shopping a:link,
.basket-dialog .bd-create-or-continue .bd-continue-shopping a:visited {
  color: #bd196b;
  font-size: 20px;
}
.basket-dialog .bd-create-quick-order {
  display: none;
  background-color: #ebebeb;
  padding: 15px;
}
.basket-dialog .bd-create-quick-order b {
  font-size: 25px;
  color: #4c4c4c;
}
.basket-dialog .bd-create-quick-order p {
  font-size: 16px;
  margin-top: 3px;
  max-width: 560px;
  color: #4c4c4c;
}
.basket-dialog .bd-create-quick-order .tel {
  width: 320px;
}
.basket-dialog .bd-create-quick-order .button {
  padding: 12px 20px;
  position: absolute;
  margin: 0px 340px;
  background: #dcdcdc;
  color: #989898;
  width: 110px;
}
.basket-dialog.quick-order .bd-border {
  height: 578px;
}
.basket-dialog.quick-order .bd-create-quick-order {
  display: block;
}
.l_lv .basket-dialog .bd-create-quick-order p {
  max-width: 650px;
}
.articles-list h1 {
  margin-left: 20px;
  margin-bottom: 0;
}
.articles-feed-isotope {
  position: relative;
  overflow: hidden;
  margin: -2px 10px 100px 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.articles-feed-isotope article {
  margin: 0 10px;
  border-top: 1px solid #bd196b;
  padding: 20px 0 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.articles-feed-isotope article header {
  height: auto;
}
.articles-feed-isotope .entry-wrapper {
  width: 25%;
  text-align: left;
}
.articles-feed-isotope .entry-title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.articles-feed-isotope .entry-title a:link,
.articles-feed-isotope .entry-title a:visited {
  color: #404040;
  text-decoration: none;
  background-image: linear-gradient(to right, #d9d9d9 100%, transparent 75%);
  background-position: 0 1.22em;
  background-repeat: repeat-x;
  background-size: 2px 1px;
  line-height: 20px;
}
.articles-feed-isotope .entry-title:hover a {
  color: #75349C;
  background-image: linear-gradient(to right, rgba(117, 52, 156, 0.36) 100%, transparent 75%);
}
.articles-feed-isotope .entry-meta {
  color: #848484;
  font-size: 14px;
  margin-bottom: 10px;
}
.articles-feed-isotope .entry-image img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}
.articles-feed-isotope .entry-featured-media {
  margin-bottom: 10px;
}
.articles-feed-isotope .entry-featured-media img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}
.articles-feed-isotope .entry-content {
  color: #848484;
  font-size: 16px;
  line-height: 21px;
  margin-top: 10px;
}
.articles-feed-isotope-hidder {
  overflow: hidden;
}
.splitpage-text-products-page {
  margin-right: 0;
}
.splitpage-text-products {
  overflow: hidden;
}
.splitpage-text-products .split-text {
  float: left;
}
.splitpage-text-products .split-text img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}
.splitpage-text-products .split-products {
  float: left;
}
.splitpage-text-products.cols2 .split-text,
.splitpage-text-products.cols3 .split-text {
  width: calc(100% - 486px);
}
.splitpage-text-products.cols2 .split-products,
.splitpage-text-products.cols3 .split-products {
  width: 486px;
}
.splitpage-text-products.cols1 .split-text {
  width: calc(100% - 235px);
}
.splitpage-text-products.cols1 .split-products {
  width: 235px;
}
.splitpage-text-products.nums9 .products .product:nth-of-type(n+9) {
  display: none;
}
.products-index-with-insert .n-5 {
  display: none;
}
#replaced_ranges {
  display: none;
}
#replaced_ranges .notify {
  background-color: #f1e9ff;
  border: 1px solid #bd196b;
  border-left: 4px solid #bd196b;
  padding: 10px;
  margin-bottom: 15px;
}
#replaced_ranges .delivery-replace-range-times .time .cr {
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  color: #5B7100;
  padding: 5px;
}
#replaced_ranges .delivery-replace-range-times .time .cr u {
  text-decoration: none;
  font-style: normal;
  color: black;
  font-weight: bold;
}
#replaced_ranges .delivery-replace-range-times .time.selected .cr {
  color: white;
}
.exrange-hidden {
  display: none !important;
}
.cities-add-comment {
  background-color: #f1e9ff;
  border: 1px solid #bd196b;
  border-left: 4px solid #bd196b;
  padding: 10px;
  margin-bottom: 15px;
  display: none;
  width: 292px;
}
.march8-blocked {
  background-color: #f50049;
  color: white;
  font-size: 28px;
  padding: 50px 0;
  text-align: center;
}
.please-request {
  background-color: #e3f6fe;
  border: 1px solid #6bacc5;
  color: #084862;
  padding: 10px 0;
  text-align: center;
  margin-top: 10px;
}
.products-lines-2-2-1 .products .n-9,
.products-lines-2-2-1 .products .n-10 {
  display: none;
}
.delivery-date-restricted {
  background-color: #af0f76;
  padding: 10px;
  color: white;
  max-width: 480px;
  display: none;
}
.delivery-date-restricted a:link,
.delivery-date-restricted a:visited {
  color: yellow;
}
@media screen and (max-width: 1250px) {
  .enable-small-menu nav.menu-line a:link,
  .enable-small-menu nav.menu-line a:visited {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (min-width: 1031px) and (max-width: 1180px) {
  .prod-order-info {
    width: 300px;
  }
  .prod-order-info table th {
    font-size: 15px;
  }
  .prod-order-info table td {
    font-size: 15px;
  }
  .prod-prices {
    width: 300px;
  }
  .prod-prices .prod-price {
    width: 100%;
  }
  .prod-prices .prod-price .num-info {
    width: 110px;
  }
  .prod-prices .prod-price .num-info .num-pieces {
    font-size: 25px;
  }
  .prod-prices .prod-price .cost-info b {
    font-size: 25px;
  }
  .prod-prices .prod-price .cost-info {
    font-size: 22px;
  }
  .prod-prices .prod-price .cost-info b {
    font-size: 28px;
  }
  .prod-prices .prod-price .cost-info {
    width: 85px;
  }
  .prod-prices .prod-price .add-calc .fa {
    font-size: 1.6em;
  }
  .prod-prices .prod-price .add-calc b {
    font-size: 24px;
    margin-left: 35px;
  }
  .prod-prices .prod-price .add-calc {
    width: 85px;
  }
}
@media screen and (min-width: 1031px) and (max-width: 1110px) {
  .product-details .product-info .col1 {
    width: calc(100% - 700px);
  }
  .product-details .product-info .col1 .image {
    width: 100%;
    height: auto;
  }
  .product-details .product-info .col1 .image img {
    width: 100%;
    height: auto;
  }
  .product-details .product-info .col2 {
    margin-left: calc(100% - 661px);
  }
}
@media screen and (max-width: 1031px) {
  .prod-order-col {
    float: left;
    margin: 0 0 10px 0;
  }
}
.disable-other-blocked {
  background-color: #af0f76;
  padding: 30px;
  color: white;
}
.disable-other-blocked .other {
  margin-top: 15px;
  color: #ffffab;
  font-size: 0.9em;
}
.disable-other-blocked a:link,
.disable-other-blocked a:visited {
  color: yellow;
}
.feb14only {
  display: none;
}
.day0213 .feb14only {
  display: block;
}
.admin-in-head {
  font-size: 14px;
}
.comments.no_reviews .col1,
.comments.num_reviews_1 .col1,
.comments.num_reviews_2 .col1 {
  width: auto;
  margin-left: 0;
}
.comments.no_reviews .col2,
.comments.num_reviews_1 .col2,
.comments.num_reviews_2 .col2 {
  width: auto;
  margin-left: 0;
}
.promo-8-march-slide {
  height: 425px;
  position: relative;
  margin-top: -442px;
  overflow: hidden;
}
.promo-8-march-slide .d0 {
  color: #ff004a;
  font-size: 110px;
  font-weight: bold;
  margin: 0px 0 12px 381px;
  line-height: 111px;
}
.promo-8-march-slide .d1 {
  font-size: 48px;
  color: #407716;
  font-weight: bold;
  line-height: 41px;
  margin: -15px 0 0 399px;
}
.promo-8-march-slide .d1 b {
  color: #59a817;
}
.promo-8-march-slide .d2,
.promo-8-march-slide .d4 {
  font-size: 34px;
  color: #ff004a;
  font-weight: bold;
  margin: 18px 0 0 399px;
}
.promo-8-march-slide .d2 i,
.promo-8-march-slide .d4 i {
  color: #407716;
  font-style: normal;
}
.promo-8-march-slide .d4 {
  display: none;
}
.promo-8-march-slide-d3 {
  font-size: 29px;
  color: #4c4c4c;
  font-weight: bold;
  margin: 10px;
  line-height: 28px;
  border-bottom: 1px solid #bd196b;
  margin-bottom: -20px;
  padding-bottom: 11px;
}
.promo-8-march-slide-d3 b {
  color: #407716;
}
.promo-8-march-slide-d3 strong {
  color: #ff004a;
}
.promo-8-march-slide-d3 em {
  color: #407716;
  font-size: 0.8em;
  font-style: normal;
}
.promo-8-march-slide-d3 i {
  font-style: normal;
  color: #bd196b;
}
.promo-8-march-slide-upper {
  height: 425px;
}
@media (min-width: 561px) {
  .l_en .promo-8-march-slide {
    background-image: url(/images/promo/8march-en.jpg);
  }
  .l_ru .promo-8-march-slide {
    background-image: url(/images/promo/8march-ru.jpg);
  }
  .l_lv .promo-8-march-slide {
    background-image: url(/images/promo/8march-lv.jpg);
  }
}
#delivery-map {
  height: 500px;
}
.use_password_eye {
  width: calc(100% - 40px) !important;
}
.show-password-eye {
  background: #b4c99c;
  width: 42px;
  height: 42px;
  margin-top: -40px;
  position: relative;
  float: right;
  text-align: center;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.show-password-eye .fa {
  font-size: 1.4em;
  color: #4a7a15;
}
.show-password-eye .fa-eye {
  margin-top: 9px;
}
.show-password-eye .fa-eye-slash {
  margin-top: 9px;
  color: #a84d1b;
}
.payer-form input[type=text],
.payer-form input[type=email],
.payer-form input[type=phone],
.payer-form input[type=password],
.payer-form select,
.payer-form textarea,
.payer-form .input {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 3px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.payer-form input[type=text].error,
.payer-form input[type=email].error,
.payer-form input[type=phone].error,
.payer-form input[type=password].error,
.payer-form select.error,
.payer-form textarea.error,
.payer-form .input.error {
  border: 1px solid #CB9F98;
}
.payer-form .input.empty {
  color: #7C854D;
  cursor: text;
}
.payer-form input[type=phone] {
  padding-left: 45px;
}
.payer-form .info,
.payer-form label {
  color: #4c4c4c;
  margin: 6px 1px 2px;
}
.payer-form .basket-client-auth {
  overflow: hidden;
}
.payer-form .new-client {
  float: left;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding-right: 10px;
}
.payer-form .new-client .info,
.payer-form .new-client .button,
.payer-form .new-client .button-green {
  max-width: 400px;
}
.payer-form .new-client .button-green {
  margin-top: 30px;
}
.payer-form .old-client {
  float: left;
  width: 50%;
  max-width: 400px;
}
.payer-form .old-client .field {
  padding: 10px 0;
}
.payer-form .old-client .recover {
  text-align: right;
  padding: 0 0 10px 0;
}
.payer-form .old-client .recover a:link,
.payer-form .old-client .recover a:visited {
  color: #6b6b6b;
}
.payer-form .old-client .result {
  display: none;
}
.payer-form .old-client .result.error {
  display: block;
  color: #a71515;
  background: #ffd1d1;
  padding: 5px;
  text-align: center;
}
.payer-info-form input[type=text],
.payer-info-form input[type=email],
.payer-info-form input[type=phone],
.payer-info-form input[type=password],
.payer-info-form select,
.payer-info-form textarea,
.payer-info-form .input {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cab7;
  padding: 3px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.payer-info-form input[type=text].error,
.payer-info-form input[type=email].error,
.payer-info-form input[type=phone].error,
.payer-info-form input[type=password].error,
.payer-info-form select.error,
.payer-info-form textarea.error,
.payer-info-form .input.error {
  border: 1px solid #CB9F98;
}
.payer-info-form .input.empty {
  color: #7C854D;
  cursor: text;
}
.payer-info-form input[type=phone] {
  padding-left: 45px;
}
.payer-info-form .info,
.payer-info-form label {
  color: #4c4c4c;
  margin: 6px 1px 2px;
}
.payer-info-form .fields {
  overflow: hidden;
  max-width: 800px;
}
.payer-info-form .field {
  float: left;
  width: calc(50% - 10px);
  padding: 10px 10px 10px 0;
}
.payer-info-form .field-phone .intl-tel-input {
  width: 100%;
}
.payer-info-form .field-phone .intl-tel-input .selected-flag .iti-flag {
  bottom: 2px;
}
.payer-info-form .field-phone .intl-tel-input .flag-dropdown {
  top: 1px;
}
.payer-info-form .usecompany {
  margin: 20px 0;
}
.payer-info-form .company-info {
  margin: 20px 0;
  display: none;
  max-width: 500px;
}
.payer-info-form .company-info .field {
  float: none;
  width: auto;
}
.user-register .button {
  display: inline-block;
}
.user-register .info {
  margin: -10px 0 10px 0;
  font-size: 16px;
}
.user-login .old-client {
  max-width: 400px;
  padding-right: 80px;
}
.attention-info {
  padding: 10px;
  border-left: 5px solid #e42084;
  background: #87d81233;
  margin: 15px 0px;
  color: #333;
}
.cards-logo {
  width: auto;
  height: 49px;
  margin-top: 6px;
}
.cards-img.col.col2 {
  float: right;
  width: auto;
  margin-right: 23px;
}
.informator h1 {
  font-size: 22px;
  color: #333;
}
.informator p {
  font-size: 13px;
  color: #555;
}
.price-can-change {
  border-left: 3px solid #9b2323;
  font-size: 13px;
  padding: 0 10px;
  line-height: 17px;
  margin-top: 10px;
  color: #34653d;
}
.basket-price-can-change {
  border-left: 3px solid #9b2323;
  font-size: 16px;
  padding: 10px;
  line-height: 20px;
  margin-top: 10px;
  color: #a7178c;
  max-width: 800px;
  display: none;
}
/*# sourceMappingURL=default.css.map */