
.editr {
  border: 1px solid #e4e4e4;
  width: 100%;
}
.editr--toolbar {
  background: #f6f6f6;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
}
.editr--toolbar a {
  display: inline-block;
  width: 8vw;
  max-width: 32px;
  height: 32px;
  color: #333;
  fill: #333;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.editr--toolbar a:hover {
  background: rgba(0,0,0,0.1);
}
.editr--toolbar a:active {
  background: rgba(0,0,0,0.2);
}
.editr--toolbar a svg {
  width: 16px;
  height: 16px;
  margin: 8px auto;
}
.editr--toolbar a svg path {
  fill: inherit;
}
.editr--toolbar a.vw-btn-separator {
  width: 1px;
  margin: 0 8px;
}
.editr--toolbar a.vw-btn-separator:hover {
  background: initial;
  cursor: default;
}
.editr--toolbar a.vw-btn-separator i.vw-separator {
  border-left: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  position: absolute;
  width: 1px;
}
.editr--toolbar .dashboard {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  text-align: left;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #f6f6f6;
}
.editr--content {
  min-height: 150px;
  padding: 12px 8px 16px 8px;
  line-height: 1.33;
  font-family: inherit;
  color: inherit;
  overflow-y: auto;
}
.editr--content[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: rgba(0,0,0,0.3);
  display: block; /* For Firefox */
}
.editr--content img {
  max-width: 100%;
}
.editr--content table {
  width: 100%;
  border-collapse: collapse;
}
.editr--content table th {
  text-align: left;
}
.editr--content table th,
.editr--content table td {
  border: 1px solid #ddd;
  padding: 2px;
}
.editr--content:focus {
  outline: 0;
}
.editr--content ul li,
.editr--content ol li {
  list-style-position: inside;
}
@media screen and (max-width: 320px) {
.editr--toolbar a {
    margin: 0 2px;
}
.editr--toolbar a.vw-btn-separator {
    display: none;
}
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.dropzone, .dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
      background: -o-linear-gradient(top, #eee, #ddd);
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          -o-text-overflow: ellipsis;
             text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      -o-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
        background: -o-linear-gradient(top, #666, #444);
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
      background: -o-linear-gradient(top, #be2626, #a92222);
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.vue-dropzone {
  border: 2px solid #E5E5E5;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.2px;
  color: #777;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.vue-dropzone:hover {
  background-color: #F6F6F6;
}
.vue-dropzone i {
  color: #CCC;
}
.vue-dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.vue-dropzone .dz-preview .dz-image img:not([src]) {
  width: 200px;
  height: 200px;
}
.vue-dropzone .dz-preview .dz-image:hover img {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-filter: none;
}
.vue-dropzone .dz-preview .dz-details {
  bottom: 0;
  top: 0;
  color: white;
  background-color: rgba(33, 150, 243, 0.8);
  -webkit-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
  text-align: left;
}
.vue-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden;
}
.vue-dropzone .dz-preview .dz-details .dz-filename span,
.vue-dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: none;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: transparent;
  border: none;
}
.vue-dropzone .dz-preview .dz-progress .dz-upload {
  background: #cccccc;
}
.vue-dropzone .dz-preview .dz-remove {
  position: absolute;
  z-index: 30;
  color: white;
  margin-left: 15px;
  padding: 10px;
  top: inherit;
  bottom: 15px;
  border: 2px white solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  opacity: 0;
}
.vue-dropzone .dz-preview:hover .dz-remove {
  opacity: 1;
}
.vue-dropzone .dz-preview .dz-success-mark,
.vue-dropzone .dz-preview .dz-error-mark {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  top: 35%;
  left: 0;
}
.vue-dropzone .dz-preview .dz-success-mark svg,
.vue-dropzone .dz-preview .dz-error-mark svg {
  margin-left: auto;
  margin-right: auto;
}
.vue-dropzone .dz-preview .dz-error-message {
  top: calc(15%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 100%;
}
.vue-dropzone .dz-preview .dz-error-message:after {
  bottom: -6px;
  top: initial;
  border-top: 6px solid #a92222;
  border-bottom: none;
}


.form[data-v-ebce4d12] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}
.form label[data-v-ebce4d12] {
  margin-right: 1rem;
}
fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid transparent;border-top-color:#41b883;box-shadow:0 0 0 1px transparent}.multiselect__spinner:before{animation:spinning 2.4s cubic-bezier(.41,.26,.2,.62);animation-iteration-count:infinite}.multiselect__spinner:after{animation:spinning 2.4s cubic-bezier(.51,.09,.21,.8);animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{background:#ededed;pointer-events:none;opacity:.6}.multiselect--active{z-index:50}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;transition:border .1s ease;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:8px 40px 0 8px;border-radius:5px;border:1px solid #e8e8e8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:4px 26px 4px 10px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#41b883;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis}.multiselect__tag-icon{cursor:pointer;margin-left:7px;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#266d4d;font-size:14px}.multiselect__tag-icon:focus,.multiselect__tag-icon:hover{background:#369a6e}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#fff}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{position:absolute;width:40px;height:38px;right:1px;top:1px;padding:4px 8px;text-align:center;transition:transform .2s ease}.multiselect__select:before{position:relative;right:0;top:65%;color:#999;margin-top:4px;border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 0;content:""}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #e8e8e8;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:50;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:12px;min-height:40px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#41b883;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#41b883;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@keyframes spinning{0%{transform:rotate(0)}to{transform:rotate(2turn)}}
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,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;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}*{-webkit-box-sizing:border-box;box-sizing:border-box;outline:none}img{max-width:100%}a{color:inherit;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.row{max-width:50000px;margin:0 auto}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.column{float:left;width:100%}@media (min-width: 1440px) and (max-width: 50000px){.column{padding-left:55px;padding-right:55px}.row .row{margin-left:-55px;margin-right:-55px;max-width:none}.XL-1{width:8.33333%}.XL-2{width:16.66667%}.XL-3{width:25%}.XL-4{width:33.33333%}.XL-5{width:41.66667%}.XL-6{width:50%}.XL-7{width:58.33333%}.XL-8{width:66.66667%}.XL-9{width:75%}.XL-10{width:83.33333%}.XL-11{width:91.66667%}.XL-12{width:100%}.XL-block-grid-1{margin:0 -55px}.XL-block-grid-1:before{content:"";display:table}.XL-block-grid-1:after{content:"";display:table;clear:both}.XL-block-grid-1>*{float:left;width:100%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-1>*:nth-child(1n+1){clear:both}.XL-block-grid-2{margin:0 -55px}.XL-block-grid-2:before{content:"";display:table}.XL-block-grid-2:after{content:"";display:table;clear:both}.XL-block-grid-2>*{float:left;width:50%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-2>*:nth-child(2n+1){clear:both}.XL-block-grid-3{margin:0 -55px}.XL-block-grid-3:before{content:"";display:table}.XL-block-grid-3:after{content:"";display:table;clear:both}.XL-block-grid-3>*{float:left;width:33.33333%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-3>*:nth-child(3n+1){clear:both}.XL-block-grid-4{margin:0 -55px}.XL-block-grid-4:before{content:"";display:table}.XL-block-grid-4:after{content:"";display:table;clear:both}.XL-block-grid-4>*{float:left;width:25%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-4>*:nth-child(4n+1){clear:both}.XL-block-grid-5{margin:0 -55px}.XL-block-grid-5:before{content:"";display:table}.XL-block-grid-5:after{content:"";display:table;clear:both}.XL-block-grid-5>*{float:left;width:20%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-5>*:nth-child(5n+1){clear:both}.XL-block-grid-6{margin:0 -55px}.XL-block-grid-6:before{content:"";display:table}.XL-block-grid-6:after{content:"";display:table;clear:both}.XL-block-grid-6>*{float:left;width:16.66667%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-6>*:nth-child(6n+1){clear:both}.XL-block-grid-7{margin:0 -55px}.XL-block-grid-7:before{content:"";display:table}.XL-block-grid-7:after{content:"";display:table;clear:both}.XL-block-grid-7>*{float:left;width:14.28571%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-7>*:nth-child(7n+1){clear:both}.XL-block-grid-8{margin:0 -55px}.XL-block-grid-8:before{content:"";display:table}.XL-block-grid-8:after{content:"";display:table;clear:both}.XL-block-grid-8>*{float:left;width:12.5%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-8>*:nth-child(8n+1){clear:both}.XL-block-grid-9{margin:0 -55px}.XL-block-grid-9:before{content:"";display:table}.XL-block-grid-9:after{content:"";display:table;clear:both}.XL-block-grid-9>*{float:left;width:11.11111%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-9>*:nth-child(9n+1){clear:both}.XL-block-grid-10{margin:0 -55px}.XL-block-grid-10:before{content:"";display:table}.XL-block-grid-10:after{content:"";display:table;clear:both}.XL-block-grid-10>*{float:left;width:10%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-10>*:nth-child(10n+1){clear:both}.XL-block-grid-11{margin:0 -55px}.XL-block-grid-11:before{content:"";display:table}.XL-block-grid-11:after{content:"";display:table;clear:both}.XL-block-grid-11>*{float:left;width:9.09091%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-11>*:nth-child(11n+1){clear:both}.XL-block-grid-12{margin:0 -55px}.XL-block-grid-12:before{content:"";display:table}.XL-block-grid-12:after{content:"";display:table;clear:both}.XL-block-grid-12>*{float:left;width:8.33333%;padding-left:55px;padding-right:55px;padding-bottom:110px}.XL-block-grid-12>*:nth-child(12n+1){clear:both}.XL-only-hide{display:none !important}}@media (min-width: 1440px){.XL-up-hide{display:none !important}}@media (max-width: 50000px){.XL-down-hide{display:none !important}}@media (max-width: 1439px), (min-width: 50001px){.XL-only-show{display:none !important}}@media (max-width: 1439px){.XL-up-show{display:none !important}}@media (min-width: 50001px){.XL-down-show{display:none !important}}@media (min-width: 1024px) and (max-width: 1439px){.column{padding-left:55px;padding-right:55px}.row .row{margin-left:-55px;margin-right:-55px;max-width:none}.L-1{width:8.33333%}.L-2{width:16.66667%}.L-3{width:25%}.L-4{width:33.33333%}.L-5{width:41.66667%}.L-6{width:50%}.L-7{width:58.33333%}.L-8{width:66.66667%}.L-9{width:75%}.L-10{width:83.33333%}.L-11{width:91.66667%}.L-12{width:100%}.L-block-grid-1{margin:0 -55px}.L-block-grid-1:before{content:"";display:table}.L-block-grid-1:after{content:"";display:table;clear:both}.L-block-grid-1>*{float:left;width:100%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-1>*:nth-child(1n+1){clear:both}.L-block-grid-2{margin:0 -55px}.L-block-grid-2:before{content:"";display:table}.L-block-grid-2:after{content:"";display:table;clear:both}.L-block-grid-2>*{float:left;width:50%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-2>*:nth-child(2n+1){clear:both}.L-block-grid-3{margin:0 -55px}.L-block-grid-3:before{content:"";display:table}.L-block-grid-3:after{content:"";display:table;clear:both}.L-block-grid-3>*{float:left;width:33.33333%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-3>*:nth-child(3n+1){clear:both}.L-block-grid-4{margin:0 -55px}.L-block-grid-4:before{content:"";display:table}.L-block-grid-4:after{content:"";display:table;clear:both}.L-block-grid-4>*{float:left;width:25%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-4>*:nth-child(4n+1){clear:both}.L-block-grid-5{margin:0 -55px}.L-block-grid-5:before{content:"";display:table}.L-block-grid-5:after{content:"";display:table;clear:both}.L-block-grid-5>*{float:left;width:20%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-5>*:nth-child(5n+1){clear:both}.L-block-grid-6{margin:0 -55px}.L-block-grid-6:before{content:"";display:table}.L-block-grid-6:after{content:"";display:table;clear:both}.L-block-grid-6>*{float:left;width:16.66667%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-6>*:nth-child(6n+1){clear:both}.L-block-grid-7{margin:0 -55px}.L-block-grid-7:before{content:"";display:table}.L-block-grid-7:after{content:"";display:table;clear:both}.L-block-grid-7>*{float:left;width:14.28571%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-7>*:nth-child(7n+1){clear:both}.L-block-grid-8{margin:0 -55px}.L-block-grid-8:before{content:"";display:table}.L-block-grid-8:after{content:"";display:table;clear:both}.L-block-grid-8>*{float:left;width:12.5%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-8>*:nth-child(8n+1){clear:both}.L-block-grid-9{margin:0 -55px}.L-block-grid-9:before{content:"";display:table}.L-block-grid-9:after{content:"";display:table;clear:both}.L-block-grid-9>*{float:left;width:11.11111%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-9>*:nth-child(9n+1){clear:both}.L-block-grid-10{margin:0 -55px}.L-block-grid-10:before{content:"";display:table}.L-block-grid-10:after{content:"";display:table;clear:both}.L-block-grid-10>*{float:left;width:10%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-10>*:nth-child(10n+1){clear:both}.L-block-grid-11{margin:0 -55px}.L-block-grid-11:before{content:"";display:table}.L-block-grid-11:after{content:"";display:table;clear:both}.L-block-grid-11>*{float:left;width:9.09091%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-11>*:nth-child(11n+1){clear:both}.L-block-grid-12{margin:0 -55px}.L-block-grid-12:before{content:"";display:table}.L-block-grid-12:after{content:"";display:table;clear:both}.L-block-grid-12>*{float:left;width:8.33333%;padding-left:55px;padding-right:55px;padding-bottom:110px}.L-block-grid-12>*:nth-child(12n+1){clear:both}.L-only-hide{display:none !important}}@media (min-width: 1024px){.L-up-hide{display:none !important}}@media (max-width: 1439px){.L-down-hide{display:none !important}}@media (max-width: 1023px), (min-width: 1440px){.L-only-show{display:none !important}}@media (max-width: 1023px){.L-up-show{display:none !important}}@media (min-width: 1440px){.L-down-show{display:none !important}}@media (min-width: 768px) and (max-width: 1023px){.column{padding-left:35px;padding-right:35px}.row .row{margin-left:-35px;margin-right:-35px;max-width:none}.M-1{width:8.33333%}.M-2{width:16.66667%}.M-3{width:25%}.M-4{width:33.33333%}.M-5{width:41.66667%}.M-6{width:50%}.M-7{width:58.33333%}.M-8{width:66.66667%}.M-9{width:75%}.M-10{width:83.33333%}.M-11{width:91.66667%}.M-12{width:100%}.M-block-grid-1{margin:0 -35px}.M-block-grid-1:before{content:"";display:table}.M-block-grid-1:after{content:"";display:table;clear:both}.M-block-grid-1>*{float:left;width:100%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-1>*:nth-child(1n+1){clear:both}.M-block-grid-2{margin:0 -35px}.M-block-grid-2:before{content:"";display:table}.M-block-grid-2:after{content:"";display:table;clear:both}.M-block-grid-2>*{float:left;width:50%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-2>*:nth-child(2n+1){clear:both}.M-block-grid-3{margin:0 -35px}.M-block-grid-3:before{content:"";display:table}.M-block-grid-3:after{content:"";display:table;clear:both}.M-block-grid-3>*{float:left;width:33.33333%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-3>*:nth-child(3n+1){clear:both}.M-block-grid-4{margin:0 -35px}.M-block-grid-4:before{content:"";display:table}.M-block-grid-4:after{content:"";display:table;clear:both}.M-block-grid-4>*{float:left;width:25%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-4>*:nth-child(4n+1){clear:both}.M-block-grid-5{margin:0 -35px}.M-block-grid-5:before{content:"";display:table}.M-block-grid-5:after{content:"";display:table;clear:both}.M-block-grid-5>*{float:left;width:20%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-5>*:nth-child(5n+1){clear:both}.M-block-grid-6{margin:0 -35px}.M-block-grid-6:before{content:"";display:table}.M-block-grid-6:after{content:"";display:table;clear:both}.M-block-grid-6>*{float:left;width:16.66667%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-6>*:nth-child(6n+1){clear:both}.M-block-grid-7{margin:0 -35px}.M-block-grid-7:before{content:"";display:table}.M-block-grid-7:after{content:"";display:table;clear:both}.M-block-grid-7>*{float:left;width:14.28571%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-7>*:nth-child(7n+1){clear:both}.M-block-grid-8{margin:0 -35px}.M-block-grid-8:before{content:"";display:table}.M-block-grid-8:after{content:"";display:table;clear:both}.M-block-grid-8>*{float:left;width:12.5%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-8>*:nth-child(8n+1){clear:both}.M-block-grid-9{margin:0 -35px}.M-block-grid-9:before{content:"";display:table}.M-block-grid-9:after{content:"";display:table;clear:both}.M-block-grid-9>*{float:left;width:11.11111%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-9>*:nth-child(9n+1){clear:both}.M-block-grid-10{margin:0 -35px}.M-block-grid-10:before{content:"";display:table}.M-block-grid-10:after{content:"";display:table;clear:both}.M-block-grid-10>*{float:left;width:10%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-10>*:nth-child(10n+1){clear:both}.M-block-grid-11{margin:0 -35px}.M-block-grid-11:before{content:"";display:table}.M-block-grid-11:after{content:"";display:table;clear:both}.M-block-grid-11>*{float:left;width:9.09091%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-11>*:nth-child(11n+1){clear:both}.M-block-grid-12{margin:0 -35px}.M-block-grid-12:before{content:"";display:table}.M-block-grid-12:after{content:"";display:table;clear:both}.M-block-grid-12>*{float:left;width:8.33333%;padding-left:35px;padding-right:35px;padding-bottom:70px}.M-block-grid-12>*:nth-child(12n+1){clear:both}.M-only-hide{display:none !important}}@media (min-width: 768px){.M-up-hide{display:none !important}}@media (max-width: 1023px){.M-down-hide{display:none !important}}@media (max-width: 767px), (min-width: 1024px){.M-only-show{display:none !important}}@media (max-width: 767px){.M-up-show{display:none !important}}@media (min-width: 1024px){.M-down-show{display:none !important}}@media (min-width: 375px) and (max-width: 767px){.column{padding-left:28px;padding-right:28px}.row .row{margin-left:-28px;margin-right:-28px;max-width:none}.S-1{width:8.33333%}.S-2{width:16.66667%}.S-3{width:25%}.S-4{width:33.33333%}.S-5{width:41.66667%}.S-6{width:50%}.S-7{width:58.33333%}.S-8{width:66.66667%}.S-9{width:75%}.S-10{width:83.33333%}.S-11{width:91.66667%}.S-12{width:100%}.S-block-grid-1{margin:0 -28px}.S-block-grid-1:before{content:"";display:table}.S-block-grid-1:after{content:"";display:table;clear:both}.S-block-grid-1>*{float:left;width:100%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-1>*:nth-child(1n+1){clear:both}.S-block-grid-2{margin:0 -28px}.S-block-grid-2:before{content:"";display:table}.S-block-grid-2:after{content:"";display:table;clear:both}.S-block-grid-2>*{float:left;width:50%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-2>*:nth-child(2n+1){clear:both}.S-block-grid-3{margin:0 -28px}.S-block-grid-3:before{content:"";display:table}.S-block-grid-3:after{content:"";display:table;clear:both}.S-block-grid-3>*{float:left;width:33.33333%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-3>*:nth-child(3n+1){clear:both}.S-block-grid-4{margin:0 -28px}.S-block-grid-4:before{content:"";display:table}.S-block-grid-4:after{content:"";display:table;clear:both}.S-block-grid-4>*{float:left;width:25%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-4>*:nth-child(4n+1){clear:both}.S-block-grid-5{margin:0 -28px}.S-block-grid-5:before{content:"";display:table}.S-block-grid-5:after{content:"";display:table;clear:both}.S-block-grid-5>*{float:left;width:20%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-5>*:nth-child(5n+1){clear:both}.S-block-grid-6{margin:0 -28px}.S-block-grid-6:before{content:"";display:table}.S-block-grid-6:after{content:"";display:table;clear:both}.S-block-grid-6>*{float:left;width:16.66667%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-6>*:nth-child(6n+1){clear:both}.S-block-grid-7{margin:0 -28px}.S-block-grid-7:before{content:"";display:table}.S-block-grid-7:after{content:"";display:table;clear:both}.S-block-grid-7>*{float:left;width:14.28571%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-7>*:nth-child(7n+1){clear:both}.S-block-grid-8{margin:0 -28px}.S-block-grid-8:before{content:"";display:table}.S-block-grid-8:after{content:"";display:table;clear:both}.S-block-grid-8>*{float:left;width:12.5%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-8>*:nth-child(8n+1){clear:both}.S-block-grid-9{margin:0 -28px}.S-block-grid-9:before{content:"";display:table}.S-block-grid-9:after{content:"";display:table;clear:both}.S-block-grid-9>*{float:left;width:11.11111%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-9>*:nth-child(9n+1){clear:both}.S-block-grid-10{margin:0 -28px}.S-block-grid-10:before{content:"";display:table}.S-block-grid-10:after{content:"";display:table;clear:both}.S-block-grid-10>*{float:left;width:10%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-10>*:nth-child(10n+1){clear:both}.S-block-grid-11{margin:0 -28px}.S-block-grid-11:before{content:"";display:table}.S-block-grid-11:after{content:"";display:table;clear:both}.S-block-grid-11>*{float:left;width:9.09091%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-11>*:nth-child(11n+1){clear:both}.S-block-grid-12{margin:0 -28px}.S-block-grid-12:before{content:"";display:table}.S-block-grid-12:after{content:"";display:table;clear:both}.S-block-grid-12>*{float:left;width:8.33333%;padding-left:28px;padding-right:28px;padding-bottom:56px}.S-block-grid-12>*:nth-child(12n+1){clear:both}.S-only-hide{display:none !important}}@media (min-width: 375px){.S-up-hide{display:none !important}}@media (max-width: 767px){.S-down-hide{display:none !important}}@media (max-width: 374px), (min-width: 768px){.S-only-show{display:none !important}}@media (max-width: 374px){.S-up-show{display:none !important}}@media (min-width: 768px){.S-down-show{display:none !important}}@media (min-width: 0px) and (max-width: 374px){.column{padding-left:22px;padding-right:22px}.row .row{margin-left:-22px;margin-right:-22px;max-width:none}.XS-1{width:8.33333%}.XS-2{width:16.66667%}.XS-3{width:25%}.XS-4{width:33.33333%}.XS-5{width:41.66667%}.XS-6{width:50%}.XS-7{width:58.33333%}.XS-8{width:66.66667%}.XS-9{width:75%}.XS-10{width:83.33333%}.XS-11{width:91.66667%}.XS-12{width:100%}.XS-block-grid-1{margin:0 -22px}.XS-block-grid-1:before{content:"";display:table}.XS-block-grid-1:after{content:"";display:table;clear:both}.XS-block-grid-1>*{float:left;width:100%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-1>*:nth-child(1n+1){clear:both}.XS-block-grid-2{margin:0 -22px}.XS-block-grid-2:before{content:"";display:table}.XS-block-grid-2:after{content:"";display:table;clear:both}.XS-block-grid-2>*{float:left;width:50%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-2>*:nth-child(2n+1){clear:both}.XS-block-grid-3{margin:0 -22px}.XS-block-grid-3:before{content:"";display:table}.XS-block-grid-3:after{content:"";display:table;clear:both}.XS-block-grid-3>*{float:left;width:33.33333%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-3>*:nth-child(3n+1){clear:both}.XS-block-grid-4{margin:0 -22px}.XS-block-grid-4:before{content:"";display:table}.XS-block-grid-4:after{content:"";display:table;clear:both}.XS-block-grid-4>*{float:left;width:25%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-4>*:nth-child(4n+1){clear:both}.XS-block-grid-5{margin:0 -22px}.XS-block-grid-5:before{content:"";display:table}.XS-block-grid-5:after{content:"";display:table;clear:both}.XS-block-grid-5>*{float:left;width:20%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-5>*:nth-child(5n+1){clear:both}.XS-block-grid-6{margin:0 -22px}.XS-block-grid-6:before{content:"";display:table}.XS-block-grid-6:after{content:"";display:table;clear:both}.XS-block-grid-6>*{float:left;width:16.66667%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-6>*:nth-child(6n+1){clear:both}.XS-block-grid-7{margin:0 -22px}.XS-block-grid-7:before{content:"";display:table}.XS-block-grid-7:after{content:"";display:table;clear:both}.XS-block-grid-7>*{float:left;width:14.28571%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-7>*:nth-child(7n+1){clear:both}.XS-block-grid-8{margin:0 -22px}.XS-block-grid-8:before{content:"";display:table}.XS-block-grid-8:after{content:"";display:table;clear:both}.XS-block-grid-8>*{float:left;width:12.5%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-8>*:nth-child(8n+1){clear:both}.XS-block-grid-9{margin:0 -22px}.XS-block-grid-9:before{content:"";display:table}.XS-block-grid-9:after{content:"";display:table;clear:both}.XS-block-grid-9>*{float:left;width:11.11111%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-9>*:nth-child(9n+1){clear:both}.XS-block-grid-10{margin:0 -22px}.XS-block-grid-10:before{content:"";display:table}.XS-block-grid-10:after{content:"";display:table;clear:both}.XS-block-grid-10>*{float:left;width:10%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-10>*:nth-child(10n+1){clear:both}.XS-block-grid-11{margin:0 -22px}.XS-block-grid-11:before{content:"";display:table}.XS-block-grid-11:after{content:"";display:table;clear:both}.XS-block-grid-11>*{float:left;width:9.09091%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-11>*:nth-child(11n+1){clear:both}.XS-block-grid-12{margin:0 -22px}.XS-block-grid-12:before{content:"";display:table}.XS-block-grid-12:after{content:"";display:table;clear:both}.XS-block-grid-12>*{float:left;width:8.33333%;padding-left:22px;padding-right:22px;padding-bottom:44px}.XS-block-grid-12>*:nth-child(12n+1){clear:both}.XS-only-hide{display:none !important}}@media (min-width: 0px){.XS-up-hide{display:none !important}}@media (max-width: 374px){.XS-down-hide{display:none !important}}@media (max-width: -1px), (min-width: 375px){.XS-only-show{display:none !important}}@media (max-width: -1px){.XS-up-show{display:none !important}}@media (min-width: 375px){.XS-down-show{display:none !important}}body{font-size:16px;font-family:"SFUIDisplay",sans-serif;line-height:1.3;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow:hidden;color:#3E4F3C}body.modal-opened{overflow:hidden}input,button,form,textarea{font-family:"SFUIDisplay",sans-serif}button{cursor:pointer}a{color:#3E4F3C;cursor:pointer}a:visited{color:#3E4F3C}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background-color:#D7DBD7}::-webkit-scrollbar-thumb{background:#7f886b;border-radius:4px}h1,h2,h3,h4,h5,h6{font-family:"SFUIDisplay",sans-serif}h1{font-size:30px}h2{font-size:28px}h3{font-size:26px}h4{font-size:24px}h5{font-size:22px}h6{font-size:20px}article,article p,article li{font-size:14px}article strong{font-weight:bold}article em{font-style:italic}article a{color:red;text-decoration:none}article a:hover{text-decoration:underline}.flash-messages-block .flash-list{display:block}.flash-messages-block .flash-list li{display:block;font-size:18px}.flash-messages-block .flash-list li .message{height:60px;line-height:60px;padding-left:60px}.flash-messages-block .flash-list li.error{background-color:#FDEAEA;border-bottom:1px solid #E3B7B7}.flash-messages-block .flash-list li.error .message{background:rgba(0,0,0,0) url(/static/images-processed/error-flash-672f93e098ef073b6043b897c2d79af5.png) 0 50% no-repeat;background-size:40px 40px;color:#955F5F}.flash-messages-block .flash-list li.success{background-color:#D5F8AD;border-bottom:1px solid #A6D76E}.flash-messages-block .flash-list li.success .message{background:rgba(0,0,0,0) url(/static/images-processed/success-flash-7c5e29877f94b5fbb6b05536673decf1.png) 0 50% no-repeat;background-size:40px 40px;color:#698D3F}form label{font-size:12px;color:#9f9f9f;margin-bottom:2px;display:block}form input[type="checkbox"]+label{position:relative;vertical-align:middle;bottom:5px;font-size:16px;display:inline-block;max-width:calc(100% - 60px)}form ul.errors{list-style:none;color:#FE6F3D;font-size:13px}form ul.errors li{margin-bottom:2px}form ul.errors li:first-child{margin-top:10px}form ul.errors li:last-child{margin-bottom:0}form ul.errors li:before{content:'*'}form .form-field{position:relative}form .form-field.required:after{position:absolute;right:0;opacity:1;content:'';top:0;width:8px;height:8px;background:#FE6F3D;border-radius:50%}form input[type="text"],form input[type="search"],form input[type="password"],form input[type="date"],form input[type="number"],form input[type="tel"],form textarea,form select{-webkit-box-shadow:none;box-shadow:none;padding:0 20px;font-size:16px;color:#3E4F3C;width:100%;height:45px;display:block;border-radius:6px;border:1px solid #7f886b}form input[type="text"].small,form input[type="search"].small,form input[type="password"].small,form input[type="date"].small,form input[type="number"].small,form input[type="tel"].small,form textarea.small,form select.small{height:37px;padding:0 19px}form input[type="text"].narrow,form input[type="search"].narrow,form input[type="password"].narrow,form input[type="date"].narrow,form input[type="number"].narrow,form input[type="tel"].narrow,form textarea.narrow,form select.narrow{max-width:150px}form label+input[type="text"],form input[type="search"],form input[type="password"],form input[type="date"],form input[type="number"],form input[type="tel"].small{display:inline-block}form textarea{padding:5px 10px;resize:none;max-width:none;min-height:59px}form ::-webkit-inner-spin-button{display:none}form input[type="checkbox"]{position:relative;width:18px;height:18px;min-width:18px;min-height:18px;border:2px solid #7f886b;border-radius:5px;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;cursor:pointer}form input[type="checkbox"]::before{position:absolute;content:'';display:block;top:1px;left:4px;width:4px;height:8px;border-style:solid;border-color:white;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);opacity:0}form input[type="checkbox"]:checked{color:white;background:#7f886b}form input[type="checkbox"]:checked::before{opacity:1}form input[type="checkbox"]:checked ~ label::before{-webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%);clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%)}form input[type="checkbox"]:checked:disabled{color:white;background:#7f886b}form input[type="checkbox"]:checked:disabled::before{opacity:1}form input[type="checkbox"]:checked:disabled ~ label::before{-webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%);clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%)}.image-icon{display:inline-block;vertical-align:middle}.svg-icon{display:inline-block;vertical-align:middle}.modal__bg{position:fixed;height:100%;width:100%;background:white;background:rgba(0,0,0,0.76);z-index:10000;display:none;top:0;left:0;overflow-y:scroll}.modal__bg.opened{display:block}.modal__layout{display:none;position:relative;z-index:11000;cursor:default;padding:80px 0;margin:0 auto;min-height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.modal__layout.opened{display:-webkit-box;display:-ms-flexbox;display:flex}.modal__container{padding:52px 56px 59px 46px;border-radius:5px;background:#fff;-webkit-box-shadow:3px 4px 35px rgba(92,99,100,0.27);box-shadow:3px 4px 35px rgba(92,99,100,0.27);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.modal__container_vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.modal__content img{max-width:100%;height:auto}.modal__closer{position:absolute;top:10px;right:10px;font-size:30px;color:rgba(0,0,0,0.76);text-decoration:none;cursor:pointer}.modal__loader{display:block;position:fixed;z-index:3000;left:0;right:0;bottom:0;top:0;background-color:rgba(0,0,0,0.76);-webkit-transition:0.3s all;-o-transition:0.3s all;transition:0.3s all;opacity:0;visibility:hidden}body.modal-loading{overflow:hidden}body.modal-loading .modal__loader{opacity:1;visibility:visible}body.modal-loading .modal__loader:before,body.modal-loading .modal__loader:after{content:'';position:fixed;width:100px;height:100px;left:50%;top:50%;margin-left:-50px;margin-top:-50px;background-color:#000;border-radius:50px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}body.modal-loading .modal__loader:before{background-color:#ff4d4d;-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-duration:1.4s;animation-duration:1.4s;-webkit-animation-delay:0.4s;animation-delay:0.4s}body.modal-loading .modal__loader:after{background-color:red;-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-duration:1.4s;animation-duration:1.4s}@-webkit-keyframes pulse{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0);transform:scale(0)}}@keyframes pulse{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0);transform:scale(0)}}.smart-tabs{list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.smart-tabs li a{display:block}.smart-content{display:none}.smart-content.active{display:block}.slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir="rtl"] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.psticky-transparent{position:static !important}.psticky-parent{position:relative}.psticky-dimension-top.psticky-sticky{position:fixed;top:0}.psticky-dimension-top.psticky-bottom{position:absolute;bottom:0}.psticky-dimension-top.psticky-top{position:static}.psticky-dimension-bottom.psticky-sticky{position:fixed;bottom:0}.psticky-dimension-bottom.psticky-top{position:absolute;top:0}.psticky-dimension-bottom.psticky-bottom{position:static}.theme-grey .vdatetime-popup__header{background:#F1F3F8;color:#3A3E44}.theme-grey .vdatetime-popup__actions__button{color:#6C707B}.theme-grey .vdatetime-calendar__month__day--selected>span>span{background:#6C707B}.theme-grey .vdatetime-calendar__month__day--selected>span>span:hover{background:#6C707B}.theme-grey .vdatetime-time-picker__item{color:#6C707B}.theme-grey .vdatetime-time-picker__item:hover{color:#000000;font-size:20px}.theme-grey .vdatetime-time-picker__item--selected{color:#000000;font-size:20px}.datepicker{border:none;font-size:17px;background:#F1F3F8;color:#6C707B}.button{font-size:16px;border-radius:6px;padding:0 35px;color:#3E4F3C;letter-spacing:0;line-height:1.2em;height:47px;text-align:center;-webkit-transition:background-color 0.4s, color 0.4s, border-color 0.4s;-o-transition:background-color 0.4s, color 0.4s, border-color 0.4s;transition:background-color 0.4s, color 0.4s, border-color 0.4s;border:1px solid rgba(255,35,76,0.16);font-weight:400;background-color:#ffffff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block}.button:hover{background-color:#FE6F3D;border-color:#FE6F3D;color:#fff}@media (max-width: 1439px){.button{font-size:16px;padding:0 25px}}.button_submit{font-size:18px;text-transform:uppercase;border-radius:6px;padding:18px 16px;max-width:270px;width:270px;height:57px;line-height:1.222;text-align:center;background-color:#7f886b;color:#ffffff;border:0;display:block}.button_submit:hover{background-color:#7f886b}.button_dark{background-color:#7f886b;color:#ffffff;border:0;text-transform:uppercase}.button_wide{width:100%;max-width:none}.button_transparent{background-color:transparent;border-color:#7F886B;text-transform:uppercase}.button_small{height:auto;padding:5px 10px;text-transform:none;font-size:13px}.button_middle{height:44px;padding:0 25px}.button_menu-action{background-color:transparent;border-color:#7F886B;text-transform:uppercase;padding:0}.button_menu-action:hover{background-color:transparent;border-color:#7F886B;text-transform:uppercase}.layout{background:#F4F4F4;display:grid;padding:10px 10px 10px 0;height:100vh;max-width:100vw;grid-template-areas:"sidebar header" "sidebar content";grid-template-columns:auto 1fr;grid-template-rows:auto 1fr;grid-column-gap:10px}.layout__sidebar{grid-area:sidebar}.layout__header{grid-area:header}.layout__content{grid-area:content;overflow:auto}.auth-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100vw;background-color:#F4F4F4;background-position:center;background-size:cover;background-repeat:no-repeat}.auth-wrapper__top-info-block{padding:17px 25px;border-radius:6px;font-size:16px;line-height:1.1875;width:calc(100% - 280px);position:fixed;top:10px;background-color:#F3ECDA}.auth-wrapper__bottom-info-block{position:fixed;bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;width:calc(100% - 280px);-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:16px;line-height:1.1875}.auth-wrapper__designer-icon{font-weight:700;font-size:16px;line-height:1.1875}.login{height:100vh;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.login__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:84px 138px;width:550px;height:573px;border-radius:6px;background:#fff;-webkit-box-shadow:0 3px 10px rgba(62,79,60,0.2);box-shadow:0 3px 10px rgba(62,79,60,0.2)}@media (max-width: 1439px){.login__container{padding:84px 110px;width:494px;height:515px}}.login__title{font-weight:bold;font-size:35px;line-height:1.2;text-align:center;margin-bottom:43px}@media (max-width: 1439px){.login__title{margin-bottom:19px}}.login__form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.login__data{margin-bottom:38px}.login__data input{height:54px !important}.login__data input[type="text"]+.label{opacity:1;margin-bottom:10px;font-size:12px;display:block;padding-left:5px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.login__data input[type="text"]:focus+.label{opacity:0;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.login__data input[type="password"]+.label{opacity:1;margin-bottom:10px;font-size:12px;display:block;padding-left:5px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.login__data input[type="password"]:focus+.label{opacity:0;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.login__field-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.login__eye-icon{position:absolute;bottom:23px;right:23px}.login__eye-icon.show .slash{display:none}.login__username{border:1px solid #EAECF2;margin-bottom:20px}.login__password{border:1px solid #EAECF2;margin-bottom:5px}.login__buttons{-ms-flex-item-align:center;align-self:center}.login__error{color:#990055;font-size:12px}.sidebar{border-radius:6px;position:relative;height:100%;background-color:#F3ECDA;-webkit-box-shadow:3px 0 4px rgba(62,79,60,0.3);box-shadow:3px 0 4px rgba(62,79,60,0.3);min-width:254px;width:100%;max-width:310px;z-index:10;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;font-size:18px}@media (max-width: 1439px){.sidebar{max-width:270px;font-size:16px}}.sidebar_collapsed{min-width:73px;width:73px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.sidebar_collapsed .sidebar__link-text{display:block;-webkit-transition:all 0s step-start;-o-transition:all 0s step-start;transition:all 0s step-start;opacity:0;width:0}.sidebar_collapsed .sidebar__nav{overflow-y:visible;min-width:73px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.sidebar_collapsed .sidebar__dropdown{width:100%}.sidebar_collapsed .sidebar__badge-hide{width:0;opacity:0}.sidebar_collapsed .sidebar__badge-not-hide{width:100%}.sidebar_collapsed .sidebar__left-hide{display:none}.sidebar_collapsed .sidebar__dropdown-arrow{width:0;opacity:0}.sidebar_collapsed .sidebar__dropdown-link-text{width:0;opacity:0;display:block}.sidebar_collapsed .sidebar__icon-hide{display:none}.sidebar_collapsed .sidebar__link,.sidebar_collapsed .sidebar__dropdown-content{opacity:0;width:0;height:0;visibility:hidden;padding:0;border:0}.sidebar_collapsed .sidebar__closer svg{margin-right:0;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sidebar_collapsed .sidebar__logout svg{margin-right:0}.sidebar__link-text{-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;color:#3E4F3C;font-size:18px;line-height:1.2;text-transform:uppercase}@media (max-width: 1439px){.sidebar__link-text{font-size:16px}}.sidebar__closer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sidebar__closer svg{margin-right:15px}.sidebar__logout-wrapper{position:absolute;width:100%;bottom:0px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sidebar__logout{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sidebar__logout svg{margin-right:15px}.sidebar__head{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:3px}.sidebar__actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1;flex:1}.sidebar__all{margin-bottom:15px}.sidebar__nav{margin:30px 0;width:100%;border-top:1px solid rgba(62,79,60,0.3);border-bottom:0;height:100%;max-height:calc(100vh - 54px*2 - 60px);overflow-y:auto;overflow-x:hidden}.sidebar__dropdown{position:relative;padding:6px 10px;display:-webkit-box;display:-ms-flexbox;display:flex;font-weight:bold;width:100%;border:1px solid rgba(62,79,60,0.3);border-top:0;height:54px;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-transition:all 0.4s,color 0s;-o-transition:all 0.4s,color 0s;transition:all 0.4s,color 0s}.sidebar__dropdown:hover{color:#fff;background-color:#7f886b}.sidebar__dropdown:hover .sidebar__link-icon svg path{fill:#fff}.sidebar__dropdown:hover .sidebar__dropdown-arrow path{stroke:#fff}.sidebar__dropdown_left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1 0 70%;flex:1 0 70%;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.sidebar__dropdown_right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1 1 30%;flex:1 1 30%}.sidebar__dropdown__dropdown-link-text{width:100%;-webkit-transition:all 0.4s step-end;-o-transition:all 0.4s step-end;transition:all 0.4s step-end;display:block}.sidebar__dropdown_close{color:#3E4F3C;background-color:#F3ECDA}.sidebar__dropdown_close .sidebar__dropdown-arrow{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.sidebar__dropdown-content{border:1px solid rgba(62,79,60,0.3);border-top:0;-webkit-transition:all 0.4s linear, border-bottom-width 0.4s step-start;-o-transition:all 0.4s linear, border-bottom-width 0.4s step-start;transition:all 0.4s linear, border-bottom-width 0.4s step-start;padding:15px}.sidebar__dropdown-content_close{border-bottom:0;padding-top:0;padding-bottom:0;height:0;-webkit-transition:all 0.4s linear, border-bottom-width 0.4s step-end;-o-transition:all 0.4s linear, border-bottom-width 0.4s step-end;transition:all 0.4s linear, border-bottom-width 0.4s step-end}.sidebar__dropdown-content_close .sidebar__link{padding-bottom:0;padding-top:0;opacity:0;width:100%;pointer-events:none;-webkit-transition:opacity 0s ease-in;-o-transition:opacity 0s ease-in;transition:opacity 0s ease-in}.sidebar__dropdown-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sidebar__link{position:relative;padding:6px 20px 6px 35px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:opacity 0.5s ease-out;-o-transition:opacity 0.5s ease-out;transition:opacity 0.5s ease-out;width:100%;height:100%}.sidebar__link:hover{color:#FE6F3D}.sidebar__link:hover .sidebar__link::before{background-color:#FE6F3D}.sidebar__link::before{opacity:1;content:'';display:inline-block;min-width:5px;min-height:5px;border-radius:2.5px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#3E4F3C;margin:0 15px 2px 0}.sidebar__link_iconable{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sidebar__link-icon{margin-right:5px}.sidebar__link-icon svg,.sidebar__link-icon img{display:block;margin-bottom:1px;width:50px}.sidebar__link.active{background:#3E4F3C}.sidebar__link.active .sidebar__count{background:#ffffff}.sidebar__name{position:relative;display:inline-block;color:#ffffff;font-size:15px;margin-right:7px;max-width:170px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.sidebar__badge{width:45px;margin:0;padding:0;text-align:center}.sidebar__count{background:#FE6F3D;padding:2px 5px 1px 5px;border-radius:5px;color:#fff;display:inline-block}.sidebar__category{margin-bottom:20px}.sidebar__category_collapsed{margin-bottom:0}.sidebar__category_collapsed .sidebar__items{display:none}.sidebar__category_collapsed .sidebar__group-arrow img{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.sidebar__group-arrow{padding-left:10px}.sidebar__group-arrow img{-webkit-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.header{background-color:#F3ECDA;border-radius:6px;-webkit-box-shadow:0 3px 4px rgba(62,79,60,0.3);box-shadow:0 3px 4px rgba(62,79,60,0.3);margin-bottom:6px;font-size:14px;line-height:1.1875;right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 6px 0 0}.header__left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.header__left button{height:100%;min-width:130px}.header__right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:2;-ms-flex:2 1;flex:2 1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.header__city{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1 0 calc(60% - 25px);flex:1 0 calc(60% - 25px)}.header__user{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 40%;flex:0 1 40%}.header__user svg{margin-right:14px}.header__user svg path{fill:#3E4F3C;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.header__user:hover svg path{-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;fill:#1d291d}.header__user:hover__user-name{color:#1d291d}.header__logout{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-ms-flex:0 0 25px;flex:0 0 25px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.header__user-name{color:#3E4F3C;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;font-size:16px}.header__button-back{display:-webkit-box;display:-ms-flexbox;display:flex;height:54px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:10px;padding-right:20px}.header__button-back svg{margin-right:9px}.header__button-back svg path{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.header__button-back:hover .header__button-back-text{color:#1d291d;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.header__button-back:hover svg path{fill:#1d291d;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.header__button-back-text{color:#3E4F3C}.header__breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex;height:54px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:20px;padding-right:20px}.header__breadcrumbs-item{font-weight:bold;display:inline;white-space:nowrap}.header__breadcrumbs-item a::after{content:'';display:inline-block;width:5px;height:5px;border-radius:2.5px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#3E4F3C;margin:0 5px 2px 2px}.header__select{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:10px;padding-right:20px;font-size:16px;width:100%;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width: 1439px){.header__select{font-size:14px}}.header__select__structure{white-space:nowrap}.header__select__structure::after{content:'';display:inline-block;width:5px;height:5px;border-radius:2.5px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#7f886b;margin:0 5px 2px 7px}.header__select__city{font-weight:bold;white-space:nowrap}.header__select__options{background-color:#fff;padding:30px;position:absolute;z-index:10;top:50px;-webkit-clip-path:polygon(-10px 5px, 47% 5px, 50% 0, 53% 5px, 110% 5px, 110% 110%, -10px 110%);clip-path:polygon(-10px 5px, 47% 5px, 50% 0, 53% 5px, 110% 5px, 110% 110%, -10px 110%);border-radius:5px;-webkit-box-shadow:3px 3px 10px rgba(62,79,60,0.2);box-shadow:3px 3px 10px rgba(62,79,60,0.2);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:100%}.header__select__options_close{display:none;visibility:hidden}.header__select__options_left{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;text-align:right}.header__select__options_right{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;text-align:left}.header__select__option{color:#3E4F3C;font-size:16px;line-height:1.8;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;white-space:nowrap}@media (max-width: 1439px){.header__select__option{font-size:14px}}.header__select__option_hover{color:#FE6F3D}.header__select__option_hover .header__select__option_structure:after{background-color:#FE6F3D}.header__select__option_structure{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:right}.header__select__option_structure:after{content:'';display:inline-block;width:5px;height:5px;border-radius:2.5px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#7f886b;margin:0 5px 2px 7px}.header__select__option_city{-webkit-box-flex:0;-ms-flex:0 1 50%;flex:0 1 50%}.table{width:100%;-webkit-box-shadow:0 3px 4px rgba(62,79,60,0.3);box-shadow:0 3px 4px rgba(62,79,60,0.3)}.table th,.table td{padding:20px 22px;font-size:14px;text-align:left;vertical-align:middle}.table th.text-left,.table td.text-left{text-align:left}.table th.text-center,.table td.text-center{text-align:center}.table th.text-right,.table td.text-right{text-align:right}.table th.empty-text,.table td.empty-text{text-align:left}.table__title{background-color:#fff;color:#3E4F3C;font-size:16px;padding:15px 0}.table__title th{border-bottom:1px solid #7f886b;padding:15px 25px;font-weight:bold}.table__sorting{background-color:#fff;color:#A0A0A0}.table__header{background-color:#7f886b;color:#fff}.table tbody tr{background-color:#fff;color:#3E4F3C}.table tbody tr:nth-child(2n){background-color:#F3ECDA}.table__arrow{cursor:pointer}.table__arrow_active{color:#FE6F3D}.table__custom-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.table__custom-title_left{-webkit-box-flex:1;-ms-flex:1 0;flex:1 0;text-align:left}.table__custom-title_right{-webkit-box-flex:1;-ms-flex:1 0;flex:1 0;text-align:right}.selected{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;width:100%}.selected.long{min-width:350px;max-width:none}.selected.long input{min-width:370px;max-width:none}.selected__input{padding-right:40px !important}.selected__input.small{padding-right:20px !important}.selected__input_cancel{padding-right:70px !important}.selected__input_cancel.small{padding-right:50px !important}.selected__icon{position:absolute;bottom:0;right:10px}.selected__icon.small{position:absolute;bottom:-5px;right:-5px}.selected__cancel{position:absolute;bottom:-2px;right:40px}.selected__cancel.small{position:absolute;bottom:-4px;right:20px}.selected__items{color:#3E4F3C;border-radius:0px 0px 6px 6px;overflow-y:auto;border:1px solid #7f886b;position:absolute;background-color:#F4F4F4;left:0;right:0;padding:0 20px 20px 20px;max-height:200px;font-size:16px;z-index:3}.selected__items_hide{display:none}.selected__item{color:#3E4F3C;padding:5px 10px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected__item:hover{background-color:#7f886b;color:#fff}.selected__search-input{margin-bottom:5px;position:sticky;top:0;background-color:#F4F4F4;padding:20px 0 10px 0}.selected__search-input_hidden{padding:20px 0 0 0}.selected__icon-search{position:absolute;top:55%;right:20px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.registry{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.registry__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:30px 50px;background:#F4F4F4;width:100%}@media (max-width: 1439px){.registry__container{padding:30px 40px}}.registry__header{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:6px;font-size:14px;line-height:1.1875;padding:15px 30px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;-webkit-box-shadow:0 3px 4px rgba(62,79,60,0.3);box-shadow:0 3px 4px rgba(62,79,60,0.3)}.registry__header_sand{background-color:#F3ECDA}.registry__buttons{margin:0 5px}.registry__title{font-weight:bold;margin-right:20px}.registry__table{margin:10px 0}.registry__table__icon-edit:hover{fill:#3E4F3C}.registry__table__icon-delete:hover line{stroke:#FE6F3D}.registry__table__price-span{display:block;width:100%;cursor:pointer}.registry__table__icon-restore:hover g path{fill:#FE6F3D}.registry__search{margin-left:auto;display:inline-block}.registry__search__icon{top:50%;right:20px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.registry__radios{margin-top:20px;margin-bottom:15px}.registry__radio-label{padding:10px;background-color:#fff;font-weight:bold;cursor:pointer}.registry__radio-label_active{background-color:#F3ECDA}.registry__filters{margin-top:5px;vertical-align:bottom;display:-webkit-box;display:-ms-flexbox;display:flex}.registry__filters .form-field{display:inline-block;margin:0 5px}.registry__filters .selected{margin:2px 15px 0 0}.registry__filters_icon{display:inline;vertical-align:middle;text-align:center}.registry__filters_icon svg{width:30px}.registry__filters_hint{font-size:12px;color:#9f9f9f;margin-bottom:2px;display:inline}.registry__filters__tag{font-size:14px;font-weight:bold;padding:5px 10px;display:inline-block;margin-right:10px;margin-bottom:10px;background-color:#F3ECDA}.registry__checkbox-field{vertical-align:middle;margin:5px 0}.registry__checkbox-field label{color:#3E4F3C;padding-bottom:5px}.registry__task-badge{margin:0 3px}.registry__task-badge_circle_grey::after{background-color:#B9B9B9}.registry__task-badge_circle_yellow::after{background-color:#FFC400}.registry__task-badge_circle_orange::after{background-color:#FE6F3D}.registry__task-badge_circle_green::after{background-color:#7F886B}.registry__task-badge_circle::after{content:'';display:inline-block;width:10px;height:10px;border-radius:5px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.registry__task-badges{white-space:nowrap;-webkit-box-flex:0;-ms-flex:0 0 70px;flex:0 0 70px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:5px}.registry__task-badges_center{max-width:50%}.registry__tasks-description{display:-webkit-box;display:-ms-flexbox;display:flex}.registry__task-description{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.delete-modal__container{margin:20px 30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.delete-modal__title{margin-bottom:20px}.delete-modal__buttons{margin-top:20px}.vue-dialog .dialog-content{margin:15px;width:auto !important}.dialog-title{font-size:18px;font-weight:bold}.dialog-question{font-size:16px;line-height:1.5}.dialog-question ul{line-height:1;list-style:disc;margin-left:20px}.dialog-button{font-size:16px}.edit-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start;max-width:950px}.edit-form__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:30px 34px;background:#F4F4F4;width:100%}.edit-form__title{font-weight:bold;font-size:24px;line-height:1.2;text-align:left;margin-bottom:34px}.edit-form__field-wrapper{display:grid;grid-template-columns:repeat(3, 1fr);grid-column-gap:30px;grid-row-gap:1.5em;margin-bottom:20px;font-size:18px;-webkit-box-align:start;-ms-flex-align:start;align-items:start}.edit-form__field-wrapper_two-column{grid-template-columns:repeat(2, 1fr)}.edit-form__column_full-width{grid-column:1 / 4}.edit-form__column_two-columns_start{grid-column:1 / 3}.edit-form__column_two-columns_end{grid-column:2 / 4}.edit-form__column_v-align-center{-ms-flex-item-align:center;align-self:center}.edit-form__column_h-align-center{text-align:center}.edit-form__info{height:68px;background-color:white;-webkit-box-shadow:0 3px 6px rgba(62,79,60,0.3);box-shadow:0 3px 6px rgba(62,79,60,0.3);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:16px 40px 17px 32px}.edit-form__info_title{display:inline;font-size:14px;color:#7f886b;text-align:left;margin-right:5px}.edit-form__info_data{display:inline;font-size:14px;font-weight:bold;color:#3E4F3C;text-align:right}.edit-form__label-data{font-size:18px;font-weight:bold;color:#3E4F3C;display:block}.edit-form__label-data-wysiwyg{display:block;max-height:200px;overflow-y:auto}.edit-form__label-title-data{font-size:14px;display:block;color:#7f886b}.edit-form__label-title-data_check{width:auto;margin-right:20px}@media (max-width: 1439px){.edit-form__label-title-data_check{width:auto;margin-right:20px}}.edit-form__buttons-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:10px 0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.edit-form__buttons-bottom .button{margin-left:20px}.edit-form__eye-icon{position:absolute;bottom:15px;right:23px}.edit-form__eye-icon.show .slash{display:none}.edit-form__button-with-icon{position:relative}.edit-form__button-with-icon_icon{position:absolute;bottom:20%;right:20%}.edit-form__buttons-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-right:20px}.edit-form__buttons-group button{margin-left:5px}.edit-form__buttons-group_sales{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.edit-form__hint{font-size:12px;color:#9f9f9f;margin-bottom:2px;display:block}.edit-form__hint_small{font-size:10px}.edit-form__hint_error{color:#FE6F3D}.edit-form__modal-body{width:100%;height:100%;overflow:auto}.edit-form__modal-submit{max-width:300px;-ms-flex-item-align:center;align-self:center;padding-top:10px}.edit-form__group-title{margin:0px 0 10px 0;font-weight:bold;display:inline-block;position:relative}.edit-form__group-title.required:after{position:absolute;right:-8px;opacity:1;content:'';top:0;width:8px;height:8px;background:#FE6F3D;border-radius:50%}.edit-form_two-rows_row{margin-bottom:22px}.edit-form__currency-input{position:relative}.edit-form__currency-input__icon{position:absolute;right:20px;bottom:10px}.wysiwyg i{font-style:italic}.wysiwyg b{font-weight:bold}.wysiwyg article,.wysiwyg aside,.wysiwyg details,.wysiwyg figcaption,.wysiwyg figure,.wysiwyg footer,.wysiwyg header,.wysiwyg hgroup,.wysiwyg menu,.wysiwyg nav,.wysiwyg section{display:initial}.wysiwyg ol{list-style:decimal}.wysiwyg ul{list-style:disc}.wysiwyg blockquote,.wysiwyg q{quotes:'"' '"'}.change-price-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.change-price-group__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.change-price-group__wrapper span{margin-left:5px}.change-price-group__input{display:inline-block !important}.change-price-group__icon-submit{width:18px;height:18px;cursor:pointer}.change-price-group__icon-submit g{stroke:#3E4F3C}.change-price-group__icon-edit{width:14px;height:14px;cursor:pointer}.client-card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.client-card__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:25px 50px;background:#F4F4F4;width:100%}@media (max-width: 1439px){.client-card__container{padding:60px 30px}}.client-card__header{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;margin-bottom:25px}.client-card__title{font-weight:bold;font-size:24px;line-height:1.333;text-align:left;margin-right:42px;display:block}@media (max-width: 1439px){.client-card__title{font-size:28px}}.client-card__top-label{font-weight:bold;padding:12px 20px;font-size:18px;line-height:1.5556}.client-card__top-label_status{background-color:#F3ECDA}.client-card__top-label_type{background-color:#fff}.client-card__cards-form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.client-card__cards-group{margin-right:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1 1 510px;flex:1 1 510px}.client-card__cards-group_general{-webkit-box-flex:1;-ms-flex:1 1 380px;flex:1 1 380px;max-width:380px}.client-card__cards-group_extra{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-right:0}@media (max-width: 1820px){.client-card__cards-group_extra{width:auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.client-card__cards-group_comments{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;min-width:480px;max-width:calc(50% - 10px);margin-right:0}@media (max-width: 1820px){.client-card__cards-group_comments{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;max-width:100%}}.client-card__cards-group_tasks{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;min-width:480px;max-width:calc(50% - 10px);margin-right:20px}@media (max-width: 1820px){.client-card__cards-group_tasks{margin-right:0;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;max-width:100%}}.client-card__card{background-color:#fff;margin-bottom:20px;-webkit-box-shadow:0 3px 4px rgba(62,79,60,0.3);box-shadow:0 3px 4px rgba(62,79,60,0.3);position:relative}.client-card__card_comment,.client-card__card_task{max-height:600px;overflow-y:auto}.client-card__card-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;padding:15px 33px;border-bottom:1px solid #D7DBD7;-webkit-box-shadow:0 0 1px 0 rgba(62,79,60,0.3);box-shadow:0 0 1px 0 rgba(62,79,60,0.3);white-space:nowrap}.client-card__card-block_tags{white-space:normal}.client-card__card-block_task{cursor:pointer}.client-card__card-block_buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.client-card__card-block_buttons .errors{margin-bottom:10px}.client-card__card-block_fixed-title{position:sticky;top:0}.client-card__general-buttons-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}.client-card__comment-form{width:100%}.client-card__card-title{font-size:20px;font-weight:bold}.client-card__labels{display:-webkit-box;display:-ms-flexbox;display:flex;width:325.16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.client-card__labels_edit{margin-bottom:10px}.client-card__labels input:not([type='checkbox']){font-size:14px;line-height:2.142857;font-weight:bold;color:#3E4F3C;display:block;-webkit-box-flex:2;-ms-flex:2;flex:2}.client-card__labels_contacts input,.client-card__labels_contacts div.selected{width:40%;margin-right:10px}.client-card__labels_contacts .client-card__contact{width:50%}.client-card__contact-link:hover{color:#FE6F3D}.client-card__label-data{font-size:14px;line-height:2.142857;font-weight:bold;color:#3E4F3C;display:block;white-space:pre-line;-webkit-box-flex:2;-ms-flex:2;flex:2}.client-card__label-required:after{position:absolute;opacity:1;content:'';width:7px;height:7px;background:#FE6F3D;border-radius:50%;margin:2px}.client-card__label-title-data{font-size:14px;line-height:2.142857;display:block;color:#7f886b;width:100px;margin-right:33px}.client-card__label-title-data_check{width:auto;margin-right:20px}.client-card__label-title-data_bold{font-weight:bold}.client-card__textarea{display:inline-block;position:relative;width:100%;height:200px;max-height:none}.client-card__icon-star{position:absolute;left:-20px}.client-card__icon-star_active{cursor:pointer}.client-card__comment-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;word-wrap:break-word;width:100%}.client-card__comment-date{font-size:14px;color:#7f886b;margin-bottom:5px;max-width:540px}.client-card__comment-name{font-size:18px;color:#7f886b;margin-bottom:15px}.client-card__comment-textarea{height:162px}.client-card__comment-text{color:#3E4F3C;font-size:18px;white-space:normal}.client-card__task-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.client-card__task-title_left{-webkit-box-flex:0;-ms-flex:0 1 60%;flex:0 1 60%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.client-card__task-title_right{-webkit-box-flex:0;-ms-flex:0 1 40%;flex:0 1 40%;text-align:right}.client-card__task-status{background-color:#F4F4F4;padding:10px 20px;font-weight:bold}.client-card__icon-plus{margin-top:2px}.client-card__table{margin-bottom:30px}.modal-group{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;margin-bottom:10px}.modal-group__modal-left{border-right:1px solid #3E4F3C;-webkit-box-flex:1;-ms-flex:1 0 50%;flex:1 0 50%;padding:10px;background-color:transparent;max-height:325px;overflow-y:auto}.modal-group__modal-left__title{margin-bottom:15px}.modal-group__modal-right{-webkit-box-flex:1;-ms-flex:1 0 50%;flex:1 0 50%;padding:10px 10px 10px 20px;background-color:transparent;max-height:325px;overflow-y:auto}.modal-group__modal-right__placeholder{font-size:20px;color:#7f886b}.modal-group__filters{margin:5px 0 10px 0;vertical-align:bottom;display:-webkit-box;display:-ms-flexbox;display:flex}.modal-group__filters input{height:35px !important}.tags-form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tags-form__tag{font-size:18px;font-weight:bold;padding:10px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:20px;margin-bottom:20px;cursor:pointer}@media (max-width: 1439px){.tags-form__tag{font-size:16px;padding:7px 15px}}.tags-form__tag_sand{background-color:#F3ECDA}.tags-form__tag_gray{background-color:#F4F4F4}.tags-form__tag_small{font-size:14px;padding:5px 10px;margin-right:10px;margin-bottom:10px}.tags-form__tag:hover{background-color:rgba(62,79,60,0.3)}.tags-form__icon{position:relative;top:3px}.modal-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.modal-form__title{font-weight:bold;font-size:22px;line-height:1.45;text-align:left;margin-bottom:34px}.modal-form__field-wrapper-two-column{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:10px;font-size:18px;-webkit-box-align:start;-ms-flex-align:start;align-items:start;height:100%}.modal-form__column_full-width{grid-column:1 / 3}.modal-form__column_v-align-center{-ms-flex-item-align:center;align-self:center}.modal-form__buttons-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:10px 0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.modal-form__buttons-bottom .button{margin-left:20px}.modal-form__eye-icon{position:absolute;bottom:20px;right:23px}.modal-form__eye-icon.show .slash{display:none}.modal-form__button-with-icon{position:relative}.modal-form__button-with-icon_icon{position:absolute;bottom:20%;right:20%}.modal-form__buttons-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-right:20px}.modal-form__buttons-group button{margin-left:5px}.modal-form__hint{font-size:12px;color:#9f9f9f;margin-bottom:2px;display:block}.modal-form__hint_small{font-size:10px}.modal-form__hint_error{color:#FE6F3D}.modal-form__modal-body{width:100%;height:100%;overflow-y:auto}.modal-form__modal-submit{text-align:center;width:100%;margin-top:15px}.modal-form__modal-submit button{width:100%;max-width:370px;-ms-flex-item-align:center;align-self:center}.modal-form__group-title{margin:0px 0 10px 0;font-weight:bold;display:inline-block;position:relative}.modal-form__group-title.required:after{position:absolute;right:-8px;opacity:1;content:'';top:0;width:8px;height:8px;background:#FE6F3D;border-radius:50%}.modal-form__field-wrapper-one-column{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow:visible}.modal-form__field-wrapper-one-column_row{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%}.modal-form__field-wrapper-one-column .errors{margin:0 0 10px 0}.modal-form__field-wrapper-three-column{grid-row-gap:0}.modal-form__subgrid-two-column{display:grid;grid-column-gap:10px;grid-template-columns:1fr 1fr}.sale-form__field-wrapper{display:grid;grid-template-columns:repeat(5, 1fr);grid-column-gap:10px;grid-row-gap:1.5em;margin-bottom:20px;font-size:18px;-webkit-box-align:start;-ms-flex-align:start;align-items:start}.sale-form__column_full-width{grid-column:1 / 6}.sale-form__column_two-columns_start{grid-column:1 / 3}.sale-form__column_two-columns_end{grid-column:4 / 6}.sale-form__column_three-columns_start{grid-column:1 / 4;padding-top:17px}.sale-form__column_three-columns_end{grid-column:3 / 6}.sale-form__column_v-align-center{-ms-flex-item-align:center;align-self:center}.sale-form__subgrid-three-column{display:grid;grid-column-gap:10px;grid-row-gap:1em;grid-template-columns:1fr 1fr 40px}.sale-form__subgrid-two-column{display:grid;grid-column-gap:10px;grid-row-gap:1em;grid-template-columns:1fr 1fr}.sale-form__amounts-field{margin-bottom:1em}.sale-form__add-transactions-field{margin-bottom:1em}.sale-form__info{height:52px;background-color:white;-webkit-box-shadow:0 3px 6px rgba(62,79,60,0.3);box-shadow:0 3px 6px rgba(62,79,60,0.3);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:16px 40px 17px 32px;margin-bottom:1px}.sale-form__info_title{display:inline;font-size:14px;color:#7f886b;text-align:left}.sale-form__info_data{display:inline;font-size:14px;font-weight:bold;color:#3E4F3C;text-align:right}.sale-form__client-comment{background-color:#ffffff;position:relative;-webkit-box-shadow:0 3px 6px rgba(62,79,60,0.3);box-shadow:0 3px 6px rgba(62,79,60,0.3)}.sale-form__client-comment_client{height:52px;background-color:white;-webkit-box-shadow:0 1px 0px rgba(62,79,60,0.3);box-shadow:0 1px 0px rgba(62,79,60,0.3);display:inline-block;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:18px 32px;-webkit-box-flex:1;-ms-flex:1 0;flex:1 0}.sale-form__client-comment_create-client{height:100%;background-color:transparent;-webkit-box-shadow:none;box-shadow:none;display:inline-block;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1 0;flex:1 0}.sale-form__client-comment_button{position:absolute;top:10px;right:30px}.sale-form__client-comment_comment{background-color:white;-webkit-box-shadow:0 1px 0px rgba(62,79,60,0.3);box-shadow:0 1px 0px rgba(62,79,60,0.3);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:18px 32px}.sale-form__client-comment_title{display:inline-block;font-size:14px;color:#7f886b;text-align:left;min-width:140px;-webkit-box-flex:0;-ms-flex:0 1 140px;flex:0 1 140px}.sale-form__client-comment_data{display:inline;font-size:14px;font-weight:bold;color:#3E4F3C;text-align:left;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.multiselected{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;width:100%}.multiselected__form-field{border:1px solid #7f886b;border-radius:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.multiselected__button{position:relative;padding:10px 45px 13px 23px;height:100%;background-color:#7f886b;color:#ffffff;text-transform:uppercase;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.multiselected__icon{position:relative;right:-20px;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.multiselected__tags-form{padding-right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.multiselected__tag{font-size:14px;font-weight:bold;line-height:1.35;color:#ffffff;padding:7px 39px 9px 12px;border-radius:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:5px 0 5px 10px;background-color:#7f886b;position:relative}.multiselected__tag-icon{position:absolute;top:6px;right:12px}

.search-table{position:relative;width:100%;max-width:250px}.search-table input{padding-right:40px !important}.search-table__icon{position:absolute;top:50%;right:20px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}

.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}
table tr td{height:100px}table tr th,table tr td{width:10%}table tr th:nth-child(1),table tr td:nth-child(1){width:20%}table tr th:nth-child(5),table tr td:nth-child(5){width:40%}.scroller{height:500px;overflow-y:auto}.scroller table{max-height:100px;overflow:hidden}.vue-recycle-scroller__item-wrapper{display:block}

.vue-swatches__check__wrapper{position:absolute;width:100%;height:100%}.vue-swatches__check__circle{width:21px;height:21px;border-radius:50%;background-color:rgba(0,0,0,.15)}.vue-swatches__check__path{fill:#fff}.vue-swatches__swatch{position:relative;display:inline-block;font-size:0}.vue-swatches__swatch:focus,.vue-swatches__swatch:hover{opacity:.9;-webkit-box-shadow:inset 0 0 2px rgba(0,0,0,.75);box-shadow:inset 0 0 2px rgba(0,0,0,.75);outline:none}.vue-swatches__swatch.vue-swatches__swatch--border,.vue-swatches__swatch.vue-swatches__swatch--selected{-webkit-box-shadow:inset 0 0 2px rgba(0,0,0,.75);box-shadow:inset 0 0 2px rgba(0,0,0,.75)}.vue-swatches__swatch__label{position:absolute;left:0;right:0;color:#666;font-size:10px;font-weight:700;text-align:center}.vue-swatches__swatch .vue-swatches__diagonal__wrapper{position:absolute}fieldset[disabled] .vue-swatches{pointer-events:none}.vue-swatches{position:relative;display:inline-block;outline:none}.vue-swatches__trigger__wrapper{display:inline-block;cursor:pointer}.vue-swatches__trigger.vue-swatches--is-empty{border:2px solid #ccc}.vue-swatches__trigger.vue-swatches--is-disabled{cursor:not-allowed}.vue-swatches__container{-webkit-box-sizing:content-box;box-sizing:content-box}.vue-swatches__container.vue-swatches--inline{font-size:0}.vue-swatches__container:not(.vue-swatches--inline){position:absolute;display:block;overflow:auto;border-radius:5px;-webkit-box-shadow:0 2px 3px rgba(10,10,10,.2),0 0 0 1px rgba(10,10,10,.2);box-shadow:0 2px 3px rgba(10,10,10,.2),0 0 0 1px rgba(10,10,10,.2);z-index:50}.vue-swatches__wrapper{background-color:inherit;-webkit-box-sizing:content-box;box-sizing:content-box}.vue-swatches__row{font-size:0}.vue-swatches__fallback__wrapper{display:table}.vue-swatches__fallback__input--wrapper{display:table-cell;padding-right:10px;width:100%;font-size:14px}.vue-swatches__fallback__input{width:100%;padding-top:6px;padding-bottom:6px;border-radius:5px;border:1px solid #dcdcdc;color:#35495e;background:#fff}.vue-swatches__fallback__button{display:table-cell;padding:6px 15px;border:0;cursor:pointer;font-weight:700;color:#fff;background-color:#3571c8;border-radius:5px}.vue-swatches-show-hide-enter-active,.vue-swatches-show-hide-leave-active{-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.vue-swatches-show-hide-enter,.vue-swatches-show-hide-leave-active{opacity:0}.vue-swatches--has-children-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-swatches__diagonal__wrapper{width:100%;height:100%}.vue-swatches__diagonal{width:75%;height:75%;background:-o-linear-gradient(bottom left,transparent 0,transparent calc(50% - 2.4px),#de080a 50%,transparent calc(50% + 2.4px),transparent);background:linear-gradient(to top right,transparent 0,transparent calc(50% - 2.4px),#de080a 50%,transparent calc(50% + 2.4px),transparent)}
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  overflow: auto; /* Scroll on this element otherwise element can't have a padding applied properly */
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}







































































































































































































































































.vdatetime-fade-enter-active,
.vdatetime-fade-leave-active {
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.vdatetime-fade-enter,
.vdatetime-fade-leave-to {
  opacity: 0;
}

.vdatetime-overlay {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

















































































































































































































































































.vdatetime-popup {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 340px;
  max-width: calc(100% - 30px);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3);
  color: #444;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.18;
  background: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.vdatetime-popup * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}

.vdatetime-popup__header {
  padding: 18px 30px;
  background: #3f51b5;
  color: #fff;
  font-size: 32px;
}

.vdatetime-popup__title {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 300;
}

.vdatetime-popup__year {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s
}

.vdatetime-popup__year:hover {
    opacity: 1
}

.vdatetime-popup__date {
  line-height: 1;
  cursor: pointer;
}

.vdatetime-popup__actions {
  padding: 0 20px 10px 30px;
  text-align: right;
}

.vdatetime-popup__actions__button {
  display: inline-block;
  border: none;
  padding: 10px 20px;
  background: transparent;
  font-size: 16px;
  color: #3f51b5;
  cursor: pointer;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s
}

.vdatetime-popup__actions__button:hover {
    color: #444
}
.vdatetime-calendar__navigation--previous:hover svg path, .vdatetime-calendar__navigation--next:hover svg path {
    stroke: #888;
}








































































































.vdatetime-calendar__navigation,
.vdatetime-calendar__navigation * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.vdatetime-calendar__navigation {
  position: relative;
  margin: 15px 0;
  padding: 0 30px;
  width: 100%;
}

.vdatetime-calendar__navigation--previous,
.vdatetime-calendar__navigation--next {
  position: absolute;
  top: 0;
  padding: 0 5px;
  width: 18px;
  cursor: pointer
}

.vdatetime-calendar__navigation--previous svg, .vdatetime-calendar__navigation--next svg {
    width: 8px;
    height: 13px;
}

.vdatetime-calendar__navigation--previous svg path, .vdatetime-calendar__navigation--next svg path {
      -webkit-transition: stroke .3s;
      -o-transition: stroke .3s;
      transition: stroke .3s;
}

.vdatetime-calendar__navigation--previous {
  left: 25px;
}

.vdatetime-calendar__navigation--next {
  right: 25px;
  -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
      transform: scaleX(-1);
}

.vdatetime-calendar__current--month {
  text-align: center;
  text-transform: capitalize;
}

.vdatetime-calendar__month {
  padding: 0 20px;
  -webkit-transition: height .2s;
  -o-transition: height .2s;
  transition: height .2s;
}

.vdatetime-calendar__month__weekday,
.vdatetime-calendar__month__day {
  display: inline-block;
  width: 14.28571%;
  line-height: 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer
}

.vdatetime-calendar__month__weekday > span, .vdatetime-calendar__month__day > span {
    display: block;
    width: 100%;
    position: relative;
    height: 0;
    padding: 0 0 100%;
    overflow: hidden;
}

.vdatetime-calendar__month__weekday > span > span, .vdatetime-calendar__month__day > span > span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border: 0;
      border-radius: 50%;
      -webkit-transition: background-color .3s, color .3s;
      -o-transition: background-color .3s, color .3s;
      transition: background-color .3s, color .3s;
}

.vdatetime-calendar__month__weekday {
  font-weight: bold;
}

.vdatetime-calendar__month__day:hover > span > span {
  background: #eee;
}

.vdatetime-calendar__month__day--selected {
}

.vdatetime-calendar__month__day--selected > span > span,
  .vdatetime-calendar__month__day--selected:hover > span > span {
    color: #fff;
    background: #3f51b5;
}

.vdatetime-calendar__month__day--disabled {
  opacity: 0.4;
  cursor: default
}

.vdatetime-calendar__month__day--disabled:hover > span > span {
    color: inherit;
    background: transparent;
}
.vdatetime-time-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}












































































































































.vdatetime-time-picker__list::-webkit-scrollbar-track {
    background: #efefef
}












































































































































.vdatetime-time-picker * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}












































































































































.vdatetime-time-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box
}












































































































































.vdatetime-time-picker::after {
    content: '';
    display: table;
    clear: both
}

.vdatetime-time-picker__list {
  float: left;
  width: 50%;
  height: 305px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

.vdatetime-time-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-time-picker__with-suffix .vdatetime-time-picker__list {
  width: 33.3%;
}

.vdatetime-time-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size .3s;
  -o-transition: font-size .3s;
  transition: font-size .3s;
}

.vdatetime-time-picker__item:hover {
  font-size: 32px;
}

.vdatetime-time-picker__item--selected {
  color: #3f51b5;
  font-size: 32px;
}

.vdatetime-time-picker__item--disabled {
  opacity: 0.4;
  cursor: default;
  font-size: 20px !important;
}
.vdatetime-year-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}


































































.vdatetime-year-picker__list::-webkit-scrollbar-track {
    background: #efefef
}


































































.vdatetime-year-picker * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}


































































.vdatetime-year-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box
}


































































.vdatetime-year-picker::after {
    content: '';
    display: table;
    clear: both
}

.vdatetime-year-picker__list {
  float: left;
  width: 100%;
  height: 305px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

.vdatetime-year-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-year-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size .3s;
  -o-transition: font-size .3s;
  transition: font-size .3s;
}

.vdatetime-year-picker__item:hover {
  font-size: 32px;
}

.vdatetime-year-picker__item--selected {
  color: #3f51b5;
  font-size: 32px;
}

.vdatetime-year-picker__item--disabled {
  opacity: 0.4;
  cursor: default
}

.vdatetime-year-picker__item--disabled:hover {
    color: inherit;
    background: transparent
}
.vdatetime-month-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}





































































.vdatetime-month-picker__list::-webkit-scrollbar-track {
    background: #efefef
}





































































.vdatetime-month-picker * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}





































































.vdatetime-month-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box
}





































































.vdatetime-month-picker::after {
    content: '';
    display: table;
    clear: both
}

.vdatetime-month-picker__list {
  float: left;
  width: 100%;
  height: 305px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

.vdatetime-month-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-month-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size .3s;
  -o-transition: font-size .3s;
  transition: font-size .3s;
}

.vdatetime-month-picker__item:hover {
  font-size: 32px;
}

.vdatetime-month-picker__item--selected {
  color: #3f51b5;
  font-size: 32px;
}

.vdatetime-month-picker__item--disabled {
  opacity: 0.4;
  cursor: default
}

.vdatetime-month-picker__item--disabled:hover {
    color: inherit;
    background: transparent
}

.vld-shown {
  overflow: hidden;
}

.vld-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

.vld-overlay.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vld-overlay.is-full-page {
  z-index: 9999;
  position: fixed;
}

.vld-overlay .vld-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 0.5;
}

.vld-overlay .vld-icon, .vld-parent {
  position: relative;
}


.icon-alert {
    width: 14px;
    height: 14px;
}
.icon-archive {
    width: 17px;
    height: 19px;
}
.icon-arrow-down-sm {
    width: 10px;
    height: 7px;
}
.icon-arrow-down-white-sm {
    width: 10px;
    height: 7px;
}
.icon-arrow-left {
    width: 19.665px;
    height: 12.201px;
}
.icon-arrow {
    width: 7px;
    height: 10px;
}
.icon-arrow2 {
    width: 16px;
    height: 12px;
}
.icon-arrow3 {
    width: 20px;
    height: 20px;
}
.icon-back-sm {
    width: 16px;
    height: 12px;
}
.icon-background {
    width: 18px;
    height: 13px;
}
.icon-button-arrow-blue {
    width: 14px;
    height: 8px;
}
.icon-button-close {
    width: 10px;
    height: 10px;
}
.icon-check-blue {
    width: 11px;
    height: 9px;
}
.icon-check-red-sm {
    width: 11px;
    height: 9px;
}
.icon-check-white {
    width: 11px;
    height: 9px;
}
.icon-check {
    width: 16px;
    height: 16px;
}
.icon-clip {
    width: 20px;
    height: 18px;
}
.icon-cross-dark-grey {
    width: 12px;
    height: 13px;
}
.icon-cross-grey-sm {
    width: 12px;
    height: 13px;
}
.icon-cross-grey {
    width: 12px;
    height: 12px;
}
.icon-cross {
    width: 9px;
    height: 9px;
}
.icon-crossimg {
    width: 18px;
    height: 18px;
}
.icon-darr {
    width: 34px;
    height: 36px;
}
.icon-dialog {
    width: 12px;
    height: 10px;
}
.icon-executor-big {
    width: 17px;
    height: 18px;
}
.icon-executor {
    width: 14px;
    height: 14px;
}
.icon-file-icon {
    width: 36px;
    height: 40px;
}
.icon-fire {
    width: 11px;
    height: 16px;
}
.icon-grey-arrow {
    width: 21px;
    height: 14px;
}
.icon-hackerman {
    width: 27px;
    height: 27px;
}
.icon-kanban {
    width: 16px;
    height: 14px;
}
.icon-list {
    width: 17px;
    height: 14px;
}
.icon-logo {
    width: 94px;
    height: 26px;
}
.icon-message {
    width: 17px;
    height: 15px;
}
.icon-move {
    width: 16px;
    height: 12px;
}
.icon-newLogo {
    width: 94px;
    height: 26px;
}
.icon-participants {
    width: 17px;
    height: 18px;
}
.icon-pen {
    width: 11px;
    height: 11px;
}
.icon-pencil-blue {
    width: 12px;
    height: 12px;
}
.icon-pencil-white {
    width: 12px;
    height: 12px;
}
.icon-pencil {
    width: 11px;
    height: 11px;
}
.icon-plus {
    width: 13px;
    height: 13px;
}
.icon-ps {
    width: 56px;
    height: 60px;
}
.icon-psd-icon {
    width: 36px;
    height: 40px;
}
.icon-question {
    width: 29px;
    height: 29px;
}
.icon-save-check {
    width: 11px;
    height: 9px;
}
.icon-search_white {
    width: 15px;
    height: 17px;
}
.icon-search {
    width: 17px;
    height: 19px;
}
.icon-sidebar-arrows {
    width: 13.499px;
    height: 13.75px;
}
.icon-sketch-icon {
    width: 36px;
    height: 40px;
}
.icon-sketch {
    width: 56px;
    height: 60px;
}
.icon-sm-cross {
    width: 9px;
    height: 9px;
}
.icon-support {
    width: 14px;
    height: 14px;
}
.icon-tags {
    width: 20px;
    height: 20px;
}
.icon-task-ok {
    width: 14px;
    height: 14px;
}
.icon-times {
    width: 18px;
    height: 18px;
}
.icon-unchecked {
    width: 16px;
    height: 16px;
}
.icon-user {
    width: 18px;
    height: 18px;
}
.icon-white-plus {
    width: 10px;
    height: 10px;
}
.icon-winzip {
    width: 56px;
    height: 60px;
}
.icon-word-icon {
    width: 36px;
    height: 40px;
}
.icon-word {
    width: 56px;
    height: 60px;
}
.icon-worker1 {
    width: 27px;
    height: 27px;
}
.icon-worker2 {
    width: 40px;
    height: 40px;
}
.icon-zip-icon {
    width: 36px;
    height: 40px;
}

/*# sourceMappingURL=main-12bb6758155a0af1226e.css.map*/