/*!
 * Cropper.js v1.5.6
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-10-04T04:33:44.164Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.tagify{--tags-border-color:#DDD;--tag-bg:#E5E5E5;--tag-hover:#D3E2E2;--tag-text-color:black;--tag-text-color--edit:black;--tag-pad:0.3em 0.5em;--tag-inset-shadow-size:1.1em;--tag-invalid-color:#D39494;--tag-invalid-bg:rgba(211, 148, 148, 0.5);--tag-remove-bg:rgba(211, 148, 148, 0.3);--tag-remove-btn-bg:none;--tag-remove-btn-bg--hover:#c77777;--tag--min-width:1ch;--tag--max-width:auto;display:flex;align-items:flex-start;flex-wrap:wrap;border:1px solid #ddd;border:1px solid var(--tags-border-color);padding:0;line-height:1.1;cursor:text;position:relative;transition:.1s}@keyframes tags--bump{30%{transform:scale(1.2)}}.tagify:hover{border-color:#ccc}.tagify.tagify--focus{border-color:#85c8ea}.tagify[readonly]{cursor:default}.tagify[readonly]>.tagify__input{visibility:hidden;width:0;margin:5px 0}.tagify[readonly] .tagify__tag__removeBtn{display:none}.tagify[readonly] .tagify__tag>div{padding:.3em .5em;padding:var(--tag-pad)}.tagify[readonly] .tagify__tag>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify+input,.tagify+textarea{display:none!important}.tagify__tag{display:inline-flex;align-items:center;margin:5px 0 5px 5px;position:relative;z-index:1;cursor:default;transition:.13s ease-out}.tagify__tag.tagify--editable>div{color:#000;color:var(--tag-text-color--edit)}.tagify__tag.tagify--editable>div::before{box-shadow:0 0 0 2px #d3e2e2 inset!important;box-shadow:0 0 0 2px var(--tag-hover) inset!important}.tagify__tag.tagify--editable.tagify--invalid>div::before{box-shadow:0 0 0 2px #d39494 inset!important;box-shadow:0 0 0 2px var(--tag-invalid-color) inset!important}.tagify__tag>div{vertical-align:top;box-sizing:border-box;max-width:100%;padding:.3em .5em;padding:var(--tag-pad);color:#000;color:var(--tag-text-color);line-height:inherit;border-radius:3px;-webkit-user-select:none;user-select:none;transition:.13s ease-out}.tagify__tag>div>*{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:top;min-width:var(--tag--min-width);max-width:var(--tag--max-width)}.tagify__tag>div>[contenteditable]{outline:0;-webkit-user-select:text;user-select:text;cursor:text;margin:-2px;padding:2px}.tagify__tag>div::before{content:'';position:absolute;border-radius:inherit;left:0;top:0;right:0;bottom:0;z-index:-1;pointer-events:none;transition:120ms ease;animation:tags--bump .3s ease-out 1;box-shadow:0 0 0 1.1em #e5e5e5 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset}.tagify__tag:hover:not([readonly]) div::before{top:-2px;right:-2px;bottom:-2px;left:-2px;box-shadow:0 0 0 1.1em #d3e2e2 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-hover) inset}.tagify__tag.tagify--noAnim{animation:none}.tagify__tag.tagify--hide{width:0!important;padding-left:0;padding-right:0;margin-left:0;margin-right:0;opacity:0;transform:scale(0);transition:.3s;pointer-events:none}.tagify__tag.tagify--mark div::before{animation:none}.tagify__tag.tagify--notAllowed div>span{opacity:.5}.tagify__tag.tagify--notAllowed div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.5) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-invalid-bg) inset!important;transition:.2s}.tagify__tag[readonly] .tagify__tag__removeBtn{display:none}.tagify__tag[readonly]>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify__tag__removeBtn{order:5;font:14px/16px Serif;background:0 0;background:var(--tag-remove-btn-bg);color:#000;color:var(--tag-text-color);width:14px;height:14px;text-align:center;border-radius:50px;cursor:pointer;margin-right:4.66667px;margin-left:-4.66667px;transition:.2s ease-out}.tagify__tag__removeBtn::after{content:"\00D7"}.tagify__tag__removeBtn:hover{color:#fff;background:#c77777;background:var(--tag-remove-btn-bg--hover)}.tagify__tag__removeBtn:hover+div>span{opacity:.5}.tagify__tag__removeBtn:hover+div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.3) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg) inset!important;transition:.2s}.tagify:not(.tagify--mix) .tagify__input{white-space:nowrap}.tagify:not(.tagify--mix) .tagify__input br{display:none}.tagify:not(.tagify--mix) .tagify__input *{display:inline;white-space:nowrap}.tagify__input{display:block;min-width:110px;margin:5px;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);line-height:inherit;position:relative}.tagify__input::before{display:inline-block;width:0}.tagify__input:empty::before{transition:.2s ease-out;opacity:.5;transform:none;width:auto}.tagify__input:focus{outline:0}.tagify__input:focus::before{transition:.2s ease-out;opacity:0;transform:translatex(6px)}@supports (-moz-appearance:none){.tagify__input:focus::before{display:none}}.tagify__input:focus:empty::before{transition:.2s ease-out;opacity:.3;transform:none}@supports (-moz-appearance:none){.tagify__input:focus:empty::before{display:inline-block}}.tagify__input::before{content:attr(data-placeholder);line-height:1.8;position:absolute;top:0;z-index:1;color:#000;white-space:nowrap;pointer-events:none;opacity:0}@supports (-moz-appearance:none){.tagify__input::before{line-height:inherit;position:relative}}.tagify__input::after{content:attr(data-suggest);color:#000;opacity:.3;pointer-events:none}.tagify__input .tagify__tag{margin:0}.tagify__input .tagify__tag>div{padding-top:0;padding-bottom:0}.tagify--mix .tagify__input{padding:5px;margin:0;width:100%;height:100%;line-height:1.7}.tagify--select::after{content:'>';opacity:.5;position:absolute;top:50%;right:0;bottom:0;font:16px monospace;line-height:8px;height:8px;pointer-events:none;transform:translate(-150%,-50%) scaleX(1.2) rotate(90deg);transition:.2s ease-in-out}.tagify--select[aria-expanded=true]::after{transform:translate(-150%,-50%) rotate(270deg) scaleY(1.2)}.tagify--select .tagify__tag{position:absolute;top:0;right:1.8em;bottom:0}.tagify--select .tagify__tag div{display:none}.tagify--select .tagify__input{width:100%}.tagify--invalid{--tags-border-color:#D39494}.tagify__dropdown{position:absolute;z-index:9999;background:#fff;max-height:300px;overflow:auto;border:1px solid #85c8ea;box-shadow:0 2px 4px -2px rgba(0,0,0,.2);box-sizing:border-box}.tagify__dropdown__item{box-sizing:inherit;padding:.35em .6em;margin:2px;cursor:pointer;border-radius:3px;position:relative;outline:0}.tagify__dropdown__item--active{background:#e5e5e5}.tagify__dropdown__item:active{filter:brightness(105%)}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* Retina background images */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, header nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: ' ';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/* crimson-text-regular - latin */
@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/crimson-text-v10-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Crimson Text Regular"), local("CrimsonText-Regular"), url("/fonts/crimson-text-v10-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/crimson-text-v10-latin-regular.woff2") format("woff2"), url("/fonts/crimson-text-v10-latin-regular.woff") format("woff"), url("/fonts/crimson-text-v10-latin-regular.ttf") format("truetype"), url("/fonts/crimson-text-v10-latin-regular.svg#CrimsonText") format("svg");
  /* Legacy iOS */
}

/* crimson-text-italic - latin */
@font-face {
  font-family: 'Crimson Text';
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/crimson-text-v10-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local("Crimson Text Italic"), local("CrimsonText-Italic"), url("/fonts/crimson-text-v10-latin-italic.eot?#iefix") format("embedded-opentype"), url("/fonts/crimson-text-v10-latin-italic.woff2") format("woff2"), url("/fonts/crimson-text-v10-latin-italic.woff") format("woff"), url("/fonts/crimson-text-v10-latin-italic.ttf") format("truetype"), url("/fonts/crimson-text-v10-latin-italic.svg#CrimsonText") format("svg");
  /* Legacy iOS */
}

/* crimson-text-600 - latin */
@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/crimson-text-v10-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Crimson Text SemiBold"), local("CrimsonText-SemiBold"), url("/fonts/crimson-text-v10-latin-600.eot?#iefix") format("embedded-opentype"), url("/fonts/crimson-text-v10-latin-600.woff2") format("woff2"), url("/fonts/crimson-text-v10-latin-600.woff") format("woff"), url("/fonts/crimson-text-v10-latin-600.ttf") format("truetype"), url("/fonts/crimson-text-v10-latin-600.svg#CrimsonText") format("svg");
  /* Legacy iOS */
}

/* pt-sans-regular - latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/pt-sans-v11-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("PT Sans"), local("PTSans-Regular"), url("/fonts/pt-sans-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/pt-sans-v11-latin-regular.woff2") format("woff2"), url("/fonts/pt-sans-v11-latin-regular.woff") format("woff"), url("/fonts/pt-sans-v11-latin-regular.ttf") format("truetype"), url("/fonts/pt-sans-v11-latin-regular.svg#PTSans") format("svg");
  /* Legacy iOS */
}

/* pt-sans-700 - latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/pt-sans-v11-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("/fonts/pt-sans-v11-latin-700.eot?#iefix") format("embedded-opentype"), url("/fonts/pt-sans-v11-latin-700.woff2") format("woff2"), url("/fonts/pt-sans-v11-latin-700.woff") format("woff"), url("/fonts/pt-sans-v11-latin-700.ttf") format("truetype"), url("/fonts/pt-sans-v11-latin-700.svg#PTSans") format("svg");
  /* Legacy iOS */
}

body,
html,
input,
textarea,
select {
  color: #3F3832;
  font-size: 16px;
  line-height: 1;
  font: "Crimson Text";
  font-family: "Crimson Text", serif;
}

html,
body {
  height: 100%;
}

body.no-scroll {
  overflow-y: hidden;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

a {
  color: #3F3832;
  text-decoration: none;
}

a:hover {
  color: #3F3832;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

.clear, .clr {
  display: block;
  clear: both;
  float: none;
}

img.lazy, img.lazy-loaded {
  background-image: url(/img/flower-loader.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;
}

img.lazy.lazy-loading-finished, img.lazy-loaded.lazy-loading-finished {
  background-image: none;
}

.wrapper {
  max-width: 1390px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

.wrapper.tiny {
  max-width: 444px;
}

.wrapper.normal {
  max-width: 1160px;
}

.wrapper.smallest {
  max-width: 910px;
}

.wrapper.smaller {
  max-width: 946px;
}

.wrapper.medium {
  max-width: 1138px;
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1020px) {
  .wrapper.smallest {
    padding: 0 200px;
    max-width: 1280px;
  }
}

ul.benefits {
  display: block;
  list-style: none;
  font-size: 16px;
  line-height: 23px;
  margin: 0 0 20px;
  font-family: "PT Sans", sans-serif;
}

ul.benefits li {
  display: block;
  padding: 0 0 0 36px;
  margin: 0 0 16px;
  background: url(/img/ic-arrow-right.svg) no-repeat 0 4px;
}

@media screen and (min-width: 768px) {
  ul.benefits {
    margin-bottom: 24px;
  }
}

.alert {
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 300px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: white;
  border: 1px solid #DFDEDE;
  border-radius: 2px;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  padding: 15px;
  z-index: 400;
  -webkit-animation: hideMe 1s ease-in 5s forwards;
  animation: hideMe 1s ease-in 5s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

@media screen and (min-width: 768px) {
  .alert {
    width: 600px;
  }
}

@-webkit-keyframes hideMe {
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 150%);
            transform: translate(-50%, 150%);
  }
}

@keyframes hideMe {
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 150%);
            transform: translate(-50%, 150%);
  }
}

.add-flower-heart,
.add-portfolio-heart,
.add-arrangement-heart {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/img/ic-heart.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  cursor: pointer;
}

html.no-touchevents .add-flower-heart:hover, html.no-touchevents
.add-portfolio-heart:hover, html.no-touchevents
.add-arrangement-heart:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.add-flower-heart.active,
.add-portfolio-heart.active,
.add-arrangement-heart.active {
  background-image: url(/img/ic-heart-active.svg);
}

.iframe-wrapper {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  height: 44px;
  line-height: 42px;
  padding: 0 20px;
  background: #1E1C2F;
  color: white;
  border: 1px solid #1E1C2F;
  font-family: "PT Sans", sans-serif;
  cursor: pointer;
  font-size: 16px;
  vertical-align: middle;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: color, background, border;
  transition-property: color, background, border;
}

.btn:focus {
  outline: none;
}

html.no-touchevents .btn:hover {
  background: white;
  color: #1E1C2F;
  border: 1px solid #1E1C2F;
}

.btn.white-bg {
  background: white;
  color: #1E1C2F;
  border: 1px solid #939398;
}

html.no-touchevents .btn.white-bg:hover {
  background: #1E1C2F;
  color: white;
  border: 1px solid #1E1C2F;
}

.btn.smaller {
  height: 36px;
  line-height: 34px;
  font-size: 14px;
}

.btn.full-7 {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .btn.full-7 {
    width: auto;
  }
}

.btn.full-10 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .btn.full-10 {
    width: auto;
  }
}

.btn.full {
  display: block;
  width: 100%;
  text-align: center;
}

p .btn,
.content p .btn {
  text-decoration: none;
}

html.no-touchevents p .btn:hover, html.no-touchevents
.content p .btn:hover {
  text-decoration: none;
}

@media screen and (min-width: 1020px) {
  .btn {
    padding: 0 25px;
  }
}

.text-btn {
  border: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  box-shadow: none;
  font-size: 15px;
  background: none;
  text-decoration: underline;
  color: #3F3832;
  cursor: pointer;
}

.filter-btn {
  display: inline-block;
  height: 32px;
  line-height: 30px;
  white-space: nowrap;
  border-radius: 2px;
  padding: 0 14px;
  border: 1px solid #e8e6f5;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  letter-spacing: .5px;
  color: #66666D;
}

html.no-touchevents .filter-btn:hover {
  background: #e5e2f3;
  color: #1E1C2F;
}

.filter-btn:focus {
  outline: none;
}

.filter-btn.active {
  background: #e5e2f3;
  color: #1E1C2F;
}

.filter-button-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 2px;
  overflow: hidden;
}

.filter-button-list li {
  display: block;
  list-style: none;
  margin: 0;
  float: left;
  border: 1px solid #e8e6f5;
  border-left: 0;
  padding: 0 12px;
  height: 32px;
  line-height: 30px;
  font-size: 13px;
  letter-spacing: .5px;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  cursor: pointer;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: border, background, color;
  transition-property: border, background, color;
}

.filter-button-list li:first-child {
  border-left: 1px solid #e8e6f5;
}

html.no-touchevents .filter-button-list li:hover {
  background: #F6F5FB;
  color: #1E1C2F;
}

.filter-button-list li.active,
html.no-touchevents .filter-button-list li.active {
  background: #e8e6f5;
  color: #1E1C2F;
}

.inp {
  display: block;
  margin: 0 0 18px;
  font-family: "PT Sans", sans-serif;
}

.inp > span {
  color: #66666D;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 5px;
}

.inp > span.mmb {
  margin-bottom: 12px;
}

.inp > span .grey {
  color: #a3a3a3;
}

html.placeholder .inp > span.hide-if-placeholder {
  display: none;
}

.inp.bigger {
  margin-bottom: 24px;
}

.inp.bigger > span {
  font-size: 20px;
  line-height: 28px;
  color: #1E1C2F;
  font-family: "Crimson Text", serif;
}

.inp.avatar img {
  display: block;
  float: right;
  width: 67px;
  height: 67px;
  border-radius: 50%;
}

.inp > a.lbl-right {
  float: right;
  font-size: 14px;
  color: #66666D;
  text-decoration: underline;
  line-height: 18px;
  margin: 0 0 6px;
}

.inp .wysiwyg {
  display: block;
  border-color: #DFDEDE;
}

.inp .wysiwyg .ql-toolbar {
  border-color: #DFDEDE;
}

.inp .wysiwyg .editor {
  border-color: #DFDEDE;
  height: 210px;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
}

.inp input[type=text],
.inp input[type=email],
.inp input[type=password],
.inp input[type=url],
.inp input[type=number],
.inp input[type=date],
.inp input[type=url],
.inp input[type=tel],
.inp input[type=time],
.inp input[type=search],
.inp input[type=file],
.inp input[type=tags],
.inp input[name=tags],
.inp input[type=color],
.inp .fake-input,
.inp textarea,
.inp select {
  display: block;
  width: 100%;
  padding: 0 16px;
  font-size: 15px;
  height: 44px;
  line-height: 42px;
  background: white;
  border: 1px solid #DFDEDE;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  outline: none;
  -webkit-transition-property: border;
  transition-property: border;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.inp input[type=text]:focus,
.inp input[type=email]:focus,
.inp input[type=password]:focus,
.inp input[type=url]:focus,
.inp input[type=number]:focus,
.inp input[type=date]:focus,
.inp input[type=url]:focus,
.inp input[type=tel]:focus,
.inp input[type=time]:focus,
.inp input[type=search]:focus,
.inp input[type=file]:focus,
.inp input[type=tags]:focus,
.inp input[name=tags]:focus,
.inp input[type=color]:focus,
.inp .fake-input:focus,
.inp textarea:focus,
.inp select:focus {
  outline: none;
  border-color: #939398;
}

.inp textarea {
  height: 120px;
  line-height: 1.5;
  padding: 16px;
}

.inp.has-errors input[type=text],
.inp.has-errors input[type=email],
.inp.has-errors input[type=password],
.inp.has-errors input[type=url],
.inp.has-errors input[type=number],
.inp.has-errors input[type=date],
.inp.has-errors input[type=url],
.inp.has-errors input[type=tel],
.inp.has-errors input[type=time],
.inp.has-errors input[type=search],
.inp.has-errors input[type=file],
.inp.has-errors input[type=tags],
.inp.has-errors input[name=tags],
.inp.has-errors input[type=color],
.inp.has-errors .fake-input,
.inp.has-errors textarea,
.inp.has-errors select {
  border-color: #CE2101;
}

.inp .fake-input {
  line-height: 1;
  padding-top: 13px;
}

.inp .tagify {
  height: 44px;
  line-height: 42px;
  border: 1px solid #DFDEDE;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
}

.inp .tagify .tagify__input {
  height: 42px;
  line-height: 42px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.inp .tagify .tagify__input:before {
  height: 42px;
  line-height: 42px;
}

.inp .tagify .tagify__tag {
  height: 32px;
  line-height: 32px;
}

.inp .tagify .tagify__tag > div {
  padding-top: 0;
  padding-bottom: 0;
  color: #5A51A8;
}

.inp .tagify .tagify__tag > div:before {
  box-shadow: 0 0 0 16px #e8e6f5 inset;
}

.inp input[type=tags] {
  display: none;
}

@media screen and (min-width: 600px) {
  .inp.bigger {
    margin-bottom: 32px;
  }
  .inp.bigger > span {
    font-size: 24px;
    line-height: 34px;
  }
  .inp.left {
    float: left;
    padding-right: 8px;
  }
  .inp.right {
    float: right;
    padding-left: 8px;
  }
  .inp.left span, .inp.right span, .inp.size-100 span {
    display: block;
  }
  .inp.left input[type=text],
  .inp.left input[type=email],
  .inp.left input[type=password],
  .inp.left input[type=url],
  .inp.left input[type=number],
  .inp.left input[type=date],
  .inp.left input[type=url],
  .inp.left input[type=tel],
  .inp.left input[type=time],
  .inp.left input[type=search],
  .inp.left input[type=file],
  .inp.left input[type=tags],
  .inp.left input[name=tags],
  .inp.left input[type=color],
  .inp.left .fake-input,
  .inp.left textarea,
  .inp.left select, .inp.right input[type=text],
  .inp.right input[type=email],
  .inp.right input[type=password],
  .inp.right input[type=url],
  .inp.right input[type=number],
  .inp.right input[type=date],
  .inp.right input[type=url],
  .inp.right input[type=tel],
  .inp.right input[type=time],
  .inp.right input[type=search],
  .inp.right input[type=file],
  .inp.right input[type=tags],
  .inp.right input[name=tags],
  .inp.right input[type=color],
  .inp.right .fake-input,
  .inp.right textarea,
  .inp.right select, .inp.size-100 input[type=text],
  .inp.size-100 input[type=email],
  .inp.size-100 input[type=password],
  .inp.size-100 input[type=url],
  .inp.size-100 input[type=number],
  .inp.size-100 input[type=date],
  .inp.size-100 input[type=url],
  .inp.size-100 input[type=tel],
  .inp.size-100 input[type=time],
  .inp.size-100 input[type=search],
  .inp.size-100 input[type=file],
  .inp.size-100 input[type=tags],
  .inp.size-100 input[name=tags],
  .inp.size-100 input[type=color],
  .inp.size-100 .fake-input,
  .inp.size-100 textarea,
  .inp.size-100 select {
    width: 100%;
  }
  .inp.left input[type=text].auto,
  .inp.left input[type=email].auto,
  .inp.left input[type=password].auto,
  .inp.left input[type=url].auto,
  .inp.left input[type=number].auto,
  .inp.left input[type=date].auto,
  .inp.left input[type=url].auto,
  .inp.left input[type=tel].auto,
  .inp.left input[type=time].auto,
  .inp.left input[type=search].auto,
  .inp.left input[type=file].auto,
  .inp.left input[type=tags].auto,
  .inp.left input[name=tags].auto,
  .inp.left input[type=color].auto,
  .inp.left .fake-input.auto,
  .inp.left textarea.auto,
  .inp.left select.auto, .inp.right input[type=text].auto,
  .inp.right input[type=email].auto,
  .inp.right input[type=password].auto,
  .inp.right input[type=url].auto,
  .inp.right input[type=number].auto,
  .inp.right input[type=date].auto,
  .inp.right input[type=url].auto,
  .inp.right input[type=tel].auto,
  .inp.right input[type=time].auto,
  .inp.right input[type=search].auto,
  .inp.right input[type=file].auto,
  .inp.right input[type=tags].auto,
  .inp.right input[name=tags].auto,
  .inp.right input[type=color].auto,
  .inp.right .fake-input.auto,
  .inp.right textarea.auto,
  .inp.right select.auto, .inp.size-100 input[type=text].auto,
  .inp.size-100 input[type=email].auto,
  .inp.size-100 input[type=password].auto,
  .inp.size-100 input[type=url].auto,
  .inp.size-100 input[type=number].auto,
  .inp.size-100 input[type=date].auto,
  .inp.size-100 input[type=url].auto,
  .inp.size-100 input[type=tel].auto,
  .inp.size-100 input[type=time].auto,
  .inp.size-100 input[type=search].auto,
  .inp.size-100 input[type=file].auto,
  .inp.size-100 input[type=tags].auto,
  .inp.size-100 input[name=tags].auto,
  .inp.size-100 input[type=color].auto,
  .inp.size-100 .fake-input.auto,
  .inp.size-100 textarea.auto,
  .inp.size-100 select.auto {
    width: auto;
  }
  .inp.size-1 {
    width: 3.3333332%;
  }
  .inp.size-2 {
    width: 6.6666664%;
  }
  .inp.size-3 {
    width: 9.9999996%;
  }
  .inp.size-4 {
    width: 13.3333328%;
  }
  .inp.size-5 {
    width: 16.666666%;
  }
  .inp.size-6 {
    width: 19.9999992%;
  }
  .inp.size-7 {
    width: 23.3333324%;
  }
  .inp.size-8 {
    width: 26.6666656%;
  }
  .inp.size-9 {
    width: 29.9999988%;
  }
  .inp.size-10 {
    width: 33.333332%;
  }
  .inp.size-11 {
    width: 36.6666652%;
  }
  .inp.size-12 {
    width: 39.9999984%;
  }
  .inp.size-13 {
    width: 43.3333316%;
  }
  .inp.size-14 {
    width: 46.6666648%;
  }
  .inp.size-15 {
    width: 49.999998%;
  }
  .inp.size-16 {
    width: 53.3333312%;
  }
  .inp.size-17 {
    width: 56.6666644%;
  }
  .inp.size-18 {
    width: 59.9999976%;
  }
  .inp.size-19 {
    width: 63.3333308%;
  }
  .inp.size-20 {
    width: 66.666664%;
  }
  .inp.size-21 {
    width: 69.9999972%;
  }
  .inp.size-22 {
    width: 73.3333304%;
  }
  .inp.size-23 {
    width: 76.6666636%;
  }
  .inp.size-24 {
    width: 79.9999968%;
  }
  .inp.size-25 {
    width: 83.33333%;
  }
  .inp.size-26 {
    width: 86.6666632%;
  }
  .inp.size-27 {
    width: 89.9999964%;
  }
  .inp.size-28 {
    width: 93.3333296%;
  }
  .inp.size-29 {
    width: 96.6666628%;
  }
  .inp.size-30 {
    width: 99.999996%;
  }
}

@media screen and (min-width: 768px) {
  .inp {
    margin-bottom: 20px;
  }
  .inp:after {
    content: ' ';
    display: block;
    clear: both;
  }
  .inp.left span, .inp.right span, .inp.size-100 span {
    float: none;
    width: auto;
    text-align: left;
    padding-top: 0;
  }
  .inp.left input[type=text],
  .inp.left input[type=email],
  .inp.left input[type=password],
  .inp.left input[type=url],
  .inp.left input[type=number],
  .inp.left input[type=date],
  .inp.left input[type=url],
  .inp.left input[type=tel],
  .inp.left input[type=time],
  .inp.left input[type=search],
  .inp.left input[type=file],
  .inp.left input[type=tags],
  .inp.left input[name=tags],
  .inp.left input[type=color],
  .inp.left .fake-input,
  .inp.left textarea,
  .inp.left select, .inp.right input[type=text],
  .inp.right input[type=email],
  .inp.right input[type=password],
  .inp.right input[type=url],
  .inp.right input[type=number],
  .inp.right input[type=date],
  .inp.right input[type=url],
  .inp.right input[type=tel],
  .inp.right input[type=time],
  .inp.right input[type=search],
  .inp.right input[type=file],
  .inp.right input[type=tags],
  .inp.right input[name=tags],
  .inp.right input[type=color],
  .inp.right .fake-input,
  .inp.right textarea,
  .inp.right select, .inp.size-100 input[type=text],
  .inp.size-100 input[type=email],
  .inp.size-100 input[type=password],
  .inp.size-100 input[type=url],
  .inp.size-100 input[type=number],
  .inp.size-100 input[type=date],
  .inp.size-100 input[type=url],
  .inp.size-100 input[type=tel],
  .inp.size-100 input[type=time],
  .inp.size-100 input[type=search],
  .inp.size-100 input[type=file],
  .inp.size-100 input[type=tags],
  .inp.size-100 input[name=tags],
  .inp.size-100 input[type=color],
  .inp.size-100 .fake-input,
  .inp.size-100 textarea,
  .inp.size-100 select {
    float: none;
    width: 100%;
  }
  .inp.left input[type=text].auto,
  .inp.left input[type=email].auto,
  .inp.left input[type=password].auto,
  .inp.left input[type=url].auto,
  .inp.left input[type=number].auto,
  .inp.left input[type=date].auto,
  .inp.left input[type=url].auto,
  .inp.left input[type=tel].auto,
  .inp.left input[type=time].auto,
  .inp.left input[type=search].auto,
  .inp.left input[type=file].auto,
  .inp.left input[type=tags].auto,
  .inp.left input[name=tags].auto,
  .inp.left input[type=color].auto,
  .inp.left .fake-input.auto,
  .inp.left textarea.auto,
  .inp.left select.auto, .inp.right input[type=text].auto,
  .inp.right input[type=email].auto,
  .inp.right input[type=password].auto,
  .inp.right input[type=url].auto,
  .inp.right input[type=number].auto,
  .inp.right input[type=date].auto,
  .inp.right input[type=url].auto,
  .inp.right input[type=tel].auto,
  .inp.right input[type=time].auto,
  .inp.right input[type=search].auto,
  .inp.right input[type=file].auto,
  .inp.right input[type=tags].auto,
  .inp.right input[name=tags].auto,
  .inp.right input[type=color].auto,
  .inp.right .fake-input.auto,
  .inp.right textarea.auto,
  .inp.right select.auto, .inp.size-100 input[type=text].auto,
  .inp.size-100 input[type=email].auto,
  .inp.size-100 input[type=password].auto,
  .inp.size-100 input[type=url].auto,
  .inp.size-100 input[type=number].auto,
  .inp.size-100 input[type=date].auto,
  .inp.size-100 input[type=url].auto,
  .inp.size-100 input[type=tel].auto,
  .inp.size-100 input[type=time].auto,
  .inp.size-100 input[type=search].auto,
  .inp.size-100 input[type=file].auto,
  .inp.size-100 input[type=tags].auto,
  .inp.size-100 input[name=tags].auto,
  .inp.size-100 input[type=color].auto,
  .inp.size-100 .fake-input.auto,
  .inp.size-100 textarea.auto,
  .inp.size-100 select.auto {
    width: auto;
  }
}

.checkbox {
  display: block;
  margin: 0 0 16px;
  cursor: pointer;
  position: relative;
}

.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  font-size: 1em;
  width: 100%;
  outline: none;
}

.checkbox input:focus {
  outline: none;
}

.checkbox input[type='checkbox'], .checkbox input[type='radio'] {
  width: auto;
  display: block;
  background: transparent;
  border: none;
}

.checkbox input[type='checkbox']:checked, .checkbox input[type='checkbox']:not(:checked), .checkbox input[type='radio']:checked, .checkbox input[type='radio']:not(:checked) {
  width: auto;
  display: block;
  background: transparent;
  border: none;
  margin: 0;
}

.checkbox input[type='checkbox'] + span,
.checkbox input[type='radio'] + span {
  display: block;
  cursor: pointer;
  -webkit-transition-duration: .4s;
          transition-duration: .4s;
  -webkit-transition-property: background, border, color;
  transition-property: background, border, color;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.3;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
}

.checkbox input[type='checkbox'] + span a,
.checkbox input[type='radio'] + span a {
  text-decoration: underline;
  color: #66666D;
}

.checkbox input[type='checkbox']:checked + span::before,
.checkbox input[type='checkbox']:not(:checked) + span::before,
.checkbox input[type='radio']:checked + span::before,
.checkbox input[type='radio']:not(:checked) + span::before {
  content: ' ';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  border: 2px solid #66666D;
  background: white;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition-duration: .4s;
          transition-duration: .4s;
  -webkit-transition-property: background, border, color;
  transition-property: background, border, color;
}

.checkbox input[type=radio]:checked + span::before,
.checkbox input[type=radio]:not(:checked) + span::before {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #DFDEDE;
}

.checkbox input[type='checkbox']:checked + span::before,
.checkbox input[type='radio']:checked + span::before {
  background-color: #1E1C2F;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAQAAAAm93DmAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAALiMAAC4jAXilP3YAAAAHdElNRQfiCxgOJzMarqAxAAAAbUlEQVRIx+3SsRGAIBBEUUqgBEugc0uwBEqhhG/CMB7OmNxm7s/3BQelOOd+HI2TquQG0EXk5AC6loMh5mjmPsZXnGS5EWc57ljjOU3ejkp/zgVPsZGKlw2k5qO8SMG/226Z5AKp4Rap45xzqxsv1htWqEX9wgAAAABJRU5ErkJggg==);
  border-color: #1E1C2F;
}

.save-row {
  margin: 22px 0 0;
  text-align: right;
}

/* Progress Bar */
.loader {
  display: block;
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  overflow: hidden;
  z-index: 3000;
}

.loader.big {
  bottom: auto;
  top: 0;
}

html.no-js .loader {
  display: none !important;
}

.loader span {
  background-color: #1E1C2F;
}

.loader span:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
          animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.loader span:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
          animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

.white-layer {
  max-width: 500px;
  background: white;
  padding: 25px 15px 15px;
  margin: 0 auto;
  border-radius: 2px;
  display: none;
  position: relative;
}

.mfp-content .white-layer {
  display: block;
}

.white-layer .title {
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 22px;
  text-align: center;
}

.white-layer .continue {
  margin: 22px 0 0;
  text-align: center;
}

.white-layer video {
  display: block;
  width: 100%;
  height: auto;
}

.white-layer .error-box {
  border: 1px solid #5A51A8;
  background: #e8e6f5;
  padding: 12px;
  margin: 10px 0 24px;
  color: #5A51A8;
}

.white-layer .error-box.disabled {
  display: none;
}

.white-layer.like-info-layer ul {
  display: block;
}

.white-layer.like-info-layer ul li {
  display: block;
}

.white-layer.like-info-layer ul li a {
  display: block;
  padding: 12px 0 12px 38px;
  position: relative;
  font-family: "PT Sans", sans-serif;
}

.white-layer.like-info-layer ul li a img,
.white-layer.like-info-layer ul li a .fallback-picture {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.white-layer.like-info-layer ul li a .fallback-picture {
  background: #DFDEDE url(/img/ic-user.svg) no-repeat center center;
  background-size: 12px auto;
}

.white-layer.country-switch-layer {
  max-width: 280px;
}

.white-layer.country-switch-layer a {
  display: block;
  padding: 12px 0 12px 40px;
  position: relative;
  font-family: "PT Sans", sans-serif;
}

.white-layer.country-switch-layer a img {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 27px;
}

html.no-touchevents .white-layer.country-switch-layer a:hover {
  color: #1E1C2F;
}

@media screen and (min-width: 768px) {
  .white-layer.country-switch-layer {
    max-width: 320px;
  }
}

.white-layer.share-social-layer {
  max-width: 400px;
}

.white-layer.share-social-layer .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 14px;
}

.white-layer.studio-cut-select-layer {
  max-width: 600px;
}

.white-layer.studio-cut-select-layer .cuts {
  margin: 0 -10px;
}

.white-layer.studio-cut-select-layer .cuts .cut {
  padding: 10px;
  float: left;
  width: 50%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
}

.white-layer.studio-cut-select-layer .cuts .cut img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 14px;
}

.white-layer.studio-cut-select-layer .cuts .cut strong {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}

@media screen and (min-width: 600px) {
  .white-layer.studio-cut-select-layer .cuts .cut {
    width: 33.33333%;
  }
}

.white-layer.save-arrangement-layer .save-info {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  font-family: "PT Sans", sans-serif;
  color: #939398;
  display: none;
}

.white-layer.save-arrangement-layer .save-info.show {
  display: block;
}

.white-layer.bigger-layer {
  max-width: 860px;
}

.white-layer.register-layer {
  max-width: 620px;
}

.white-layer.login-layer form, .white-layer.register-layer form {
  margin-bottom: 30px;
}

.white-layer.studio-crop-layer {
  max-width: 600px;
  text-align: center;
}

.white-layer.studio-crop-layer .crop-image {
  margin: 0 0 22px;
}

.white-layer.studio-crop-layer .crop-image img {
  display: block;
  width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .white-layer {
    padding: 30px;
  }
  .white-layer .title {
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 28px;
  }
  .white-layer.login-layer form, .white-layer.register-layer form {
    margin-bottom: 50px;
  }
}

header {
  height: 64px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: white;
  z-index: 500;
  border-bottom: 1px solid #ECEBEB;
  -webkit-transition-property: height, box-shadow, border;
  transition-property: height, box-shadow, border;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

header .wrapper {
  height: 100%;
  background: #0b0b0b00;
}

header .logo {
  display: block;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  padding: 12px 0 0;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
}

header .logo span {
  display: block;
}

body.not-logged header .logo {
  margin: 0;
  text-align: left;
}

header .do-login {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header .do-login .btn {
  margin-left: 4px;
}

@media (max-width: 374px) {
  header .do-login .btn.registration-btn {
    display: none;
  }
}

@media screen and (max-width: 410px) {
  header .do-login .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

body.hide-login header .do-login {
  display: none;
}

header .mobile-menu {
  width: 36px;
  padding: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 1020px) {
  header .mobile-menu {
    display: none;
  }
}

header .mobile-menu span {
  display: block;
  height: 1px;
  margin: 0 0 6px;
  background: #1E1C2F;
  border-radius: 1px;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

header .mobile-menu span:last-of-type {
  margin-bottom: 0;
}

header .mobile-menu.is-open span {
  margin: 0;
}

header .mobile-menu.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .mobile-menu.is-open span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

header .mobile-menu.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(1px, -2px);
          transform: rotate(-45deg) translate(1px, -2px);
}

header .profile-menu {
  position: absolute;
  right: 10px;
  top: 50%;
  height: 40px;
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
  cursor: pointer;
}

header .profile-menu .avatar {
  display: block;
  width: 52px;
  position: relative;
}

header .profile-menu .avatar img,
header .profile-menu .avatar i {
  display: block;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

header .profile-menu .avatar i {
  background: #a3a3a3 url(/img/ic-user.svg) no-repeat center center;
  background-size: 15px auto;
}

header .profile-menu .avatar:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 10px;
  background: url(/img/ic-down.svg) no-repeat right center;
  background-size: contain;
}

header .profile-menu ul {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  border: 1px solid #939398;
  border-radius: 2px;
  box-shadow: 0 5px 20px 0 rgba(63, 56, 50, 0.1);
  background: white;
  white-space: nowrap;
  padding: 0 12px;
  min-width: 185px;
}

header .profile-menu ul li {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #ECEBEB;
}

header .profile-menu ul li a {
  display: block;
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
  line-height: 26px;
  padding: 1px 0;
}

html.no-touchevents header .profile-menu ul li a:hover {
  text-decoration: underline;
}

header .profile-menu ul li:last-child {
  border-bottom: 0;
}

header .profile-menu:hover ul {
  display: block;
}

header.is-scrolled {
  border-bottom: 1px solid #ECEBEB;
}

@media screen and (min-width: 1020px) {
  header {
    height: 76px;
  }
  header .logo {
    position: absolute;
    margin: 0;
    left: 15px;
    width: 270px;
    text-align: left;
    font-size: 26px;
    padding-top: 1px;
    line-height: 36px;
  }
  header .do-login {
    right: 15px;
  }
  header .do-login .btn {
    height: 44px;
    line-height: 42px;
    font-size: 16px;
    margin-left: 14px;
  }
  header .profile-menu {
    right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  header {
    height: 76px;
  }
  header .logo {
    width: 400px;
    padding-top: 19px;
  }
  header .logo span {
    display: inline;
  }
}

.header-spacer {
  height: 64px;
}

@media screen and (min-width: 1020px) {
  .header-spacer {
    height: 76px;
  }
}

.autocomplete-suggestions {
  border: 1px solid #939398;
  background: white;
  overflow: auto;
}

.autocomplete-suggestions .autocomplete-suggestion {
  padding: 5px 8px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  color: #66666D;
}

.autocomplete-suggestions .autocomplete-selected {
  background: #ECEBEB;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #1E1C2F;
}

.autocomplete-suggestions .autocomplete-group {
  padding: 5px 8px;
}

.autocomplete-suggestions .autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #1E1C2F;
}

header nav {
  display: none;
}

@media screen and (min-width: 1020px) {
  header nav {
    display: block;
    overflow: visible;
    position: absolute;
    bottom: 0;
    right: 100px;
    top: 0;
    white-space: normal;
    max-height: 1000px;
    z-index: 1;
  }
  body.page-loaded header nav {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-property: opacity, max-height;
    transition-property: opacity, max-height;
  }
  header nav .inner * {
    display: block;
  }
  header nav .inner ul {
    clear: both;
  }
  header nav .inner li {
    position: relative;
  }
  header nav .inner li > a {
    padding: 8px 14px;
    outline: none;
  }
  header nav .inner li > a:focus {
    outline: none;
  }
  header nav .inner li > i {
    display: none;
  }
  header nav .inner > ul > li {
    float: left;
  }
  body.page-loaded header nav .inner > ul > li {
    -webkit-transition-property: padding;
    transition-property: padding;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  header nav .inner > ul > li > a {
    padding: 0 14px;
    height: 76px;
    line-height: 76px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #3F3832;
  }
  body.page-loaded header nav .inner > ul > li > a {
    -webkit-transition-property: border, padding, height, color, line-height;
    transition-property: border, padding, height, color, line-height;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  header nav .inner > ul > li > a:hover {
    text-decoration: underline;
  }
  header nav .inner > ul > li:hover > a {
    text-decoration: underline;
  }
  header nav .inner > ul > li.active > a {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1020px) and (max-width: 1120px) {
  header nav .inner > ul > li.nav-feed {
    display: none;
  }
}

@media screen and (min-width: 1020px) {
  header nav .inner > ul > li > ul {
    top: 100%;
    left: 0;
    min-width: 100%;
  }
  header nav .inner > ul > li > ul li > ul {
    left: 100%;
    top: 0;
  }
  header nav .inner > ul > li > ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 35px;
  }
  header nav .inner > ul li > ul {
    display: none;
    position: absolute;
    white-space: nowrap;
    background: white;
    border-bottom: 1px solid #ECEBEB;
    font-size: 15px;
    text-transform: uppercase;
  }
  header nav .inner > ul li > ul li:last-child {
    border-bottom: 0;
  }
  header nav .inner > ul li > ul li > a {
    padding: 10px 13px;
  }
  header nav .inner > ul li > ul li > a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 1019px) {
  body.no-scroll header {
    z-index: 302;
  }
}

@media screen and (max-width: 1019px) {
  header nav {
    display: block;
    position: fixed;
    top: 64px;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 600;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  header nav.no-transition {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  header nav.is-canvas {
    left: 0;
  }
  header nav .wrapper {
    display: inline;
    margin: 0;
    padding: 0;
    position: static;
  }
  header nav .inner {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100%;
    background: white;
    padding: 0;
    margin: 0;
  }
  header nav .inner ul {
    display: block;
    margin: 0;
    padding: 0;
    clear: both;
  }
  header nav .inner ul:last-of-type {
    padding-bottom: 0;
  }
  header nav .inner ul * {
    display: block;
  }
  header nav .inner ul > li > a,
  header nav .inner ul > li > .a,
  header nav .inner ul > li > h4,
  header nav .inner ul > li > .mobile-go-back {
    padding: 15px 10px;
    cursor: pointer;
    color: #3F3832;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 21px;
  }
  header nav .inner ul > li > a.uc,
  header nav .inner ul > li > .a.uc,
  header nav .inner ul > li > h4.uc,
  header nav .inner ul > li > .mobile-go-back.uc {
    text-transform: uppercase;
  }
  header nav .inner ul > li > .mobile-go-back {
    margin-left: 10px;
    padding-left: 35px;
    background: url(/img/ic-arrow-left.svg) no-repeat left center;
  }
  header nav .inner ul > li.childs {
    overflow: hidden;
  }
  header nav .inner ul > li.childs > a,
  header nav .inner ul > li.childs > .a,
  header nav .inner ul > li.childs > i,
  header nav .inner ul > li.childs > h4 {
    -webkit-transition-property: background, -webkit-transform;
    transition-property: background, -webkit-transform;
    transition-property: transform, background;
    transition-property: transform, background, -webkit-transform;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  header nav .inner ul > li.childs > a,
  header nav .inner ul > li.childs > .a,
  header nav .inner ul > li.childs > h4 {
    text-transform: uppercase;
  }
  header nav .inner ul > li.childs > i {
    float: right;
    cursor: pointer;
    width: 44px;
    height: 51px;
    background: url(/img/ic-arrow-right.svg) no-repeat center center;
  }
  header nav .inner ul > li.childs > ul {
    display: none;
  }
  header nav .inner ul > li.childs > ul li > a,
  header nav .inner ul > li.childs > ul li > .a,
  header nav .inner ul > li.childs > ul li > h4 {
    padding: 15px 10px;
    cursor: pointer;
  }
  body.nav-show-childs header nav .inner ul > li {
    display: none;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active {
    display: block;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > a,
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > .a,
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > i,
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > h4,
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > ul {
    display: none;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-parent-active > ul.is-open {
    display: block;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-active {
    display: block;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-active > a,
  body.nav-show-childs header nav .inner ul > li.childs.is-active > .a,
  body.nav-show-childs header nav .inner ul > li.childs.is-active > i,
  body.nav-show-childs header nav .inner ul > li.childs.is-active > h4 {
    display: none;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-active > ul {
    display: block;
  }
  body.nav-show-childs header nav .inner ul > li.childs.is-active > ul > li {
    display: block;
  }
  header nav .inner ul.main-nav-ul {
    padding-top: 15px;
  }
  header nav .inner ul.main-nav-ul > li > a,
  header nav .inner ul.main-nav-ul > li > .a,
  header nav .inner ul.main-nav-ul > li > h4 {
    text-transform: uppercase;
  }
  header nav .inner ul.flower-filter li.childs ul {
    padding-top: 5px;
  }
  header nav .inner ul.flower-filter li.childs ul a,
  header nav .inner ul.flower-filter li.childs ul strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px;
  }
  header nav .inner ul.flower-filter li.childs ul a small,
  header nav .inner ul.flower-filter li.childs ul strong small {
    float: right;
    color: #66666D;
    font-size: 14px;
    padding-left: 12px;
  }
  header nav .inner ul.flower-filter li.childs ul a.has-color-circle,
  header nav .inner ul.flower-filter li.childs ul strong.has-color-circle {
    margin-left: 10px;
  }
  body.nav-show-childs header nav .inner ul {
    display: none;
  }
  body.nav-show-childs header nav .inner ul.is-open, body.nav-show-childs header nav .inner ul.is-parent-open {
    display: block;
  }
}

.off-canvas-overlay {
  display: block;
  opacity: 0;
  position: fixed;
  top: -500px;
  bottom: -500px;
  left: -100px;
  right: -100px;
  min-width: 100%;
  min-height: 100%;
  z-index: 550;
  background: #666;
  background: rgba(51, 51, 52, 0.7);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

body.no-filter-transition .off-canvas-overlay {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.off-canvas-overlay.visible {
  opacity: 1;
}

ul.flower-list {
  display: block;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

ul.flower-list li {
  display: block;
  margin: 0;
  float: left;
  width: 50%;
  padding: 15px 10px 30px;
}

ul.flower-list li a {
  display: block;
}

ul.flower-list li a img {
  display: block;
  width: 100%;
  height: 180px;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

ul.flower-list li a h2 {
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 0 4px;
  font-weight: bold;
}

ul.flower-list li a h2 small {
  display: block;
  color: #939398;
  font-style: italic;
  margin-top: 6px;
  font-weight: normal;
}

ul.flower-list li a h2:before {
  display: block;
  content: '';
  width: 100%;
  max-width: 158px;
  margin: 0 auto 18px;
  opacity: .2;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 189, 189, 0)), color-stop(50.17%, #c0bdbd), to(rgba(192, 189, 189, 0)));
  background: linear-gradient(90deg, rgba(192, 189, 189, 0) 0%, #c0bdbd 50.17%, rgba(192, 189, 189, 0) 100%);
}

@media screen and (min-width: 600px) {
  ul.flower-list li {
    width: 33.333333333%;
    padding-bottom: 35px;
  }
  ul.flower-list li a img {
    height: 270px;
  }
  ul.flower-list li a h2 {
    font-size: 14px;
  }
  ul.flower-list li a h2:before {
    margin-bottom: 22px;
  }
}

@media screen and (min-width: 1280px) {
  ul.flower-list li {
    width: 25%;
  }
}

ul.flower-filter > li > ul > li > .a.has-color-circle,
ul.flower-filter > li > ul > li > a.has-color-circle {
  position: relative;
  padding-left: 20px !important;
}

ul.flower-filter > li > ul > li > .a.has-color-circle .color-circle,
ul.flower-filter > li > ul > li > a.has-color-circle .color-circle {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 0;
  padding: 0;
  border-radius: 50%;
}

ul.flower-filter > li > ul > li > .a.has-color-circle .color-circle.color-circle-ffffff,
ul.flower-filter > li > ul > li > a.has-color-circle .color-circle.color-circle-ffffff {
  border: 1px solid #939398;
}

.flower-filter-list h1 {
  font-family: "PT Sans", sans-serif;
  color: #66666D;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  letter-spacing: .5px;
  margin: 6px 0 20px;
}

.flower-filter-list .desktop-flower-filter {
  display: none;
}

.flower-filter-list .desktop-flower-filter * {
  display: block;
  padding: 0;
  margin: 0;
}

.flower-filter-list .desktop-flower-filter .reset-filters {
  display: block;
  font-size: 12px;
  line-height: 13px;
  text-transform: uppercase;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  vertical-align: middle;
  margin: 0 0 20px;
}

.flower-filter-list .desktop-flower-filter .reset-filters img {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 6px 0 0;
  height: 13px;
}

.flower-filter-list .desktop-flower-filter .flowers-search {
  display: block;
  margin: 0 0 20px;
}

.flower-filter-list .desktop-flower-filter .flowers-search label {
  display: block;
  position: relative;
}

.flower-filter-list .desktop-flower-filter .flowers-search label input {
  display: block;
  width: 100%;
  height: 32px;
  line-height: 30px;
  border: 1px solid #ECEBEB;
  border-radius: 2px;
  padding: 0 50px 0 10px;
  color: #3F3832;
}

.flower-filter-list .desktop-flower-filter .flowers-search label input:focus {
  border-color: #1E1C2F;
  outline: none;
}

.flower-filter-list .desktop-flower-filter .flowers-search label button {
  position: absolute;
  border: 0;
  background: none;
  outline: none;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #3F3832;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter {
  font-size: 14px;
  padding: 15px 0 0;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li {
  margin-bottom: 40px;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li h4 {
  color: #66666D;
  text-transform: uppercase;
  line-height: 18px;
  padding-bottom: 8px;
  font-size: 15px;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li > ul > li > a,
.flower-filter-list .desktop-flower-filter ul.flower-filter > li > ul > li > strong {
  padding: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li > ul > li > a small,
.flower-filter-list .desktop-flower-filter ul.flower-filter > li > ul > li > strong small {
  float: right;
  margin-left: 6px;
  color: #66666D;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li > ul > li > a:hover {
  text-decoration: underline;
}

.flower-filter-list .desktop-flower-filter ul.flower-filter > li.only-mobile {
  display: none;
}

.flower-filter-list.without-filter h1 {
  font-family: "Crimson Text", serif;
  color: #1E1C2F;
  font-size: 24px;
  line-height: 33px;
  margin-top: 20px;
}

.flower-filter-list .no-flowers {
  color: #939398;
  font-size: 14px;
  line-height: 22px;
  margin: 16px auto;
  max-width: 440px;
  text-align: center;
  font-family: "PT Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .flower-filter-list {
    padding-top: 30px;
  }
  .flower-filter-list h1 {
    margin: -10px 0 30px;
    font-size: 13px;
  }
}

@media screen and (min-width: 1020px) {
  .flower-filter-list {
    padding-top: 60px;
  }
  .flower-filter-list h1 {
    margin: -30px 0 30px;
  }
  .flower-filter-list .desktop-flower-filter {
    display: block;
    float: left;
    width: 200px;
  }
  .flower-filter-list ul.flower-list {
    margin-left: 200px;
  }
  .flower-filter-list.without-filter h1 {
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 40px;
  }
  .flower-filter-list.without-filter ul.flower-list {
    margin-left: 0;
  }
}

.flower-detail {
  margin: 35px auto 0;
  max-width: 900px;
  text-align: center;
  color: #1E1C2F;
  position: relative;
}

.flower-detail .c {
  padding: 0 10px;
}

.flower-detail .c h1 {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

.flower-detail .c h2 {
  font-size: 19px;
  line-height: 27px;
  font-style: italic;
  font-weight: normal;
}

.flower-detail .c ul {
  display: block;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 22px;
  margin: 10px 0 0;
}

.flower-detail .c ul li {
  display: block;
  padding: 1px 0 0;
}

.flower-detail .picture {
  height: 480px;
  margin: 35px auto 0;
  position: relative;
}

.flower-detail .picture img {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.flower-detail .picture img.final {
  z-index: 2;
}

@media screen and (max-width: 599px) and (min-height: 771px) {
  .flower-detail {
    margin-top: 60px;
  }
  .flower-detail .picture {
    margin-top: 62px;
  }
}

@media screen and (min-width: 768px) {
  .flower-detail {
    margin-top: 92px;
  }
  .flower-detail .c {
    position: absolute;
    text-align: left;
    top: 180px;
    left: 0;
    padding: 0 15px;
  }
  .flower-detail .picture {
    height: 680px;
    margin: 0 auto;
  }
  .flower-detail .picture:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 512px;
    left: 50%;
    margin-left: -256px;
    opacity: .2;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(192, 189, 189, 0)), color-stop(50.17%, #c0bdbd), to(rgba(192, 189, 189, 0)));
    background: linear-gradient(90deg, rgba(192, 189, 189, 0) 0%, #c0bdbd 50.17%, rgba(192, 189, 189, 0) 100%);
  }
}

main.page-community,
main.page-video,
main.page-create-portfolio,
main.page-create-network,
main.page-portfolio,
main.page-arrangement {
  margin: 32px 0;
}

@media screen and (min-width: 768px) {
  main.page-community,
  main.page-video,
  main.page-create-portfolio,
  main.page-create-network,
  main.page-portfolio,
  main.page-arrangement {
    margin: 64px 0;
  }
}

main.page-community .headline-bar h1,
main.page-video .headline-bar h1,
main.page-create-portfolio .headline-bar h1,
main.page-create-network .headline-bar h1,
main.page-portfolio .headline-bar h1,
main.page-arrangement .headline-bar h1 {
  font-size: 24px;
  line-height: 24px;
  margin: 0 0 18px;
}

main.page-community .headline-bar h1 .grey,
main.page-video .headline-bar h1 .grey,
main.page-create-portfolio .headline-bar h1 .grey,
main.page-create-network .headline-bar h1 .grey,
main.page-portfolio .headline-bar h1 .grey,
main.page-arrangement .headline-bar h1 .grey {
  color: #939398;
}

main.page-community .headline-bar .r .inp,
main.page-video .headline-bar .r .inp,
main.page-create-portfolio .headline-bar .r .inp,
main.page-create-network .headline-bar .r .inp,
main.page-portfolio .headline-bar .r .inp,
main.page-arrangement .headline-bar .r .inp {
  position: relative;
}

main.page-community .headline-bar .r .inp:before,
main.page-video .headline-bar .r .inp:before,
main.page-create-portfolio .headline-bar .r .inp:before,
main.page-create-network .headline-bar .r .inp:before,
main.page-portfolio .headline-bar .r .inp:before,
main.page-arrangement .headline-bar .r .inp:before {
  z-index: 2;
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/img/search.svg) no-repeat center center;
  background-size: contain;
}

main.page-community .headline-bar .r .inp input[type=text],
main.page-video .headline-bar .r .inp input[type=text],
main.page-create-portfolio .headline-bar .r .inp input[type=text],
main.page-create-network .headline-bar .r .inp input[type=text],
main.page-portfolio .headline-bar .r .inp input[type=text],
main.page-arrangement .headline-bar .r .inp input[type=text] {
  padding-right: 40px;
}

@media screen and (min-width: 768px) {
  main.page-community .headline-bar h1,
  main.page-video .headline-bar h1,
  main.page-create-portfolio .headline-bar h1,
  main.page-create-network .headline-bar h1,
  main.page-portfolio .headline-bar h1,
  main.page-arrangement .headline-bar h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 32px;
  }
  main.page-community .headline-bar.with-r h1,
  main.page-video .headline-bar.with-r h1,
  main.page-create-portfolio .headline-bar.with-r h1,
  main.page-create-network .headline-bar.with-r h1,
  main.page-portfolio .headline-bar.with-r h1,
  main.page-arrangement .headline-bar.with-r h1 {
    float: left;
    max-width: 480px;
  }
  main.page-community .headline-bar.with-r .r,
  main.page-video .headline-bar.with-r .r,
  main.page-create-portfolio .headline-bar.with-r .r,
  main.page-create-network .headline-bar.with-r .r,
  main.page-portfolio .headline-bar.with-r .r,
  main.page-arrangement .headline-bar.with-r .r {
    float: right;
    white-space: nowrap;
  }
  main.page-community .headline-bar.with-r .r form,
  main.page-video .headline-bar.with-r .r form,
  main.page-create-portfolio .headline-bar.with-r .r form,
  main.page-create-network .headline-bar.with-r .r form,
  main.page-portfolio .headline-bar.with-r .r form,
  main.page-arrangement .headline-bar.with-r .r form {
    float: left;
    margin-right: 20px;
  }
  main.page-community .headline-bar.with-r .r .btn,
  main.page-video .headline-bar.with-r .r .btn,
  main.page-create-portfolio .headline-bar.with-r .r .btn,
  main.page-create-network .headline-bar.with-r .r .btn,
  main.page-portfolio .headline-bar.with-r .r .btn,
  main.page-arrangement .headline-bar.with-r .r .btn {
    float: right;
  }
}

main.page-community .like-info,
main.page-video .like-info,
main.page-create-portfolio .like-info,
main.page-create-network .like-info,
main.page-portfolio .like-info,
main.page-arrangement .like-info {
  text-align: center;
  color: #66666D;
  margin: 0 0 25px;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

main.page-community .like-info span,
main.page-video .like-info span,
main.page-create-portfolio .like-info span,
main.page-create-network .like-info span,
main.page-portfolio .like-info span,
main.page-arrangement .like-info span {
  cursor: pointer;
  display: inline-block;
}

main.page-community .like-info span:before,
main.page-video .like-info span:before,
main.page-create-portfolio .like-info span:before,
main.page-create-network .like-info span:before,
main.page-portfolio .like-info span:before,
main.page-arrangement .like-info span:before {
  content: '';
  display: inline-block;
  vertical-align: text-top;
  width: 14px;
  height: 14px;
  background: url(/img/ic-heart.svg) no-repeat center bottom;
  background-size: contain;
  margin-right: 3px;
}

@media screen and (min-width: 768px) {
  main.page-community .create-topic .headline-bar h1,
  main.page-video .create-topic .headline-bar h1,
  main.page-create-portfolio .create-topic .headline-bar h1,
  main.page-create-network .create-topic .headline-bar h1,
  main.page-portfolio .create-topic .headline-bar h1,
  main.page-arrangement .create-topic .headline-bar h1 {
    margin-bottom: 64px;
  }
}

main.page-community .create-topic form,
main.page-video .create-topic form,
main.page-create-portfolio .create-topic form,
main.page-create-network .create-topic form,
main.page-portfolio .create-topic form,
main.page-arrangement .create-topic form {
  margin: 40px 0;
}

main.page-community .topic-list,
main.page-video .topic-list,
main.page-create-portfolio .topic-list,
main.page-create-network .topic-list,
main.page-portfolio .topic-list,
main.page-arrangement .topic-list {
  margin: 24px 0;
}

main.page-community .topic-list .topic,
main.page-video .topic-list .topic,
main.page-create-portfolio .topic-list .topic,
main.page-create-network .topic-list .topic,
main.page-portfolio .topic-list .topic,
main.page-arrangement .topic-list .topic {
  padding: 20px 0;
  border-top: 1px solid #ECEBEB;
}

main.page-community .topic-list .topic .l h2,
main.page-video .topic-list .topic .l h2,
main.page-create-portfolio .topic-list .topic .l h2,
main.page-create-network .topic-list .topic .l h2,
main.page-portfolio .topic-list .topic .l h2,
main.page-arrangement .topic-list .topic .l h2 {
  color: #1E1C2F;
  font-size: 20px;
  line-height: 28px;
}

main.page-community .topic-list .topic .l .tags,
main.page-video .topic-list .topic .l .tags,
main.page-create-portfolio .topic-list .topic .l .tags,
main.page-create-network .topic-list .topic .l .tags,
main.page-portfolio .topic-list .topic .l .tags,
main.page-arrangement .topic-list .topic .l .tags {
  overflow-x: auto;
  margin: 0 0 8px;
}

main.page-community .topic-list .topic .l .c,
main.page-video .topic-list .topic .l .c,
main.page-create-portfolio .topic-list .topic .l .c,
main.page-create-network .topic-list .topic .l .c,
main.page-portfolio .topic-list .topic .l .c,
main.page-arrangement .topic-list .topic .l .c {
  padding: 13px 0;
  overflow: hidden;
  font-size: 13px;
  font-family: "PT Sans", sans-serif;
}

main.page-community .topic-list .topic .l .c .date,
main.page-video .topic-list .topic .l .c .date,
main.page-create-portfolio .topic-list .topic .l .c .date,
main.page-create-network .topic-list .topic .l .c .date,
main.page-portfolio .topic-list .topic .l .c .date,
main.page-arrangement .topic-list .topic .l .c .date {
  float: left;
  margin: 0 20px 0 0;
  color: #66666D;
}

main.page-community .topic-list .topic .l .c .from,
main.page-video .topic-list .topic .l .c .from,
main.page-create-portfolio .topic-list .topic .l .c .from,
main.page-create-network .topic-list .topic .l .c .from,
main.page-portfolio .topic-list .topic .l .c .from,
main.page-arrangement .topic-list .topic .l .c .from {
  float: left;
  position: relative;
  color: #1E1C2F;
  padding-right: 30px;
}

main.page-community .topic-list .topic .l .c .from img,
main.page-community .topic-list .topic .l .c .from .fallback-picture,
main.page-video .topic-list .topic .l .c .from img,
main.page-video .topic-list .topic .l .c .from .fallback-picture,
main.page-create-portfolio .topic-list .topic .l .c .from img,
main.page-create-portfolio .topic-list .topic .l .c .from .fallback-picture,
main.page-create-network .topic-list .topic .l .c .from img,
main.page-create-network .topic-list .topic .l .c .from .fallback-picture,
main.page-portfolio .topic-list .topic .l .c .from img,
main.page-portfolio .topic-list .topic .l .c .from .fallback-picture,
main.page-arrangement .topic-list .topic .l .c .from img,
main.page-arrangement .topic-list .topic .l .c .from .fallback-picture {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

main.page-community .topic-list .topic .l .c .from .fallback-picture,
main.page-video .topic-list .topic .l .c .from .fallback-picture,
main.page-create-portfolio .topic-list .topic .l .c .from .fallback-picture,
main.page-create-network .topic-list .topic .l .c .from .fallback-picture,
main.page-portfolio .topic-list .topic .l .c .from .fallback-picture,
main.page-arrangement .topic-list .topic .l .c .from .fallback-picture {
  background: #DFDEDE url(/img/ic-user.svg) no-repeat center center;
  background-size: 10px auto;
}

main.page-community .topic-list .topic .r,
main.page-video .topic-list .topic .r,
main.page-create-portfolio .topic-list .topic .r,
main.page-create-network .topic-list .topic .r,
main.page-portfolio .topic-list .topic .r,
main.page-arrangement .topic-list .topic .r {
  display: block;
  margin: 0;
  text-align: center;
  font-family: "PT Sans", sans-serif;
}

main.page-community .topic-list .topic .r li,
main.page-video .topic-list .topic .r li,
main.page-create-portfolio .topic-list .topic .r li,
main.page-create-network .topic-list .topic .r li,
main.page-portfolio .topic-list .topic .r li,
main.page-arrangement .topic-list .topic .r li {
  float: left;
  margin: 0 16px 0 0;
  color: #66666D;
  font-size: 13px;
  line-height: 17px;
}

main.page-community .topic-list .topic .r li strong,
main.page-video .topic-list .topic .r li strong,
main.page-create-portfolio .topic-list .topic .r li strong,
main.page-create-network .topic-list .topic .r li strong,
main.page-portfolio .topic-list .topic .r li strong,
main.page-arrangement .topic-list .topic .r li strong {
  display: block;
  font-size: 17px;
  line-height: 23px;
  margin-bottom: 2px;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  main.page-community .topic-list,
  main.page-video .topic-list,
  main.page-create-portfolio .topic-list,
  main.page-create-network .topic-list,
  main.page-portfolio .topic-list,
  main.page-arrangement .topic-list {
    margin: 40px 0;
  }
  main.page-community .topic-list .topic,
  main.page-video .topic-list .topic,
  main.page-create-portfolio .topic-list .topic,
  main.page-create-network .topic-list .topic,
  main.page-portfolio .topic-list .topic,
  main.page-arrangement .topic-list .topic {
    overflow: hidden;
  }
  main.page-community .topic-list .topic .l,
  main.page-video .topic-list .topic .l,
  main.page-create-portfolio .topic-list .topic .l,
  main.page-create-network .topic-list .topic .l,
  main.page-portfolio .topic-list .topic .l,
  main.page-arrangement .topic-list .topic .l {
    float: left;
    width: 77%;
    padding-right: 40px;
  }
  main.page-community .topic-list .topic .l h2,
  main.page-video .topic-list .topic .l h2,
  main.page-create-portfolio .topic-list .topic .l h2,
  main.page-create-network .topic-list .topic .l h2,
  main.page-portfolio .topic-list .topic .l h2,
  main.page-arrangement .topic-list .topic .l h2 {
    font-size: 24px;
    line-height: 33px;
  }
  main.page-community .topic-list .topic .l .tags,
  main.page-video .topic-list .topic .l .tags,
  main.page-create-portfolio .topic-list .topic .l .tags,
  main.page-create-network .topic-list .topic .l .tags,
  main.page-portfolio .topic-list .topic .l .tags,
  main.page-arrangement .topic-list .topic .l .tags {
    margin: 0;
    padding: 14px 20px 2px 0;
    overflow: hidden;
  }
  main.page-community .topic-list .topic .l .c,
  main.page-video .topic-list .topic .l .c,
  main.page-create-portfolio .topic-list .topic .l .c,
  main.page-create-network .topic-list .topic .l .c,
  main.page-portfolio .topic-list .topic .l .c,
  main.page-arrangement .topic-list .topic .l .c {
    float: right;
    padding: 18px 0 4px;
  }
  main.page-community .topic-list .topic .r,
  main.page-video .topic-list .topic .r,
  main.page-create-portfolio .topic-list .topic .r,
  main.page-create-network .topic-list .topic .r,
  main.page-portfolio .topic-list .topic .r,
  main.page-arrangement .topic-list .topic .r {
    float: right;
    width: 23%;
    padding-top: 22px;
  }
  main.page-community .topic-list .topic .r li,
  main.page-video .topic-list .topic .r li,
  main.page-create-portfolio .topic-list .topic .r li,
  main.page-create-network .topic-list .topic .r li,
  main.page-portfolio .topic-list .topic .r li,
  main.page-arrangement .topic-list .topic .r li {
    width: 33.33333%;
    margin: 0;
  }
  main.page-community .topic-list .topic .r li strong,
  main.page-video .topic-list .topic .r li strong,
  main.page-create-portfolio .topic-list .topic .r li strong,
  main.page-create-network .topic-list .topic .r li strong,
  main.page-portfolio .topic-list .topic .r li strong,
  main.page-arrangement .topic-list .topic .r li strong {
    margin-bottom: 5px;
  }
}

main.page-community .topic-body,
main.page-video .topic-body,
main.page-create-portfolio .topic-body,
main.page-create-network .topic-body,
main.page-portfolio .topic-body,
main.page-arrangement .topic-body {
  font-size: 14px;
  line-height: 23px;
  font-family: "PT Sans", sans-serif;
  margin: 0 0 22px;
}

main.page-community .topic-body .vote,
main.page-video .topic-body .vote,
main.page-create-portfolio .topic-body .vote,
main.page-create-network .topic-body .vote,
main.page-portfolio .topic-body .vote,
main.page-arrangement .topic-body .vote {
  float: left;
  width: 50px;
  text-align: center;
  border: 1px solid #939398;
  font-family: "PT Sans", sans-serif;
  color: #66666D;
  font-size: 13px;
  padding: 8px 0 5px;
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: border, color, background;
  transition-property: border, color, background;
}

main.page-community .topic-body .vote:focus,
main.page-video .topic-body .vote:focus,
main.page-create-portfolio .topic-body .vote:focus,
main.page-create-network .topic-body .vote:focus,
main.page-portfolio .topic-body .vote:focus,
main.page-arrangement .topic-body .vote:focus {
  outline: none;
}

main.page-community .topic-body .vote i,
main.page-video .topic-body .vote i,
main.page-create-portfolio .topic-body .vote i,
main.page-create-network .topic-body .vote i,
main.page-portfolio .topic-body .vote i,
main.page-arrangement .topic-body .vote i {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0 auto 6px;
  background: url(/img/ic-up.svg) no-repeat center center;
  background-size: contain;
}

main.page-community .topic-body .vote strong,
main.page-video .topic-body .vote strong,
main.page-create-portfolio .topic-body .vote strong,
main.page-create-network .topic-body .vote strong,
main.page-portfolio .topic-body .vote strong,
main.page-arrangement .topic-body .vote strong {
  display: block;
  font-size: 24px;
  line-height: 19px;
  font-weight: normal;
  margin-bottom: 4px;
}

main.page-community .topic-body .vote.active,
main.page-video .topic-body .vote.active,
main.page-create-portfolio .topic-body .vote.active,
main.page-create-network .topic-body .vote.active,
main.page-portfolio .topic-body .vote.active,
main.page-arrangement .topic-body .vote.active {
  background: #1E1C2F;
  border-color: #1E1C2F;
  color: white;
}

main.page-community .topic-body .vote.active i,
main.page-video .topic-body .vote.active i,
main.page-create-portfolio .topic-body .vote.active i,
main.page-create-network .topic-body .vote.active i,
main.page-portfolio .topic-body .vote.active i,
main.page-arrangement .topic-body .vote.active i {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

main.page-community .topic-body .html,
main.page-video .topic-body .html,
main.page-create-portfolio .topic-body .html,
main.page-create-network .topic-body .html,
main.page-portfolio .topic-body .html,
main.page-arrangement .topic-body .html {
  margin-left: 66px;
}

main.page-community .topic-body .video,
main.page-video .topic-body .video,
main.page-create-portfolio .topic-body .video,
main.page-create-network .topic-body .video,
main.page-portfolio .topic-body .video,
main.page-arrangement .topic-body .video {
  margin: 0;
  padding: 18px 0 0;
  clear: both;
}

main.page-community .topic-body .video stream,
main.page-video .topic-body .video stream,
main.page-create-portfolio .topic-body .video stream,
main.page-create-network .topic-body .video stream,
main.page-portfolio .topic-body .video stream,
main.page-arrangement .topic-body .video stream {
  max-width: 100%;
}

main.page-community .topic-body p,
main.page-community .topic-body ol,
main.page-community .topic-body ul,
main.page-community .topic-body blockquote,
main.page-video .topic-body p,
main.page-video .topic-body ol,
main.page-video .topic-body ul,
main.page-video .topic-body blockquote,
main.page-create-portfolio .topic-body p,
main.page-create-portfolio .topic-body ol,
main.page-create-portfolio .topic-body ul,
main.page-create-portfolio .topic-body blockquote,
main.page-create-network .topic-body p,
main.page-create-network .topic-body ol,
main.page-create-network .topic-body ul,
main.page-create-network .topic-body blockquote,
main.page-portfolio .topic-body p,
main.page-portfolio .topic-body ol,
main.page-portfolio .topic-body ul,
main.page-portfolio .topic-body blockquote,
main.page-arrangement .topic-body p,
main.page-arrangement .topic-body ol,
main.page-arrangement .topic-body ul,
main.page-arrangement .topic-body blockquote {
  margin: 0 0 14px;
}

main.page-community .topic-body ol,
main.page-video .topic-body ol,
main.page-create-portfolio .topic-body ol,
main.page-create-network .topic-body ol,
main.page-portfolio .topic-body ol,
main.page-arrangement .topic-body ol {
  list-style: disc;
}

main.page-community .topic-body ol li,
main.page-video .topic-body ol li,
main.page-create-portfolio .topic-body ol li,
main.page-create-network .topic-body ol li,
main.page-portfolio .topic-body ol li,
main.page-arrangement .topic-body ol li {
  margin-left: 20px;
}

main.page-community .topic-body ul,
main.page-video .topic-body ul,
main.page-create-portfolio .topic-body ul,
main.page-create-network .topic-body ul,
main.page-portfolio .topic-body ul,
main.page-arrangement .topic-body ul {
  list-style: decimal;
}

main.page-community .topic-body ul li,
main.page-video .topic-body ul li,
main.page-create-portfolio .topic-body ul li,
main.page-create-network .topic-body ul li,
main.page-portfolio .topic-body ul li,
main.page-arrangement .topic-body ul li {
  margin-left: 20px;
}

main.page-community .topic-body blockquote,
main.page-video .topic-body blockquote,
main.page-create-portfolio .topic-body blockquote,
main.page-create-network .topic-body blockquote,
main.page-portfolio .topic-body blockquote,
main.page-arrangement .topic-body blockquote {
  padding-left: 14px;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  main.page-community .topic-body .vote,
  main.page-video .topic-body .vote,
  main.page-create-portfolio .topic-body .vote,
  main.page-create-network .topic-body .vote,
  main.page-portfolio .topic-body .vote,
  main.page-arrangement .topic-body .vote {
    margin-left: 14px;
  }
  main.page-community .topic-body .vote.bigger,
  main.page-video .topic-body .vote.bigger,
  main.page-create-portfolio .topic-body .vote.bigger,
  main.page-create-network .topic-body .vote.bigger,
  main.page-portfolio .topic-body .vote.bigger,
  main.page-arrangement .topic-body .vote.bigger {
    width: 64px;
    margin-left: 0;
    padding: 12px 0 10px;
  }
  main.page-community .topic-body .vote.bigger i,
  main.page-video .topic-body .vote.bigger i,
  main.page-create-portfolio .topic-body .vote.bigger i,
  main.page-create-network .topic-body .vote.bigger i,
  main.page-portfolio .topic-body .vote.bigger i,
  main.page-arrangement .topic-body .vote.bigger i {
    margin-bottom: 9px;
  }
  main.page-community .topic-body .vote.bigger strong,
  main.page-video .topic-body .vote.bigger strong,
  main.page-create-portfolio .topic-body .vote.bigger strong,
  main.page-create-network .topic-body .vote.bigger strong,
  main.page-portfolio .topic-body .vote.bigger strong,
  main.page-arrangement .topic-body .vote.bigger strong {
    font-size: 28px;
    line-height: 23px;
    margin-bottom: 6px;
  }
  main.page-community .topic-body .html,
  main.page-video .topic-body .html,
  main.page-create-portfolio .topic-body .html,
  main.page-create-network .topic-body .html,
  main.page-portfolio .topic-body .html,
  main.page-arrangement .topic-body .html {
    margin-left: 96px;
  }
}

main.page-community .topic-meta,
main.page-video .topic-meta,
main.page-create-portfolio .topic-meta,
main.page-create-network .topic-meta,
main.page-portfolio .topic-meta,
main.page-arrangement .topic-meta {
  margin: 0 0 0 66px;
}

main.page-community .topic-meta .tags,
main.page-video .topic-meta .tags,
main.page-create-portfolio .topic-meta .tags,
main.page-create-network .topic-meta .tags,
main.page-portfolio .topic-meta .tags,
main.page-arrangement .topic-meta .tags {
  overflow-x: auto;
  margin: 0;
}

main.page-community .topic-meta .c,
main.page-video .topic-meta .c,
main.page-create-portfolio .topic-meta .c,
main.page-create-network .topic-meta .c,
main.page-portfolio .topic-meta .c,
main.page-arrangement .topic-meta .c {
  padding: 2px 0 14px;
  overflow: hidden;
  font-size: 13px;
  font-family: "PT Sans", sans-serif;
}

main.page-community .topic-meta .c .date,
main.page-video .topic-meta .c .date,
main.page-create-portfolio .topic-meta .c .date,
main.page-create-network .topic-meta .c .date,
main.page-portfolio .topic-meta .c .date,
main.page-arrangement .topic-meta .c .date {
  float: left;
  margin: 0 14px 0 0;
  color: #66666D;
}

main.page-community .topic-meta .c .from,
main.page-video .topic-meta .c .from,
main.page-create-portfolio .topic-meta .c .from,
main.page-create-network .topic-meta .c .from,
main.page-portfolio .topic-meta .c .from,
main.page-arrangement .topic-meta .c .from {
  float: left;
  position: relative;
  color: #1E1C2F;
  padding-right: 30px;
}

main.page-community .topic-meta .c .from img,
main.page-community .topic-meta .c .from i,
main.page-video .topic-meta .c .from img,
main.page-video .topic-meta .c .from i,
main.page-create-portfolio .topic-meta .c .from img,
main.page-create-portfolio .topic-meta .c .from i,
main.page-create-network .topic-meta .c .from img,
main.page-create-network .topic-meta .c .from i,
main.page-portfolio .topic-meta .c .from img,
main.page-portfolio .topic-meta .c .from i,
main.page-arrangement .topic-meta .c .from img,
main.page-arrangement .topic-meta .c .from i {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

main.page-community .topic-meta .c .from i,
main.page-video .topic-meta .c .from i,
main.page-create-portfolio .topic-meta .c .from i,
main.page-create-network .topic-meta .c .from i,
main.page-portfolio .topic-meta .c .from i,
main.page-arrangement .topic-meta .c .from i {
  background: #DFDEDE url(/img/ic-user.svg) no-repeat center center;
  background-size: 14px auto;
}

@media screen and (min-width: 768px) {
  main.page-community .topic-meta,
  main.page-video .topic-meta,
  main.page-create-portfolio .topic-meta,
  main.page-create-network .topic-meta,
  main.page-portfolio .topic-meta,
  main.page-arrangement .topic-meta {
    margin-left: 96px;
  }
  main.page-community .topic-meta .tags,
  main.page-video .topic-meta .tags,
  main.page-create-portfolio .topic-meta .tags,
  main.page-create-network .topic-meta .tags,
  main.page-portfolio .topic-meta .tags,
  main.page-arrangement .topic-meta .tags {
    overflow-x: hidden;
    padding: 9px 20px 0 0;
  }
  main.page-community .topic-meta .c,
  main.page-video .topic-meta .c,
  main.page-create-portfolio .topic-meta .c,
  main.page-create-network .topic-meta .c,
  main.page-portfolio .topic-meta .c,
  main.page-arrangement .topic-meta .c {
    float: right;
    padding: 14px 0;
  }
  main.page-community .topic-meta .c .from,
  main.page-video .topic-meta .c .from,
  main.page-create-portfolio .topic-meta .c .from,
  main.page-create-network .topic-meta .c .from,
  main.page-portfolio .topic-meta .c .from,
  main.page-arrangement .topic-meta .c .from {
    padding-right: 50px;
  }
  main.page-community .topic-meta .c .from img,
  main.page-video .topic-meta .c .from img,
  main.page-create-portfolio .topic-meta .c .from img,
  main.page-create-network .topic-meta .c .from img,
  main.page-portfolio .topic-meta .c .from img,
  main.page-arrangement .topic-meta .c .from img {
    width: 40px;
    height: 40px;
  }
}

main.page-community .topic-detail h1,
main.page-video .topic-detail h1,
main.page-create-portfolio .topic-detail h1,
main.page-create-network .topic-detail h1,
main.page-portfolio .topic-detail h1,
main.page-arrangement .topic-detail h1 {
  font-size: 26px;
  line-height: 35px;
  margin: 0 0 20px;
}

main.page-community .topic-detail .info,
main.page-video .topic-detail .info,
main.page-create-portfolio .topic-detail .info,
main.page-create-network .topic-detail .info,
main.page-portfolio .topic-detail .info,
main.page-arrangement .topic-detail .info {
  display: block;
  margin: 0 -10px 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #ECEBEB;
  font-size: 13px;
  font-family: "PT Sans", sans-serif;
  letter-spacing: .5px;
  color: #1E1C2F;
  overflow: hidden;
}

main.page-community .topic-detail .info li,
main.page-video .topic-detail .info li,
main.page-create-portfolio .topic-detail .info li,
main.page-create-network .topic-detail .info li,
main.page-portfolio .topic-detail .info li,
main.page-arrangement .topic-detail .info li {
  float: left;
  width: 50%;
  padding: 0 10px 10px;
}

main.page-community .topic-detail .info li small,
main.page-video .topic-detail .info li small,
main.page-create-portfolio .topic-detail .info li small,
main.page-create-network .topic-detail .info li small,
main.page-portfolio .topic-detail .info li small,
main.page-arrangement .topic-detail .info li small {
  color: #66666D;
}

@media screen and (min-width: 768px) {
  main.page-community .topic-detail h1,
  main.page-video .topic-detail h1,
  main.page-create-portfolio .topic-detail h1,
  main.page-create-network .topic-detail h1,
  main.page-portfolio .topic-detail h1,
  main.page-arrangement .topic-detail h1 {
    font-size: 32px;
    line-height: 44px;
  }
  main.page-community .topic-detail .info,
  main.page-video .topic-detail .info,
  main.page-create-portfolio .topic-detail .info,
  main.page-create-network .topic-detail .info,
  main.page-portfolio .topic-detail .info,
  main.page-arrangement .topic-detail .info {
    margin: 25px 0 20px;
    padding: 0 0 20px;
  }
  main.page-community .topic-detail .info li,
  main.page-video .topic-detail .info li,
  main.page-create-portfolio .topic-detail .info li,
  main.page-create-network .topic-detail .info li,
  main.page-portfolio .topic-detail .info li,
  main.page-arrangement .topic-detail .info li {
    width: auto;
    margin-right: 30px;
    padding: 0;
  }
}

main.page-community .comments-section,
main.page-community .new-comment,
main.page-video .comments-section,
main.page-video .new-comment,
main.page-create-portfolio .comments-section,
main.page-create-portfolio .new-comment,
main.page-create-network .comments-section,
main.page-create-network .new-comment,
main.page-portfolio .comments-section,
main.page-portfolio .new-comment,
main.page-arrangement .comments-section,
main.page-arrangement .new-comment {
  margin: 32px 0 0;
}

main.page-community .comments-section h2,
main.page-community .new-comment h2,
main.page-video .comments-section h2,
main.page-video .new-comment h2,
main.page-create-portfolio .comments-section h2,
main.page-create-portfolio .new-comment h2,
main.page-create-network .comments-section h2,
main.page-create-network .new-comment h2,
main.page-portfolio .comments-section h2,
main.page-portfolio .new-comment h2,
main.page-arrangement .comments-section h2,
main.page-arrangement .new-comment h2 {
  font-size: 26px;
  line-height: 35px;
  margin: 0 0 18px;
}

@media screen and (min-width: 768px) {
  main.page-community .comments-section,
  main.page-community .new-comment,
  main.page-video .comments-section,
  main.page-video .new-comment,
  main.page-create-portfolio .comments-section,
  main.page-create-portfolio .new-comment,
  main.page-create-network .comments-section,
  main.page-create-network .new-comment,
  main.page-portfolio .comments-section,
  main.page-portfolio .new-comment,
  main.page-arrangement .comments-section,
  main.page-arrangement .new-comment {
    margin-top: 52px;
  }
}

main.page-community .comments-section .comment,
main.page-video .comments-section .comment,
main.page-create-portfolio .comments-section .comment,
main.page-create-network .comments-section .comment,
main.page-portfolio .comments-section .comment,
main.page-arrangement .comments-section .comment {
  padding: 20px 0;
  border-top: 1px solid #ECEBEB;
}

main.page-community .community-tag,
main.page-video .community-tag,
main.page-create-portfolio .community-tag,
main.page-create-network .community-tag,
main.page-portfolio .community-tag,
main.page-arrangement .community-tag {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  background: #e8e6f5;
  color: #5A51A8;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  letter-spacing: .5px;
  border-radius: 2px;
  margin: 0 1px 5px 0;
}

main.page-community .desktop-subnav,
main.page-video .desktop-subnav,
main.page-create-portfolio .desktop-subnav,
main.page-create-network .desktop-subnav,
main.page-portfolio .desktop-subnav,
main.page-arrangement .desktop-subnav {
  display: none;
  position: fixed;
  left: 15px;
  top: 140px;
  font-family: "PT Sans", sans-serif;
  line-height: 32px;
  font-size: 13px;
  letter-spacing: .5px;
  z-index: 10;
}

@media screen and (min-width: 1020px) {
  main.page-community .desktop-subnav,
  main.page-video .desktop-subnav,
  main.page-create-portfolio .desktop-subnav,
  main.page-create-network .desktop-subnav,
  main.page-portfolio .desktop-subnav,
  main.page-arrangement .desktop-subnav {
    display: block;
  }
}

main.page-community .desktop-subnav li,
main.page-video .desktop-subnav li,
main.page-create-portfolio .desktop-subnav li,
main.page-create-network .desktop-subnav li,
main.page-portfolio .desktop-subnav li,
main.page-arrangement .desktop-subnav li {
  display: block;
}

main.page-community .desktop-subnav li a,
main.page-video .desktop-subnav li a,
main.page-create-portfolio .desktop-subnav li a,
main.page-create-network .desktop-subnav li a,
main.page-portfolio .desktop-subnav li a,
main.page-arrangement .desktop-subnav li a {
  display: block;
  color: #3F3832;
  margin: 5px 0;
}

main.page-community .desktop-subnav li a:hover,
main.page-video .desktop-subnav li a:hover,
main.page-create-portfolio .desktop-subnav li a:hover,
main.page-create-network .desktop-subnav li a:hover,
main.page-portfolio .desktop-subnav li a:hover,
main.page-arrangement .desktop-subnav li a:hover {
  color: #1E1C2F;
}

main.page-community .desktop-subnav li.active a,
main.page-video .desktop-subnav li.active a,
main.page-create-portfolio .desktop-subnav li.active a,
main.page-create-network .desktop-subnav li.active a,
main.page-portfolio .desktop-subnav li.active a,
main.page-arrangement .desktop-subnav li.active a {
  text-decoration: underline;
}

@media screen and (min-width: 1380px) {
  main.page-community .desktop-subnav,
  main.page-video .desktop-subnav,
  main.page-create-portfolio .desktop-subnav,
  main.page-create-network .desktop-subnav,
  main.page-portfolio .desktop-subnav,
  main.page-arrangement .desktop-subnav {
    left: 50%;
    -webkit-transform: translateX(-680px);
            transform: translateX(-680px);
  }
}

main.page-community .tag-list,
main.page-video .tag-list,
main.page-create-portfolio .tag-list,
main.page-create-network .tag-list,
main.page-portfolio .tag-list,
main.page-arrangement .tag-list {
  margin: 24px -10px;
}

main.page-community .tag-list .tag,
main.page-video .tag-list .tag,
main.page-create-portfolio .tag-list .tag,
main.page-create-network .tag-list .tag,
main.page-portfolio .tag-list .tag,
main.page-arrangement .tag-list .tag {
  margin: 0 0 30px;
  padding: 0 10px;
  float: left;
  width: 50%;
}

main.page-community .tag-list .tag .community-tag,
main.page-video .tag-list .tag .community-tag,
main.page-create-portfolio .tag-list .tag .community-tag,
main.page-create-network .tag-list .tag .community-tag,
main.page-portfolio .tag-list .tag .community-tag,
main.page-arrangement .tag-list .tag .community-tag {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

main.page-community .tag-list .tag .stats,
main.page-video .tag-list .tag .stats,
main.page-create-portfolio .tag-list .tag .stats,
main.page-create-network .tag-list .tag .stats,
main.page-portfolio .tag-list .tag .stats,
main.page-arrangement .tag-list .tag .stats {
  margin: 6px 0 0;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: .5px;
}

@media screen and (min-width: 768px) {
  main.page-community .tag-list .tag,
  main.page-video .tag-list .tag,
  main.page-create-portfolio .tag-list .tag,
  main.page-create-network .tag-list .tag,
  main.page-portfolio .tag-list .tag,
  main.page-arrangement .tag-list .tag {
    width: 33.3333%;
  }
}

@media screen and (min-width: 1020px) {
  main.page-community .tag-list .tag,
  main.page-video .tag-list .tag,
  main.page-create-portfolio .tag-list .tag,
  main.page-create-network .tag-list .tag,
  main.page-portfolio .tag-list .tag,
  main.page-arrangement .tag-list .tag {
    width: 25%;
  }
}

main.page-community .user-list,
main.page-video .user-list,
main.page-create-portfolio .user-list,
main.page-create-network .user-list,
main.page-portfolio .user-list,
main.page-arrangement .user-list {
  margin: 24px -10px;
}

main.page-community .user-list .user,
main.page-video .user-list .user,
main.page-create-portfolio .user-list .user,
main.page-create-network .user-list .user,
main.page-portfolio .user-list .user,
main.page-arrangement .user-list .user {
  display: block;
  margin: 0 0 30px;
  padding: 0 10px;
  float: left;
  width: 50%;
  color: #1E1C2F;
}

main.page-community .user-list .user img,
main.page-community .user-list .user .fallback-picture,
main.page-video .user-list .user img,
main.page-video .user-list .user .fallback-picture,
main.page-create-portfolio .user-list .user img,
main.page-create-portfolio .user-list .user .fallback-picture,
main.page-create-network .user-list .user img,
main.page-create-network .user-list .user .fallback-picture,
main.page-portfolio .user-list .user img,
main.page-portfolio .user-list .user .fallback-picture,
main.page-arrangement .user-list .user img,
main.page-arrangement .user-list .user .fallback-picture {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0;
}

main.page-community .user-list .user .fallback-picture,
main.page-video .user-list .user .fallback-picture,
main.page-create-portfolio .user-list .user .fallback-picture,
main.page-create-network .user-list .user .fallback-picture,
main.page-portfolio .user-list .user .fallback-picture,
main.page-arrangement .user-list .user .fallback-picture {
  background: #DFDEDE url(/img/ic-user.svg) no-repeat center center;
  background-size: 22px auto;
}

main.page-community .user-list .user .c,
main.page-video .user-list .user .c,
main.page-create-portfolio .user-list .user .c,
main.page-create-network .user-list .user .c,
main.page-portfolio .user-list .user .c,
main.page-arrangement .user-list .user .c {
  margin: 0 0 0 62px;
  font-family: "PT Sans", sans-serif;
}

main.page-community .user-list .user .c strong,
main.page-community .user-list .user .c small,
main.page-community .user-list .user .c em,
main.page-video .user-list .user .c strong,
main.page-video .user-list .user .c small,
main.page-video .user-list .user .c em,
main.page-create-portfolio .user-list .user .c strong,
main.page-create-portfolio .user-list .user .c small,
main.page-create-portfolio .user-list .user .c em,
main.page-create-network .user-list .user .c strong,
main.page-create-network .user-list .user .c small,
main.page-create-network .user-list .user .c em,
main.page-portfolio .user-list .user .c strong,
main.page-portfolio .user-list .user .c small,
main.page-portfolio .user-list .user .c em,
main.page-arrangement .user-list .user .c strong,
main.page-arrangement .user-list .user .c small,
main.page-arrangement .user-list .user .c em {
  display: block;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .5px;
}

main.page-community .user-list .user .c small,
main.page-video .user-list .user .c small,
main.page-create-portfolio .user-list .user .c small,
main.page-create-network .user-list .user .c small,
main.page-portfolio .user-list .user .c small,
main.page-arrangement .user-list .user .c small {
  color: #66666D;
  font-size: 13px;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

main.page-community .user-list .user .c em,
main.page-video .user-list .user .c em,
main.page-create-portfolio .user-list .user .c em,
main.page-create-network .user-list .user .c em,
main.page-portfolio .user-list .user .c em,
main.page-arrangement .user-list .user .c em {
  font-style: normal;
  margin: 10px 0 0;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  main.page-community .user-list .user,
  main.page-video .user-list .user,
  main.page-create-portfolio .user-list .user,
  main.page-create-network .user-list .user,
  main.page-portfolio .user-list .user,
  main.page-arrangement .user-list .user {
    width: 33.3333%;
  }
  main.page-community .user-list .user img,
  main.page-community .user-list .user .fallback-picture,
  main.page-video .user-list .user img,
  main.page-video .user-list .user .fallback-picture,
  main.page-create-portfolio .user-list .user img,
  main.page-create-portfolio .user-list .user .fallback-picture,
  main.page-create-network .user-list .user img,
  main.page-create-network .user-list .user .fallback-picture,
  main.page-portfolio .user-list .user img,
  main.page-portfolio .user-list .user .fallback-picture,
  main.page-arrangement .user-list .user img,
  main.page-arrangement .user-list .user .fallback-picture {
    width: 80px;
    height: 80px;
  }
  main.page-community .user-list .user .c,
  main.page-video .user-list .user .c,
  main.page-create-portfolio .user-list .user .c,
  main.page-create-network .user-list .user .c,
  main.page-portfolio .user-list .user .c,
  main.page-arrangement .user-list .user .c {
    margin: 9px 0 0 100px;
  }
}

.small-topics {
  width: 100%;
}

.small-topics tr td {
  border-bottom: 1px solid #ECEBEB;
  padding: 10px 0;
  vertical-align: middle;
}

.small-topics tr td.votes, .small-topics tr td.type {
  padding-right: 8px;
}

.small-topics tr td.votes, .small-topics tr td.type, .small-topics tr td.date {
  text-align: right;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #66666D;
}

.small-topics tr td.title {
  padding: 0;
}

.small-topics tr td.title a {
  display: block;
  color: #1E1C2F;
  font-size: 17px;
  line-height: 24px;
  padding: 10px 14px 10px 0;
}

.small-topics tr td.votes {
  padding-right: 18px;
  white-space: nowrap;
}

.small-topics tr td.votes strong {
  font-size: 16px;
  line-height: 23px;
  font-weight: normal;
}

.small-topics tr:first-of-type td {
  border-top: 1px solid #ECEBEB;
}

@media screen and (max-width: 599px) {
  .small-topics {
    display: block;
  }
  .small-topics tr,
  .small-topics tbody,
  .small-topics td,
  .small-topics th {
    display: block;
  }
  .small-topics tr {
    position: relative;
    clear: both;
    border-top: 1px solid #ECEBEB;
  }
  .small-topics tr td {
    border-top: 0;
    border-bottom: 0;
  }
  .small-topics tr td.votes {
    float: left;
  }
  .small-topics tr td.title {
    clear: both;
  }
  .small-topics tr td.title a {
    padding-top: 0;
  }
  .small-topics tr td.date {
    position: absolute;
    top: 0;
    right: 0;
  }
  .small-topics tr td.type {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .small-topics tr:first-of-type td {
    border-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .small-topics tr td.votes, .small-topics tr td.type {
    padding-right: 30px;
  }
  .small-topics tr td.title a {
    font-size: 20px;
    line-height: 28px;
    padding-right: 30px;
  }
  .small-topics tr td.votes {
    padding-right: 30px;
    width: 100px;
  }
}

main.page-videos,
main.page-video {
  padding: 25px 0;
}

main.page-videos h1,
main.page-video h1 {
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 18px;
}

main.page-videos .description,
main.page-video .description {
  font-size: 16px;
  line-height: 1.5;
  font-family: "PT Sans", sans-serif;
  margin: 30px 0 0;
}

main.page-videos .description p,
main.page-video .description p {
  margin-bottom: 1em;
}

main.page-videos .description ul,
main.page-video .description ul {
  margin-bottom: 1em;
}

main.page-videos .description ul li,
main.page-video .description ul li {
  list-style: disc;
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  main.page-videos,
  main.page-video {
    padding: 35px 0;
  }
  main.page-videos h1,
  main.page-video h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 25px;
  }
}

section.video-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 25px;
  grid-column-gap: 15px;
}

section.video-list .video {
  display: block;
  cursor: pointer;
}

section.video-list .video .video-layer {
  display: none;
}

section.video-list .video .pic {
  height: 100px;
  background: #3F3832 no-repeat center center;
  background-size: cover;
  position: relative;
}

section.video-list .video .pic:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/btn-play-large.svg) no-repeat center center;
  background-size: contain;
}

section.video-list .video .c {
  margin: 12px 0 0;
  font-family: "PT Sans", sans-serif;
}

section.video-list .video .c h2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  color: #1E1C2F;
  margin-bottom: 5px;
}

section.video-list .video .c small {
  display: block;
  font-size: 14px;
  color: #66666D;
}

@media screen and (max-width: 767px) {
  section.video-list .video.video-0 {
    grid-column: 1 / 3;
  }
  section.video-list .video.video-0 .pic {
    height: 180px;
  }
  section.video-list .video.video-0 .pic:before {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1019px) {
  section.video-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
    grid-column-gap: 20px;
  }
  section.video-list .video .c h2 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  section.video-list .video .pic {
    height: 150px;
  }
  section.video-list .video .pic:before {
    width: 60px;
    height: 60px;
  }
  section.video-list .video.video-0 {
    grid-column: 1 / 4;
  }
  section.video-list .video.video-0 .pic {
    height: 400px;
  }
  section.video-list .video.video-0 .pic:before {
    width: 86px;
    height: 86px;
  }
}

@media screen and (min-width: 1020px) {
  section.video-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-gap: 50px;
    grid-column-gap: 50px;
  }
  section.video-list .video .pic {
    height: 240px;
  }
  section.video-list .video .pic:before {
    width: 60px;
    height: 60px;
  }
  section.video-list .video.video-0 {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }
  section.video-list .video.video-0 .pic {
    height: 580px;
  }
  section.video-list .video.video-0 .pic:before {
    width: 90px;
    height: 90px;
  }
  section.video-list .video.video-3, section.video-list .video.video-13, section.video-list .video.video-23, section.video-list .video.video-33, section.video-list .video.video-43 {
    grid-column: 1 / 3;
  }
  section.video-list .video.video-3 .pic, section.video-list .video.video-13 .pic, section.video-list .video.video-23 .pic, section.video-list .video.video-33 .pic, section.video-list .video.video-43 .pic {
    height: 580px;
  }
  section.video-list .video.video-3 .pic:before, section.video-list .video.video-13 .pic:before, section.video-list .video.video-23 .pic:before, section.video-list .video.video-33 .pic:before, section.video-list .video.video-43 .pic:before {
    width: 80px;
    height: 80px;
  }
  section.video-list .video.video-3 {
    grid-row: 3 / 5;
  }
  section.video-list .video.video-13 {
    grid-row: 7 / 9;
  }
  section.video-list .video.video-23 {
    grid-row: 11 / 13;
  }
  section.video-list .video.video-33 {
    grid-row: 15 / 17;
  }
  section.video-list .video.video-43 {
    grid-row: 19 / 21;
  }
  section.video-list .video.video-8, section.video-list .video.video-18, section.video-list .video.video-28, section.video-list .video.video-38, section.video-list .video.video-48 {
    grid-column: 3 / 5;
  }
  section.video-list .video.video-8 .pic, section.video-list .video.video-18 .pic, section.video-list .video.video-28 .pic, section.video-list .video.video-38 .pic, section.video-list .video.video-48 .pic {
    height: 580px;
  }
  section.video-list .video.video-8 .pic:before, section.video-list .video.video-18 .pic:before, section.video-list .video.video-28 .pic:before, section.video-list .video.video-38 .pic:before, section.video-list .video.video-48 .pic:before {
    width: 80px;
    height: 80px;
  }
  section.video-list .video.video-8 {
    grid-row: 5 / 7;
  }
  section.video-list .video.video-18 {
    grid-row: 9 / 11;
  }
  section.video-list .video.video-28 {
    grid-row: 13 / 15;
  }
  section.video-list .video.video-38 {
    grid-row: 17 / 19;
  }
  section.video-list .video.video-48 {
    grid-row: 21 / 23;
  }
}

.video-layer {
  position: relative;
  padding: 4px;
  width: 100%;
  max-width: 980px;
  margin: 20px auto;
  border-radius: 6px;
}

.video-layer stream {
  max-width: 100%;
}

.video-layer .mfp-close {
  border-radius: 50%;
  opacity: 1;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 22px;
  background: white;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 500;
}

@media screen and (min-width: 768px) {
  .video-layer {
    padding: 20px;
    background: white;
  }
  .video-layer .mfp-close {
    right: 20px;
    top: 20px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 28px;
  }
}

main.page-video {
  padding: 0;
}

main.page-video .hl a {
  float: right;
  margin: 10px 0 12px 20px;
}

main.page-video .video stream {
  max-width: 100%;
}

main.page-video .new-comment .inp .wysiwyg .editor {
  height: 140px;
}

.video-loop {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 -10px;
}

.video-loop .video {
  display: inline-block;
  cursor: pointer;
  width: 230px;
  padding: 0 0 0 10px;
}

.video-loop .video .pic {
  height: 130px;
  background: #3F3832 no-repeat center center;
  background-size: cover;
  position: relative;
}

.video-loop .video .pic:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/btn-play-large.svg) no-repeat center center;
  background-size: contain;
}

.video-loop .video .c {
  margin: 12px 0 0;
  font-family: "PT Sans", sans-serif;
}

.video-loop .video .c h2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  color: #1E1C2F;
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-loop .video .c small {
  display: block;
  font-size: 14px;
  color: #66666D;
}

@media screen and (min-width: 1020px) {
  .video-loop {
    overflow-x: hidden;
    margin: 0 -15px;
  }
  .video-loop .video {
    width: 349px;
    padding: 0 15px;
  }
  .video-loop .video .pic {
    height: 200px;
  }
  .video-loop .video .pic:before {
    width: 60px;
    height: 60px;
  }
}

.image-drop-area {
  border: 1px solid #DFDEDE;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAHElEQVQYV2NkYGCQYmBgeMYABYwwBjYBsEoMFQBPvgIFqyjoxwAAAABJRU5ErkJggg==) repeat;
  min-height: 120px;
}

.image-drop-area input.input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.image-drop-area span {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 80%;
  padding: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #66666D;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .5px;
}

.image-drop-results {
  display: none;
  border: 1px solid #DFDEDE;
  border-top: none;
  padding: 10px;
  background: white;
  overflow: hidden;
  position: relative;
}

.image-drop-results .image {
  padding: 10px;
  float: left;
  width: 50%;
  position: relative;
}

.image-drop-results .image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.image-drop-results .image span {
  position: absolute;
  top: 20px;
  z-index: 3;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  background: white no-repeat center center;
  background-size: 12px auto;
}

.image-drop-results .image span.set-main {
  left: 20px;
  background-image: url(/img/ic-checkmark.svg);
}

.image-drop-results .image span.delete {
  right: 20px;
  background-image: url(/img/ic-delete.svg);
}

.image-drop-results .image.is-main span.set-main {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.image-drop-results.show {
  display: block;
}

@media screen and (min-width: 768px) {
  .image-drop-results .image {
    width: 33.33333%;
  }
}

main.page-studio {
  border-top: 1px solid #ECEBEB;
}

main.page-studio section.canvas {
  position: relative;
  height: 100vh;
  height: calc(100vh - 64px - 1px);
}

main.page-studio section.canvas .draw {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

main.page-studio section.canvas .multi-select {
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 7;
  display: none;
}

main.page-studio section.canvas .multi-select .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 123px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #ECEBEB;
}

main.page-studio section.canvas .multi-select .move {
  position: absolute;
  right: 15px;
  top: 21px;
  width: 120px;
  height: 80px;
  z-index: 2;
}

main.page-studio section.canvas .multi-select .move i {
  border: 1px solid #939398;
  border-radius: 2px;
  width: 30px;
  height: 26px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: block;
  position: absolute;
  background: white;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity, background;
  transition-property: opacity, background;
}

main.page-studio section.canvas .multi-select .move i:before {
  content: '';
  display: block;
  width: 28px;
  height: 24px;
  background: url(/img/ic-gallery-next.svg) no-repeat center center;
  background-size: 15px auto;
  opacity: .8;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity, background;
  transition-property: opacity, background;
}

html.no-touchevents main.page-studio section.canvas .multi-select .move i:hover {
  background-color: #F6F5FB;
}

html.no-touchevents main.page-studio section.canvas .multi-select .move i:hover:before {
  opacity: 1;
}

main.page-studio section.canvas .multi-select .move i.top, main.page-studio section.canvas .multi-select .move i.bottom {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

main.page-studio section.canvas .multi-select .move i.left, main.page-studio section.canvas .multi-select .move i.right {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.page-studio section.canvas .multi-select .move i.top {
  top: 0;
}

main.page-studio section.canvas .multi-select .move i.top:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

main.page-studio section.canvas .multi-select .move i.right {
  right: 0;
}

main.page-studio section.canvas .multi-select .move i.bottom {
  bottom: 0;
}

main.page-studio section.canvas .multi-select .move i.bottom:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

main.page-studio section.canvas .multi-select .move i.left {
  left: 0;
}

main.page-studio section.canvas .multi-select .move i.left:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

main.page-studio section.canvas .multi-select .actions {
  position: absolute;
  left: 7px;
  top: 90px;
}

main.page-studio section.canvas .multi-select .finished {
  position: absolute;
  left: 15px;
  top: 10px;
  z-index: 2;
}

main.page-studio section.canvas .multi-select .finished strong {
  display: block;
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: normal;
}

@media screen and (min-width: 1020px) {
  main.page-studio section.canvas .multi-select .move {
    right: 20px;
  }
  main.page-studio section.canvas .multi-select .actions {
    left: 50%;
    top: 51px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  main.page-studio section.canvas .multi-select .finished {
    left: 20px;
    top: 16px;
  }
  main.page-studio section.canvas .multi-select .finished strong {
    margin-bottom: 27px;
  }
}

main.page-studio section.canvas .desktop-flying-menu {
  display: none;
  position: absolute;
  left: 15px;
  top: 17px;
  padding: 8px 5px;
  background: white;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  white-space: nowrap;
  z-index: 6;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main.page-studio section.canvas .desktop-flying-menu span,
main.page-studio section.canvas .desktop-flying-menu i {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main.page-studio section.canvas .desktop-flying-menu i {
  width: 40px;
  background: no-repeat center center;
  background-size: contain;
}

main.page-studio section.canvas .desktop-flying-menu i.undo {
  background-image: url(/img/ic-undo.svg);
}

main.page-studio section.canvas .desktop-flying-menu i.redo {
  background-image: url(/img/ic-redo.svg);
}

main.page-studio section.canvas .desktop-flying-menu i.zoom-in {
  background-image: url(/img/ic-zoom-in.svg);
}

main.page-studio section.canvas .desktop-flying-menu i.zoom-out {
  background-image: url(/img/ic-zoom-out.svg);
}

main.page-studio section.canvas .desktop-flying-menu i.inactive {
  opacity: .2;
  cursor: default;
}

main.page-studio section.canvas .desktop-flying-menu span {
  padding: 0 12px;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
}

main.page-studio section.canvas .desktop-flying-menu span.layers {
  margin-left: 4px;
}

main.page-studio section.canvas .mobile-save-link,
main.page-studio section.canvas .mobile-layers-link {
  position: fixed;
  bottom: 33px;
  right: 5px;
  height: 30px;
  line-height: 20px;
  padding: 5px;
  font-family: "PT Sans", sans-serif;
  background: white;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 5;
}

main.page-studio section.canvas .mobile-layers-link {
  right: auto;
  left: 5px;
}

main.page-studio section.canvas .mobile-flying-menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main.page-studio section.canvas .mobile-flying-menu i {
  display: inline-block;
  margin: 0 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white no-repeat center center;
  background-size: 18px auto;
  cursor: pointer;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main.page-studio section.canvas .mobile-flying-menu i.inactive {
  opacity: .2;
  cursor: default;
}

main.page-studio section.canvas .mobile-flying-menu i.add {
  width: 56px;
  height: 56px;
  background-image: url(/img/ic-add.svg);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

main.page-studio section.canvas .mobile-flying-menu i.undo {
  background-image: url(/img/ic-undo.svg);
}

main.page-studio section.canvas .mobile-flying-menu i.redo {
  background-image: url(/img/ic-redo.svg);
}

main.page-studio section.canvas .empty-message {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 230px;
  text-align: center;
}

main.page-studio section.canvas .empty-message .hl {
  font-size: 28px;
  line-height: 39px;
  color: #3F3832;
  margin-bottom: 6px;
}

main.page-studio section.canvas .empty-message p {
  font-size: 13px;
  line-height: 17px;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
}

main.page-studio section.canvas .selection-info {
  display: none;
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 13px;
  text-align: right;
  padding: 3px 8px;
  background: white;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

main.page-studio section.canvas .selection-info .common {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

main.page-studio section.canvas .selection-info .botanical {
  font-size: 19px;
  line-height: 27px;
  font-style: italic;
  font-weight: normal;
}

main.page-studio section.canvas .selection-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  line-height: 67px;
  border-top: 1px solid #ECEBEB;
  background: white;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  z-index: 6;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main.page-studio section.canvas .selection-actions i,
main.page-studio section.canvas .multi-select .actions i {
  display: inline-block;
  height: 20px;
  width: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

main.page-studio section.canvas .selection-actions i:before,
main.page-studio section.canvas .multi-select .actions i:before {
  content: '';
  display: block;
  height: 20px;
  width: 30px;
  background: no-repeat center center;
  background-size: contain;
}

@media screen and (min-width: 375px) {
  main.page-studio section.canvas .selection-actions i,
  main.page-studio section.canvas .multi-select .actions i {
    width: 36px;
  }
  main.page-studio section.canvas .selection-actions i:before,
  main.page-studio section.canvas .multi-select .actions i:before {
    width: 36px;
  }
}

@media screen and (min-width: 410px) {
  main.page-studio section.canvas .selection-actions i,
  main.page-studio section.canvas .multi-select .actions i {
    width: 40px;
  }
  main.page-studio section.canvas .selection-actions i:before,
  main.page-studio section.canvas .multi-select .actions i:before {
    width: 40px;
  }
}

main.page-studio section.canvas .selection-actions i small,
main.page-studio section.canvas .multi-select .actions i small {
  display: none;
  position: absolute;
  background: white;
  border-radius: 3px;
  top: 0;
  left: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 7px 6px;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  opacity: 0;
  -webkit-transform: translate(-50%, 0%) scale(0);
          transform: translate(-50%, 0%) scale(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  color: #3F3832;
  font-family: "PT Sans", sans-serif;
  white-space: nowrap;
  text-transform: uppercase;
}

html.no-touchevents main.page-studio section.canvas .selection-actions i small, html.no-touchevents
main.page-studio section.canvas .multi-select .actions i small {
  display: block;
}

html.no-touchevents main.page-studio section.canvas .selection-actions i:hover small, html.no-touchevents
main.page-studio section.canvas .multi-select .actions i:hover small {
  opacity: 1;
  -webkit-transform: translate(-50%, -150%) scale(1);
          transform: translate(-50%, -150%) scale(1);
}

main.page-studio section.canvas .selection-actions i.copy:before,
main.page-studio section.canvas .multi-select .actions i.copy:before {
  background-image: url(/img/ic-duplicate.svg);
}

main.page-studio section.canvas .selection-actions i.crop:before,
main.page-studio section.canvas .multi-select .actions i.crop:before {
  background-image: url(/img/ic-crop.svg);
}

main.page-studio section.canvas .selection-actions i.eraser:before,
main.page-studio section.canvas .multi-select .actions i.eraser:before {
  background-image: url(/img/ic-eraser.svg);
}

main.page-studio section.canvas .selection-actions i.mirror:before,
main.page-studio section.canvas .multi-select .actions i.mirror:before {
  background-image: url(/img/ic-mirror-horizontal.svg);
}

main.page-studio section.canvas .selection-actions i.rotate-left:before,
main.page-studio section.canvas .multi-select .actions i.rotate-left:before {
  background-image: url(/img/ic-mirror-vertikal.svg);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

main.page-studio section.canvas .selection-actions i.rotate-right:before,
main.page-studio section.canvas .multi-select .actions i.rotate-right:before {
  background-image: url(/img/ic-mirror-vertikal.svg);
}

main.page-studio section.canvas .selection-actions i.z-up:before,
main.page-studio section.canvas .multi-select .actions i.z-up:before {
  background-image: url(/img/ic-layer-up.svg);
}

main.page-studio section.canvas .selection-actions i.z-down:before,
main.page-studio section.canvas .multi-select .actions i.z-down:before {
  background-image: url(/img/ic-layer-down.svg);
}

main.page-studio section.canvas .selection-actions i.destroy:before,
main.page-studio section.canvas .multi-select .actions i.destroy:before {
  background-image: url(/img/ic-delete.svg);
}

main.page-studio section.canvas.node-selected .mobile-flying-menu,
main.page-studio section.canvas.node-selected .mobile-save-link,
main.page-studio section.canvas.node-selected .mobile-layers-link {
  display: none;
}

main.page-studio section.canvas.node-selected .selection-actions {
  display: block;
}

main.page-studio section.canvas.node-selected .selection-info {
  z-index: 3;
}

main.page-studio section.canvas.node-selected.node-vase-selected .selection-actions i.crop, main.page-studio section.canvas.node-selected.node-vase-selected .selection-actions i.rotate-left, main.page-studio section.canvas.node-selected.node-vase-selected .selection-actions i.rotate-right, main.page-studio section.canvas.node-selected.node-vase-selected .selection-actions i.eraser, main.page-studio section.canvas.node-selected.node-vase-selected .selection-actions i.mirror {
  display: none;
}

main.page-studio section.canvas.multi-select-active .desktop-flying-menu,
main.page-studio section.canvas.multi-select-active .selection-info,
main.page-studio section.canvas.multi-select-active .selection-actions,
main.page-studio section.canvas.multi-select-active .mobile-save-link,
main.page-studio section.canvas.multi-select-active .mobile-layers-link {
  display: none;
}

main.page-studio section.canvas.multi-select-active .multi-select {
  display: block;
}

main.page-studio section.canvas.is-empty {
  background: url(/img/empty-canvas.png) no-repeat center center;
  background-size: auto 360px;
}

main.page-studio section.canvas.is-empty .mobile-save-link,
main.page-studio section.canvas.is-empty .mobile-layers-link {
  display: none;
}

main.page-studio section.canvas.is-empty .empty-message {
  display: block;
}

@media screen and (min-width: 1020px) {
  main.page-studio section.canvas {
    height: 100vh;
    height: calc(100vh - 76px - 1px);
    margin-left: 500px;
  }
  main.page-studio section.canvas .desktop-flying-menu {
    display: block;
  }
  main.page-studio section.canvas .mobile-flying-menu,
  main.page-studio section.canvas .mobile-save-link,
  main.page-studio section.canvas .mobile-layers-link {
    display: none;
  }
  main.page-studio section.canvas .empty-message .hl {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  main.page-studio section.canvas .selection-actions {
    border-top: 0;
    left: 500px;
  }
  main.page-studio section.canvas.node-selected .selection-info {
    display: block;
  }
  main.page-studio section.canvas.is-empty {
    background-size: auto 540px;
  }
  main.page-studio section.canvas.is-empty .desktop-flying-menu {
    display: none;
  }
}

main.page-studio section.selection {
  display: none;
  position: fixed;
  background: white;
  z-index: 550;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
}

main.page-studio section.selection .mobile-headline {
  height: 64px;
  line-height: 64px;
  border-bottom: 1px solid #ECEBEB;
  text-align: center;
  color: #3F3832;
  position: relative;
}

main.page-studio section.selection .mobile-headline .headline {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

main.page-studio section.selection .mobile-headline .cancel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-family: "PT Sans", sans-serif;
  height: 64px;
  line-height: 44px;
  cursor: pointer;
  float: right;
  font-size: 15px;
  padding: 10px 20px;
}

main.page-studio section.selection .tabs {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 8px 0;
}

main.page-studio section.selection .tabs li {
  display: block;
  float: left;
  width: 50%;
  padding: 0 5px;
}

main.page-studio section.selection .tabs li span {
  display: inline-block;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 26px;
  color: #3F3832;
  padding: 8px 15px;
  position: relative;
  font-family: "PT Sans", sans-serif;
  text-transform: uppercase;
}

main.page-studio section.selection .tabs li span:after {
  content: '';
  display: none;
  height: 1px;
  background: #3F3832;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  margin-top: 12px;
}

main.page-studio section.selection .tabs li.active span:after {
  display: block;
}

@media screen and (min-width: 600px) {
  main.page-studio section.selection .tabs li {
    width: auto;
  }
}

main.page-studio section.selection .search {
  padding: 4px 20px 20px;
  border-bottom: 1px solid #ECEBEB;
}

main.page-studio section.selection .search .field {
  position: relative;
}

main.page-studio section.selection .search .field input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  border: 1px solid #ECEBEB;
  border-radius: 2px;
  padding: 0 50px 0 10px;
  color: #3F3832;
  font-family: "PT Sans", sans-serif;
}

main.page-studio section.selection .search .field input:focus {
  outline: none;
}

main.page-studio section.selection .search .field:after {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(/img/search.svg) no-repeat center center;
  background-size: 17px auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.page-studio section.selection .results {
  display: block;
}

main.page-studio section.selection .results > li {
  display: none;
  padding: 20px 0;
}

main.page-studio section.selection .results > li.active {
  display: block;
}

main.page-studio section.selection .results > li .filter-flowers {
  margin: 0;
  padding: 0 20px 20px;
  border-bottom: 1px solid #ECEBEB;
}

main.page-studio section.selection .results > li .flowers {
  display: block;
}

main.page-studio section.selection .results > li .flowers > li {
  display: block;
  float: left;
  width: 25%;
  margin: 0 0 30px;
}

main.page-studio section.selection .results > li .flowers > li img {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

main.page-studio section.selection .results > li .flowers > li.empty-list {
  float: none;
  width: 100%;
  text-align: center;
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
  padding: 10px 20px 0;
  line-height: 1.5;
  color: #66666D;
}

main.page-studio section.selection .results > li .flowers > li.filter-list {
  float: none;
  width: 100%;
  margin-bottom: 20px;
}

main.page-studio section.selection .results > li .flowers > li.filter-list .cat-filter {
  border-radius: 8px;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  border: 1px solid #DFDEDE;
  display: inline-block;
  height: 25px;
  line-height: 23px;
  padding: 0 9px;
  margin: 0 3px 8px 0;
  cursor: pointer;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: border, background, color;
  transition-property: border, background, color;
}

html.no-touchevents main.page-studio section.selection .results > li .flowers > li.filter-list .cat-filter:hover {
  border-color: #939398;
}

main.page-studio section.selection .results > li .flowers > li.filter-list .cat-filter.active {
  border-color: #1E1C2F;
  background: #1E1C2F;
  color: white;
}

main.page-studio section.selection .results > li .flowers > li.is-hidden, main.page-studio section.selection .results > li .flowers > li.filtered {
  display: none;
}

main.page-studio section.selection .results > li .flowers.with-name {
  padding: 0 10px;
}

main.page-studio section.selection .results > li .flowers.with-name > li {
  width: 33.33333%;
  padding: 0 10px;
}

main.page-studio section.selection .results > li .flowers.with-name > li img {
  -o-object-position: center center;
     object-position: center center;
}

main.page-studio section.selection .results > li .flowers.with-name > li b {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "PT Sans", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  color: #3F3832;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item {
  float: none;
  position: relative;
  width: auto;
  display: block;
  margin: 0 -10px 24px;
  padding: 0 20px 20px;
  border-bottom: 1px solid #ECEBEB;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .color-picker {
  margin: 20px 0 0;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .color-picker em {
  display: inline-block;
  font-style: normal;
  color: #3F3832;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .color-picker input[type=color] {
  display: inline-block;
  width: 60px;
  height: 36px;
  vertical-align: middle;
  margin: 0 0 0 8px;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .own-background-uploader {
  position: relative;
}

main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .own-background-uploader input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

main.page-studio section.selection .results > li .flowers.with-name > li.filter-list, main.page-studio section.selection .results > li .flowers.with-name > li.empty-list {
  float: none;
  width: 100%;
}

main.page-studio section.selection .results > li .flowers.with-filter {
  padding-top: 30px;
}

main.page-studio section.selection .results > li .flowers.with-filter.with-name b {
  margin-top: 10px;
}

main.page-studio section.selection .results > li .flowers.with-filter.with-name img {
  -o-object-position: center bottom;
     object-position: center bottom;
}

main.page-studio section.selection.show {
  display: block;
}

@media screen and (min-width: 1020px) {
  main.page-studio section.selection {
    display: block;
    position: absolute;
    top: 77px;
    left: 0;
    right: auto;
    width: 500px;
    height: calc(100vh - 76px - 1px);
    border-right: 1px solid #ECEBEB;
    z-index: 480;
    overflow-y: hidden;
  }
  main.page-studio section.selection .mobile-headline {
    display: none;
  }
  main.page-studio section.selection .results > li .flowers {
    overflow-y: auto;
    height: calc(100vh - 76px - 58px - 65px - 77px);
  }
  main.page-studio section.selection .results > li .flowers > li {
    width: 20%;
  }
  main.page-studio section.selection .results > li .flowers > li img {
    height: 110px;
  }
  main.page-studio section.selection .results > li .flowers.with-name > li.upload-item {
    width: auto;
  }
  main.page-studio section.selection .results > li .flowers.with-name > li.upload-item .color-picker {
    position: absolute;
    right: 20px;
    top: 0;
    margin: 0;
  }
  main.page-studio section.selection .results > li .flowers.with-name.with-filter > li {
    width: 25%;
  }
  main.page-studio section.selection .results > li.vase-results .flowers, main.page-studio section.selection .results > li.background-results .flowers, main.page-studio section.selection .results > li.plant-results .flowers {
    height: calc(100vh - 76px - 58px - 65px);
  }
}

main.page-studio section.filter {
  display: block;
  position: fixed;
  opacity: 1;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow-y: scroll;
  background-color: rgba(63, 56, 50, 0.31);
  -webkit-overflow-scrolling: touch;
  z-index: 600;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

main.page-studio section.filter .inner {
  position: absolute;
  left: -100%;
  width: 100%;
  max-width: 300px;
  min-height: 100%;
  background: white;
  padding: 0;
  margin: 0;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

main.page-studio section.filter .headline {
  height: 64px;
  line-height: 64px;
  border-bottom: 1px solid #ECEBEB;
  position: relative;
  font-size: 16px;
  padding: 0 20px;
  font-family: "PT Sans", sans-serif;
}

main.page-studio section.filter .headline .close {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), black 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%), linear-gradient(to top right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), black 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%);
}

main.page-studio section.filter .flower-filter {
  display: block;
}

main.page-studio section.filter .flower-filter * {
  display: block;
}

main.page-studio section.filter .flower-filter .only-mobile {
  display: none;
}

main.page-studio section.filter .flower-filter > li {
  border-bottom: 1px solid #ECEBEB;
}

main.page-studio section.filter .flower-filter > li > h4 {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 0 20px;
  position: relative;
  text-transform: uppercase;
}

main.page-studio section.filter .flower-filter > li > h4:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url(/img/ic-down.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

main.page-studio section.filter .flower-filter > li > ul {
  display: none;
  padding: 0 0 20px;
}

main.page-studio section.filter .flower-filter > li > ul > li > a,
main.page-studio section.filter .flower-filter > li > ul > li > strong {
  padding: 8px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
}

main.page-studio section.filter .flower-filter > li > ul > li > a small,
main.page-studio section.filter .flower-filter > li > ul > li > strong small {
  float: right;
  margin-left: 6px;
  color: #66666D;
}

main.page-studio section.filter .flower-filter > li > ul > li > a.has-color-circle,
main.page-studio section.filter .flower-filter > li > ul > li > strong.has-color-circle {
  margin-left: 20px;
}

main.page-studio section.filter .flower-filter > li > ul > li > a.filter-selected,
main.page-studio section.filter .flower-filter > li > ul > li > strong.filter-selected {
  font-weight: bold;
}

main.page-studio section.filter .flower-filter > li > ul > li > a:hover {
  text-decoration: underline;
}

main.page-studio section.filter .flower-filter > li.is-open > h4:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

main.page-studio section.filter .flower-filter > li.is-open > ul {
  display: block;
}

main.page-studio section.filter.show {
  opacity: 1;
  left: 0;
}

main.page-studio section.filter.show .inner {
  left: 0;
}

main.page-studio .layers-flyout {
  position: fixed;
  width: 300px;
  top: 0;
  right: -360px;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
  background: white;
  z-index: 600;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: .75s;
          transition-duration: .75s;
}

main.page-studio .layers-flyout.show {
  right: 0;
}

main.page-studio .layers-flyout .title {
  text-transform: uppercase;
  line-height: 28px;
  font-size: 22px;
  padding: 15px;
  text-align: center;
  background: #F6F5FB;
}

main.page-studio .layers-flyout .inp.checkbox {
  margin: 20px 27px 25px;
}

main.page-studio .layers-flyout .layers {
  display: block;
}

main.page-studio .layers-flyout .layers li {
  display: block;
  border-bottom: 1px solid #DFDEDE;
  padding: 15px 0;
  margin: 0 15px;
}

main.page-studio .layers-flyout .layers li:last-child {
  border-bottom: 0;
}

main.page-studio .layers-flyout .layers li img {
  width: 80px;
  height: auto;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  float: left;
}

main.page-studio .layers-flyout .layers li .c {
  margin: 0 0 0 98px;
}

main.page-studio .layers-flyout .layers li .c strong {
  display: block;
  font-size: 19px;
  line-height: 26px;
  font-weight: bold;
}

main.page-studio .layers-flyout .layers li .c small {
  display: block;
  font-size: 18px;
  line-height: 25px;
  font-style: italic;
}

main.page-studio .layers-flyout .layers li .c .btns {
  margin-top: 12px;
}

main.page-studio .layers-flyout .layers li .c .btns .btn {
  margin-right: 12px;
}

main.page-studio .layers-flyout .layers li .c .btns .option {
  width: 34px;
  height: 36px;
  border: none;
  background: no-repeat center center;
  background-size: auto 18px;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

body.multi-select-active main.page-studio .layers-flyout .layers li .c .btns .option {
  display: none;
}

main.page-studio .layers-flyout .layers li .c .btns .option:focus {
  outline: none;
}

main.page-studio .layers-flyout .layers li .c .btns .option.z-up {
  background-image: url(/img/ic-layer-up.svg);
}

main.page-studio .layers-flyout .layers li .c .btns .option.z-down {
  background-image: url(/img/ic-layer-down.svg);
}

@media screen and (min-width: 1020px) {
  main.page-studio .layers-flyout {
    width: 340px;
  }
  main.page-studio .layers-flyout .title {
    line-height: 34px;
    font-size: 26px;
    padding: 20px;
  }
  main.page-studio .layers-flyout .layers {
    display: block;
  }
  main.page-studio .layers-flyout .layers li {
    padding: 20px 0;
    margin: 0 20px;
  }
}

main.page-studio .public-layer-background {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.5);
  overflow-y: auto;
  display: none;
  opacity: 0;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

main.page-studio .public-layer-background .studio-public-layer {
  margin: 105vh auto 0;
  max-width: 820px;
  min-height: 50vh;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 20px 15px;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-property: margin;
  transition-property: margin;
}

main.page-studio .public-layer-background .studio-public-layer .pic {
  float: right;
  width: 110px;
  margin: 0 0 10px 15px;
}

main.page-studio .public-layer-background .studio-public-layer .pic .putnams {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  shape-outside: circle();
  border-radius: 50%;
  background: white;
  margin: 0;
  padding: 2px;
  border: 2px solid #1E1C2F;
}

main.page-studio .public-layer-background .studio-public-layer .pic .legal {
  text-align: center;
  font-size: 10px;
  margin: 5px 0 0;
}

main.page-studio .public-layer-background .studio-public-layer .pic .legal a {
  color: #66666D;
}

main.page-studio .public-layer-background .studio-public-layer .title {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 15px;
}

main.page-studio .public-layer-background .studio-public-layer .descr {
  font-size: 17px;
  line-height: 1.45;
  font-family: "PT Sans", sans-serif;
}

main.page-studio .public-layer-background .studio-public-layer .go {
  margin: 14px 0 0;
}

main.page-studio .public-layer-background .studio-public-layer .go .btn {
  text-align: center;
}

main.page-studio .public-layer-background .studio-public-layer .go.go-second .btn {
  margin-bottom: 10px;
}

main.page-studio .public-layer-background .studio-public-layer .more {
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
  margin: 30px 0 16px;
}

main.page-studio .public-layer-background .studio-public-layer ul.benefits li {
  background-image: url(/img/ic-checkmark-green.svg);
  background-size: 24px auto;
  background-position: 0 1px;
}

main.page-studio .public-layer-background .studio-public-layer .quotes blockquote {
  display: block;
  margin: 0 0 14px;
  line-height: 1.4;
  font-size: 16px;
  color: #3F3832;
  font-family: "PT Sans", sans-serif;
}

main.page-studio .public-layer-background .studio-public-layer .quotes blockquote span {
  font-style: italic;
  color: #66666D;
  font-size: 17px;
}

main.page-studio .public-layer-background .studio-public-layer .iframe-wrapper {
  margin-bottom: 22px;
}

main.page-studio .public-layer-background .studio-public-layer .more-infos {
  text-align: center;
  font-size: 15px;
  margin: 16px 0 0;
}

main.page-studio .public-layer-background .studio-public-layer .more-infos a {
  display: inline-block;
  color: #3F3832;
}

main.page-studio .public-layer-background.show {
  display: block;
}

main.page-studio .public-layer-background.visible {
  opacity: 1;
}

main.page-studio .public-layer-background.visible .studio-public-layer {
  margin-top: 50vh;
}

@media screen and (min-width: 768px) {
  main.page-studio .public-layer-background .studio-public-layer {
    padding: 60px 60px 40px;
  }
  main.page-studio .public-layer-background .studio-public-layer .pic {
    width: 220px;
    margin-left: 30px;
  }
  main.page-studio .public-layer-background .studio-public-layer .pic .putnams {
    width: 220px;
    height: 220px;
    padding: 3px;
    border-width: 3px;
  }
  main.page-studio .public-layer-background .studio-public-layer .title {
    font-size: 44px;
  }
  main.page-studio .public-layer-background .studio-public-layer .descr {
    font-size: 22px;
    max-width: 420px;
    margin-bottom: 24px;
  }
  main.page-studio .public-layer-background .studio-public-layer .go .btn {
    height: 50px;
    line-height: 48px;
    font-size: 18px;
    padding: 0 30px;
  }
  main.page-studio .public-layer-background .studio-public-layer .go.go-first .btn {
    height: 54px;
    line-height: 52px;
    font-size: 20px;
    padding: 0 40px;
  }
  main.page-studio .public-layer-background .studio-public-layer .go.go-second {
    margin-top: 32px;
  }
  main.page-studio .public-layer-background .studio-public-layer .go.go-second .btn {
    float: left;
    margin-right: 15px;
  }
  main.page-studio .public-layer-background .studio-public-layer .more {
    font-size: 30px;
    margin-top: 70px;
  }
  main.page-studio .public-layer-background .studio-public-layer .benefits {
    font-size: 19px;
  }
  main.page-studio .public-layer-background .studio-public-layer .quotes blockquote {
    margin: 20px 0;
    font-size: 19px;
  }
  main.page-studio .public-layer-background .studio-public-layer .quotes blockquote span {
    font-size: 21px;
  }
  main.page-studio .public-layer-background.visible .studio-public-layer {
    margin-top: 40vh;
    min-height: 60vh;
  }
}

@media screen and (min-width: 1020px) {
  body.studio-page .wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

.arrangement-list,
.portfolio-list {
  margin: 0 -10px;
}

.arrangement-list .arrangement,
.arrangement-list .portfolio,
.portfolio-list .arrangement,
.portfolio-list .portfolio {
  display: block;
  padding: 10px;
  float: left;
  width: 50%;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.arrangement-list .arrangement img,
.arrangement-list .portfolio img,
.portfolio-list .arrangement img,
.portfolio-list .portfolio img {
  display: block;
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2px;
  margin: 0 0 12px;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
}

.arrangement-list .arrangement .title,
.arrangement-list .portfolio .title,
.portfolio-list .arrangement .title,
.portfolio-list .portfolio .title {
  display: block;
  font-weight: bold;
  margin: 0 0 4px;
}

.arrangement-list .arrangement .hearts,
.arrangement-list .portfolio .hearts,
.portfolio-list .arrangement .hearts,
.portfolio-list .portfolio .hearts {
  display: block;
  color: #66666D;
}

.arrangement-list .arrangement .hearts:after,
.arrangement-list .portfolio .hearts:after,
.portfolio-list .arrangement .hearts:after,
.portfolio-list .portfolio .hearts:after {
  content: '';
  display: inline-block;
  vertical-align: sub;
  width: 14px;
  height: 14px;
  background: url(/img/ic-heart.svg) no-repeat center bottom;
  background-size: contain;
  margin-left: 4px;
}

.arrangement-list .arrangement:nth-child(odd),
.arrangement-list .portfolio:nth-child(odd),
.portfolio-list .arrangement:nth-child(odd),
.portfolio-list .portfolio:nth-child(odd) {
  clear: both;
}

.arrangement-list .portfolio img,
.portfolio-list .portfolio img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 120px;
}

@media screen and (min-width: 768px) {
  .arrangement-list .arrangement,
  .arrangement-list .portfolio,
  .portfolio-list .arrangement,
  .portfolio-list .portfolio {
    width: 25%;
  }
  .arrangement-list .arrangement:nth-child(odd),
  .arrangement-list .portfolio:nth-child(odd),
  .portfolio-list .arrangement:nth-child(odd),
  .portfolio-list .portfolio:nth-child(odd) {
    clear: none;
  }
  .arrangement-list .arrangement:nth-child(4n + 1),
  .arrangement-list .portfolio:nth-child(4n + 1),
  .portfolio-list .arrangement:nth-child(4n + 1),
  .portfolio-list .portfolio:nth-child(4n + 1) {
    clear: both;
  }
  .arrangement-list .portfolio,
  .portfolio-list .portfolio {
    width: 33.33333%;
  }
  .arrangement-list .portfolio:nth-child(4n + 1),
  .portfolio-list .portfolio:nth-child(4n + 1) {
    clear: none;
  }
  .arrangement-list .portfolio:nth-child(3n + 1),
  .portfolio-list .portfolio:nth-child(3n + 1) {
    clear: both;
  }
}

@media screen and (min-width: 1020px) {
  .arrangement-list,
  .portfolio-list {
    margin: 0 -20px;
  }
  .arrangement-list .arrangement,
  .arrangement-list .portfolio,
  .portfolio-list .arrangement,
  .portfolio-list .portfolio {
    padding: 15px 20px 25px;
  }
  .arrangement-list .arrangement img,
  .arrangement-list .portfolio img,
  .portfolio-list .arrangement img,
  .portfolio-list .portfolio img {
    height: 202px;
  }
  html.no-touchevents .arrangement-list .arrangement:hover img, html.no-touchevents
  .arrangement-list .portfolio:hover img, html.no-touchevents
  .portfolio-list .arrangement:hover img, html.no-touchevents
  .portfolio-list .portfolio:hover img {
    -webkit-filter: saturate(1.1);
            filter: saturate(1.1);
  }
  .arrangement-list.bigger .arrangement,
  .portfolio-list.bigger .arrangement {
    width: 16.666666%;
  }
  .arrangement-list.bigger .arrangement:nth-child(4n + 1),
  .portfolio-list.bigger .arrangement:nth-child(4n + 1) {
    clear: none;
  }
  .arrangement-list.bigger .arrangement:nth-child(6n + 1),
  .portfolio-list.bigger .arrangement:nth-child(6n + 1) {
    clear: both;
  }
  .arrangement-list.bigger .portfolio,
  .portfolio-list.bigger .portfolio {
    width: 25%;
  }
  .arrangement-list.bigger .portfolio:nth-child(3n + 1),
  .portfolio-list.bigger .portfolio:nth-child(3n + 1) {
    clear: none;
  }
  .arrangement-list.bigger .portfolio:nth-child(4n + 1),
  .portfolio-list.bigger .portfolio:nth-child(4n + 1) {
    clear: both;
  }
}

main.page-arrangement {
  padding: 0;
}

main.page-arrangement h1 {
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 18px;
  text-align: center;
}

main.page-arrangement h1 a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #939398;
}

main.page-arrangement .image-loading {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #939398;
  margin: 16px auto 35px;
  text-align: center;
  max-width: 460px;
}

main.page-arrangement .arrangement-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 25px 0;
  min-height: 45vh;
  border-radius: 2px;
}

main.page-arrangement .arrangement-image.lazy-loading-finished {
  min-height: 0;
}

main.page-arrangement .options .btn {
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  main.page-arrangement {
    padding: 35px 0;
  }
  main.page-arrangement h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 25px;
  }
  main.page-arrangement h1 a {
    font-size: 20px;
    line-height: 28px;
  }
  main.page-arrangement .arrangement-image {
    margin: 50px 0;
    max-height: 80vh;
  }
  main.page-arrangement .options {
    text-align: center;
  }
  main.page-arrangement .options .btn {
    margin: 0 5px 10px;
  }
}

main.page-portfolio {
  padding: 0;
  margin: 32px 0;
}

main.page-portfolio h1 {
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 18px;
  text-align: center;
}

main.page-portfolio h1 a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #939398;
}

main.page-portfolio .tags {
  text-align: center;
  margin: 0 0 30px;
}

main.page-portfolio .portfolio-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 30px;
  border-radius: 2px;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
}

main.page-portfolio .portfolio-image.lazy-loading-finished {
  min-height: 0;
}

main.page-portfolio .options .btn {
  text-align: center;
  margin-bottom: 10px;
}

main.page-portfolio .description {
  margin: 30px 0 0;
  color: #66666D;
  font-size: 15px;
  line-height: 21px;
  font-family: "PT Sans", sans-serif;
}

main.page-portfolio .description p {
  margin: 0 0 16px;
}

@media screen and (min-width: 768px) {
  main.page-portfolio {
    padding: 35px 0;
  }
  main.page-portfolio h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 25px;
  }
  main.page-portfolio h1 a {
    font-size: 20px;
    line-height: 28px;
  }
  main.page-portfolio .options {
    text-align: center;
  }
  main.page-portfolio .options .btn {
    margin: 0 5px 10px;
  }
}

main.registration-page {
  background: #F6F5FB;
  min-height: calc(100vh - 76px - 77px);
}

main.registration-page .registration {
  background: white;
  padding: 0 10px 20px;
  margin: 20px 0;
  min-height: calc(100vh - 76px - 77px);
}

main.registration-page .registration .global-errors {
  display: block;
  margin: 45px 0;
  color: #CE2101;
  font-size: 16px;
  line-height: 24px;
  border-left: 1px solid #CE2101;
  padding: 0 0 0 16px;
}

main.registration-page .registration .main-headline {
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 30px;
}

main.registration-page .registration .step {
  margin: 45px 0 0;
}

main.registration-page .registration .step h3 {
  font-size: 24px;
  line-height: 29px;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 16px;
  color: #1E1C2F;
  position: relative;
}

main.registration-page .registration .step h3 b {
  display: inline-block;
  font-weight: normal;
  border: 1px solid #1E1C2F;
  width: 24px;
  height: 24px;
  text-align: center;
  margin: 0 7px 0 0;
  border-radius: 50%;
  vertical-align: top;
  line-height: 26px;
  font-size: 20px;
  position: relative;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: color;
  transition-property: color;
}

main.registration-page .registration .step h3 b:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url(/img/ic-checkmark.svg) no-repeat center center;
  background-size: contain;
  opacity: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

main.registration-page .registration .step h3 span {
  position: absolute;
  right: -5px;
  padding: 5px;
  background: white;
  border-radius: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: black;
}

main.registration-page .registration .step.inactive, main.registration-page .registration .step.done {
  opacity: 0.6;
}

main.registration-page .registration .step.done h3 b {
  color: white;
}

main.registration-page .registration .step.done h3 b:after {
  opacity: 1;
}

main.registration-page .registration .step.done h3 span {
  display: block;
}

main.registration-page .registration .step.inactive > * {
  display: none;
}

main.registration-page .registration .step.inactive > h3 {
  display: block;
}

main.registration-page .registration .step.disabled {
  display: none;
}

main.registration-page .registration .step-plan {
  margin-top: 0;
}

main.registration-page .registration .step-plan .giftcards-code {
  color: #66666D;
  font-size: 14px;
  margin: -10px 0 20px;
  text-align: right;
}

main.registration-page .registration .step-plan .giftcards-code a {
  color: #66666D;
  text-decoration: underline;
}

main.registration-page .registration .step-plan .plans {
  padding: 10px 0 0;
}

main.registration-page .registration .step-plan .plans .plan {
  position: relative;
  margin: 0 0 36px;
  padding: 16px;
  border: 1px solid #DFDEDE;
}

main.registration-page .registration .step-plan .plans .plan .headline {
  position: absolute;
  top: -12px;
  left: 16px;
}

main.registration-page .registration .step-plan .plans .plan .headline span {
  display: block;
  width: 90px;
  height: 24px;
  line-height: 24px;
  color: #3F3832;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  background: #e8e6f5;
}

main.registration-page .registration .step-plan .plans .plan .off {
  position: absolute;
  top: -12px;
  left: 115px;
  background: #CE2101;
  height: 24px;
  line-height: 24px;
  padding: 0 7px;
  color: white;
  border-radius: 2px;
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
}

main.registration-page .registration .step-plan .plans .plan .price {
  margin: 12px 0 0;
}

main.registration-page .registration .step-plan .plans .plan .price strong {
  display: inline-block;
  font-weight: bold;
  color: #3F3832;
  font-size: 28px;
}

main.registration-page .registration .step-plan .plans .plan .price strong i {
  font-size: .6em;
  font-style: normal;
}

main.registration-page .registration .step-plan .plans .plan .price strong del {
  display: inline-block;
  font-size: .7em;
  text-decoration: line-through;
  color: #939398;
}

main.registration-page .registration .step-plan .plans .plan .price small {
  display: inline-block;
  font-weight: bold;
  color: #3F3832;
  font-size: 14px;
  line-height: 23px;
  font-family: "PT Sans", sans-serif;
}

main.registration-page .registration .step-plan .plans .plan .info {
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 23px;
}

main.registration-page .registration .step-plan .plans .plan button {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 14px;
  height: 36px;
  line-height: 34px;
}

main.registration-page .registration .step-plan .plans .plan .plus {
  margin: 8px 0 0;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

main.registration-page .registration .step-plan .plans .plan .plus img {
  display: block;
  float: left;
  width: 26px;
  height: auto;
  margin: 0 10px 0 0;
}

main.registration-page .registration .step-plan.done .giftcards-code {
  display: none;
}

main.registration-page .registration .step-plan.done .plans .plan {
  display: none;
}

main.registration-page .registration .step-plan.done .plans .plan button {
  display: none;
}

main.registration-page .registration .step-plan.done .plans .plan.choosen {
  display: block;
}

main.registration-page .registration .step-account .inp {
  position: relative;
}

main.registration-page .registration .step-account .inp:after {
  content: '';
  position: absolute;
  display: none;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/img/ic-email.svg) no-repeat center center;
  background-size: contain;
}

html.placeholder main.registration-page .registration .step-account .inp:after {
  display: block;
}

main.registration-page .registration .step-account .inp.inp-password:after {
  background-image: url(/img/ic-password.svg);
}

main.registration-page .registration .step-account .inp.inp-user:after {
  background-image: url(/img/ic-user.svg);
}

main.registration-page .registration .step-account.done .inp.rmv-margin {
  margin-bottom: 0;
}

main.registration-page .registration .step-account.done .inp-password {
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

main.registration-page .registration .step-account.done button {
  display: none;
}

main.registration-page .registration .step-address.done button {
  display: none;
}

main.registration-page .registration .step-payment .payments .payment {
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid #DFDEDE;
  border-radius: 2px;
}

main.registration-page .registration .step-payment .payments .payment .choose .checkbox {
  margin: 0;
}

main.registration-page .registration .step-payment .payments .payment .choose .checkbox input[type='radio'] + span {
  padding-left: 38px;
  font-size: 16px;
  color: #3F3832;
  height: 24px;
  line-height: 24px;
}

main.registration-page .registration .step-payment .payments .payment .choose .checkbox input[type='radio'] + span:before {
  top: 0;
}

main.registration-page .registration .step-payment .payments .payment .more {
  display: none;
  padding: 16px 0 0;
}

main.registration-page .registration .step-payment .payments .payment.choosen .more {
  display: block;
}

main.registration-page .registration .step-payment .error-information {
  display: none;
  margin: 16px 0;
  color: #CE2101;
  font-size: 16px;
  line-height: 24px;
  border-left: 1px solid #CE2101;
  padding: 0 0 0 16px;
}

main.registration-page .registration .step-payment .error-information.show {
  display: block;
}

main.registration-page .registration .step-payment .legal {
  margin: 24px 0 0;
  font-family: "PT Sans", sans-serif;
  color: #66666D;
  font-size: 13px;
  line-height: 23px;
}

main.registration-page .registration .step-payment .legal a {
  color: #66666D;
  text-decoration: underline;
}

main.registration-page .registration.is-monthly .step-address {
  display: none;
}

main.registration-page .registration.is-monthly .step-payment h3 .fourth {
  display: none;
}

main.registration-page .registration.is-yearly .step-payment h3 .third {
  display: none;
}

main.registration-page .info-area {
  padding: 10px;
}

main.registration-page .info-area h1 {
  font-style: italic;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 20px;
}

main.registration-page .info-area .pic {
  margin: 0 0 24px;
  position: relative;
}

main.registration-page .info-area .pic img {
  display: block;
  width: 100%;
  height: auto;
}

main.registration-page .info-area .pic:after {
  position: absolute;
  content: '';
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 1px solid white;
}

@media screen and (min-width: 768px) {
  main.registration-page .registration {
    float: left;
    width: 62%;
    padding: 64px 45px;
    margin: 0;
  }
  main.registration-page .registration .main-headline {
    max-width: 435px;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 34px;
    line-height: 44px;
  }
  main.registration-page .registration .step {
    max-width: 435px;
    margin-left: auto;
    margin-right: auto;
  }
  main.registration-page .info-area {
    float: right;
    width: 38%;
    padding: 45px 45px 20px;
  }
  main.registration-page .info-area .in {
    max-width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1020px) {
  main.registration-page .info-area .pic {
    margin-bottom: 48px;
  }
  main.registration-page .info-area h1 {
    max-width: 350px;
    font-size: 36px;
    line-height: 44px;
    margin: 0 auto 25px;
  }
  main.registration-page .info-area ul {
    max-width: 350px;
    margin: 0 auto;
  }
}

main.user-edit-page .profile-form {
  padding: 30px 0 110px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  background: url(/img/magnolia.png) no-repeat right bottom;
  background-size: 110px auto;
}

main.user-edit-page .profile-form h1 {
  font-size: 24px;
  line-height: 33px;
  text-align: center;
}

main.user-edit-page .profile-form .sub {
  color: #66666D;
  font-size: 16px;
  line-height: 23px;
  margin: 10px 0 32px;
  text-align: center;
  font-family: "PT Sans", sans-serif;
}

main.user-edit-page .profile-form p {
  font-size: 16px;
  line-height: 23px;
  margin: 12px 0;
  text-align: center;
  font-family: "PT Sans", sans-serif;
}

main.user-edit-page .profile-form p a {
  text-decoration: underline;
}

main.user-edit-page .profile-form .inp textarea {
  height: 100px;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
}

main.user-edit-page .profile-form .new-customer {
  margin: 36px 0 0;
  text-align: center;
  color: #66666D;
}

main.user-edit-page .profile-form .new-customer span {
  display: block;
  font-weight: bold;
}

main.user-edit-page .profile-form .new-customer a {
  display: inline-block;
  padding: 8px 0;
}

@media screen and (min-width: 768px) {
  main.user-edit-page .profile-form {
    background-size: 200px auto;
    padding: 64px 0;
  }
  main.user-edit-page .profile-form h1 {
    font-size: 32px;
    line-height: 44px;
  }
  main.user-edit-page .profile-form .sub {
    margin: 12px 0 50px;
  }
  main.user-edit-page .profile-form .new-customer {
    margin-top: 24px;
  }
  main.user-edit-page .profile-form .new-customer span {
    float: left;
  }
  main.user-edit-page .profile-form .new-customer a {
    float: right;
    padding: 0;
  }
}

@media screen and (min-width: 1020px) {
  main.user-edit-page .profile-form {
    background-size: 380px auto;
  }
  main.user-edit-page .profile-form .btn {
    display: block;
  }
}

main.user-edit-page .payment-form .stripe-container {
  margin: 0 0 18px;
}

main.content-page {
  padding: 25px 0;
}

main.content-page article h1 {
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 10px;
}

main.content-page article h2 {
  font-size: 24px;
  line-height: 33px;
  margin: 40px 0 10px;
}

main.content-page article p {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 23px;
  margin: 0 0 16px;
}

main.content-page article ul {
  margin: 0 0 16px 16px;
}

main.content-page article ul li {
  list-style: disc;
}

main.content-page article ul li li {
  list-style: square;
}

main.content-page aside,
main.content-page .aside .img {
  margin: 40px 0 0;
  position: relative;
}

main.content-page aside img,
main.content-page .aside .img img {
  display: block;
  width: 100%;
  height: auto;
}

main.content-page aside:after,
main.content-page .aside .img:after {
  position: absolute;
  content: '';
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 1px solid white;
}

main.content-page .aside {
  margin: 40px 0 0;
}

main.content-page .aside .img {
  margin: 0 0 20px;
}

main.content-page .aside blockquote {
  color: #66666D;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  padding: 0 2px;
}

@media screen and (min-width: 768px) {
  main.content-page {
    padding: 40px 0;
  }
  main.content-page article {
    float: right;
    width: 65%;
  }
  main.content-page aside,
  main.content-page .aside {
    margin: 0;
    float: left;
    width: 32%;
  }
}

main .small-form {
  max-width: 370px;
}

main .error-box {
  border-left: 1px solid #CE2101;
  padding: 4px 0 4px 16px;
  margin: 16px 0;
  color: #CE2101;
}

main .error-box.disabled {
  display: none;
}

main .navigate {
  padding: 0 10px 17px;
}

main .navigate .back {
  float: left;
  padding-top: 2px;
}

main .navigate .back img {
  display: block;
  width: auto;
  height: 20px;
}

main .navigate .add-flower-heart,
main .navigate .add-portfolio-heart,
main .navigate .add-arrangement-heart {
  float: right;
}

@media screen and (min-width: 1020px) {
  main .navigate {
    padding: 0 0 25px;
    margin: 0 -25px;
  }
}

@media screen and (min-width: 1300px) {
  main .navigate {
    margin: 0 -120px;
    height: 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }
}

.flower-banner {
  max-width: 2000px;
  margin: 0 auto 25px;
  position: relative;
}

.flower-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.flower-banner h1 {
  position: absolute;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .flower-banner h1 {
    font-size: 60px;
  }
}

.page-profile {
  margin: 32px 0;
}

@media screen and (min-width: 768px) {
  .page-profile {
    margin: 64px 0;
  }
}

.page-profile .profile-head {
  margin: 0 0 40px;
  position: relative;
}

.page-profile .profile-head img,
.page-profile .profile-head .fallback-picture {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  float: right;
  margin: 0 0 16px 16px;
}

.page-profile .profile-head .fallback-picture {
  background: #ECEBEB url(/img/ic-user.svg) no-repeat center center;
  background-size: 30px auto;
}

.page-profile .profile-head h1 {
  font-size: 26px;
  line-height: 35px;
  margin: 0 0 16px;
}

.page-profile .profile-head .follow-btn,
.page-profile .profile-head .edit-btn {
  margin: 0 0 20px;
}

.page-profile .profile-head .follow-btn:focus,
.page-profile .profile-head .edit-btn:focus {
  outline: none;
}

.page-profile .profile-head ul {
  display: block;
  margin: 0 -10px;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 17px;
  color: #1E1C2F;
}

.page-profile .profile-head ul small {
  color: #66666D;
}

.page-profile .profile-head ul li {
  display: block;
  float: left;
  width: 50%;
  padding: 0 10px;
  margin-bottom: 8px;
}

.page-profile .profile-head .social-profiles {
  margin: 10px 0 0;
}

.page-profile .profile-head .social-profiles a {
  display: inline-block;
  background: no-repeat left center;
  background-size: auto 14px;
  padding: 6px 0 6px 22px;
  color: #66666D;
}

.page-profile .profile-head .social-profiles a.web {
  background-image: url(/img/ic-arrow-right.svg);
}

.page-profile .profile-head .social-profiles a.insta {
  background-image: url(/img/ic-social-instagram.svg);
}

.page-profile .profile-head p {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 23px;
  color: #3F3832;
  margin: 16px 0 0;
}

@media screen and (min-width: 768px) {
  .page-profile .profile-head {
    margin-bottom: 60px;
  }
  .page-profile .profile-head img,
  .page-profile .profile-head .fallback-picture {
    width: 160px;
    height: 160px;
    float: left;
    margin: 0;
  }
  .page-profile .profile-head .fallback-picture {
    background-size: 60px auto;
  }
  .page-profile .profile-head h1,
  .page-profile .profile-head ul,
  .page-profile .profile-head p,
  .page-profile .profile-head .social-profiles {
    margin-left: 205px;
  }
  .page-profile .profile-head h1 {
    font-size: 32px;
    line-height: 44px;
    padding-right: 150px;
  }
  .page-profile .profile-head .follow-btn,
  .page-profile .profile-head .edit-btn {
    position: absolute;
    right: 0;
    top: 12px;
    margin: 0;
  }
  .page-profile .profile-head ul {
    margin: 30px 0 24px 205px;
  }
  .page-profile .profile-head ul li {
    width: auto;
    padding: 0;
    float: none;
    display: inline-block;
    margin-right: 30px;
  }
  .page-profile .profile-head ul li:last-child {
    margin-right: 0;
  }
  .page-profile .profile-head .social-profiles {
    margin: 0 0 24px 205px;
  }
  .page-profile .profile-head .social-profiles div {
    display: inline-block;
  }
  .page-profile .profile-head .social-profiles div:first-of-type {
    margin-right: 40px;
  }
  .page-profile .profile-head .no-desktop-clear {
    clear: none;
    display: none;
  }
}

@media screen and (min-width: 1180px) {
  .page-profile .profile-head {
    width: 880px;
    float: left;
  }
}

.page-profile .flowers {
  margin: 0 0 40px;
}

@media screen and (min-width: 768px) {
  .page-profile .flowers {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1180px) {
  .page-profile .flowers {
    width: 200px;
    float: right;
    padding: 12px 0 0;
  }
  .page-profile .flowers h2 {
    text-align: center;
  }
  .page-profile .flowers ul.flower-list li {
    width: 100%;
    float: none;
    padding-top: 0;
  }
  .page-profile .flowers ul.flower-list li a img {
    height: 185px;
  }
}

.page-profile .community {
  margin: 0 0 40px;
}

@media screen and (min-width: 768px) {
  .page-profile .community {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1180px) {
  .page-profile .community {
    width: 880px;
    float: left;
  }
}

.page-profile .portfolio-section {
  margin: 0 0 30px;
}

.page-profile .portfolio-section .read-more {
  margin-top: -10px;
}

@media screen and (min-width: 768px) {
  .page-profile .portfolio-section {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1180px) {
  .page-profile .portfolio-section {
    width: 880px;
    float: left;
  }
}

@media screen and (min-width: 1180px) {
  .page-profile .arrangements {
    width: 880px;
    float: left;
  }
}

.page-profile .subtitle {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .page-profile .subtitle {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 16px;
  }
}

.page-profile .read-more {
  text-align: right;
  margin: 20px 0 0;
}

.page-profile .read-more a {
  display: inline-block;
  font-size: 13px;
  line-height: 32px;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
}

.page-profile .read-more a img {
  width: auto;
  height: 18px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

.page-feed {
  margin: 26px 0;
}

@media screen and (min-width: 768px) {
  .page-feed {
    margin: 40px 0 64px;
  }
}

.page-feed .community {
  margin: 0 0 40px;
}

.page-feed .videos {
  margin: 0 0 40px;
}

.page-feed .portfolio-section {
  margin: 0 0 40px;
}

.page-feed .maintitle {
  font-size: 28px;
  line-height: 38px;
  margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
  .page-feed .maintitle {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 26px;
  }
}

.page-feed .subtitle {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .page-feed .subtitle {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }
}

.page-feed .read-more {
  text-align: right;
  margin: 20px 0 0;
}

.page-feed .read-more a {
  display: inline-block;
  font-size: 13px;
  line-height: 32px;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
}

.page-feed .read-more a img {
  width: auto;
  height: 18px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

.page-live {
  padding: 10px 0 30px;
}

.page-live .scheduled {
  padding: 20px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: white;
}

.page-live .scheduled h2 {
  font-size: 26px;
  color: #66666D;
}

.page-live .scheduled .bigger {
  color: #5A51A8;
  font-size: 100px;
  font-family: "PT Sans", sans-serif;
  margin: 30px 0 0;
}

.page-live .scheduled .bigger small {
  font-size: .5em;
}

.page-live .scheduled .short-description {
  font-size: 14px;
  line-height: 1.55;
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
  margin: 25px 0 0;
}

.page-live .scheduled .short-description p {
  margin-bottom: 14px;
}

> .page-live .scheduled .short-description p:last-child {
  margin-bottom: 0;
}

.page-live .active .livechat {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #DFDEDE;
}

.page-live .active .livechat h4 {
  display: block;
  padding: 12px 14px;
  background: #ECEBEB;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #DFDEDE;
}

.page-live .active .livechat .messages {
  display: block;
  list-style: none;
  overflow-y: auto;
  max-height: 45vh;
  padding: 8px 14px;
}

.page-live .active .livechat .messages li {
  display: block;
  margin: 0;
  padding: 8px 0;
  line-height: 1.5;
  border-bottom: 1px solid #ECEBEB;
}

.page-live .active .livechat .messages li small {
  display: block;
  font-weight: bold;
  color: #66666D;
  margin-bottom: 4px;
}

.page-live .active .livechat .messages li p {
  font-family: "PT Sans", sans-serif;
  color: #3F3832;
}

.page-live .active .livechat .messages li:last-child {
  border-bottom: 0;
}

.page-live .active .livechat form {
  background: #ECEBEB;
  padding: 12px 14px;
  border-top: 1px solid #DFDEDE;
}

.page-live .active .livechat form textarea {
  height: 60px;
  padding: 7px 14px;
}

@media screen and (min-width: 768px) {
  .page-live {
    padding: 60px 0;
    margin-top: -25px;
    background: #F6F5FB;
  }
  .page-live .scheduled h2 {
    font-size: 30px;
  }
  .page-live .scheduled .bigger {
    font-size: 140px;
  }
  .page-live .scheduled .short-description {
    margin-top: 30px;
    font-size: 15px;
    padding: 0 20px;
  }
  .page-live .active {
    position: relative;
  }
  .page-live .active .video {
    margin-right: 380px;
  }
  .page-live .active .livechat {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
  }
  .page-live .active .livechat .messages {
    height: 359px;
    max-height: 359px;
  }
}

main.home-page h1,
main.home-page h2 {
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 20px;
  text-align: center;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  main.home-page h1,
  main.home-page h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
  }
}

main.home-page section.video-background-intro {
  position: relative;
}

main.home-page section.video-background-intro .video-box {
  position: relative;
}

main.home-page section.video-background-intro .video-box img {
  display: block;
  width: 100%;
  height: auto;
  background: #1E1C2F;
}

main.home-page section.video-background-intro .video-box:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  opacity: 0.6;
  background: -webkit-gradient(linear, left top, left bottom, from(#454163), to(#2b293f));
  background: linear-gradient(180deg, #454163 0%, #2b293f 100%);
}

main.home-page section.video-background-intro .box {
  position: relative;
  z-index: 5;
  background: white;
  padding: 10px;
  margin: 10px 15px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-property: margin, opacity;
  transition-property: margin, opacity;
}

body.page-inited main.home-page section.video-background-intro .box {
  margin-top: -40px;
  opacity: 1;
}

main.home-page section.video-background-intro .box .in {
  border: 1px solid #a3a3a3;
  padding: 25px;
}

main.home-page section.video-background-intro .box .in ul.benefits {
  margin-bottom: 0;
}

main.home-page section.video-background-intro .box .in ul.benefits li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1020px) {
  main.home-page section.video-background-intro {
    padding: 62px 0;
  }
  main.home-page section.video-background-intro .video-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
  }
  main.home-page section.video-background-intro .video-box video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  main.home-page section.video-background-intro .box {
    float: right;
    width: 450px;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
  }
  body.page-inited main.home-page section.video-background-intro .box {
    margin-top: 0;
  }
  main.home-page section.video-background-intro .box .in {
    padding: 30px 40px;
  }
}

main.home-page section.blue-bg {
  background: #F6F5FB;
}

main.home-page section.welcome-video,
main.home-page section.video-overview,
main.home-page section.flower-database,
main.home-page section.flower-studio,
main.home-page section.flower-community,
main.home-page section.flower-network,
main.home-page section.network-preview,
main.home-page section.quotes-area,
main.home-page section.the-putnams,
main.home-page section.sign-up {
  padding: 55px 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

body.page-inited main.home-page section.welcome-video, body.page-inited
main.home-page section.video-overview, body.page-inited
main.home-page section.flower-database, body.page-inited
main.home-page section.flower-studio, body.page-inited
main.home-page section.flower-community, body.page-inited
main.home-page section.flower-network, body.page-inited
main.home-page section.network-preview, body.page-inited
main.home-page section.quotes-area, body.page-inited
main.home-page section.the-putnams, body.page-inited
main.home-page section.sign-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main.home-page section.welcome-video h2,
main.home-page section.video-overview h2,
main.home-page section.flower-database h2,
main.home-page section.flower-studio h2,
main.home-page section.flower-community h2,
main.home-page section.flower-network h2,
main.home-page section.network-preview h2,
main.home-page section.quotes-area h2,
main.home-page section.the-putnams h2,
main.home-page section.sign-up h2 {
  margin-bottom: 12px;
}

main.home-page section.welcome-video p,
main.home-page section.video-overview p,
main.home-page section.flower-database p,
main.home-page section.flower-studio p,
main.home-page section.flower-community p,
main.home-page section.flower-network p,
main.home-page section.network-preview p,
main.home-page section.quotes-area p,
main.home-page section.the-putnams p,
main.home-page section.sign-up p {
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #66666D;
  font-family: "PT Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  main.home-page section.welcome-video,
  main.home-page section.video-overview,
  main.home-page section.flower-database,
  main.home-page section.flower-studio,
  main.home-page section.flower-community,
  main.home-page section.flower-network,
  main.home-page section.network-preview,
  main.home-page section.quotes-area,
  main.home-page section.the-putnams,
  main.home-page section.sign-up {
    padding: 86px 0;
  }
  main.home-page section.welcome-video h2,
  main.home-page section.video-overview h2,
  main.home-page section.flower-database h2,
  main.home-page section.flower-studio h2,
  main.home-page section.flower-community h2,
  main.home-page section.flower-network h2,
  main.home-page section.network-preview h2,
  main.home-page section.quotes-area h2,
  main.home-page section.the-putnams h2,
  main.home-page section.sign-up h2 {
    margin-bottom: 12px;
  }
}

main.home-page section.video-background-intro ul.benefits li,
main.home-page section.flower-studio ul.benefits li,
main.home-page section.flower-network ul.benefits li,
main.home-page section.the-putnams ul.benefits li {
  background-image: url(/img/ic-checkmark.svg);
  background-size: 22px auto;
  background-position: 0 1px;
}

main.home-page section.network-preview h2 {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

main.home-page section.network-preview .listing-preview {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  margin: 10px 15px 20px;
  border-radius: 4px;
}

main.home-page section.network-preview .listing-preview .pic {
  position: relative;
}

main.home-page section.network-preview .listing-preview .pic img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

main.home-page section.network-preview .listing-preview .pic .legal {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #66666D;
  font-size: 11px;
}

main.home-page section.network-preview .listing-preview .pic .legal span {
  display: inline-block;
  background: white;
  border-radius: 4px;
}

main.home-page section.network-preview .listing-preview .pic .legal a {
  color: #66666D;
}

main.home-page section.network-preview .listing-preview .pic .no-pic {
  height: 160px;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  background: #ECEBEB;
  position: relative;
  padding: 0 20px;
  color: white;
}

main.home-page section.network-preview .listing-preview .pic .no-pic span {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.home-page section.network-preview .listing-preview .c {
  padding: 15px;
  font-family: "PT Sans", sans-serif;
  line-height: 1.5;
  color: #66666D;
}

main.home-page section.network-preview .listing-preview .c .name {
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
  font-size: 20px;
  color: #1E1C2F;
}

main.home-page section.network-preview .listing-preview .c .location {
  margin: 10px 0;
}

main.home-page section.network-preview .listing-preview .c .opening-hours {
  font-size: 12px;
}

main.home-page section.network-preview .listing-preview .c .rating-count {
  margin: 16px 0 0;
  vertical-align: middle;
  text-align: right;
}

main.home-page section.network-preview .listing-preview .c .rating-count i {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: url(/img/ic-heart.svg) no-repeat left center;
  background-size: contain;
}

main.home-page section.network-preview ul.benefits {
  margin: 30px 15px 35px;
}

main.home-page section.network-preview .go {
  max-width: 358px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 600px) {
  main.home-page section.network-preview ul.benefits {
    max-width: 510px;
    margin: 40px auto 50px;
  }
}

@media screen and (min-width: 768px) {
  main.home-page section.network-preview .listing-preview {
    margin: 30px auto 50px;
    max-width: 700px;
    position: relative;
  }
  main.home-page section.network-preview .listing-preview .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    height: auto;
  }
  main.home-page section.network-preview .listing-preview .pic .no-pic,
  main.home-page section.network-preview .listing-preview .pic img {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 300px;
    height: 100%;
    max-height: 100%;
    margin: 0;
  }
  main.home-page section.network-preview .listing-preview .c {
    margin: 0 0 0 300px;
    padding: 25px 30px;
  }
  main.home-page section.network-preview .listing-preview .c .name {
    font-size: 28px;
  }
}

main.home-page section.welcome-video .video {
  display: block;
  width: 100%;
  height: auto;
  margin: 28px 0;
}

main.home-page section.welcome-video .go {
  max-width: 358px;
  margin: 0 auto;
}

main.home-page section.welcome-video.blue-bg {
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  main.home-page section.welcome-video .video {
    margin: 42px 0;
  }
}

@media screen and (min-width: 1020px) {
  main.home-page section.welcome-video.blue-bg {
    margin-bottom: 0;
  }
}

main.home-page section.quotes-area {
  padding-top: 0;
}

main.home-page section.quotes-area .go {
  max-width: 358px;
  margin: 0 auto;
}

main.home-page section.quotes-area .quotes {
  margin: 0 0 46px;
}

main.home-page section.quotes-area .quotes blockquote {
  display: block;
  margin: 0 0 14px;
  line-height: 1.4;
  font-size: 16px;
  color: #3F3832;
  font-family: "PT Sans", sans-serif;
}

main.home-page section.quotes-area .quotes blockquote span {
  font-style: italic;
  color: #66666D;
  font-size: 17px;
}

main.home-page section.quotes-area .quotes blockquote:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  main.home-page section.quotes-area .quotes h2 {
    max-width: 510px;
    margin: 0 auto 40px;
  }
  main.home-page section.quotes-area .quotes .qs {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  main.home-page section.quotes-area .quotes .qs blockquote {
    margin-bottom: 30px;
    font-size: 16px;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  main.home-page section.quotes-area .quotes .qs blockquote span {
    font-size: 18px;
  }
}

@media screen and (min-width: 1020px) {
  main.home-page section.quotes-area {
    background: no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 86px;
  }
  main.home-page section.quotes-area:before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: rgba(30, 28, 47, 0.8);
  }
  main.home-page section.quotes-area h2 {
    color: white;
  }
  main.home-page section.quotes-area .quotes .qs blockquote {
    color: white;
  }
  main.home-page section.quotes-area .quotes .qs blockquote strong {
    color: #DFDEDE;
  }
  main.home-page section.quotes-area .quotes .qs blockquote span {
    color: white;
  }
  main.home-page section.quotes-area .go .btn {
    background: white;
    color: #1E1C2F;
    border: 1px solid white;
  }
  html.no-touchevents main.home-page section.quotes-area .go .btn:hover {
    background: #1E1C2F;
    color: white;
    border: 1px solid #1E1C2F;
  }
  body.page-loaded main.home-page section.quotes-area {
    background-image: url(/img/quotes-bg-1060.jpg);
  }
}

@media screen and (min-width: 1020px) and (min-width: 1061px) {
  body.page-loaded main.home-page section.quotes-area {
    background-image: url(/img/quotes-bg-1400.jpg);
  }
}

@media screen and (min-width: 1020px) and (min-width: 1401px) {
  body.page-loaded main.home-page section.quotes-area {
    background-image: url(/img/quotes-bg-1800.jpg);
  }
}

main.home-page section.video-overview h2,
main.home-page section.video-overview p {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

main.home-page section.video-overview .videos {
  margin: 30px 0 0;
}

main.home-page section.video-overview .videos .video {
  display: block;
  margin: 0 auto 20px;
  max-width: 320px;
}

main.home-page section.video-overview .videos .video .pic {
  height: 180px;
  background: #3F3832 no-repeat center center;
  background-size: cover;
  position: relative;
}

main.home-page section.video-overview .videos .video .c {
  margin: 10px 0 0;
  font-family: "PT Sans", sans-serif;
}

main.home-page section.video-overview .videos .video .c .title {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  color: #1E1C2F;
  margin-bottom: 5px;
}

main.home-page section.video-overview .videos .video .c small {
  display: block;
  font-size: 14px;
  color: #66666D;
}

@media screen and (min-width: 768px) {
  main.home-page section.video-overview {
    padding-bottom: 100px;
  }
  main.home-page section.video-overview .videos {
    margin: 42px -20px 0;
  }
  main.home-page section.video-overview .videos .video {
    float: left;
    padding: 0 20px;
    width: 33.33333%;
    max-width: 100%;
  }
  main.home-page section.video-overview .videos .video .pic {
    height: 230px;
  }
}

main.home-page section.flower-database p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

main.home-page section.flower-database .bx-wrapper {
  position: relative;
  *zoom: 1;
  touch-action: pan-y;
}

main.home-page section.flower-database .bxslider {
  -webkit-perspective: 1000;
}

main.home-page section.flower-database .bx-viewport {
  -webkit-transform: translateZ(0);
}

main.home-page section.flower-database .slider {
  margin: 40px 0 0;
  position: relative;
}

main.home-page section.flower-database .slider .bx-controls {
  display: inline;
}

main.home-page section.flower-database .slider .bx-controls div {
  display: inline;
}

main.home-page section.flower-database .slider .bx-controls a {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  margin-top: -18px;
  background: no-repeat center center;
  background-size: auto 20px;
}

main.home-page section.flower-database .slider .bx-controls a.bx-prev {
  left: -10px;
  background-image: url(/img/ic-gallery-prev.svg);
}

main.home-page section.flower-database .slider .bx-controls a.bx-next {
  right: -10px;
  background-image: url(/img/ic-gallery-next.svg);
}

main.home-page section.flower-database .slider .flower img {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

main.home-page section.flower-database .slider .flower .title {
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 0 4px;
  font-weight: bold;
}

main.home-page section.flower-database .slider .flower .title small {
  display: block;
  color: #939398;
  font-style: italic;
  margin-top: 6px;
  font-weight: normal;
}

main.home-page section.flower-database .slider .flower .title:before {
  display: block;
  content: '';
  width: 100%;
  max-width: 158px;
  margin: 0 auto 18px;
  opacity: .2;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 189, 189, 0)), color-stop(50.17%, #c0bdbd), to(rgba(192, 189, 189, 0)));
  background: linear-gradient(90deg, rgba(192, 189, 189, 0) 0%, #c0bdbd 50.17%, rgba(192, 189, 189, 0) 100%);
}

@media screen and (min-width: 768px) {
  main.home-page section.flower-database {
    padding-bottom: 94px;
  }
  main.home-page section.flower-database .slider {
    margin-top: 88px;
  }
  main.home-page section.flower-database .slider .flower img {
    height: 270px;
  }
  main.home-page section.flower-database .slider .flower .title {
    font-size: 14px;
  }
  main.home-page section.flower-database .slider .flower .title:before {
    margin-bottom: 22px;
  }
}

main.home-page section.flower-network .demo,
main.home-page section.the-putnams .demo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 40px;
  position: relative;
}

main.home-page section.flower-network .demo img,
main.home-page section.the-putnams .demo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

@media screen and (min-width: 768px) {
  main.home-page section.flower-network .demo,
  main.home-page section.the-putnams .demo {
    float: left;
    width: 370px;
  }
  main.home-page section.flower-network .c,
  main.home-page section.the-putnams .c {
    margin: 0 0 0 400px;
  }
}

@media screen and (min-width: 1020px) {
  main.home-page section.flower-network .demo,
  main.home-page section.the-putnams .demo {
    width: 570px;
    margin: 0;
  }
  main.home-page section.flower-network .c,
  main.home-page section.the-putnams .c {
    margin-left: 650px;
    padding: 120px 0 0;
  }
  main.home-page section.flower-network h2,
  main.home-page section.the-putnams h2 {
    text-align: left;
  }
}

main.home-page section.the-putnams .demo:after {
  position: absolute;
  content: '';
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 1px solid white;
}

main.home-page section.flower-studio .iphone {
  position: relative;
  width: 70%;
  margin: 0 auto 32px;
}

main.home-page section.flower-studio .iphone .bg {
  display: block;
  width: 100%;
  height: auto;
}

main.home-page section.flower-studio .iphone .front {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  left: 6.5%;
  width: 88%;
  top: 12%;
  min-height: 200px;
}

@media screen and (min-width: 768px) {
  main.home-page section.flower-studio .c {
    position: absolute;
    left: 35px;
    right: 400px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  main.home-page section.flower-studio .c h2,
  main.home-page section.flower-studio .c p {
    text-align: left;
  }
  main.home-page section.flower-studio .c p {
    font-size: 22px;
    line-height: 34px;
  }
  main.home-page section.flower-studio .iphone {
    float: right;
    width: 300px;
    margin: 0 0 0 20px;
  }
}

main.home-page section.flower-community img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 589px;
  margin: 40px auto 0;
}

main.home-page section.flower-community p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

main.home-page section.sign-up .boxes {
  margin: 45px 0;
}

main.home-page section.sign-up .boxes .box {
  margin: 0 0 45px;
  text-align: center;
}

main.home-page section.sign-up .boxes .box .in {
  border: 1px solid #DFDEDE;
  padding: 35px 25px 25px;
  position: relative;
}

main.home-page section.sign-up .boxes .box .headline {
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
}

main.home-page section.sign-up .boxes .box .headline span {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  color: #3F3832;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 15px;
  background: #e8e6f5;
}

main.home-page section.sign-up .boxes .box .price {
  margin: 0 0 24px;
}

main.home-page section.sign-up .boxes .box .price .off {
  height: 34px;
}

main.home-page section.sign-up .boxes .box .price .off em {
  display: inline-block;
  background: #CE2101;
  height: 23px;
  line-height: 23px;
  padding: 0 7px;
  color: white;
  border-radius: 2px;
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
}

main.home-page section.sign-up .boxes .box .price strong {
  display: block;
  font-weight: bold;
  color: #3F3832;
  font-size: 40px;
}

main.home-page section.sign-up .boxes .box .price strong i {
  font-size: .6em;
  font-style: normal;
}

main.home-page section.sign-up .boxes .box .price strong del {
  display: inline-block;
  font-size: .7em;
  text-decoration: line-through;
  color: #939398;
}

main.home-page section.sign-up .boxes .box .price small {
  display: block;
  font-weight: bold;
  margin: 0 0 7px;
  color: #3F3832;
  font-size: 14px;
  line-height: 23px;
  font-family: "PT Sans", sans-serif;
}

main.home-page section.sign-up .boxes .box .price span {
  display: block;
  font-size: 14px;
  line-height: 23px;
  color: #66666D;
}

main.home-page section.sign-up .boxes .box ul.benefits {
  text-align: left;
  margin: 32px 0 0;
}

main.home-page section.sign-up .boxes .box .plus {
  margin: 38px 0 0;
}

main.home-page section.sign-up .boxes .box .plus .line {
  margin: 6px 0 32px;
  height: 1px;
  background: #DFDEDE;
  overflow: visible;
  position: relative;
}

main.home-page section.sign-up .boxes .box .plus .line small {
  display: inline-block;
  color: #DFDEDE;
  font-size: 14px;
  line-height: 24px;
  background: white;
  padding: 0 10px;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  text-transform: uppercase;
}

main.home-page section.sign-up .boxes .box .plus img {
  float: left;
  width: 82px;
}

main.home-page section.sign-up .boxes .box .plus p {
  margin: 0 0 0 100px;
  color: #66666D;
  font-size: 16px;
  line-height: 23px;
  font-family: "PT Sans", sans-serif;
  text-align: left;
}

main.home-page section.sign-up .disclaimer {
  font-size: 14px;
  color: #66666D;
}

main.home-page section.sign-up .giftcards {
  text-align: center;
  margin: 40px 0 0;
}

main.home-page section.sign-up .giftcards h2 {
  margin-bottom: 20px;
}

main.home-page section.sign-up .giftcards h2 small {
  font-size: .9em;
}

@media screen and (min-width: 768px) {
  main.home-page section.sign-up {
    padding-bottom: 100px;
  }
  main.home-page section.sign-up .boxes {
    margin: 48px auto 0;
    max-width: 768px;
  }
  main.home-page section.sign-up .boxes .box {
    float: left;
    width: 50%;
    padding: 0 22px;
  }
  main.home-page section.sign-up .boxes .box .in {
    padding: 37px 50px 25px;
  }
  main.home-page section.sign-up .giftcards {
    margin-top: 60px;
  }
}

main.welcome-page h1,
main.welcome-page h2,
main.welcome-page h3 {
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 20px;
  text-align: center;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  main.welcome-page h1,
  main.welcome-page h2,
  main.welcome-page h3 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 30px;
  }
}

main.welcome-page h3 {
  font-size: 22px;
  line-height: 28px;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  main.welcome-page h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

main.welcome-page section.blue-bg {
  background: #F6F5FB;
}

main.welcome-page section.intro {
  padding-bottom: 20px;
}

main.welcome-page section.intro h3 {
  margin-top: 30px;
}

main.welcome-page section.go {
  text-align: center;
}

main.welcome-page section.go .btn {
  margin: 10px auto 0;
}

main.welcome-page section.normal {
  padding: 40px 0;
}

main.welcome-page section.normal p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-family: "PT Sans", sans-serif;
}

main.welcome-page section.normal .iphone {
  position: relative;
  width: 70%;
  margin: 26px auto 0;
}

main.welcome-page section.normal .iphone .bg {
  display: block;
  width: 100%;
  height: auto;
}

main.welcome-page section.normal .iphone .front {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  left: 6.5%;
  width: 88%;
  top: 12%;
  min-height: 200px;
}

@media screen and (min-width: 768px) {
  main.welcome-page section.intro {
    padding: 30px 0 45px;
  }
  main.welcome-page section.intro .wrapper {
    max-width: 1100px;
  }
  main.welcome-page section.intro h3 {
    margin-top: 60px;
  }
  main.welcome-page section.normal {
    padding: 80px 0;
  }
  main.welcome-page section.normal .wrapper {
    max-width: 900px;
  }
  main.welcome-page section.normal .c {
    position: absolute;
    right: 35px;
    left: 400px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  main.welcome-page section.normal .c h2,
  main.welcome-page section.normal .c p {
    text-align: left;
  }
  main.welcome-page section.normal .c p {
    font-size: 22px;
    line-height: 34px;
  }
  main.welcome-page section.normal .iphone {
    float: left;
    width: 300px;
    margin: 0 0 0 20px;
  }
  main.welcome-page section.blue-bg .c {
    left: 35px;
    right: 400px;
  }
  main.welcome-page section.blue-bg .iphone {
    float: right;
    margin: 0 20px 0 0;
  }
}

.network-entry-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.network-entry-list li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ECEBEB;
}

.network-entry-list li a {
  display: block;
  padding: 20px 10px;
  -webkit-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

html.no-touchevents .network-entry-list li a:hover {
  background: #F6F5FB;
}

.network-entry-list li:first-child a {
  padding-top: 0;
}

.network-entry-list li img,
.network-entry-list li .no-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.network-entry-list li .no-image {
  height: 160px;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  background: #ECEBEB;
  position: relative;
  padding: 0 20px;
  color: white;
}

.network-entry-list li .no-image span {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.network-entry-list li .c {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 23px;
  font-family: "PT Sans", sans-serif;
  position: relative;
}

.network-entry-list li .c .hearts {
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer;
  color: #66666D;
}

.network-entry-list li .c .hearts i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(/img/ic-heart.svg) no-repeat center center;
  background-size: contain;
  margin: 0 4px 0 0;
  vertical-align: top;
}

.network-entry-list li .c .hearts small {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  vertical-align: top;
}

html.no-touchevents .network-entry-list li .c .hearts:hover i {
  background-image: url(/img/ic-heart-active.svg);
}

.network-entry-list li .c .hearts.active i {
  background-image: url(/img/ic-heart-active.svg);
}

.network-entry-list li .c .info {
  color: #66666D;
}

.network-entry-list li .c h2 {
  margin: 0 0 10px;
  color: #1E1C2F;
  font-family: "Crimson Text", serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}

.network-entry-list li .c .opening-hours strong,
.network-entry-list li .c .distance strong {
  font-weight: normal;
}

.network-entry-list li .c .distance {
  margin: 12px 0 0;
  color: #66666D;
  text-align: right;
}

@media screen and (min-width: 1020px) {
  .network-entry-list li a {
    padding: 20px 15px;
  }
  .network-entry-list li img,
  .network-entry-list li .no-image {
    float: left;
    width: 240px;
  }
  .network-entry-list li .c {
    margin: 0 0 0 260px;
  }
  .network-entry-list li:first-child a {
    padding-top: 20px;
  }
}

main.page-network {
  padding: 16px 0;
}

main.page-network .address-filter {
  margin: 0 0 10px;
}

main.page-network .address-filter .address-field {
  margin: 0 0 12px;
}

main.page-network .address-filter .address-field .inp {
  margin: 0;
  position: relative;
}

main.page-network .address-filter .address-field .inp:before {
  z-index: 2;
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/img/search.svg) no-repeat center center;
  background-size: contain;
}

main.page-network .address-filter .address-field .inp input[type=text] {
  padding-right: 40px;
  height: 36px;
  line-height: 34px;
}

main.page-network .address-filter .filter-field {
  margin: 0 -10px;
  overflow: hidden;
  overflow-x: auto;
  padding: 0 10px 2px;
  white-space: nowrap;
}

main.page-network .address-filter .filter-field .filter-btn {
  margin: 0 8px 0 0;
}

main.page-network .address-filter .filter-field .filter-btn:last-of-type {
  margin-right: 0;
}

main.page-network .location-map {
  background: #e5e2f3;
  height: 40vh;
  position: relative;
}

main.page-network .location-map .map {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

main.page-network .results {
  margin: 20px 0;
}

main.page-network .results .wrap {
  padding: 0 10px;
  margin: 20px 0;
}

main.page-network .results h1 {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  font-weight: normal;
}

main.page-network .results .order-bar {
  float: right;
  margin: 0 0 16px 10px;
}

@media screen and (min-width: 768px) {
  main.page-network .address-filter {
    border-bottom: 1px solid #ECEBEB;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
  main.page-network .location-map {
    position: absolute;
    right: 0;
    left: 55%;
    height: calc(100vh - 76px);
    top: 179px;
  }
  main.page-network .location-map.is-fixed {
    position: fixed;
    top: 76px;
    height: auto;
    bottom: 0;
  }
  main.page-network .results {
    width: 55%;
    min-height: calc(100vh - 160px);
  }
  main.page-network .results .wrap {
    padding: 0 15px;
    margin: 30px 0 20px;
  }
  main.page-network .results h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (min-width: 1020px) {
  main.page-network .location-map {
    top: 191px;
  }
}

@media screen and (min-width: 1200px) {
  main.page-network {
    padding-top: 18px;
  }
  main.page-network .address-filter .address-field {
    float: right;
    width: 24%;
    margin: 0;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  main.page-network .location-map {
    top: 147px;
  }
}

@media screen and (min-width: 1390px) {
  main.page-network .results {
    width: 55%;
  }
  main.page-network .results .wrap,
  main.page-network .results .result-list .network-entry-list li a {
    max-width: 768px;
    margin-left: auto;
  }
}

main.page-network-entry .slider {
  position: relative;
}

main.page-network-entry .slider .slides img {
  display: none;
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

main.page-network-entry .slider .slides img:first-child {
  display: block;
}

main.page-network-entry .slider .slides.active img {
  display: block;
}

main.page-network-entry .slider .bx-controls {
  display: inline;
}

main.page-network-entry .slider .bx-controls div {
  display: inline;
}

main.page-network-entry .slider .bx-controls a {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  background: no-repeat center center;
  background-size: auto 30px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

body.page-loaded main.page-network-entry .slider .bx-controls a {
  opacity: 1;
}

main.page-network-entry .slider .bx-controls a.bx-prev {
  left: 0;
  background-image: url(/img/ic-gallery-prev.svg);
}

main.page-network-entry .slider .bx-controls a.bx-next {
  right: 0;
  background-image: url(/img/ic-gallery-next.svg);
}

@media screen and (min-width: 768px) {
  main.page-network-entry .slider .bx-controls a {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    background-size: auto 40px;
  }
}

main.page-network-entry .details {
  padding: 20px 0 40px;
}

main.page-network-entry .details .hearts {
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer;
  color: #66666D;
}

main.page-network-entry .details .hearts i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(/img/ic-heart.svg) no-repeat center center;
  background-size: contain;
  margin: 0 4px 0 0;
  vertical-align: top;
}

main.page-network-entry .details .hearts small {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  vertical-align: top;
}

html.no-touchevents main.page-network-entry .details .hearts:hover i {
  background-image: url(/img/ic-heart-active.svg);
}

main.page-network-entry .details .hearts.active i {
  background-image: url(/img/ic-heart-active.svg);
}

main.page-network-entry .details article {
  font-family: "PT Sans", sans-serif;
  margin: 0 0 40px;
}

main.page-network-entry .details article .info {
  font-size: 16px;
  line-height: 24px;
  color: #66666D;
}

main.page-network-entry .details article h1 {
  margin: 10px 0 20px;
  color: #1E1C2F;
  font-family: "Crimson Text", serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 36px;
}

main.page-network-entry .details article .content {
  font-size: 14px;
  line-height: 22px;
  color: #3F3832;
}

main.page-network-entry .details article .content p {
  margin-bottom: 1em;
}

main.page-network-entry .details article .contact-links {
  margin: 20px 0 0;
}

main.page-network-entry .details article .contact-links .btn {
  margin: 0 0 6px;
}

main.page-network-entry .details aside {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #66666D;
}

main.page-network-entry .details aside .map {
  height: 40vh;
  height: calc(100vw - 20px);
  margin: 0 0 20px;
  background: #e5e2f3;
}

main.page-network-entry .details aside .location {
  margin: 0 0 20px;
}

main.page-network-entry .portfolio-section,
main.page-network-entry .arrangements-section {
  margin: 0 0 40px;
}

main.page-network-entry .portfolio-section h2,
main.page-network-entry .arrangements-section h2 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px;
}

main.page-network-entry .portfolio-section h2 small,
main.page-network-entry .arrangements-section h2 small {
  color: #66666D;
}

@media screen and (min-width: 768px) {
  main.page-network-entry .details {
    padding: 40px 0 80px;
  }
  main.page-network-entry .details article {
    float: left;
    width: 60%;
  }
  main.page-network-entry .details article h1 {
    font-size: 32px;
    line-height: 40px;
  }
  main.page-network-entry .details aside {
    float: right;
    width: 32%;
    padding-top: 94px;
  }
  main.page-network-entry .details aside .map {
    height: 282px;
  }
  main.page-network-entry .portfolio-section,
  main.page-network-entry .arrangements-section {
    margin: 0 0 80px;
  }
}

@media screen and (min-width: 1020px) {
  main.page-network-entry .details .hearts {
    right: 200px;
  }
}

footer {
  background: #a3a3a3;
  padding: 27px 0;
  color: white;
  text-align: center;
  font-family: "PT Sans", sans-serif;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

footer a {
  color: white;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

footer .legal {
  margin-bottom: 22px;
}

footer .legal span {
  display: block;
  margin-bottom: 6px;
}

footer .legal a {
  display: inline-block;
  margin: 0 12px;
}

footer .country-switch {
  margin-bottom: 22px;
}

footer .country-switch span {
  display: inline-block;
  cursor: pointer;
}

footer .country-switch span img {
  width: 24px;
  height: auto;
  margin: 0 6px 0 0;
}

footer .social a {
  display: inline-block;
  padding: 0 12px;
}

footer .social a img {
  display: block;
  width: 16px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

footer .copyright {
  margin: 22px auto 0;
  font-size: 12px;
  text-align: center;
  max-width: 280px;
}

@media screen and (min-width: 1020px) {
  footer .legal {
    float: left;
    text-align: left;
    margin-bottom: 0;
  }
  footer .legal span {
    display: inline-block;
    margin: 0 12px 0 0;
  }
  footer .country-switch {
    float: left;
    margin: 0 0 0 60px;
  }
  footer .social {
    float: right;
    text-align: right;
  }
  footer .copyright {
    margin: 20px 0 0;
    font-size: 14px;
    text-align: left;
    max-width: 100%;
  }
}

body.full-100-height {
  height: 100%;
}

.new-feed-page .pastel-background {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-top: 25px;
  padding-bottom: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 58, 58, 0.1)), color-stop(19.27%, rgba(245, 134, 53, 0.1)), color-stop(39.58%, rgba(255, 209, 47, 0.1)), color-stop(58.85%, rgba(56, 239, 129, 0.1)), color-stop(78.65%, rgba(30, 85, 228, 0.1)), color-stop(96.87%, rgba(121, 8, 150, 0.1))) no-repeat;
  background: linear-gradient(180deg, rgba(239, 58, 58, 0.1) 0%, rgba(245, 134, 53, 0.1) 19.27%, rgba(255, 209, 47, 0.1) 39.58%, rgba(56, 239, 129, 0.1) 58.85%, rgba(30, 85, 228, 0.1) 78.65%, rgba(121, 8, 150, 0.1) 96.87%) no-repeat;
  width: 100vw;
  height: inherit;
}

.new-feed-page .pastel-background .justify-self-right {
  justify-self: flex-end;
}

.new-feed-page .pastel-background .justify-content-right {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.new-feed-page .pastel-background .justify-self-left {
  justify-self: flex-start;
}

.new-feed-page .pastel-background .justify-content-left {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.new-feed-page .pastel-background section {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  margin: 3vw 0px;
}

.new-feed-page .pastel-background section .home-section-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  max-width: 1000px;
  width: 75vw !important;
  max-height: 400px !important;
  height: 40vw;
  position: relative;
  align-content: flex-end;
}

.new-feed-page .pastel-background section .section-img {
  display: -webkit-box;
  display: flex;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  align-content: flex-end;
}

.new-feed-page .pastel-background section .section-img img {
  overflow: hidden;
  position: absolute;
  width: 90%;
}

.new-feed-page .pastel-background section .red-border {
  border: 1.2vw solid #fef0ec;
}

.new-feed-page .pastel-background section .orange-border {
  border: 1.2vw solid #fff7ec;
}

.new-feed-page .pastel-background section .yellow-border {
  border: 1.2vw solid #f4fcef;
}

.new-feed-page .pastel-background section .green-border {
  border: 1.2vw solid #ebf5f8;
}

.new-feed-page .pastel-background section .blue-border {
  border: 1.2vw solid #efe9f8;
}

.new-feed-page .pastel-background section .title-block-wrapper {
  margin-bottom: 10%;
  align-self: flex-end;
  position: absolute;
  display: -webkit-box;
  display: flex;
}

.new-feed-page .pastel-background section .title-block {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  max-width: 610px;
  display: -webkit-box;
  display: flex;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 3;
}

.new-feed-page .pastel-background section .title-block h1 {
  font-size: 4vw;
  padding: 2vw 3vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1600px) {
  .new-feed-page .pastel-background section .title-block body {
    font-size: 63px;
  }
  .new-feed-page .pastel-background section .title-block h1 {
    font-size: 3vw;
    padding: 2vw 3vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (max-width: 599px) {
  .new-feed-page .pastel-background section .title-block h1 {
    font-size: 4vw;
    padding: 2vw 3vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.new-feed-page .mySlides {
  display: -webkit-box;
  display: flex;
  justify-self: right;
}

.new-feed-page .slideshow-container {
  width: 90%;
  position: relative;
}

.new-feed-page .caption {
  color: #fff;
  font-size: 22px;
  padding: 8px 12px;
  position: absolute;
  width: 100%;
  text-align: right;
  z-index: 10;
  font-family: inherit;
  justify-self: flex-end;
}

.new-feed-page .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {
    opacity: .6;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: .6;
  }
  to {
    opacity: 1;
  }
}
