@charset "UTF-8";
/* ----------------------------------------------------------- */
/* == tingle v0.14.0 */
/* ----------------------------------------------------------- */
.tingle-modal * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease; }

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center; }

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default; }

.tingle-modal--noClose .tingle-modal__close {
  display: none; }

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease; }

.tingle-modal__closeLabel {
  display: none; }

.tingle-modal__close:hover {
  color: #fff; }

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.tingle-modal-box__content {
  padding: 3rem 3rem; }

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto; }

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: ""; }

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  -webkit-transition: bottom .3s ease-in-out .3s;
  -o-transition: bottom .3s ease-in-out .3s;
  transition: bottom .3s ease-in-out .3s; }

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden; }

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0; }

.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(8px);
          filter: blur(8px); }

.tingle-modal--visible {
  visibility: visible;
  opacity: 1; }

.tingle-modal--visible .tingle-modal-box {
  -webkit-transform: scale(1);
          transform: scale(1); }

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh; }

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: background-color .4s ease;
  -o-transition: background-color .4s ease;
  transition: background-color .4s ease; }

.tingle-btn--primary {
  background-color: #3498db; }

.tingle-btn--danger {
  background-color: #e74c3c; }

.tingle-btn--default {
  background-color: #34495e; }

.tingle-btn--pull-left {
  float: left; }

.tingle-btn--pull-right {
  float: right; }

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%; }
  .tingle-modal-box {
    width: auto;
    border-radius: 0; }
  .tingle-modal-box__content {
    overflow-y: scroll; }
  .tingle-modal--noClose {
    top: 0; }
  .tingle-modal--noOverlayClose {
    padding-top: 0; }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%; }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
    line-height: 55px; }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .5rem;
    vertical-align: middle;
    font-size: 4rem; } }

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); }
  @media (max-width: 540px) {
    .tingle-modal {
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px); } }
  .tingle-enabled .tingle-content-wrapper {
    -webkit-filter: none;
            filter: none; } }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px; }

.choices:focus {
  outline: none; }

.choices:last-child {
  margin-bottom: 0; }

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none; }

.choices.is-disabled .choices__item {
  cursor: not-allowed; }

.choices[data-type*="select-one"] {
  cursor: pointer; }

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px; }

.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0; }

.choices[data-type*="select-one"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .5; }

.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
  opacity: 1; }

.choices[data-type*="select-one"] .choices__button:focus {
  -webkit-box-shadow: 0px 0px 0px 2px #00BCD4;
          box-shadow: 0px 0px 0px 2px #00BCD4; }

.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none; }

.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px; }

.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto; }

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0; }

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text; }

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0; }

.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
  opacity: 1; }

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden; }

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7; }

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0; }

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px; }

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none; }

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%; }

[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px; }

.choices__list--single .choices__item {
  width: 100%; }

.choices__list--multiple {
  display: inline; }

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00BCD4;
  border: 1px solid #00a5bb;
  color: #FFFFFF;
  word-break: break-all; }

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px; }

[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px; }

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1; }

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191; }

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all; }

.choices__list--dropdown.is-active {
  display: block; }

.is-open .choices__list--dropdown {
  border-color: #b7b7b7; }

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0; }

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position; }

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px; }

[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right; }

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px; }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px; }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px; } }

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2; }

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: .5; }

.choices__item {
  cursor: default; }

.choices__item--selectable {
  cursor: pointer; }

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
  opacity: .5; }

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray; }

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.choices__button:focus {
  outline: none; }

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px; }

.choices__input:focus {
  outline: 0; }

[dir="rtl"] .choices__input {
  padding-right: 2px;
  padding-left: 0; }

.choices__placeholder {
  opacity: .5; }

.choices__input.is-hidden,
.choices[data-type*="select-one"] .choices__input.is-hidden,
.choices[data-type*="select-multiple"] .choices__input.is-hidden {
  display: none; }

/*=====  End of Choices  ======*/
.pickr {
  position: relative;
  overflow: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0); }
  .pickr * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    -webkit-appearance: none; }

.pickr .pcr-button {
  position: relative;
  height: 2em;
  width: 2em;
  padding: 0.5em;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  border-radius: 0.15em;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" stroke="%2342445A" stroke-width="5px" stroke-linecap="round"><path d="M45,45L5,5"></path><path d="M45,5L5,45"></path></svg>') no-repeat center;
  background-size: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .pickr .pcr-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: 0.5em;
    border-radius: 0.15em;
    z-index: -1; }
  .pickr .pcr-button::before {
    z-index: initial; }
  .pickr .pcr-button::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    background: var(--pcr-color);
    border-radius: 0.15em; }
  .pickr .pcr-button.clear {
    background-size: 70%; }
    .pickr .pcr-button.clear::before {
      opacity: 0; }
    .pickr .pcr-button.clear:focus {
      -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px var(--pcr-color);
              box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px var(--pcr-color); }
  .pickr .pcr-button.disabled {
    cursor: not-allowed; }

.pickr *,
.pcr-app * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  -webkit-appearance: none; }

.pickr input:focus, .pickr input.pcr-active,
.pickr button:focus,
.pickr button.pcr-active,
.pcr-app input:focus,
.pcr-app input.pcr-active,
.pcr-app button:focus,
.pcr-app button.pcr-active {
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px var(--pcr-color);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px var(--pcr-color); }

.pickr .pcr-palette,
.pickr .pcr-slider,
.pcr-app .pcr-palette,
.pcr-app .pcr-slider {
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s; }
  .pickr .pcr-palette:focus,
  .pickr .pcr-slider:focus,
  .pcr-app .pcr-palette:focus,
  .pcr-app .pcr-slider:focus {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(0, 0, 0, 0.25); }

.pcr-app {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10000;
  border-radius: 0.1em;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  -webkit-box-shadow: 0 0.15em 1.5em 0 rgba(0, 0, 0, 0.1), 0 0 1em 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0.15em 1.5em 0 rgba(0, 0, 0, 0.1), 0 0 1em 0 rgba(0, 0, 0, 0.03);
  left: 0;
  top: 0; }
  .pcr-app.visible {
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    visibility: visible;
    opacity: 1; }
  .pcr-app .pcr-swatches {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 0.75em; }
    .pcr-app .pcr-swatches.pcr-last {
      margin: 0; }
    @supports (display: grid) {
      .pcr-app .pcr-swatches {
        display: grid;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        grid-template-columns: repeat(auto-fit, 1.75em); } }
    .pcr-app .pcr-swatches > button {
      font-size: 1em;
      position: relative;
      width: calc(1.75em - 5px);
      height: calc(1.75em - 5px);
      border-radius: 0.15em;
      cursor: pointer;
      margin: 2.5px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      justify-self: center;
      -webkit-transition: all 0.15s;
      -o-transition: all 0.15s;
      transition: all 0.15s;
      overflow: hidden;
      background: transparent;
      z-index: 1; }
      .pcr-app .pcr-swatches > button::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
        background-size: 6px;
        border-radius: 0.15em;
        z-index: -1; }
      .pcr-app .pcr-swatches > button::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--pcr-color);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0.15em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
      .pcr-app .pcr-swatches > button:hover {
        -webkit-filter: brightness(1.05);
                filter: brightness(1.05); }
      .pcr-app .pcr-swatches > button:not(.pcr-active) {
        -webkit-box-shadow: none;
                box-shadow: none; }
  .pcr-app .pcr-interaction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -0.2em 0 -0.2em; }
    .pcr-app .pcr-interaction > * {
      margin: 0 0.2em; }
    .pcr-app .pcr-interaction input {
      letter-spacing: 0.07em;
      font-size: 0.75em;
      text-align: center;
      cursor: pointer;
      color: #75797e;
      background: #f1f3f4;
      border-radius: 0.15em;
      -webkit-transition: all 0.15s;
      -o-transition: all 0.15s;
      transition: all 0.15s;
      padding: 0.45em 0.5em;
      margin-top: 0.75em; }
      .pcr-app .pcr-interaction input:hover {
        -webkit-filter: brightness(0.975);
                filter: brightness(0.975); }
      .pcr-app .pcr-interaction input:focus {
        -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(66, 133, 244, 0.75);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(66, 133, 244, 0.75); }
    .pcr-app .pcr-interaction .pcr-result {
      color: #75797e;
      text-align: left;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 8em;
              flex: 1 1 8em;
      min-width: 8em;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      border-radius: 0.15em;
      background: #f1f3f4;
      cursor: text; }
      .pcr-app .pcr-interaction .pcr-result::-moz-selection {
        background: #4285f4;
        color: #fff; }
      .pcr-app .pcr-interaction .pcr-result::selection {
        background: #4285f4;
        color: #fff; }
    .pcr-app .pcr-interaction .pcr-type.active {
      color: #fff;
      background: #4285f4; }
    .pcr-app .pcr-interaction .pcr-save,
    .pcr-app .pcr-interaction .pcr-cancel,
    .pcr-app .pcr-interaction .pcr-clear {
      color: #fff;
      width: auto; }
    .pcr-app .pcr-interaction .pcr-save,
    .pcr-app .pcr-interaction .pcr-cancel,
    .pcr-app .pcr-interaction .pcr-clear {
      color: #fff; }
      .pcr-app .pcr-interaction .pcr-save:hover,
      .pcr-app .pcr-interaction .pcr-cancel:hover,
      .pcr-app .pcr-interaction .pcr-clear:hover {
        -webkit-filter: brightness(0.925);
                filter: brightness(0.925); }
    .pcr-app .pcr-interaction .pcr-save {
      background: #4285f4; }
    .pcr-app .pcr-interaction .pcr-clear,
    .pcr-app .pcr-interaction .pcr-cancel {
      background: #f44250; }
      .pcr-app .pcr-interaction .pcr-clear:focus,
      .pcr-app .pcr-interaction .pcr-cancel:focus {
        -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(244, 66, 80, 0.75);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(244, 66, 80, 0.75); }
  .pcr-app .pcr-selection .pcr-picker {
    position: absolute;
    height: 18px;
    width: 18px;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .pcr-app .pcr-selection .pcr-color-palette,
  .pcr-app .pcr-selection .pcr-color-chooser,
  .pcr-app .pcr-selection .pcr-color-opacity {
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: grab;
    cursor: -webkit-grab; }
    .pcr-app .pcr-selection .pcr-color-palette:active,
    .pcr-app .pcr-selection .pcr-color-chooser:active,
    .pcr-app .pcr-selection .pcr-color-opacity:active {
      cursor: grabbing;
      cursor: -webkit-grabbing; }

.pcr-app[data-theme='monolith'] {
  width: 14.25em;
  max-width: 95vw;
  padding: 0.8em; }
  .pcr-app[data-theme='monolith'] .pcr-selection {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 1em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 0.5em; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
        background-size: 0.5em;
        border-radius: 0.15em;
        z-index: -1; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-last-color {
        cursor: pointer;
        -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
        transition: background-color 0.3s, -webkit-box-shadow 0.3s;
        -o-transition: background-color 0.3s, box-shadow 0.3s;
        transition: background-color 0.3s, box-shadow 0.3s;
        transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
        border-radius: 0.15em 0 0 0.15em;
        z-index: 2; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-current-color {
        border-radius: 0 0.15em 0.15em 0; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-last-color,
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-current-color {
        background: var(--pcr-color);
        width: 50%;
        height: 100%; }
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-palette {
      width: 100%;
      height: 8em;
      z-index: 1; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-palette .pcr-palette {
        border-radius: 0.15em;
        width: 100%;
        height: 100%; }
        .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-palette .pcr-palette::before {
          position: absolute;
          content: '';
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
          background-size: 0.5em;
          border-radius: 0.15em;
          z-index: -1; }
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-chooser,
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-opacity {
      height: 0.5em;
      margin-top: 0.75em; }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-chooser .pcr-picker,
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-opacity .pcr-picker {
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-chooser .pcr-slider,
      .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-opacity .pcr-slider {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border-radius: 50em; }
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-chooser .pcr-slider {
      background: -webkit-gradient(linear, left top, right top, from(red), color-stop(yellow), color-stop(lime), color-stop(cyan), color-stop(blue), color-stop(magenta), to(red));
      background: -o-linear-gradient(left, red, yellow, lime, cyan, blue, magenta, red);
      background: linear-gradient(to right, red, yellow, lime, cyan, blue, magenta, red); }
    .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-opacity .pcr-slider {
      background: -webkit-gradient(linear, left top, right top, from(transparent), to(black)), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
      background: -o-linear-gradient(left, transparent, black), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
      background: linear-gradient(to right, transparent, black), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
      background-size: 100%, 0.25em; }

.pickr .pcr-button {
  height: 42px;
  width: 42px;
  border: 1px solid #ddd; }

.gm-pickr-container[data-theme=monolith] {
  width: 240px;
  max-width: 95vw;
  padding: 12px;
  border-radius: 3px; }
  .gm-pickr-container[data-theme=monolith] .pcr-type {
    display: none; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-preview::before,
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-palette .pcr-palette::before {
    background: white;
    background-image: -o-linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8), -o-linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8);
    background-image: linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8), linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8);
    background-size: 14px 14px;
    background-position: 0 0, 7px 7px; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-opacity .pcr-slider {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#000)), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background: -o-linear-gradient(left, transparent, #000), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background: linear-gradient(to right, transparent, #000), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: 100%, 6px; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-palette {
    height: 210px; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-preview,
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-chooser,
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-opacity {
    height: 1.5em; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-preview {
    border: 1px solid #d5d5d5; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-chooser .pcr-slider,
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-color-opacity .pcr-slider {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-radius: 2px; }
  .gm-pickr-container[data-theme=monolith] .pcr-selection .pcr-picker {
    height: 24px;
    width: 24px; }
  .gm-pickr-container[data-theme=monolith] .pcr-interaction .pcr-result {
    height: 32px; }
  .gm-pickr-container[data-theme=monolith] .pcr-interaction .pcr-save,
  .gm-pickr-container[data-theme=monolith] .pcr-interaction .pcr-clear {
    height: 30px; }

.pickr .pcr-button::before {
  background: white;
  background-image: -o-linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8), -o-linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8);
  background-image: linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8), linear-gradient(45deg, #e8e8e8 25%, transparent 25%, transparent 74%, #e8e8e8 75%, #e8e8e8);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px; }

.nav-menus-php .gm-pickr-container {
  z-index: 100101; }

.tingle-modal {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  padding-top: 0;
  background: rgba(0, 0, 0, 0.5); }

.tingle-modal--visible {
  z-index: 100000; }

.tingle-modal.gm-modal--icons,
.tingle-modal.gm-modal-overflow {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px); }

.tingle-modal-box__content {
  padding: 0;
  height: inherit; }

.gm-modal-overflow .tingle-modal-box {
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden; }

.tingle-modal-box {
  border-radius: 0; }

.gm-hidden {
  display: none; }

.gm-modal {
  height: inherit; }
  .gm-modal .modal-title {
    margin: 0;
    color: #23282d;
    font-size: 18px;
    font-weight: 600; }
  .gm-modal .gm-modal-body {
    position: relative;
    padding: 15px;
    padding-bottom: 63px; }
  .gm-modal .gm-modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    background: #f5f5f5; }
    .gm-modal .gm-modal-footer .btn-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .gm-modal .gm-modal-footer .btn-group .btn + .btn {
      margin-left: 10px; }

.gm-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-modal--fullscreen .tingle-modal-box__content {
  height: 100%; }

.gm-modal--fullscreen .tingle-modal-box {
  height: 100%;
  width: 100%; }

.gm-modal--fullscreen .gm-modal {
  height: 100%; }

.gm-modal--fullscreen.tingle-modal--overflow {
  padding: 0;
  overflow: hidden; }

.gm-modal--lg .tingle-modal-box {
  max-width: 960px;
  width: 90%; }

.gm-modal--preview .tingle-modal__close {
  top: 0;
  right: 0;
  font-size: 36px;
  width: 60px;
  height: 60px; }

.gm-modal--preview .gm-close {
  display: none; }

.gm-modal--icons {
  z-index: 999999999; }
  .gm-modal--icons .tingle-modal-box {
    max-width: 915px;
    margin-top: 25px;
    margin-bottom: 25px;
    height: calc(100vh - 50px); }
  .gm-modal--icons .gm-modal {
    background-color: #f7f7f7;
    overflow: auto; }

.toplevel_page_groovy_menu_settings .gm-modal--icons.tingle-modal {
  background-color: transparent; }

@font-face {
  font-family: 'crane-font';
  src: url("../fonts/crane-font.woff?hhxb42") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

.gmi {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'crane-font' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.gmi-zoom-search::before {
  content: "\e901"; }

.gmi-bag::before {
  content: "\e900"; }

/***************************************
ICON FONT
***************************************/
@font-face {
  font-family: 'groovy-gui';
  font-weight: normal;
  font-style: normal;
  font-display: block;
  src: url("../fonts/groovy-gui.woff") format("woff"); }

.gm-gui-icon {
  text-transform: none;
  font-family: 'groovy-gui' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none; }

.gm-icon-crown::before {
  content: "\e900"; }

.gm-icon-file-box::before {
  content: "\e901"; }

.gm-icon-list::before {
  content: "\e902"; }

.gm-icon-help::before {
  content: "\e903"; }

.gm-icon-tools::before {
  content: "\e904"; }

.gm-icon-download::before {
  content: "\e905"; }

.gm-icon-layers::before {
  content: "\e906"; }

.gm-icon-power-off::before {
  content: "\e907"; }

.gm-icon-music-mixer::before {
  content: "\e908"; }

.gm-icon-drop::before {
  content: "\e909"; }

/***************************************
GROOVY MENU GENERAL SETTINGS
***************************************/
.gm-gui-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.gm-gui-container {
  position: relative;
  visibility: hidden;
  min-height: 880px;
  margin: 40px 20px;
  -webkit-transition: visibility 0.3s linear, opacity 0.3s linear;
  -o-transition: visibility 0.3s linear, opacity 0.3s linear;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  opacity: 0;
  color: #555;
  background-color: #e7e7e7;
  line-height: 1.4; }
  .gm-gui-container::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 137px;
    height: 100%;
    content: '';
    background-color: #242930; }
  .gm-gui-container input[type=number] {
    width: 100%;
    height: 42px;
    max-width: 100px;
    margin: 0;
    padding: 10px;
    -webkit-transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
    vertical-align: middle;
    color: #686868;
    border: 1px solid #ddd;
    border-radius: 2px;
    outline: 0;
    background-color: #fff;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    font-size: 14px; }
  .gm-gui-container .wp-color-result {
    height: 40px; }
  .gm-gui-container .wp-color-result::after {
    line-height: 41px; }

.gm-gui-container.loaded {
  visibility: visible;
  opacity: 1; }

.gm-gui-nav-wrapper,
.gm-gui-nav-wrapper *,
#gm-gui__header-types *,
.gm-gui__tab-panes {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.gm-gui__brand-wrapper {
  position: relative;
  z-index: 99;
  display: block;
  min-height: 90px;
  background-color: #448aff;
  -webkit-box-shadow: 0 0 21px rgba(1, 2, 2, 0.12);
          box-shadow: 0 0 21px rgba(1, 2, 2, 0.12); }

.gm-gui__brand-logo {
  position: absolute;
  top: 50%;
  left: 28px;
  display: block;
  width: 144px;
  max-width: 100%;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.gm-gui__ver {
  display: block;
  margin-top: 5px; }

.gm-gui__tab-panes form {
  float: left;
  width: 100%; }

.gm-gui__restore-btn {
  position: relative;
  z-index: 99;
  display: block;
  width: 137px;
  margin: 0;
  padding: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  outline: none;
  background-color: #30343f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4; }
  .gm-gui__restore-btn:hover, .gm-gui__restore-btn:focus {
    color: white; }
  .gm-gui__restore-btn:hover {
    background-color: #e43846; }

a:focus {
  -webkit-box-shadow: none;
          box-shadow: none; }

@media (max-width: 1199px) {
  .gm-gui__restore-btn {
    padding: 15px 0;
    font-size: 10px; } }

.gm-gui__export-button,
.gm-gui__import-button {
  display: block;
  padding: 7px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: #393b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4 !important; }
  .gm-gui__export-button:hover, .gm-gui__export-button:focus,
  .gm-gui__import-button:hover,
  .gm-gui__import-button:focus {
    color: white; }

.gm-gui__import-button {
  margin-top: 15px; }

.gm-gui-save-btn:hover,
.gm-gui__export-button:hover {
  background-color: #448aff; }

.gm-gui-restore-section-btn:hover {
  background-color: #e43846; }

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

.gm-clearfix::after {
  clear: both; }

.gm-gui-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 5px;
  padding: 15px;
  cursor: pointer;
  -webkit-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  text-align: left;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: #393b3f;
  font-size: 12px;
  font-weight: 700; }
  .gm-gui-btn:hover {
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px); }

.gm-gui-btn .fa {
  display: inline-block;
  margin-right: 16px;
  font-size: 16px; }

.gm-gui-btn-group {
  position: fixed;
  z-index: 99;
  top: 50%;
  right: 0;
  -webkit-transform: translate(81px, -50%);
          transform: translate(81px, -50%); }

.gm-gui__font-preview-wrapper {
  margin-bottom: 15px;
  width: 280px;
  height: 80px;
  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;
  background-color: #e6e6e6; }

.gm-gui__font-preview {
  font-size: 20px;
  font-weight: 400;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }
  .gm-gui__font-preview--loading {
    opacity: 0; }

/* rtl:ignore */
[dir='rtl'] .gm-gui-btn-group {
  -webkit-transform: translate(-85px, -50%);
          transform: translate(-85px, -50%); }

/***************************************
GROOVY MENU NAV (SIDEBAR)
***************************************/
.gm-gui-nav-wrapper {
  display: block;
  float: left;
  width: 320px; }

.gm-gui__nav-tabs {
  position: relative;
  display: block;
  margin: 0; }

.gm-gui__nav-tabs__item {
  display: block;
  width: 137px;
  height: 137px;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #2b2d32;
  background-color: #242930; }

.gm-gui__nav-tabs__item__anchor {
  position: relative;
  z-index: 99;
  display: block;
  width: 100%;
  padding-top: 38px;
  padding-bottom: 38px;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  text-align: center;
  text-decoration: none;
  color: #676a6f;
  outline: 0;
  cursor: pointer; }
  .gm-gui__nav-tabs__item__anchor:hover, .gm-gui__nav-tabs__item__anchor:active, .gm-gui__nav-tabs__item__anchor:focus {
    color: #fff; }

.gm-gui__nav-tabs__item.active .gm-gui__nav-tabs__item__anchor {
  color: #fff; }
  .gm-gui__nav-tabs__item.active .gm-gui__nav-tabs__item__anchor::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    content: '';
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-width: 12.5px 12px 12.5px 0;
    border-style: solid;
    border-color: transparent #e6e6e6 transparent transparent; }
  .gm-gui__nav-tabs__item.active .gm-gui__nav-tabs__item__anchor::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 100%;
    content: '';
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #448aff; }

.gm-gui__nav-tabs__item .gm-gui-icon {
  display: block;
  font-size: 32px; }

.gm-gui__nav-tabs__item__txt {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400; }

.gm-gui__restore-btn .gm-gui__nav-tabs__item__txt {
  margin-top: 0; }

.gm-gui__nav-tabs__sublevel {
  position: absolute;
  top: 36px;
  right: 0;
  display: none;
  width: 100%;
  padding-left: 137px; }

.gm-gui__nav-tabs__item.active .gm-gui__nav-tabs__sublevel {
  display: block; }

.gm-gui__nav-tabs__sublevel__item {
  padding-right: 20px;
  padding-left: 20px;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 0; }

.gm-gui__nav-tabs__sublevel__item span {
  display: block;
  text-decoration: none;
  color: #767676;
  font-size: 14px;
  font-weight: 400;
  line-height: 61px;
  cursor: pointer;
  white-space: nowrap; }

.gm-gui__nav-tabs__sublevel__item.active .gm-gui__nav-tabs__sublevel__item__anchor {
  font-weight: bold;
  color: #448aff; }

.gm-sublevel {
  display: none; }

.gm-sublevel.active {
  display: block; }

/***************************************
GROOVY MENU TABS GENERAL
***************************************/
.gm-gui__tab-panes {
  min-height: 880px;
  margin-left: 320px;
  padding: 30px 30px 0 30px;
  background-color: #fff; }

.tab-pane {
  position: relative;
  display: none; }

.tab-pane.active {
  display: block; }

/***************************************
GROOVY MENU TABS INNER
***************************************/
.tab-pane__header {
  display: block;
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 700; }

.tab-pane__subheader {
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600; }

.gm-gui-unit {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle; }

.gm-gui-spacer {
  display: block;
  width: 100%;
  margin-bottom: 25px; }

/***************************************
GROOVY MENU TABS MODULE
***************************************/
.gm-sublevel > .gm-gui__module,
.groovy-tab-pane .gm-gui__module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 21px;
  border-top: 1px solid silver;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-sublevel > .gm-gui__module--hidden {
  display: none; }

.groovy-tab-pane .gm-gui__module:first-of-type {
  border-top: none; }

.groovy-tab-pane .gm-gui__module .gm-gui__module__text-wrapper input {
  width: 100%;
  max-width: 360px; }

.gm-gui__module__ui .gm-gui__module__import {
  width: 100%; }

.gm-sublevel > .gm-gui__module .gm-gui__module__title,
.groovy-tab-pane .gm-gui__module .gm-gui__module__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.gm-gui-module-wrapper .gm-gui__module__title {
  display: block;
  margin-bottom: 7px;
  font-size: 14px; }

.gm-gui__module .gm-gui__module__subselect-title {
  display: block;
  margin: 14px 0 2px 0;
  font-size: 14px;
  font-weight: bold; }

.gm-gui__module__internal-title {
  font-weight: 600;
  font-size: 22px;
  margin-top: 60px; }

.gm-gui__module__taxonomy_preset {
  width: 100%; }
  .gm-gui__module__taxonomy_preset .gm-gui__subselect-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    border-top: 1px dashed #cbcbcb;
    padding: 20px 4px 6px 10px;
    width: 100%;
    min-width: 100%;
    background: #fefeff;
    -webkit-box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.03) inset;
            box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.03) inset; }
    .gm-gui__module__taxonomy_preset .gm-gui__subselect-wrapper .gm-gui__module__subselect-title {
      display: block;
      margin: 16px 14px 0 0;
      font-size: 14px;
      font-weight: 700;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }

.gm-gui__module__info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.gm-sublevel > .gm-gui__module .gm-gui__module__info,
.groovy-tab-pane .gm-gui__module__info {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px; }

.gm-gui__module p {
  margin: 0; }

.gm-media-control {
  min-width: 230px; }
  .gm-media-control .gm-media-control-buttons {
    text-align: center; }

/***************************************
GROOVY MENU POST TYPES
***************************************/
.gm-gui__module__post_types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .gm-gui__module__post_types .gm-gui__module__switch-wrapper {
    display: inline-block;
    margin: 18px 22px;
    min-width: 20%; }

/***************************************
GROOVY MENU SWITCH
***************************************/
.gm-gui__module__switch__label {
  display: block;
  font-weight: bolder; }

.gm-gui__module__switch__info {
  display: inline-block;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  line-height: 31px; }

.gm-gui__module__switch-wrapper input[type='checkbox'] {
  position: relative;
  display: inline-block;
  width: 6em;
  height: 3.1em;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: padding 0.25s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: padding 0.25s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s, 0s;
       -o-transition-delay: 0.1s, 0s;
          transition-delay: 0.1s, 0s;
  text-align: start;
  vertical-align: middle;
  border: none;
  border-radius: 1.55em;
  outline: 1px solid transparent !important;
  background: #ccc;
  -webkit-box-shadow: inset 0 0 0 0.2em darkgrey;
          box-shadow: inset 0 0 0 0.2em darkgrey;
  font-size: 10px;
  line-height: 3.1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  /* Animations if supported */ }
  .gm-gui__module__switch-wrapper input[type='checkbox']:checked {
    padding-left: 2.9em !important;
    -webkit-transition-delay: 0s, 0s;
         -o-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
    -webkit-box-shadow: inset 0 0 0 1.77143em #448aff !important;
            box-shadow: inset 0 0 0 1.77143em #448aff !important; }
    .gm-gui__module__switch-wrapper input[type='checkbox']:checked::before {
      font-size: 10px; }
  .gm-gui__module__switch-wrapper input[type='checkbox'].hit {
    -webkit-animation: slide-off 0.35s ease both;
            animation: slide-off 0.35s ease both; }
  .gm-gui__module__switch-wrapper input[type='checkbox'].hit:checked {
    -webkit-animation: slide-on 0.35s ease both 0.05s;
            animation: slide-on 0.35s ease both 0.05s; }
  .gm-gui__module__switch-wrapper input[type='checkbox']::before, .gm-gui__module__switch-wrapper input[type='checkbox']::after {
    content: ''; }
  .gm-gui__module__switch-wrapper input[type='checkbox']::after {
    position: absolute;
    top: -0.9em;
    right: -0.9em;
    bottom: -0.9em;
    left: -0.9em; }
  .gm-gui__module__switch-wrapper input[type='checkbox']::before {
    display: inline-block;
    width: 2.7em;
    height: 2.7em;
    margin: 0.2em 0 0 0.2em;
    -webkit-transition: all 0.1s ease 0.1s;
    -o-transition: all 0.1s ease 0.1s;
    transition: all 0.1s ease 0.1s;
    border-radius: 1.35em;
    background-color: #fff;
    -webkit-box-shadow: 0 0.2em 0.4em 0 rgba(0, 0, 0, 0.2), 0 0 0.1em 0.1em rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.2em 0.4em 0 rgba(0, 0, 0, 0.2), 0 0 0.1em 0.1em rgba(0, 0, 0, 0.1); }
  .gm-gui__module__switch-wrapper input[type='checkbox']:active::before {
    -webkit-transition: all 0.1s ease 0.05s;
    -o-transition: all 0.1s ease 0.05s;
    transition: all 0.1s ease 0.05s; }
  .gm-gui__module__switch-wrapper input[type='checkbox'].touch:hover::before {
    -webkit-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s; }
  .gm-gui__module__switch-wrapper input[type='checkbox']:active::before, .gm-gui__module__switch-wrapper input[type='checkbox'].touch:hover::before {
    width: 3.5em; }
  .gm-gui__module__switch-wrapper input[type='checkbox']:active:checked::before, .gm-gui__module__switch-wrapper input[type='checkbox'].touch:hover:checked::before {
    margin-left: -0.6em; }

@-webkit-keyframes slide-on {
  0% {
    padding-left: 0; }
  60% {
    padding-left: 3.3em; }
  100% {
    padding-left: 2.9em; } }

@keyframes slide-on {
  0% {
    padding-left: 0; }
  60% {
    padding-left: 3.3em; }
  100% {
    padding-left: 2.9em; } }

@-webkit-keyframes slide-off {
  0% {
    padding-left: 2.9em;
    text-indent: 0; }
  60% {
    padding-left: 0;
    text-indent: -0.4em; }
  100% {
    padding-left: 0;
    text-indent: 0; } }

@keyframes slide-off {
  0% {
    padding-left: 2.9em;
    text-indent: 0; }
  60% {
    padding-left: 0;
    text-indent: -0.4em; }
  100% {
    padding-left: 0;
    text-indent: 0; } }

/***************************************
GROOVY MENU SELECT
***************************************/
.choices {
  min-width: 200px; }

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px; }

.gm-sublevel .gm-gui-module-wrapper .gm-gui__module .select {
  position: relative;
  display: inline-block;
  min-width: 150px;
  max-width: 360px;
  height: 40px;
  color: #555;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%; }

.gm-gui__module .select {
  position: relative;
  display: inline-block;
  min-width: 360px;
  height: 40px;
  color: #555;
  border: 1px solid #ddd;
  font-size: 16px; }

.gm-gui__module .gm-gui__header-types__options__list .select {
  min-width: 170px; }

.select-styled {
  position: static;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 30px 8px 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: #fff; }
  .select-styled::after {
    position: absolute;
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    content: '';
    border: 7px solid;
    border-color: #555 transparent transparent transparent; }
  .select-styled:hover {
    background-color: #fafafa; }
  .select-styled:active::after, .select-styled.active::after {
    top: 9px;
    border-color: transparent transparent #555 transparent; }

.select-styled:not(.active) ~ .select-options {
  display: none; }

.select-options {
  position: absolute;
  z-index: 999;
  top: 100%;
  right: 0;
  left: 0;
  overflow-y: auto;
  max-height: 236px;
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
  outline: 1px solid #ddd;
  background-color: #fff; }
  .select-options li {
    margin: 0;
    padding: 12px 15px;
    cursor: pointer;
    -webkit-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    border-top: 1px solid #e6e6e6; }
    .select-options li:hover {
      color: #fff;
      background: #448aff; }
    .select-options li[rel='hide'] {
      display: none; }

@media (max-width: 1178px) {
  #gm-gui__header-types .gm-gui__header-types__options__list .select {
    min-width: 250px;
    margin-right: 60px;
    margin-bottom: 4px; }
  #gm-gui__header-types .gm-gui__header-types__options__align {
    margin-left: 0; } }

/***************************************
CODEMIRROR styles
***************************************/
.gm-form .CodeMirror {
  border: 1px solid #dbdbdb;
  min-height: 680px;
  height: 680px; }

.gm-form .gm-textarea-small-height .CodeMirror {
  height: 120px !important;
  min-height: 120px !important; }

.gm-form .gmCodemirrorInit.gmHtmlTextarea {
  width: 500px;
  height: 110px; }

/***************************************
HEADER TYPES
***************************************/
#gm-gui__header-types {
  width: 100%;
  max-width: 1170px; }

.gm-gui__header-types__title {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 33px; }

/* HEADER TYPES options */
.gm-gui__header-types__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-gui__header-types__options__align {
  padding: 9px 0 9px 15px;
  margin-left: -2px;
  margin-right: -2px;
  background-color: #d4d4d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.gm-gui__header-types__options__align > span {
  padding: 6px 9px;
  cursor: pointer;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  border-radius: 3px;
  font-size: 15px;
  margin-left: 2px;
  margin-right: 2px; }
  .gm-gui__header-types__options__align > span:hover {
    color: #fff;
    background-color: #448aff; }

.gm-gui__header-types__options__align span.active {
  color: #fff;
  background-color: #448aff; }

.gm-gui__header-types__options__toolbar-toggle {
  padding: 7px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #d4d4d4; }

.gm-gui__header-types__options__toolbar-toggle .gm-gui__module__switch-wrapper {
  display: inline-block; }

.gm-gui__header-types__options__toolbar-toggle .gm-gui__module__switch-wrapper input[type='checkbox'] {
  font-size: 7px; }
  .gm-gui__header-types__options__toolbar-toggle .gm-gui__module__switch-wrapper input[type='checkbox']:checked::before {
    font-size: 7px; }

/* HEADER TYPES list */
.gm-gui__header-types__options__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.gm-gui__header-types__options__list .gm-gui__header-types__title {
  margin-right: 15px; }

.gm-gui__header-types__options__list__item {
  display: inline-block;
  padding: 5px 11px;
  cursor: pointer;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold; }
  .gm-gui__header-types__options__list__item:hover {
    color: #fff;
    border-color: #448aff;
    background-color: #448aff; }

.gm-gui__header-types__options__list__item.active {
  color: #fff;
  border-color: #448aff;
  background-color: #448aff; }

.gm-gui__header-types__options__list__item + .gm-gui__header-types__options__list__item {
  margin-left: 5px; }

/* HEADER TYPES preview */
.gm-gui__header-types__preview-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 250px;
  border: 5px solid #d4d4d4; }

.gm-gui__header-types__preview {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff url(../images/styles-menu-logo.png) no-repeat; }

/* HEADER TYPES bg position */
/* Style 1 */
.style-1-align-left .gm-gui__header-types__preview {
  background-position: 0 -3124px; }

.style-1-align-left.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -2839px; }

.style-1-align-center .gm-gui__header-types__preview {
  background-position: 0 -2556px; }

.style-1-align-center.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -2271px; }

.style-1-align-right .gm-gui__header-types__preview {
  background-position: 0 -3692px; }

.style-1-align-right.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -3407px; }

/* Style 2 */
.style-2-align-left .gm-gui__header-types__preview {
  background-position: 0 -4260px; }

.style-2-align-left.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -3975px; }

.style-2-align-center .gm-gui__header-types__preview {
  background-position: 0 -5396px; }

.style-2-align-center.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -5112px; }

.style-2-align-right .gm-gui__header-types__preview {
  background-position: 0 -4828px; }

.style-2-align-right.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -4543px; }

/* Style 3 */
.style-3-align-left .gm-gui__header-types__preview {
  background-position: 0 0; }

.style-3-align-left.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -568px; }

.style-3-align-right .gm-gui__header-types__preview {
  background-position: right -284px; }

.style-3-align-right.toolbar-true .gm-gui__header-types__preview {
  background-position: right -852px; }

/* Style 4 */
.style-4-align-left .gm-gui__header-types__preview {
  background-position: 0 -1420px; }

.style-4-align-left.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -1988px; }

.style-4-align-right .gm-gui__header-types__preview {
  background-position: right -1136px; }

.style-4-align-right.toolbar-true .gm-gui__header-types__preview {
  background-position: right -1704px; }

/* Style 5 */
.style-5-align-left .gm-gui__header-types__preview {
  background-position: 0 -5964px; }

.style-5-align-left.toolbar-true .gm-gui__header-types__preview {
  background-position: 0 -6532px; }

.style-5-align-right .gm-gui__header-types__preview {
  background-position: right -5680px; }

.style-5-align-right.toolbar-true .gm-gui__header-types__preview {
  background-position: right -6248px; }

/***************************************
Hover styles
***************************************/
.gm-gui__module__hover-style-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-gui__module__hover-style__item {
  cursor: pointer;
  margin: 10px;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s; }
  .gm-gui__module__hover-style__item:hover {
    -webkit-box-shadow: 0 0 0 2px #448aff;
            box-shadow: 0 0 0 2px #448aff; }

.gm-gui__module__hover-style__item.active {
  -webkit-box-shadow: 0 0 0 2px #448aff;
          box-shadow: 0 0 0 2px #448aff; }

.gm-gui__module__hover-style__item img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  height: auto; }

.gm-media-preview img {
  z-index: 10;
  max-width: 150px;
  height: auto;
  max-height: 85px; }

.gm-media-preview {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100px;
  margin-bottom: 15px;
  background: url(../images/pattern.png) left center repeat;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .gm-media-preview:hover {
    -webkit-animation: slide 5s linear infinite;
            animation: slide 5s linear infinite; }
  .gm-media-preview:hover::after {
    background-color: rgba(68, 138, 255, 0.5); }
  .gm-media-preview::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: linear 0.3s;
    -o-transition: linear 0.3s;
    transition: linear 0.3s; }

@-webkit-keyframes slide {
  from {
    background-position: left center; }
  to {
    background-position: right center; } }

@keyframes slide {
  from {
    background-position: left center; }
  to {
    background-position: right center; } }

.wp-core-ui .button-secondary {
  display: inline-block; }

.gm-gui__module__media .gm-remove-btn {
  display: none; }

.gm-gui__module__media--selected .gm-remove-btn {
  display: inline-block; }

/***************************************
RESPONSIVE
***************************************/
@media (max-width: 768px) {
  .gm-gui__tab-panes {
    margin-left: 137px; }
  .gm-gui-nav-wrapper {
    float: none;
    width: 100%; }
  .gm-gui__nav-tabs {
    background-color: #e7e7e7; }
  .gm-gui__nav-tabs__item__anchor {
    background-color: #242930; } }

@media (max-width: 1178px) {
  .gm-gui__module__range__input {
    margin-top: 20px; } }

@media (max-width: 480px) {
  .gm-gui-container {
    margin-right: 10px;
    margin-left: 0; } }

.gm-gui-module-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 21px;
  border-top: 1px solid silver;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .gm-gui-module-wrapper .gm-gui__module {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 15px 10px 0; }

.gm-gui__module__alpha {
  width: 100%;
  font-size: 18px;
  font-weight: 600; }

.gm-gui__module__text-wrapper,
.gm-gui__module__text-wrapper textarea {
  display: block;
  width: 100%; }

.gm-gui__module__text-wrapper textarea {
  height: 150px;
  white-space: normal;
  border-radius: 2px; }

.gm-gui__logotype {
  display: inline-block;
  height: 155px;
  -webkit-transition: -webkit-box-shadow ease 0.2s;
  transition: -webkit-box-shadow ease 0.2s;
  -o-transition: box-shadow ease 0.2s;
  transition: box-shadow ease 0.2s;
  transition: box-shadow ease 0.2s, -webkit-box-shadow ease 0.2s;
  -webkit-box-shadow: 0 0 0 0 #448aff;
          box-shadow: 0 0 0 0 #448aff; }
  .gm-gui__logotype input[type="radio"] {
    display: none; }

.gm-gui__logotype + .gm-gui__logotype {
  margin-left: 10px; }

.gm-gui__logotype--selected {
  -webkit-box-shadow: 0 0 0 2px #448aff;
          box-shadow: 0 0 0 2px #448aff; }

.gm-gui__module__colorpicker .wp-picker-holder {
  position: absolute;
  z-index: 99; }

/***************************************
SNACKBAR
***************************************/
.gm-snackbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 24px;
  min-height: 16px;
  max-height: 60px;
  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;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  background-color: rgba(26, 26, 27, 0.92);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transform: translateY(60px);
          transform: translateY(60px); }
  .gm-snackbar--visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }

@media (min-width: 640px) {
  .gm-snackbar {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    min-width: 288px;
    max-width: 500px; } }

/***************************************
CHOICES
***************************************/
.choices__list--dropdown .choices__item--selectable {
  padding: 10px; }

/***************************************
CUSTOMS
***************************************/
.gm-gui__module__name__mobile_independent_css_hamburger_type .select-styled,
.gm-gui__module__name__action__gm_before_main_header__custom_id .select-styled,
.gm-gui__module__name__action__gm_after_main_header__custom_id .select-styled {
  min-width: 180px; }

/***************************************
SAVE SPINNER
***************************************/
@-webkit-keyframes gm-three-quarters-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes gm-three-quarters-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* :not(:required) hides this rule from IE9 and below */
.gm-three-quarters-spinner:not(:required) {
  -webkit-animation: gm-three-quarters-spinner 1750ms infinite linear;
          animation: gm-three-quarters-spinner 1750ms infinite linear;
  border: 3px solid #ff4;
  border-right-color: transparent;
  border-radius: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  width: 18px;
  height: 18px; }

/***************************************
RTL style fixes
***************************************/
.rtl .gm-form .gm-gui__module .choices__list {
  text-align: right; }

.rtl .gm-form .gm-gui__module .choices__list--dropdown .choices__item {
  text-align: right;
  padding-left: 10px;
  padding-right: 10px; }

/***************************************
GROOVY DASHBOARD GENERAL SETTINGS
***************************************/
.groovy-tabs::before,
.groovy-tabs::after,
.groovy-iconset::before,
.groovy-iconset::after,
.groovy-icons::before,
.groovy-icons::after {
  display: table;
  content: ' '; }

.groovy-tabs::after,
.groovy-iconset::after,
.groovy-icons::after {
  clear: both; }

.btn {
  display: block;
  padding: 7px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  background-color: #393b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4 !important; }
  .btn:hover {
    background-color: #448aff; }

/***************************************
GROOVY DASHBOARD HEADER
***************************************/
.gm-dashboard-container {
  margin: 40px 20px; }
  .gm-dashboard-container * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

.gm-dashboard-header {
  position: relative;
  overflow: hidden;
  height: 90px;
  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;
  background: #2b2d30 url(../images/groovy_bg.jpg) right no-repeat; }

.gm-dashboard-header__logo {
  position: relative;
  max-width: 412px;
  width: 100%;
  height: 100%;
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #448aff; }
  .gm-dashboard-header__logo img {
    height: 53px; }

.gm-dashboard-header__btn-group {
  position: relative;
  padding-right: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.gm-dashboard__global-settings-btn {
  height: 52px;
  width: 210px;
  margin: 0;
  padding: 0 13px 0 19px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background-color: #448aff;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease; }
  .gm-dashboard__global-settings-btn:hover {
    background-color: #3293ff; }
  .gm-dashboard__global-settings-btn .gm-gui-icon {
    margin-right: 16px;
    color: #fff;
    font-size: 32px; }
  .gm-dashboard__global-settings-btn .global-settings-btn__txt-group {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 17px; }
  .gm-dashboard__global-settings-btn .global-settings-btn-title {
    color: #9df9ff;
    font-size: 14px;
    font-weight: 500; }
  .gm-dashboard__global-settings-btn .global-settings-btn-subtitle {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase; }

.gm-dashboard-header__help-link {
  padding: 0 35px;
  height: 52px;
  width: 196px;
  border-radius: 3px;
  background-color: #efefef;
  margin-left: 17px;
  -webkit-transition: background-color ease 0.2s;
  -o-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #686868 !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px; }
  .gm-dashboard-header__help-link:hover {
    background-color: #fff; }
  .gm-dashboard-header__help-link .gm-gui-icon {
    font-size: 32px;
    color: #cecece;
    margin-right: 15px; }

/***************************************
GROOVY DASHBOARD BODY
***************************************/
.gm-dashboard-body {
  position: relative;
  padding: 20px 20px 43px 20px;
  background-color: #f7f7f7;
  -webkit-box-shadow: 0 0 21px rgba(1, 2, 2, 0.12);
          box-shadow: 0 0 21px rgba(1, 2, 2, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-dashboard-body_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.gm-dashboard-body_inner,
.gm-dashboard-body__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%; }

.gm-dashboard-body__title__alpha {
  margin-top: 20px;
  margin-bottom: 25px;
  color: #23282d;
  font-size: 18px;
  font-weight: 600; }

/***************************************
GROOVY DASHBOARD PRESET
***************************************/
.preset {
  min-height: 1px;
  max-height: 197px;
  margin-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%; }

@media (min-width: 600px) {
  .preset {
    width: 50%; } }

@media (min-width: 800px) {
  .preset {
    width: 33%; } }

@media (min-width: 1100px) {
  .preset {
    width: 25%; } }

.preset-comparision a {
  text-decoration: none; }

.preset-comparision .preset-placeholder {
  background-image: url(../images/comparision-bg.png);
  background-size: cover;
  background-position: 8px center;
  background-repeat: no-repeat; }

.preset-comparision .gm-gui-icon {
  font-size: 32px;
  color: #f9b000; }

.preset-inner {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border: 1px solid #e0e0e0;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  cursor: pointer; }

.grooni-metabox-row .preset {
  min-width: 250px; }

.grooni-metabox-row .preset-title {
  width: 100%; }

#groovy-select-preset-modal .preset--selected .preset-placeholder::after,
.grooni-metabox-row .preset--current .preset-placeholder::after,
.groovy-menu-redux-current .preset--current .preset-placeholder::after,
.groovy-menu-redux-modal .preset--selected .preset-placeholder::after {
  position: absolute;
  top: 0;
  left: 0;
  content: url(../images/current.png); }

.grooni-metabox-row .preset * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.preset-inner.active {
  position: relative;
  z-index: 999;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 7.2px 2.8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 10px 7.2px 2.8px rgba(0, 0, 0, 0.24); }

.preset .preset-inner:not(.active):hover,
.preset .preset-inner:not(.active):hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 13px 10px rgba(0, 0, 0, 0.24);
          box-shadow: 0 13px 10px rgba(0, 0, 0, 0.24); }

.preset-inner {
  cursor: pointer; }

.preset-placeholder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 160px;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.preset-placeholder img {
  max-width: 85% !important;
  height: auto !important;
  max-height: 138px;
  background-image: url(../images/pattern-preview.png); }

.crane-groovy-menu-select-wrapper .preset-title {
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.crane-groovy-menu-select-wrapper .preset-opts__dropdown {
  width: 35px !important; }

.groovy-menu-redux-current > .preset {
  padding: 0;
  width: auto;
  max-width: 390px; }

.preset--add-template.preset--not-allowed .preset-title__alpha {
  white-space: normal;
  text-transform: initial !important;
  font-weight: normal !important;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto; }

.preset--default .preset-placeholder::after {
  position: absolute;
  top: 0;
  left: 0;
  content: url(../images/set-as-default.png); }

.preset--create-new .preset-inner .preset-placeholder,
.preset--add-template .preset-inner .preset-placeholder,
.preset--import .preset-inner .preset-placeholder,
.preset-comparision .preset-inner .preset-placeholder {
  min-height: 197px;
  text-align: center;
  border: 2px dashed #b8b8b8;
  background-color: #fff; }
  .preset--create-new .preset-inner .preset-placeholder .preset-placeholder-inner a,
  .preset--add-template .preset-inner .preset-placeholder .preset-placeholder-inner a,
  .preset--import .preset-inner .preset-placeholder .preset-placeholder-inner a,
  .preset-comparision .preset-inner .preset-placeholder .preset-placeholder-inner a {
    text-decoration: none;
    color: #686868; }
  .preset--create-new .preset-inner .preset-placeholder .gm-gui-icon,
  .preset--add-template .preset-inner .preset-placeholder .gm-gui-icon,
  .preset--import .preset-inner .preset-placeholder .gm-gui-icon,
  .preset-comparision .preset-inner .preset-placeholder .gm-gui-icon {
    display: block;
    margin-bottom: 12px; }
  .preset--create-new .preset-inner .preset-placeholder .preset-title__alpha,
  .preset--add-template .preset-inner .preset-placeholder .preset-title__alpha,
  .preset--import .preset-inner .preset-placeholder .preset-title__alpha,
  .preset-comparision .preset-inner .preset-placeholder .preset-title__alpha {
    text-transform: uppercase;
    color: #686868;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px; }
  .preset--create-new .preset-inner .preset-placeholder .preset-title__beta,
  .preset--add-template .preset-inner .preset-placeholder .preset-title__beta,
  .preset--import .preset-inner .preset-placeholder .preset-title__beta,
  .preset-comparision .preset-inner .preset-placeholder .preset-title__beta {
    color: #a6a6a6;
    font-size: 11px;
    font-weight: 700;
    line-height: 13px; }

.preset-placeholder .gm-gui-icon {
  margin-bottom: 12px; }

.preset-placeholder .preset-title__alpha,
.preset-placeholder .preset-title__beta {
  text-align: center;
  pointer-events: none; }

.preset--create-new .gm-gui-icon {
  font-size: 22px; }

.preset--import .gm-gui-icon {
  font-size: 32px; }

.preset--add-template .gm-gui-icon {
  font-size: 30px; }

.preset--add-template.preset--not-allowed .preset-title__alpha-sub {
  font-size: 12px;
  line-height: 16px; }

.preset-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.preset-title {
  position: relative;
  overflow: hidden;
  height: 35px;
  padding: 5px 15px;
  background-color: rgba(2, 2, 2, 0.12);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.preset-placeholder-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #686868; }

.preset-title__alpha {
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap; }

.preset-title__alpha-sub {
  color: #686868;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px; }
  .preset-title__alpha-sub span {
    color: #f9b000; }

.preset-title__input {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: text;
  text-align: left;
  white-space: nowrap;
  text-transform: uppercase;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  color: #686868;
  border: none;
  background: transparent !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px; }

.preset-options {
  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;
  z-index: 999;
  text-align: center; }
  .preset-options > .fa {
    background-color: #b8b8b8;
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    -webkit-transition: background-color ease 0.2s;
    -o-transition: background-color ease 0.2s;
    transition: background-color ease 0.2s;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 35px; }
    .preset-options > .fa:hover {
      background-color: #448aff; }

.preset-opts__nav {
  position: absolute;
  z-index: 999;
  top: 100%;
  right: 0;
  width: 164px;
  margin: 0;
  -webkit-transition: opacity 0.2s ease, visivility 0.2s ease;
  -o-transition: opacity 0.2s ease, visivility 0.2s ease;
  transition: opacity 0.2s ease, visivility 0.2s ease;
  background-color: #3b3b3b;
  -webkit-box-shadow: 0 13px 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 13px 8px rgba(0, 0, 0, 0.24); }

.preset-inner:not(.active) .preset-opts__nav {
  visibility: hidden;
  opacity: 0; }

.preset-opts__nav__item {
  display: block;
  margin: 0;
  padding-right: 15px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  text-align: left;
  color: #fff;
  line-height: 34px; }
  .preset-opts__nav__item:hover {
    background-color: #448aff; }

.preset-opts__nav__item a {
  display: block;
  text-decoration: none;
  color: #fff; }

.preset-opts__nav__item .fa {
  display: inline-block;
  max-width: 42px;
  padding-right: 17px;
  padding-left: 17px; }

.gm-modal-header {
  min-height: 16px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.gm-modal-notice {
  text-align: center;
  padding: 30px 20px;
  width: 100%;
  font-size: 110%; }

/**************************
GENERAL SETTINGS MODAL
**************************/
.groovy-tab-pane {
  display: none;
  padding: 0 30px 90px 30px;
  overflow-y: auto;
  height: calc(100vh - 110px); }

.groovy-tab-pane-active {
  display: block; }

.groovy-tabs {
  text-align: center;
  background-color: #242930;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto; }

.groovy-tab {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  -webkit-transition: color linear 0.2s, background-color linear 0.2s;
  -o-transition: color linear 0.2s, background-color linear 0.2s;
  transition: color linear 0.2s, background-color linear 0.2s;
  text-decoration: none;
  text-transform: uppercase;
  color: #676a6f;
  font-size: 15px;
  line-height: 60px;
  white-space: nowrap; }
  .groovy-tab:hover, .groovy-tab:focus {
    color: #fff; }
  .groovy-tab::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: ''; }

.groovy-tab-active {
  color: #fff; }
  .groovy-tab-active::before {
    background-color: #448aff; }

.gm-gui__module__text-wrapper input,
.gm-gui__module__icon-wrapper input {
  display: inline-block;
  float: left;
  padding: 10px 24px;
  line-height: 1;
  -webkit-transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, color ease-in-out 0.15s;
  vertical-align: middle;
  color: #686868;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: 0;
  background-color: #fff;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
  font-size: 16px; }

.gm-gui__module .gm-icon-preview {
  width: 39px;
  height: 39px;
  float: left;
  font-size: 33px;
  margin: 5px  10px 0 0; }

.select-icon {
  position: relative;
  z-index: 999;
  left: -2px;
  float: left;
  padding: 14px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: #393b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1; }
  .select-icon:hover {
    background-color: #448aff; }

.gm-upload-icon-pack,
.gm-install-default-icon-pack,
.gm-import-notice-btn {
  z-index: 999;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: #393b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1; }
  .gm-upload-icon-pack:hover,
  .gm-install-default-icon-pack:hover,
  .gm-import-notice-btn:hover {
    background-color: #448aff; }

.groovy-iconset {
  margin-top: 25px;
  padding: 15px;
  background: #fff; }

.groovy-iconset-name {
  display: block;
  float: left;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 29px; }

.groovy-delete-font,
.groovy-replace-icon-pack {
  cursor: pointer;
  position: relative;
  z-index: 999;
  display: block;
  float: right;
  margin-bottom: 15px;
  margin-left: 8px;
  padding: 8px 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color linear 0.3s;
  -o-transition: background-color linear 0.3s;
  transition: background-color linear 0.3s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border: none;
  background-color: #393b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1; }
  .groovy-delete-font:hover, .groovy-delete-font:focus,
  .groovy-replace-icon-pack:hover,
  .groovy-replace-icon-pack:focus {
    color: white;
    background-color: #e43846; }

.groovy-icons {
  overflow: auto;
  overflow-x: hidden;
  width: 100%;
  height: auto;
  max-height: 207px;
  border: 1px solid silver;
  font-size: 30px; }

.groovy-icons span {
  display: block;
  float: left;
  width: 5%;
  height: 41px;
  margin: 0;
  text-align: center;
  -webkit-box-shadow: 0 0 0 1px silver;
          box-shadow: 0 0 0 1px silver;
  font-size: 18px;
  line-height: 41px; }

#global-settings-modal .gm-modal-body {
  padding: 0; }

.gm-gui__module__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.gm-media-file-info {
  margin-left: 30px; }

.gm-media-file-info-title {
  font-size: 1.2em;
  border-bottom: 1px dotted #b5b5b5;
  border-top: 1px dotted #b5b5b5;
  padding: 6px; }

.gm-media-file-info-text {
  padding-left: 6px; }

.gm-infobox {
  position: fixed;
  top: 75px;
  right: 20px;
  z-index: 999;
  display: block;
  visibility: visible;
  padding: 10px 20px;
  -webkit-transition: opacity linear 0.3s, visibility linear 0.3s;
  -o-transition: opacity linear 0.3s, visibility linear 0.3s;
  transition: opacity linear 0.3s, visibility linear 0.3s;
  opacity: 1; }

.gm-infobox.gm-hidden {
  visibility: hidden;
  opacity: 0; }

.gm-infobox-success {
  background-color: #4caf50; }

.gm-infobox__txt {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1; }

.preview-size-change {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #242930;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.preview-size-change a {
  position: relative;
  padding: 0 20px;
  -webkit-transition: color linear 0.2s, background-color linear 0.2s;
  -o-transition: color linear 0.2s, background-color linear 0.2s;
  transition: color linear 0.2s, background-color linear 0.2s;
  text-decoration: none;
  color: #676a6f;
  font-size: 15px;
  line-height: 60px; }

.preview-size-change .active {
  color: #fff; }
  .preview-size-change .active::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background-color: #448aff; }

.gm-modal-body-iframe {
  margin: 0 auto; }

.iframe--size-desktop .gm-modal-body-iframe,
.iframe--size-tablet .gm-modal-body-iframe {
  width: 100%;
  height: 100%; }

.gm-modal-body.iframe--size-desktop,
.gm-modal-body.iframe--size-tablet {
  height: 100%; }

#preview-modal .gm-close,
.preview-modal-wrapper .gm-close {
  margin-right: 15px;
  cursor: pointer;
  color: #fff;
  line-height: 60px;
  background: url("../images/preview-close.png") center no-repeat;
  width: 14px;
  height: 14px; }

#preview-modal .modal-info,
.preview-modal-wrapper .modal-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 15px; }
  #preview-modal .modal-info .modal-title,
  .preview-modal-wrapper .modal-info .modal-title {
    color: white;
    font-size: 15px; }
  #preview-modal .modal-info .modal-preview-name,
  .preview-modal-wrapper .modal-info .modal-preview-name {
    color: #6d7889;
    font-size: 13px; }

#preview-modal .gm-modal-body,
.preview-modal-wrapper .gm-modal-body {
  position: relative;
  padding: 0; }

.preview-size-change__tabs,
.preview-color-change__tabs,
.preview-sticky-change__tabs,
.preview-navmenu-change__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.preview-sticky-change__tabs {
  padding-right: 8px; }

.preview-navmenu-change__tabs {
  padding-right: 60px;
  min-width: 280px; }
  .preview-navmenu-change__tabs .select-styled::after {
    position: relative;
    top: 12px;
    right: -16px; }
  .preview-navmenu-change__tabs .select-styled.active::after {
    top: -12px; }

.value {
  margin-left: 10px; }

.gm-gui__module__number-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

#toplevel_page_groovy_menu_settings .dashicons-admin-generic::before,
#toplevel_page_groovy_menu_welcome .dashicons-admin-generic::before {
  content: '';
  background-image: url("../images/groovy.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.preview-size-change__tabs a {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.preview-size-change__tabs a svg {
  fill: #6d7279;
  fill-opacity: 0.4;
  -webkit-transition: fill linear 0.2s, fill-opacity linear 0.2s;
  -o-transition: fill linear 0.2s, fill-opacity linear 0.2s;
  transition: fill linear 0.2s, fill-opacity linear 0.2s; }

.preview-size-change__tabs a.active svg {
  fill: #fff;
  fill-opacity: 1; }

.preview-color-change__tabs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.preview-color-placeholder {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  overflow: hidden; }

.preview-color-change__tabs {
  height: 60px; }
  .preview-color-change__tabs a[data-color='transparent'] .preview-color-placeholder {
    background: url(../images/preview-color-transparent.png) center no-repeat;
    background-size: cover; }
  .preview-color-change__tabs a[data-color='black'] .preview-color-placeholder {
    background-color: #000; }
  .preview-color-change__tabs a[data-color='gray'] .preview-color-placeholder {
    background-color: #a0a0a0; }
  .preview-color-change__tabs a[data-color='white'] .preview-color-placeholder {
    background-color: #fff; }

/**************************
INTEGRATION DASHBOARD
**************************/
.gm-dashboard__integration .gm-dashboard-body {
  padding: 20px; }

.gm-dashboard__integration .gm-dashboard-body-section:not(:last-of-type) {
  margin-bottom: 32px; }

.gm-dashboard__integration .gm-dashboard-body_inner {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  display: block; }

.gm-dashboard__integration h3 {
  text-align: left;
  line-height: 1.8; }

.gm-dashboard__integration p {
  font-size: 16px;
  width: 100%; }

.gm-dashboard__integration pre {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 15px;
  overflow: auto; }

.gm-screenshot-iframe {
  position: absolute;
  left: -1400px;
  top: -1000px; }

.gm-delete-warn {
  color: #f00;
  font-weight: bold; }

.gm-dashboard__integration {
  font-size: 16px; }
  .gm-dashboard__integration h2 {
    font-size: 1.8em; }
  .gm-dashboard__integration h3 {
    font-size: 1.4em; }
  .gm-dashboard__integration pre {
    border: 1px solid rgba(100, 100, 100, 0.2);
    font-size: 0.8em; }
  .gm-dashboard__integration .gm-dashboard-body-section {
    border-bottom: dashed 1px #bbb;
    padding-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .gm-dashboard__integration .gm-dashboard-body-section .gm-dashboard-body-block--left {
      margin: auto 36px auto 18px; }
    .gm-dashboard__integration .gm-dashboard-body-section label {
      font-size: 1.2em;
      margin-right: 5px; }
    .gm-dashboard__integration .gm-dashboard-body-section .gm-integration-button {
      margin-top: 15px; }
  .gm-dashboard__integration .gm-dashboard-body-section--child,
  .gm-dashboard__integration .gm-dashboard-body-section--divi {
    background-color: #f7efd8;
    border-radius: 6px;
    border: 1px solid #ded3ab; }
    .gm-dashboard__integration .gm-dashboard-body-section--child .gm-dashboard-body-block--left,
    .gm-dashboard__integration .gm-dashboard-body-section--divi .gm-dashboard-body-block--left {
      margin-top: 24px; }
  .gm-dashboard__integration .gm-dashboard-body-block--slider {
    background: #fff;
    margin-top: 32px;
    border: 1px solid #ded3ab;
    border-radius: 3px; }
    .gm-dashboard__integration .gm-dashboard-body-block--slider .gm-dashboard-body-block--slider_title {
      background: #fffbee;
      border-bottom: 1px solid #ded3ab;
      padding: 2px 18px; }
    .gm-dashboard__integration .gm-dashboard-body-block--slider .gm-dashboard-body-block--slider_content {
      padding: 2px 18px; }
  .gm-dashboard__integration .gm-gui-picture {
    max-width: 120px;
    max-height: 120px; }
  .gm-dashboard__integration .gm-gui-picture__play-video,
  .gm-dashboard__integration .gm-gui-picture__need-help {
    margin: 0 0.5em -0.2em 0.7em;
    height: 1em; }
  .gm-dashboard__integration .gm-dashboard-body-subsection {
    margin: 4em 0; }
    .gm-dashboard__integration .gm-dashboard-body-subsection p {
      text-align: center;
      line-height: 1em; }
  .gm-dashboard__integration .gm-integrate-shortcode {
    font-size: 1.3em;
    padding: 6px 12px; }
  .gm-dashboard__integration .gm-dashboard-body-section label {
    font-size: 16px;
    margin-right: 5px; }

.menu-item-settings {
  overflow: hidden; }

#gm-icon-settings-modal .groovy-icon {
  display: block;
  float: left;
  width: 41px;
  height: 41px;
  margin: 0;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0 0 0 1px silver;
          box-shadow: 0 0 0 1px silver;
  font-size: 18px;
  line-height: 41px;
  -webkit-transition: background-color ease 0.2s;
  -o-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s; }
  #gm-icon-settings-modal .groovy-icon:hover {
    background-color: rgba(0, 0, 0, 0.1); }

.gm-icon-preview {
  float: left;
  width: 19px;
  height: 19px;
  margin: 3px 10px 0 0;
  font-size: 19px; }

.gm-badge-image-preview img,
.gm-thumb-image-preview img {
  max-width: 390px;
  max-height: 390px; }

.menu-item-depth-0 .menu-item-settings .gm-show-featured-image-wrapper {
  display: none; }

.groovy-select-maxwidth {
  width: 100%; }

.groovy-meta-box-item {
  margin: 10px 0; }

.groovymenu-megamenu-bg {
  float: left; }

.groovymenu-megamenu-bg-preview img {
  margin-top: 10px;
  max-width: 150px;
  max-height: 150px; }

.gm-msg-link-widgets {
  display: none; }

.gm-badge-image-preview,
.gm-thumb-image-preview {
  display: block;
  margin-top: 10px; }

.gm-badge-field,
.gm-thumb-field,
.megamenu-options-depend {
  display: none; }

.gm-fat-label {
  font-weight: bold; }

.gm-badge-field .wp-picker-container .color-alpha,
.gm-badge-field .wp-picker-container .wp-color-result-text {
  min-height: 28px; }

.gm-badge-field .wp-picker-container .wp-picker-clear {
  min-height: 28px;
  margin: 1px 0 0 6px; }

/* --- modal nav-menu settings START --- */
.nav-menus-php.gm_walker_page_no_scroll {
  overflow: hidden; }

.nav-menus-php .gm-menu-options-container {
  float: left;
  width: 100%;
  margin: 10px 0; }

.nav-menus-php .gm-walker-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 12, 0.75);
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  z-index: 99999; }

.nav-menus-php .gm-walker-modal-settings-container,
.nav-menus-php .gm-walker-second-wrapper {
  position: fixed;
  width: 84%;
  max-width: 980px;
  top: 5%;
  left: 8%;
  right: 8%;
  bottom: 5%;
  margin: auto;
  background: #fff;
  border-radius: 4px;
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  z-index: 100001; }
  .nav-menus-php .gm-walker-modal-settings-container .pickr,
  .nav-menus-php .gm-walker-second-wrapper .pickr {
    width: 42px;
    margin: -5px 10px 0 0;
    float: left; }

.nav-menus-php .gm-walker-modal-top-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100010; }
  .nav-menus-php .gm-walker-modal-top-container h2 {
    padding: 1.1em 2.5%;
    border-bottom: 1px solid #bfbfbf !important;
    margin: 0;
    font-size: 23px;
    background: rgba(206, 206, 206, 0.6);
    line-height: inherit;
    text-align: left;
    font-weight: 600; }
  .nav-menus-php .gm-walker-modal-top-container .gm-walker-modal-close {
    height: 69px;
    width: 69px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    text-align: center;
    padding: 1.1em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 23px;
    color: #000;
    background: #ccc;
    -webkit-transition: all 0.32s ease;
    -o-transition: all 0.32s ease;
    transition: all 0.32s ease;
    border-left: 1px solid #bfbfbf; }
  .nav-menus-php .gm-walker-modal-top-container .gm-walker-modal-close:hover {
    color: #711202;
    background-color: rgba(255, 52, 52, 0.2); }

.nav-menus-php .gm-walker-modal-bottom-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #bfbfbf;
  padding: 1em;
  background: rgba(206, 206, 206, 0.6);
  z-index: 100005;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: right; }

.nav-menus-php .gm-walker-modal-main-container {
  overflow: auto;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5em 0 0;
  background-color: #fff;
  margin-top: 6em;
  margin-bottom: 3em; }
  .nav-menus-php .gm-walker-modal-main-container .gm-walker-modal-item-title {
    margin: 1em 3% !important;
    border-bottom: 1px dotted #bfbfbf;
    font-size: 1.5em; }
  .nav-menus-php .gm-walker-modal-main-container .gm-option-details {
    width: 35%;
    float: left;
    display: inline-block; }
    .nav-menus-php .gm-walker-modal-main-container .gm-option-details h3 {
      color: #151515;
      margin-bottom: 0.3em;
      font-size: 1.1em;
      font-weight: bold; }
    .nav-menus-php .gm-walker-modal-main-container .gm-option-details .description {
      color: #858585;
      margin-bottom: 1em;
      font-size: 1em;
      font-style: italic; }
  .nav-menus-php .gm-walker-modal-main-container .gm-option-field {
    width: 60%;
    float: left;
    display: inline-block;
    padding: 0.7em 0 0;
    margin-left: 5%; }
  .nav-menus-php .gm-walker-modal-main-container .gm-option-image-preview {
    max-width: 100%;
    max-height: 256px;
    margin: 0 0 12px 0;
    overflow: hidden; }
    .nav-menus-php .gm-walker-modal-main-container .gm-option-image-preview img {
      max-width: 100%;
      max-height: 256px; }
  .nav-menus-php .gm-walker-modal-main-container .wp-picker-container.wp-picker-active {
    min-width: 300px; }
  .nav-menus-php .gm-walker-modal-main-container .wp-picker-container .wp-picker-holder {
    width: 100%; }
  .nav-menus-php .gm-walker-modal-main-container .wp-picker-container .iris-picker {
    overflow: hidden; }
  .nav-menus-php .gm-walker-modal-main-container .wp-picker-container .iris-palette-container .iris-palette {
    max-width: 20px !important;
    max-height: 20px !important;
    display: none; }
  .nav-menus-php .gm-walker-modal-main-container .wp-picker-container .iris-palette-container .iris-palette:nth-child(-n+8) {
    display: block; }
  .nav-menus-php .gm-walker-modal-main-container .gm-option-field .gm-option-field-select {
    font-size: 1.3em !important;
    font-weight: bold; }
  .nav-menus-php .gm-walker-modal-main-container .gm-option-field .gm-option-type-textarea {
    width: 100%; }

.nav-menus-php .gm-walker-modal-save,
.nav-menus-php .gm-walker-modal-close:not(.dashicons) {
  font-size: 16px;
  padding: 6px 30px;
  margin: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #fff;
  background: #458aff;
  -webkit-box-shadow: 0 2px 0 #3060b2;
          box-shadow: 0 2px 0 #3060b2; }

.nav-menus-php .gm-walker-modal-save:hover,
.nav-menus-php .gm-walker-modal-close:hover {
  color: #fff;
  background: #2b79ff;
  -webkit-box-shadow: 0 1px 0 #0e54cc;
          box-shadow: 0 1px 0 #0e54cc; }

.nav-menus-php .gm-walker-modal-save::before {
  color: #b31b56;
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 8px;
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-animation: 0.5s linear infinite gm-rotate-amination;
  animation: 0.5s linear infinite gm-rotate-amination; }

.nav-menus-php .gm-walker-modal-save.gm-button-loading {
  background: #0330b0;
  pointer-events: none;
  cursor: not-allowed; }

.nav-menus-php .gm-walker-modal-save.gm-button-loading::before {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  opacity: 1; }

@-webkit-keyframes gm-rotate-amination {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes gm-rotate-amination {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.nav-menus-php .gm-walker-option {
  border-bottom: 1px dotted #bfbfbf;
  float: left;
  width: 94%;
  padding: 1em 3%;
  margin: 0; }

/* --- modal nav-menu settings END --- */
.gm-badge-image-preview img {
  max-width: 300px;
  max-height: 150px; }

.gm-badge-image-preview {
  display: block;
  margin-top: 10px; }

.menu-item-bar .menu-item-handle label.item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.menu-item-bar .menu-item-handle .item-title {
  margin-right: 10em; }

.gm-debug-log-hidden {
  display: none !important; }

.gm-debug-container {
  border: 1px solid #ccc;
  margin: 20px 0;
  padding: 10px 12px;
  background: #eee; }

.gm-debug-body > h2 {
  text-align: center;
  font-size: 200%; }

.gm-debug-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #ddd;
  margin-top: 8px;
  padding: 10px 16px;
  background: #fff; }

.gm-debug-section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .gm-debug-section-list .gm-elem-index,
  .gm-debug-section-list .gm-elem-value {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.gm-elem-value > * {
  margin: 0 5px; }

.gm-debug-section-list-item {
  padding: 5px 0;
  border-bottom: 1px dotted #aaa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.gm-debug-log-block-wrapper {
  display: block;
  border: 1px solid #aaa;
  background: #d8d8d8;
  padding: 20px 10px; }

.gm-debug-log-block-title {
  text-align: center;
  font-size: 150%;
  margin: 20px 0;
  border-bottom: 1px dashed #888;
  padding-bottom: 8px; }

.gm-debug-log-block-title span {
  font-weight: 700; }

.gm-debug-log-item .num {
  padding: 0 20px 0 0; }
