@charset "UTF-8";
/* http://sass-lang.com/guide */
@import url(../../bower_components/pure/pure-min.css);
@import url(../../bower_components/pure/grids-responsive-min.css);
@import url(../../bower_components/alertify.js/themes/alertify.core.css);
@import url(../../bower_components/alertify.js/themes/alertify.bootstrap.css);
@import url(../../bower_components/select2-dist/select2.css);
@import url(../../bower_components/font-awesome/css/font-awesome.min.css);
@import url(../../bower_components/spectrum/spectrum.css);
@import url(../../bower_components/sweetalert/dist/sweetalert.css);
/*@import '../js-source/external/qTip/jquery.qtip.css';*/
@import url(../../bower_components/datatables-tabletools/css/dataTables.tableTools.css);
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
@import url(../../bower_components/perfect-scrollbar/css/perfect-scrollbar.css);
@import url(../../bower_components/trumbowyg-2/dist/ui/trumbowyg.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,600,700,800|Lato:300,400,700);
@import url(../css/buttons.dataTables.min.css);
.hint, [data-hint] {
  position: relative;
  display: inline-block;
  /**
   * tooltip arrow
   */
  /**
   * tooltip body
   */ }
  .hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }
  .hint:hover:before, .hint:hover:after, .hint:focus:before, .hint:focus:after, [data-hint]:hover:before, [data-hint]:hover:after, [data-hint]:focus:before, [data-hint]:focus:after {
    visibility: visible;
    opacity: 1; }
  .hint:hover:before, .hint:hover:after, [data-hint]:hover:before, [data-hint]:hover:after {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms; }
  .hint:before, [data-hint]:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001; }
  .hint:after, [data-hint]:after {
    content: attr(data-hint);
    background: #383838;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top:before {
  border-top-color: #383838; }

.hint--bottom:before {
  border-bottom-color: #383838; }

.hint--left:before {
  border-left-color: #383838; }

.hint--right:before {
  border-right-color: #383838; }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -12px; }
.hint--top:after {
  margin-left: -18px; }
.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }
.hint--top:hover:after, .hint--top:hover:before, .hint--top:focus:after, .hint--top:focus:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -12px; }
.hint--bottom:after {
  margin-left: -18px; }
.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }
.hint--bottom:hover:after, .hint--bottom:hover:before, .hint--bottom:focus:after, .hint--bottom:focus:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -12px;
  margin-bottom: -6px; }
.hint--right:after {
  margin-bottom: -14px; }
.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }
.hint--right:hover:after, .hint--right:hover:before, .hint--right:focus:after, .hint--right:focus:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -12px;
  margin-bottom: -6px; }
.hint--left:after {
  margin-bottom: -14px; }
.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }
.hint--left:hover:after, .hint--left:hover:before, .hint--left:focus:after, .hint--left:focus:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
.hint, [data-hint] {
  /**
   * tooltip body
   */ }
  .hint:after, [data-hint]:after {
    text-shadow: 0 -1px 0px black;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }
.hint--error.hint--top:before {
  border-top-color: #b34e4d; }
.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }
.hint--error.hint--left:before {
  border-left-color: #b34e4d; }
.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }
.hint--warning.hint--top:before {
  border-top-color: #c09854; }
.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }
.hint--warning.hint--left:before {
  border-left-color: #c09854; }
.hint--warning.hint--right:before {
  border-right-color: #c09854; }

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d; }
.hint--info.hint--top:before {
  border-top-color: #3986ac; }
.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }
.hint--info.hint--left:before {
  border-left-color: #3986ac; }
.hint--info.hint--right:before {
  border-right-color: #3986ac; }

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }
.hint--success.hint--top:before {
  border-top-color: #458746; }
.hint--success.hint--bottom:before {
  border-bottom-color: #458746; }
.hint--success.hint--left:before {
  border-left-color: #458746; }
.hint--success.hint--right:before {
  border-right-color: #458746; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }
.hint--always.hint--top:after, .hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }
.hint--always.hint--bottom:after, .hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }
.hint--always.hint--left:after, .hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }
.hint--always.hint--right:after, .hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

/*
 * Table styles
 */
/*table.dataTable{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

table.dataTable tbody tr{
  opacity:1.0;
}*/
/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1; }

.dataTables_wrapper .dataTables_length {
  float: left; }

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em; }

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em; }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333333 !important;
  border: 1px solid transparent; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333333 !important;
  border: 1px solid #cacaca;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, white 0%, gainsboro 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, gainsboro 100%);
  /* W3C */ }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858; }

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b; }

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em; }

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333333; }

.dataTables_wrapper .dataTables_scroll {
  clear: both; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important; }

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111111; }

.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  border-bottom: none; }

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

div.dt-buttons {
  margin-top: 10px; }

button.dt-button, div.dt-button, a.dt-button {
  background: transparent none repeat scroll 0 0 !important;
  border: 1px solid #9bb8d4 !important;
  color: #627485 !important; }

button.dt-button:hover, div.dt-button:hover, a.dt-button:hover {
  background: transparent none repeat scroll 0 0 !important;
  border: 1px solid #627485 !important;
  color: #627485 !important; }

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center; }

  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em; } }
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center; }

  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em; } }
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer; }
  table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
  table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
    top: 8px;
    left: 4px;
    height: 16px;
    width: 16px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    text-align: center;
    line-height: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    content: '+';
    background-color: #31b131; }
  table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child.dataTables_empty:before,
  table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child.dataTables_empty:before {
    display: none; }
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '-';
  background-color: #d33333; }
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
  display: none; }
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px; }
  table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
  table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
    top: 5px;
    left: 4px;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    line-height: 12px; }
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer; }
  table.dataTable.dtr-column > tbody > tr > td.control:before,
  table.dataTable.dtr-column > tbody > tr > th.control:before {
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -10px;
    margin-left: -10px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    text-align: center;
    line-height: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    content: '+';
    background-color: #31b131; }
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #d33333; }
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em; }
  table.dataTable > tbody > tr.child:hover {
    background: transparent !important; }
  table.dataTable > tbody > tr.child ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0; }
    table.dataTable > tbody > tr.child ul li {
      border-bottom: 1px solid #efefef;
      padding: 0.5em 0; }
      table.dataTable > tbody > tr.child ul li:first-child {
        padding-top: 0; }
      table.dataTable > tbody > tr.child ul li:last-child {
        border-bottom: none; }
  table.dataTable > tbody > tr.child span.dtr-title {
    display: inline-block;
    min-width: 75px;
    font-weight: bold; }

/*
html, body, .scrollable {
    overflow: auto; 
    -webkit-overflow-scrolling: touch;
}*/
input {
  outline: none; }

.wi-contenteditor-select2 {
  clear: both;
  text-align: left;
  margin-top: 30px;
  padding-left: 15px;
  padding-right: 15px; }

.api_disabled {
  color: #909090 !important;
  cursor: not-allowed !important; }

.menu-stack {
  position: absolute;
  height: auto;
  line-height: 1.8em;
  font-size: 27px;
  margin-left: 237px;
  margin-top: 4px;
  color: #e63e7b; }

.sub-menu-stack {
  position: absolute;
  height: auto;
  line-height: 1.8em;
  font-size: 27px;
  margin-left: 217px;
  color: #9a9b9e; }

.menu-stack-value {
  z-index: 1000;
  width: 18px;
  padding: 3px;
  padding-left: 3px;
  position: absolute;
  text-align: center;
  font-size: 14px;
  font-family: Lato;
  font-weight: 600;
  color: white; }

.editDT:hover {
  text-decoration: underline; }

.fa-attention {
  color: #ff8e8e !important; }

.translation-att {
  position: relative; }

.translation-att:before {
  content: "\f111";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #ff8e8e;
  font-size: 10px;
  position: absolute;
  top: 0px;
  left: -12px; }

.translation-empty {
  position: relative; }

.translation-empty:before {
  content: "\f111";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #627485;
  font-size: 10px;
  position: absolute;
  top: 0px;
  left: -12px; }

.fa-missing {
  color: #ff8e8e; }

.fa-empty {
  color: #627485; }

ins {
  background-color: #c6ffc6;
  text-decoration: none; }

del {
  background-color: #ffc6c6; }

.trans_input {
  border: 1px solid #ddd;
  display: block;
  margin: 17px auto;
  margin-bottom: 0px;
  position: relative;
  width: 96%;
  min-height: 22px;
  padding: 2px;
  padding-top: 5px;
  text-align: left;
  color: #627485 !important; }

.diff_wrapper {
  border: 1px dashed #ddd;
  display: block;
  margin: 17px auto;
  position: relative;
  width: 96%;
  min-height: 22px;
  padding: 2px;
  padding-top: 5px;
  text-align: left; }

.nomargin-top {
  border-top: 0;
  margin-top: 0 !important; }

.trumbowyg-box, .trumbowyg-editor {
  min-height: 150px !important;
  text-align: left; }

.editor_title {
  font-size: 25px;
  font-weight: 400;
  margin-top: 15px; }

.horizontal-scroll {
  font-size: 18px;
  margin-left: 14px;
  margin-right: 14px;
  padding-top: 10px;
  height: 30px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  position: relative; }

.horizontal-scroll span {
  cursor: pointer;
  margin-left: 30px; }

.horizontal-scroll-selected {
  font-weight: 600; }

.horizontal-scroll span:first-child {
  margin-left: 0px; }

#partner-terms-container {
  max-height: 395px;
  font-size: 13px;
  text-justify: inter-word;
  font-family: Lato;
  overflow: hidden;
  position: relative; }

.bgwhite {
  background-color: white; }

.bgwhite50 {
  background-color: white;
  opacity: 0.5; }

.select2_editor {
  width: 96%;
  box-sizing: border-box;
  margin-left: 14px;
  margin-right: 14px;
  width: 96%;
  text-align: left; }

.trumb-white-input {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d7e0e2;
  box-sizing: border-box;
  color: #627485;
  font-size: 16px;
  font-weight: 600;
  outline: medium none;
  position: relative;
  width: 96%;
  z-index: 500; }

.white-input {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  border: 0 none;
  box-sizing: border-box;
  color: #627485;
  font-size: 16px;
  font-weight: 600;
  outline: medium none;
  position: relative;
  width: 100%;
  z-index: 500; }

a, a:active, a:focus {
  color: #627485;
  outline: none;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

.userToolbar {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
  text-align: right;
  padding-right: 20px; }

.userlogged {
  display: table-cell;
  font-weight: 600;
  color: #808080;
  height: 60px;
  vertical-align: middle;
  text-align: left;
  padding-left: 75px; }

.highlight {
  border: 1px solid #faebcc;
  background-color: #fcf8e3; }

.info {
  margin-top: 20px; }

.smallinfo {
  font-size: 14px;
  padding-top: 10px;
  max-width: 85%; }

.partner_active {
  color: #00ff18;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.partner_inactive {
  color: red;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.partner_pending {
  color: #ffc047;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.partner_preregister {
  color: #ffc047;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.white {
  color: white !important; }

.infospan {
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 20px;
  font-size: 15px;
  font-weight: 400;
  color: #627485; }

.dtTextarea {
  background-color: rgba(255, 255, 255, 0);
  border: 0px;
  width: 200px; }

.venueRating i {
  color: #fc5b96;
  font-size: 1em; }

.status-widget {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  overflow: hidden;
  margin-bottom: 20px; }

.status-widget a {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.widget-status-fa {
  padding-top: 20px;
  overflow: hidden; }

.status-widget a:hover {
  color: white;
  text-decoration: none; }

.accountStatusGraph {
  margin-top: 15px;
  min-height: 130px; }

.widget-status-badge {
  margin-top: -84px;
  margin-left: 11px;
  color: white;
  font-size: 25px;
  font-family: 'Lato';
  font-weight: 400; }

.widget-status-badge-sub {
  font-size: 10px;
  margin-right: 9px; }

.widget-status-check {
  position: absolute !important;
  margin-left: 60px !important;
  margin-top: 0px !important; }

.widget-status-check .fa {
  opacity: 1.0;
  position: absolute !important; }

.status-widget-disabled {
  color: #e5e5e5 !important;
  opacity: 0.4; }

.status-widget-disabled a:hover {
  cursor: default; }

.sweet-alert .sa-error-container.show {
  margin-bottom: 15px !important;
  padding: 15px !important; }

.sweet-alert h2 {
  font-family: "Raleway" !important;
  font-weight: 400; }

.sweet-alert p {
  font-family: "Raleway" !important;
  font-weight: 400; }

.sweet-alert.show-input input {
  font-family: "Lato";
  font-weight: 400;
  font-size: 20px;
  color: #575757; }

.swal_subtitle_deleteaccount {
  margin-top: 25px;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px; }

.swal_subtitle {
  font-size: 15px; }

.swal_terms {
  font-size: 14px;
  text-align: left;
  overflow: scroll;
  overflow-x: hidden;
  height: 170px;
  border: 1px solid #e0e0e0;
  padding: 10px; }

.swal_textarea {
  background: #F8F8F8;
  color: #999999;
  border: 1px solid #DCDCDC;
  border-radius: 2px;
  font-size: 16px;
  width: 400px;
  height: 150px;
  padding: 10px;
  box-shadow: 0px 0px 8px #DCDCDC;
  -webkit-box-shadow: 0px 0px 8px #DCDCDC;
  -moz-box-shadow: 0px 0px 8px #DCDCDC; }

html {
  height: 100%; }

html, button, input, select, textarea,
.pure-g [class*="pure-u"] {
  /* Set your content font stack here: */
  font-family: "Raleway";
  letter-spacing: normal;
  text-rendering: auto;
  word-spacing: normal; }

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0; }

h1 {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 2.1em;
  /*color: #787878;*/
  color: white; }

.h1-vb {
  color: #627485;
  font-size: 2.4em; }

h2 {
  font-family: "Lato";
  font-weight: 400;
  font-size: 20px;
  color: #787878; }

h3 {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 1.5em;
  color: #787878; }

.hidden {
  display: none; }

.stop-scrolling {
  height: 100%;
  /*  overflow: auto !important;*/ }

.alertify-logs {
  top: 0px;
  right: 10px; }

.alertify-log {
  padding: 11px;
  /*background: #D9EDF7;
  padding: 5px 0 5px 15px;
  border-radius: 4px;
  color: #3A8ABF;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  border: 1px solid #BCE8F1;
  */ }

.alertify-log-error {
    /*    color: $main-color;
    background: rgba(242,222,222,0.6);
    border: 1px solid $main-color;*/ }

.alertify-log-success {
    /*    color: #468847;
    background: #DFF0D8;
    border: 1px solid #D6E9C6;*/ }

.icon-clock {
  position: relative; }

.icon-clock:before {
  content: "\f017";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #627485;
  font-size: 25px;
  position: absolute;
  top: 9px;
  left: 8px; }

/* CROPIT stuff*/
input[type='range'] {
  -webkit-appearance: none;
  border-radius: 5px;
  background-color: #627485;
  height: 5px;
  vertical-align: middle;
  margin-left: 15px;
  margin-right: 15px; }

input[type='range']::-moz-range-track {
  -moz-appearance: none;
  border-radius: 5px;
  background-color: #627485;
  height: 5px; }

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  border-radius: 15px;
  background-color: #999;
  height: 15px;
  width: 15px; }

input[type='range']::-moz-range-thumb {
  -moz-appearance: none;
  border-radius: 15px;
  background-color: #999;
  height: 15px;
  width: 15px; }

.cropit-image-preview {
  /* You can specify preview size in CSS */
  width: 500px;
  height: 308px;
  margin: 0 auto;
  /*  border:1px dashed #DADADA;*/ }

.cropit-image-preview-venue {
  width: 1440px;
  height: 470px; }

.cropit-venue {
  display: table;
  height: 472px;
  text-align: center;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0px; }

/* Show load indicator when image is being loaded */
.cropit-image-preview.cropit-image-loading .spinner {
  opacity: 1; }

/* Show move cursor when image has been loaded */
.cropit-image-preview.cropit-image-loaded {
  cursor: move; }

/* Gray out zoom slider when the image cannot be zoomed */
.cropit-image-zoom-input[disabled] {
  opacity: .2; }

/* Hide default file input button if you want to use a custom button */
input.cropit-image-input {
  visibility: hidden; }

/* The following styles are only relevant to when background image is enabled */
/* Translucent background image */
.cropit-image-background {
  opacity: .1; }

/* Style the background image differently when preview area is hovered */
.cropit-image-background.cropit-preview-hovered {
  opacity: .2; }

/*
 * If the slider or anything else is covered by the background image,
 * use non-static position on it
 */
input.cropit-image-zoom-input {
  position: relative; }

/* Limit the background image by adding overflow: hidden */
#image-cropper {
  overflow: hidden; }

.modal_pin_title {
  float: left;
  color: #afafaf;
  font-size: 24px;
  margin-right: 5px;
  margin-top: 5px;
  margin-left: 6px; }

.modal_pin_input {
  border: 1px solid #D8D8D8;
  font-size: 25px;
  font-family: "Lato";
  border-radius: 5px;
  color: #afafaf !important;
  box-sizing: border-box;
  padding: 2px;
  padding-left: 10px;
  padding-right: 0px;
  text-align: left;
  float: left;
  width: 82px; }

/* DATATABLES */
.DTTT_container {
  padding-top: 10px;
  padding-right: 10px; }

table.dataTable > tbody > tr.child span.dtr-title {
  min-width: 0;
  font-size: 13px; }

table.dataTable > tbody > tr.child ul li:last-child {
  padding-top: 0;
  margin-top: -10px;
  min-width: 250px; }

table.dataTable > tbody > tr.child ul li:first-child {
  padding-top: 10px; }

.table.dataTable > tbody > tr.child ul {
  width: 80%;
  margin-left: 10%;
  white-space: normal; }

table.dataTable > tbody > tr.child ul li {
  border-bottom: 1px solid #e3e3e3;
  margin: auto; }

.dTable_pin {
  float: left;
  display: inline-block;
  white-space: nowrap; }

.dTable_pin input {
  border: 1px solid #D8D8D8;
  font-family: "Lato";
  font-size: 18px;
  border-radius: 5px;
  color: #627485 !important;
  box-sizing: border-box;
  padding: 2px;
  padding-left: 3px; }

.dTable_pinbtn {
  margin-left: 5px;
  margin-top: 5px;
  background-color: #99CC33;
  color: white;
  font-size: 18px;
  border-radius: 6px;
  border: 0px;
  /* width:29px;*/
  height: 29px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.dTable_pinbtn:hover {
  background-color: #fc5b96; }

.dTable_pinbtn_disabled {
  background-color: #D8D8D8; }

.dTable_pinbtn_disabled:hover {
  background-color: #D8D8D8; }

/* TABLE HEADER */
table.dataTable thead th, table.dataTable thead td {
  height: 40px;
  font-size: 18px;
  font-weight: 200;
  text-align: left; }

/* TOP TABLE BAR - PAGINATION & SEARCH*/
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #627485; }

.dataTables_processing {
  font-size: 24px !important;
  width: 97% !important; }

.dataTables_empty {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 25px !important;
  padding-bottom: 0px !important;
  font-size: 16px;
  font-weight: 400;
  color: #627485;
  text-align: center !important; }

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #D8D8D8;
  font-size: 18px;
  font-family: "Lato";
  border-radius: 5px;
  color: #627485 !important;
  box-sizing: border-box;
  padding: 2px;
  padding-left: 3px;
  -webkit-appearance: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: none !important;
  color: #627485 !important;
  border: 1px solid #9bb8d4 !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: none !important;
  color: #627485 !important;
  border: 1px solid #627485 !important; }

.dataTables_wrapper .dataTables_length select {
  border: 1px solid #D8D8D8;
  font-size: 16px;
  font-family: "Lato";
  border-radius: 5px;
  color: #627485 !important;
  box-sizing: border-box;
  padding: 2px;
  padding-left: 3px; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: none !important;
  color: #627485 !important;
  border: 1px solid #627485 !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: none !important;
  color: #627485 !important;
  border: 1px solid #627485 !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:active {
  background: none !important;
  color: #627485 !important;
  border: 1px solid #627485 !important; }

.dataTables_info {
  padding-top: 17px !important; }

/* Footer - right*/
.dataTables_paginate {
  padding-bottom: 15px !important; }

/* Responsive unfolding icon */
table.dataTable.dtr-column > tbody > tr > td.control, table.dataTable.dtr-column > tbody > tr > th.control {
  /* display:-webkit-box;*/
  /*padding-right:50px;*/
  /*display:table-cell;*/
  margin-right: 20px;
  width: 40px; }

table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before {
  font-size: 41px;
  font-weight: 300;
  line-height: 37px;
  width: 35px;
  height: 35px;
  margin-top: -18px;
  margin-left: -18px;
  border-radius: 6px;
  border: 0px;
  box-shadow: none !important;
  background-color: #99da6a; }

table.dataTable.dtr-column > tbody > tr.parent td.control:before, table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  line-height: 30px;
  background-color: #99da6a; }

table.dataTable tbody th:first-child, table.dataTable tbody td:first-child {
  padding-left: 10px; }

table.dataTable tbody th, table.dataTable tbody td {
  height: 45px;
  border-top: 1px solid #ebebeb;
  background: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  /*padding: 5px;*/
  padding: 15px;
  padding-top: 0px;
  padding-bottom: 0px; }

table.dataTable tbody td:last-child {
  text-align: right; }

.table.dataTable tbody tr {
  /*    color: #3B6A9F;*/
  color: #3B6A9F !important;
  font-weight: 500;
  background: none !important; }

.table.dataTable thead th:first-child, table.dataTable thead td:first-child {
  padding-left: 10px; }

.table.dataTable thead th, table.dataTable thead td {
  border-bottom: 0px solid #c4c4c4;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  padding-left: 10px;
  white-space: nowrap; }

.table.dataTable.no-footer {
  font-weight: 400;
  font-size: 11px;
  border-bottom: 0px solid #c4c4c4;
  /* min-width:1100px;*/
  display: table;
  width: 100%;
  height: 50px;
  text-align: left;
  color: #3B6A9F;
  /* white-space: nowrap;  */ }

/* PAGINATION BTN DISABLED */
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  display: none; }

/* CSS Base stuff */
.white {
  color: white; }

.hide {
  display: none; }

.show {
  display: block; }

.right {
  text-align: right !important; }

.left {
  text-align: left !important; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.left50 {
  float: left;
  width: 50%; }

.right50 {
  float: right;
  width: 50%; }

.left50container {
  padding-right: 9px;
  position: relative;
  z-index: 400; }

.right50container {
  padding-left: 9px;
  padding-right: 9px;
  position: relative;
  z-index: 400; }

.up15 {
  clear: both;
  margin-top: 15px; }

.down15 {
  clear: both;
  margin-bottom: 15px; }

.left15 {
  clear: both;
  margin-left: 15px; }

.right15 {
  clear: both;
  margin-right: 15px; }

.left10 {
  clear: both;
  margin-left: 10px; }

.right10 {
  clear: both;
  margin-right: 10px; }

.left5 {
  clear: both;
  margin-left: 5px; }

.right5 {
  clear: both;
  margin-right: 5px; }

.up30 {
  clear: both;
  margin-top: 30px; }

.down30 {
  clear: both;
  margin-bottom: 30px; }

.center {
  text-align: center; }

.maxwidth {
  width: 100%; }

.pointer {
  cursor: pointer; }

.standardCursor {
  cursor: default; }

.verticaltext {
  display: flex;
  align-items: center; }

.textarea-4lines {
  height: 120px; }

.textarea-2lines {
  height: 40px;
  color: #627485 !important;
  resize: vertical; }

.gift-voucher-checkbox a {
  color: #627485; }

.pure-g > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.l-box {
  padding: 5px; }

.icon-right {
  position: absolute;
  top: 39px;
  right: 15px;
  -webkit-font-smoothing: antialiased; }

.latoinput input {
  font-family: "Lato";
  font-size: 22px;
  font-weight: 400; }

.timeinput {
  font-family: "Lato";
  font-weight: 400;
  text-align: right;
  background-color: white;
  width: 100px;
  border: 0px;
  text-align: center;
  padding: 4px;
  color: #3c3c3c !important;
  border-radius: 4px; }

.ui-datepicker {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #627485;
  padding: 5px; }

.ui-datepicker-year {
  font-family: "Lato"; }

/* And so it begins */
.preloader {
  position: absolute;
  z-index: 100000;
  display: table;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  opacity: 1; }

.preloader-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 24px;
  color: #3c3c3c; }

.vbusiness_logo {
  position: absolute;
  pointer-events: none;
  display: block;
  text-indent: -9999px;
  padding-top: 20px;
  width: 100%;
  height: 65px;
  background: url(../svg/venerum-business.svg);
  background-size: 280px 65px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100; }

#background {
  display: none;
  position: relative;
  background: transparent url(../images/background-dog.jpg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  background-color: #5a5d63;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  min-height: 100%; }

.background-admin {
  /*display: none;*/
  position: relative;
  background: transparent url(../images/background-lotus-admin.jpg) top center no-repeat !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  background-color: #5a5d63;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.background-index {
  height: 100%;
  overflow-x: hidden; }

.modal_startend {
  background-color: #eaedf1;
  padding: 5px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  color: #7D7474;
  width: 85px;
  text-align: center;
  font-family: "Lato";
  border: 0px; }

.modal_disabled_input {
  background-color: white;
  border-radius: 5px;
  padding: 5px;
  font-size: 18px;
  font-weight: 400;
  color: #7D7474;
  font-family: "Lato";
  border: 1px solid #EAEDF1; }

.leftCampaignList {
  clear: both;
  position: relative;
  padding-left: 10px;
  width: 300px;
  height: 50px;
  padding-top: 0px;
  font-size: 15px;
  font-weight: 600;
  color: #63656A; }

.leftCampaignListTitle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  float: left;
  margin-right: 10px; }

.leftCampaignList a:hover {
  text-decoration: underline; }

.leftCampaignListDates {
  font-family: Lato;
  font-size: 12px;
  width: 200px; }

.availability_container {
  /*    position:fixed;*/
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  font-weight: 400;
  z-index: 1000;
  display: none; }
  .availability_container .availability_modal {
       /* width: 280px;
        height: 280px;
        position: absolute;
        margin: -140px 0 0 -140px;
        left: 50%;
        top: 50%;
*/
    font-size: 14px;
    font-family: "Raleway";
    color: #666; }
    .availability_container .availability_modal .leftarrow {
      position: absolute;
      margin-left: 310px;
      margin-top: 245px;
      z-index: 1;
      color: white; }
    .availability_container .availability_modal .rightarrow {
      position: absolute;
      margin-left: -17px;
      margin-top: 245px;
      z-index: 1;
      color: white; }
    .availability_container .availability_modal .leftarrow_bottom {
      position: absolute;
      margin-left: 310px;
      margin-top: 18px;
      z-index: 1;
      color: white; }
    .availability_container .availability_modal .rightarrow_bottom {
      position: absolute;
      margin-left: -17px;
      margin-top: 18px;
      z-index: 1;
      color: white; }
    .availability_container .availability_modal .maininsertmod {
      position: absolute;
      background-color: white;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 7px;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
      z-index: 200;
      width: 460px; }
      .availability_container .availability_modal .maininsertmod .modal_line {
        padding-top: 17px;
        padding-left: 15px;
        padding-right: 15px;
        height: 30px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_recurring {
        border-bottom: 0px; }
      .availability_container .availability_modal .maininsertmod .modal_line_summary {
        padding: 15px;
        padding-top: 5px;
        padding-bottom: 10px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7;
        font-size: 14px; }
      .availability_container .availability_modal .maininsertmod .modal_line_input_repeat {
        padding-top: 14px;
        padding-left: 15px;
        padding-right: 15px;
        height: 34px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_input {
        padding-top: 8px;
        padding-left: 15px;
        padding-right: 15px;
        height: 40px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_input_pin {
        padding-top: 12px;
        padding-left: 15px;
        padding-right: 15px;
        height: 50px;
        background-color: #e7e7e7;
        border-color: #e7e7e7;
        text-align: center;
        color: white; }
      .availability_container .availability_modal .maininsertmod .modal_line_slots {
        display: none;
        padding-top: 5px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 5px;
        min-height: 20px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7;
        overflow-x: hidden !important;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch; }
      .availability_container .availability_modal .maininsertmod .modal_repeat_container {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10000; }
      .availability_container .availability_modal .maininsertmod .modal_repeat_resume {
        display: none; }
      .availability_container .availability_modal .maininsertmod .modal_repeat_popup {
        position: absolute;
        background-color: white;
        width: 95%;
        height: auto;
        margin: auto;
        left: 0;
        right: 0;
        top: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
      .availability_container .availability_modal .maininsertmod .modal_line_header {
        padding-top: 12px;
        padding-left: 15px;
        padding-right: 15px;
        height: 45px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_bookingtitle {
        padding-top: 14px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 18px;
        font-weight: 600; }
      .availability_container .availability_modal .maininsertmod .modal_line_header_title {
        display: none;
        cursor: move;
        padding-top: 14px;
        padding-left: 15px;
        padding-right: 15px;
        height: 36px;
        font-size: 13px;
        font-weight: 600;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_footer {
        padding: 5px;
        padding-top: 10px;
        height: 40px;
        text-align: center; }
      .availability_container .availability_modal .maininsertmod .modal_line i {
        font-size: 22px;
        color: #666; }
      .availability_container .availability_modal .maininsertmod .modal_line_booking {
        color: #7d7474;
        font-family: "Lato";
        font-weight: 400;
        font-size: 14px;
        text-align: left;
        padding-top: 10px;
        padding-left: 15px;
        padding-bottom: 10px;
        padding-right: 15px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7;
        text-align: left; }
      .availability_container .availability_modal .maininsertmod .modal_line_booking_title {
        color: #7d7474;
        font-family: "Lato";
        font-weight: 400;
        font-size: 14px;
        text-align: left;
        padding-top: 5px;
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7;
        text-align: left; }
      .availability_container .availability_modal .maininsertmod .modal_line_bookKey {
        color: #afafaf;
        font-family: "Lato";
        font-weight: 400;
        font-size: 16px;
        text-align: left;
        padding-bottom: 5px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        background-color: #e7e7e7; }
      .availability_container .availability_modal .maininsertmod .modal_line_date {
        color: #7d7474;
        font-family: "Lato";
        font-weight: 400;
        font-size: 16px;
        text-align: left;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 15px;
        padding-right: 15px;
        border-width: 0px 0px 1px 0px;
        border-style: dashed;
        border-color: #e7e7e7;
        text-align: center; }
      .availability_container .availability_modal .maininsertmod .modal_line_time {
        text-align: center; }

.maininsertmod_service {
  width: 90% !important; }
  .maininsertmod_service .input-wi-form input[type="text"], .maininsertmod_service .input-wi-form input[type="number"], .maininsertmod_service .input-wi-form input[type="password"], .maininsertmod_service .input-wi-form input[type="email"], .maininsertmod_service .input-wi-form select {
    color: #627485 !important;
    font-family: "Lato";
    font-weight: 400 !important;
    font-size: 18px; }

.maininsertmod_service_api {
  width: 60% !important; }
  .maininsertmod_service_api .input-wi-form input[type="text"], .maininsertmod_service_api .input-wi-form input[type="number"], .maininsertmod_service_api .input-wi-form input[type="password"], .maininsertmod_service_api .input-wi-form input[type="email"], .maininsertmod_service_api .input-wi-form select {
    color: #627485 !important;
    font-family: "Lato";
    font-weight: 400 !important;
    font-size: 18px; }

@-webkit-keyframes slide {
  100% {
    left: 0; } }
@keyframes slide {
  100% {
    left: 0; } }
.outside-op-module {
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  /*	padding-bottom:20px;*/ }

.inside-op-module {
  display: table;
  background: rgba(67, 95, 124, 0.11);
  width: 100%;
  height: 426px;
  text-align: center; }

.inside-op-module-simple {
  display: table;
  background: rgba(67, 95, 124, 0.11);
  width: 100%;
  text-align: center; }

.inside-bookings-triggers-left {
  float: left;
  padding-top: 5px; }

.inside-bookings-triggers-right {
  /*float:right; */
  padding-top: 5px;
  padding-right: 10px; }

.inside-table-cell-btn {
  /*    float:right;*/
  margin-top: 5px;
  width: 40px;
  height: 40px;
  font-size: 21px;
  text-align: center;
  white-space: normal;
  cursor: pointer; }

.inside-table-cell-btn i {
  padding-top: 10px; }

.sweet-alert button {
  margin-top: 0px !important; }

.btn-notification {
  background-color: #49C0E7;
  border-radius: 4px;
  margin-right: 4px; }

.btn-activate {
  background-color: #ABD559;
  border-radius: 4px;
  margin-right: 4px; }

.btn-pending {
  background-color: #3c3c3c;
  opacity: 0.2;
  border-radius: 4px;
  margin-right: 4px;
  position: relative;
  display: inline-block; }

.btn-off {
  background-color: #d7d7d7;
  border-radius: 4px;
  margin-right: 4px; }

.btn-pause {
  background-color: #F5A623;
  border-radius: 4px;
  margin-right: 4px; }

.btn-edit {
  background-color: #5C6B8A;
  border-radius: 4px;
  margin-right: 4px; }

.btn-calendar {
  background-color: #697999;
  border-radius: 4px;
  margin-right: 4px; }

.btn-delete {
  background-color: #F15F74;
  border-radius: 4px;
  margin-right: 4px; }

.warn_color {
  color: #F15F74; }

.inside-table-cell {
  background: white;
  height: 40px;
  text-align: left;
  margin-bottom: 5px;
  color: #3B6A9F;
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
  padding-left: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  white-space: nowrap; }

.inside-table-cell-simple {
  display: table;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 50px;
  text-align: left;
  color: #3B6A9F;
  font-size: 15px;
  white-space: nowrap; }

.inside-table-cell-trigger {
  /* min-width:180px;*/
  /*background: rgba(255,255,255,0.7);*/
  color: white;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  height: 50px;
  float: right;
  display: -webkit-box;
  /*    display: inline-block;*/ }

.inside-table-cell-trigger-smallwidth {
  min-width: 55px !important;
  float: right; }

.inside-table-cell-trigger {
  float: right; }

.dtr-data > .inside-table-cell-trigger {
  float: left;
  padding-top: 15px;
  padding-bottom: 5px; }

.inside-table-title {
  color: #3B6A9F;
  font-size: 14px;
  padding-left: 10px;
  font-family: "Lato";
  font-weight: 400;
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap; }

.inside-table-subtitle {
  font-size: 0.8em;
  font-weight: 600;
  color: #627485; }

.inside-table-text {
  color: #3B6A9F;
  font-size: 15px;
  font-weight: 400;
  font-family: "Lato"; }

.outside-op-module-table {
  background: rgba(255, 255, 255, 0.7); }

.w-module-element {
  background-color: white;
  color: #627485;
  padding: 20px;
  /*    padding-left:40px;
      padding-right:40px; */
  margin-top: 20px;
  /*    overflow: auto;*/
  /*    -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;*/ }

.w-module-element-widget {
  background: rgba(0, 0, 0, 0.25);
  color: white;
  padding: 15px;
  border-radius: 5px;
  overflow: hidden; }

.w-module-element-widget-setup {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 15px; }

.w-module-element-widget-setup .editable-main-title {
  color: white !important; }

.w-module-element-widget-setup i {
  color: white !important; }

.widget-graph-container {
  margin: 10px; }

.analyticsCanvas {
  max-height: inherit; }

.w-right {
  margin-left: 20px; }

.w-right-dashboard {
  margin-left: 10px; }

.div-edit-mode {
  background-color: #EAEDF1; }

.edit_company_name, .editable_formated_address {
  /*padding-left:40px;*/ }

.vbusiness-content {
  width: 100% !important;
  display: inline-table;
  color: #627485 !important; }

.account-settings {
  width: 100% !important;
  display: inline-table;
  color: #627485 !important; }
  .account-settings .input-wi-form input[type="text"], .account-settings .input-wi-form input[type="number"], .account-settings .input-wi-form input[type="password"], .account-settings .input-wi-form input[type="email"], .account-settings .input-wi-form select {
    color: #627485 !important;
    font-family: "Lato";
    font-weight: 400 !important;
    font-size: 18px; }

.wi-modal-icon {
  position: absolute;
  font-size: 1.6em;
  margin-top: 18px;
  margin-left: 10px;
  text-align: center;
  width: 25px;
  -webkit-font-smoothing: antialiased; }

.input-wi-form-modal input[type="text"], .input-wi-form-modal input[type="number"], .input-wi-form-modal select {
  font-weight: 400 !important;
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  box-sizing: border-box;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
  outline: medium none;
  padding: 18px 18px 10px;
  position: relative;
  padding-left: 40px;
  width: 100%;
  z-index: 500;
  border-color: #e7e7e7;
  border-style: dashed;
  border-width: 0 0 1px; }

.map-container {
  display: none;
  margin-right: 20px;
  position: absolute;
  margin-top: 20px;
  border: 0px;
  z-index: 100; }

.map-explain {
  padding-bottom: 30px; }

.div-edit-mode-map {
  background-color: #EAEDF1;
  height: 692px;
  padding-top: 25px; }

.div-edit-mode-aboutvenue {
  background-color: #EAEDF1;
  height: 220px;
  padding-top: 25px; }

.div-edit-mode-opening-hours {
  background-color: #EAEDF1;
  padding-top: 25px; }

.editable-main-title form {
  border: 0px solid red;
  position: absolute;
  width: 97%;
  height: 740px;
  padding: 0;
  z-index: 1 !important; }

.editable-main-title form button {
  width: 100px !important;
  margin-top: 655px;
  float: right;
  border: 0px;
  padding: 8px;
  font-size: 16px !important;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  /*        -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;   */ }

.editable-textarea form {
  border: 0px solid red;
  position: absolute;
  height: 100px;
  padding: 0;
  z-index: 1 !important; }

.editable-textarea form button {
  width: 100px !important;
  margin-right: 18px;
  margin-top: 30px;
  float: right;
  border: 0px;
  padding: 8px;
  font-size: 16px !important;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  /*    -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;    */ }

.editable-sub-title {
  margin-top: 0px;
  font-size: 17px;
  font-weight: 600; }

.clean_address_edit {
  max-width: 600px;
  margin-top: 40px; }

.editable-textarea {
  margin-top: 15px;
  /*padding-right: 80px;*/
  font-size: 17px;
  min-height: 90px;
  line-height: 170%; }

.editable-textarea textarea {
  color: #627485 !important;
  resize: none;
  background-color: white;
  margin-top: 15px;
  padding-right: 80px;
  font-size: 17px;
  line-height: 170%;
  padding: 0px;
  margin: 0px;
  border: 0px;
  max-height: 100px; }

.new-textarea {
  color: #627485 !important;
  background-color: white;
  margin-top: 15px;
  font-size: 17px;
  font-weight: 400;
  line-height: 170%;
  padding: 0px;
  margin: 0px;
  border: 0px; }

.editable-main-title {
  color: #627485 !important;
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 15px; }

.editable-main-title-white {
  color: white !important;
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 15px; }

.widget-info-container {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 5px; }

.widget-info-container-warning {
  background: rgba(0, 255, 0, 0.3);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 5px; }

.widget-info-title-warning {
  font-size: 18px;
  font-weight: 400;
  text-align: center; }

.widget-info-title {
  font-size: 16px;
  font-weight: 400;
  text-align: center; }

.widget-info-value {
  font-family: "Lato";
  font-size: 16px;
  font-weight: 400;
  text-align: center; }

.main-subtitle {
  color: #627485 !important;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 15px; }

.tag-type-title {
  color: #627485 !important;
  font-size: 18px;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 1px; }

.main-form-div input {
  font-size: 22px;
  color: #627485 !important;
  width: 100%;
  box-sizing: border-box;
  background-color: white !important;
  padding: 10px;
  margin: 0px;
  border: none;
  border: 0px solid white;
  border-radius: 5px;
  margin-top: -5px; }

.main-form-3div input {
  font-size: 22px;
  color: #627485 !important;
  width: 100%;
  box-sizing: border-box;
  background-color: white !important;
  padding: 10px;
  margin: 0px;
  border: none;
  border: 0px solid white;
  border-radius: 5px;
  margin-top: -5px; }

.editable-main-title input {
  color: #627485 !important;
  max-width: 700px !important;
  background-color: white !important;
  padding: 5px;
  margin: 0px;
  border: none;
  border: 0px solid white;
  border-radius: 5px; }

.editable-main-subtitle {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  z-index: 1000; }

.editable-main-subtitle span {
  color: #627485 !important;
  font-size: 20px;
  font-weight: 600; }

.editable-main-subtitle-input {
  color: #627485 !important;
  width: 600px;
  background-color: white !important;
  padding: 10px !important;
  font-size: 18px !important;
  margin: 0px;
  border: none;
  border: 0px solid white;
  border-radius: 5px;
  margin-top: 10px; }

.venue-map-container {
  height: 700px; }

.venue-form input {
  color: #627485 !important;
  max-width: 700px !important;
  background-color: white;
  padding: 0px;
  margin: 0px;
  border: none;
  border: 5px solid white;
  border-radius: 5px;
  margin-left: -5px;
  margin-top: -5px; }

.venue_type_tags input {
  border: 0px !important; }

.venue_campaign_image {
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  width: 90%;
  height: 308px;
  background-color: #eaedf1;
  display: table; }

.tags_div {
  padding-right: 20px; }

.edit-icon-list {
  position: static;
  font-size: 30px;
  margin-top: 5px;
  height: 30px;
  color: #627485; }

.edit-icon {
  cursor: pointer;
  position: static;
  font-size: 40px;
  text-align: right;
  float: right;
  height: 40px;
  color: #627485; }

.edit-icon:hover {
  color: #3c3f45; }

.toggle-icon {
  cursor: pointer;
  color: #627485; }

.toggle-icon:hover {
  color: #3c3f45; }

.edit-icon-hide {
  opacity: 0; }

.image-frame {
  padding-top: 82px;
  height: 300px;
  /*    position:absolute;*/ }

.image-frame-campaign {
  padding-top: 78px; }

.absolute-center {
  display: table-cell;
  vertical-align: middle; }

#pac-input {
  background-color: #fff;
  display: none;
  font-size: 18px;
  font-weight: 300;
  text-overflow: ellipsis;
  width: 400px;
  margin-top: 24px;
  margin-left: 25px;
  border: 0px solid #F2F2F2;
  padding: 15px; }

#pac-input:focus {
  border-color: #4d90fe;
  width: 401px; }

.opening-hour-line {
  border-bottom: 1px solid #F2F2F2;
  height: 20px;
  font-size: 18px;
  color: #627386;
  padding: 10px;
  padding-left: 0px;
  padding-right: 0px; }

.opening-hour-line-title {
  margin-top: 20px;
  color: #9F9E9E !important; }

.header-bg {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 1400;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.headroom {
  transition: transform 200ms linear; }

.headroom--pinned {
  transform: translateY(0%); }

.headroom--unpinned {
  transform: translateY(-100%); }

.header {
  margin: 0px auto;
  width: 100%;
  height: 60px;
  display: block;
  position: fixed;
  z-index: 1500;
  background-color: rgba(0, 0, 0, 0.7);
  /*    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.header-admin {
  background-color: #8e294e; }

.header-bar {
  width: 100%;
  height: 40px;
  display: block;
  padding-top: 60px;
  position: relative;
  background: #EAEDF1;
  border-bottom: 1px solid #cacaca;
  opacity: 1;
  font-family: "Lato";
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.header-bar-left {
  margin-left: 0px;
  padding-left: 15px;
  padding-top: 12px;
  height: 40px;
  z-index: 1500;
  color: #787878;
  font-weight: 400;
  font-size: 0.9em;
  float: left;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.header-bar-right {
  margin-right: 0px;
  padding-right: 15px;
  padding-top: 12px;
  height: 40px;
  z-index: 1500;
  color: #787878;
  font-weight: 400;
  font-size: 0.9em;
  float: right;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.main-content {
  padding: 12px;
  padding-top: 10px;
  padding-bottom: 33px;
  -webkit-overflow-scrolling: touch; }

.pure-login {
  margin-top: -20px; }

.container {
  position: fixed;
  width: 58px;
  z-index: 2500;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.container > header,
.codrops-top {
  color: #fff;
  font-family: "Raleway"; }

.container > header {
  margin: 0 auto;
  padding: 12em 2em;
  padding-left: 280px;
  background: rgba(0, 0, 0, 0.05); }

.container > header a {
  color: #566473;
  text-decoration: none;
  outline: none; }

.container > header a:hover {
  color: #4f7bab; }

.container > header h1 {
  font-size: 3.2em;
  line-height: 1.3;
  margin: 0;
  font-weight: 300; }

.container > header span {
  display: block;
  font-size: 55%;
  color: #74818e;
  padding: 0 0 0.6em 0.1em; }

/*
.masonry { 

    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;

    -moz-column-gap: 1em;
    -webkit-column-gap: 1em;
    column-gap: 1em;    
    
    position: relative;
    
}

*/
.item {
  display: inline-block;
  margin: 0 0 10px;
  width: 100%;
  position: relative; }

.item-right {
  padding-left: 5px; }

.item-left {
  padding-right: 5px; }

.bModule {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 25px;
  padding-top: 8px; }

.bModule100 {
  background-color: white !important; }

.bModuleTitle {
  padding: 0px;
  height: 33px;
  padding-left: 10px;
  padding-top: 8px;
  font-size: 1.3em;
  background-color: rgba(60, 63, 69, 0.3) !important;
  font-weight: 400;
  color: white;
  cursor: pointer; }

.bModule_dark {
  background-color: black;
  -khtml-opacity: .30;
  -moz-opacity: .30;
  -ms-filter: ”alpha(opacity=30) ”;
  filter: alpha(opacity=30);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.3);
  opacity: .30;
  margin-bottom: 15px;
  color: white;
  padding-bottom: 15px; }

.user-avatar {
  border: 0px solid white;
  background-image: url("../images/avatar.jpg");
  background-color: white;
  background-size: contain;
  width: 35px;
  height: 35px;
  margin-left: 5px;
  vertical-align: middle;
  border-radius: 35px;
  z-index: 1;
  display: inline-table;
  /*	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;*/ }

.partner_toolbox_container {
  position: fixed;
  top: 60px;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 100%;
  overflow: auto;
  -webkit-transform: translateX(280px);
  -moz-transform: translateX(280px);
  transform: translateX(280px);
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }

/*.fa {
    position: relative;
}
*/
.fa-status-span {
  font-family: "Lato";
  font-size: 14px;
  font-weight: 400;
  color: #627485;
  line-height: 32px !important;
  margin-right: 1px; }

.fa-status-icon {
  color: #627485; }

.fa-status-span-active {
  font-family: "Lato";
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-right: 1px; }

.fa-status-icon-active {
  color: #a0a0a0; }

.partner_toolbox {
  width: 280px;
  height: 100%;
  float: right;
  background: rgba(67, 71, 77, 0.95);
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: inset 15px 14px 7px -11px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 15px 14px 7px -11px rgba(0, 0, 0, 0.15);
  box-shadow: inset 15px 14px 7px -11px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }

.badge {
  font-family: "Lato";
  font-size: 12px;
  font-weight: 600;
  display: block;
  position: absolute;
  top: -0.2em;
  right: -0.1em;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background: rgba(255, 0, 0, 0.9);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25); }

.partner_toolbox_title {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #627485;
  padding: 10px;
  padding-left: 14px;
  padding-bottom: 5px;
  padding-top: 5px;
  background-color: #3f4246;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }

.userToolbar .fa {
  position: relative;
  padding: 10px;
  cursor: pointer; }

.partner_toolbox_row {
  width: 250px;
  font-size: 13px;
  text-align: left;
  padding: 10px;
  font-weight: 400;
  color: #cacaca;
  padding-left: 15px;
  padding-right: 15px;
  clear: both; }

.partner_toolbox_row:hover {
  background-color: #34373D;
  border-left: 4px solid #303235;
  padding-left: 11px;
  cursor: pointer; }

.admin_toolbox_title {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #627485;
  padding: 10px;
  padding-left: 14px;
  padding-bottom: 5px;
  padding-top: 5px;
  background-color: #3f4246; }

.admin_toolbox_row {
  width: 250px;
  font-size: 13px;
  text-align: left;
  padding: 10px;
  font-weight: 400;
  color: #cacaca;
  padding-left: 15px;
  padding-right: 15px;
  clear: both; }

.admin_toolbox_row:hover {
  background-color: #34373D;
  border-left: 4px solid #303235;
  padding-left: 11px;
  cursor: pointer; }

.toolboxClearBtn:hover {
  color: white;
  cursor: pointer; }

.partner_toolbox_content {
  text-align: center;
  width: 100%;
  bottom: 0;
  padding-bottom: 20px;
  z-index: 1;
  padding-bottom: 80px !important;
  font-size: 0.9em;
  font-weight: 400;
  color: white;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.partner_toolbox_open {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }

.partner_toolbox_content a {
  color: white !important; }

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(60, 63, 69, 0.5);
  width: 100%;
  min-height: 30px;
  border-top: 2px solid #e9427f;
  color: #d2d2d2;
  font-size: 14px;
  /*z-index:2500;*/
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

a.footer:hover {
  opacity: 1; }

.footer-links {
  text-align: left;
  padding-top: 5px;
  font-variant: small-caps;
  color: #d2d2d2 !important; }

.footer-links a {
  text-decoration: none;
  color: #d2d2d2 !important; }

.footer-links a:hover {
  color: white !important; }

.footer-links span {
  margin-left: 20px; }

.table-links {
  color: #3B6A9F !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none; }

.table-links a {
  text-decoration: none; }

.table-links a:hover {
  text-decoration: underline !important; }

.copyright {
  text-align: right;
  font-family: "Lato";
  padding-top: 5px;
  font-variant: small-caps; }

.copyright span {
  margin-right: 20px; }

/* Account settings */
.input-wi-form-select2 {
  width: 100%;
  height: 55px; }

.input-wi-form-select2-icons {
  float: left;
  width: 30px;
  height: 30px;
  overflow: hidden; }

.input-wi-form-select2-container {
  padding-top: 23px;
  padding-left: 42px;
  padding-right: 10px;
  width: auto;
  height: 30px; }

/*

input:-webkit-autofill { 
    background-color: #FAFFBD !important; 
    background-image:none !important; 
}

input[type="email"],input[type="password"]{
    border:0px;
    width: 340px;
    color: white !important;
    font-size: 1.3em;
    font-weight: 400;
    margin-top:1px;
    padding: 18px;
    padding-bottom:8px;
    padding-left:50px;
    background: none;
    outline: none;
}

.gray input[type="email"],input[type="password"]{
    color:#3C3C3C !important;
}
*/
/*
input[type="text"]{
    border:0px;
    width: 340px;
    color: #3C3C3C !important;
    font-size: 1.3em;
    font-weight: 400;
    margin-top:1px;
    padding: 18px;
    padding-bottom:8px;    
    padding-left:50px;
    background: none;
    outline: none;
}
*/
/*input[type="text"]::-webkit-input-placeholder{
   color: #d1d1d1 !important;
}*/
#login-form ::-webkit-input-placeholder {
  color: white;
  opacity: 0.8; }

#login-form :-moz-placeholder {
  /* Firefox 18- */
  color: white; }

#login-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: white; }

#login-form :-ms-input-placeholder {
  color: white; }

#login-form a {
  color: white !important; }

/*
input[type="email"]:invalid, input[type="email"]:focus:invalid {

    -webkit-animation: shake .5s linear;
}

 @-webkit-keyframes shake {
    8%, 41% {
        -webkit-transform: translateX(-10px);
    }
    25%, 58% {
        -webkit-transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-5px);
    }
    92% {
        -webkit-transform: translateX(5px);
    }
    0%, 100% {
        -webkit-transform: translateX(0);
    }
}
    */
.help-block {
  border: 1px solid #ce2929 !important; }

.help-block-select2 {
  border: 1px solid #ce2929 !important;
  border-radius: 5px; }

.help-block-login {
  border-bottom: 1px solid #ce2929 !important; }

.input-wi-form input[type="text"], .input-wi-form input[type="number"], .input-wi-form input[type="password"], .input-wi-form input[type="email"], .input-wi-form select {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  box-sizing: border-box;
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  outline: medium none;
  padding: 25px 18px 10px;
  position: relative;
  padding-left: 40px;
  width: 100%;
  z-index: 500; }

.input-wi-form-login input[type="text"], .input-wi-form-login input[type="number"], .input-wi-form-login input[type="password"], .input-wi-form-login input[type="email"] {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  box-sizing: border-box;
  color: white !important;
  font-size: 21px;
  font-weight: 400;
  outline: medium none;
  padding: 13px;
  position: relative;
  width: 100%;
  z-index: 500;
  margin-top: -1px; }

.input-wi-form i {
  /*  position:absolute;*/
  z-index: 1000; }

.input-wi-form {
  width: auto;
  border-bottom: 1px solid #cccccc;
  margin-top: 5px; }

.input-wi-form-btn {
  text-align: right;
  width: 100%; }

.input-wi-form-login {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.input-wi-form-login-focus {
  border: 1px solid rgba(255, 255, 255, 0.5); }

.input-wi {
  width: 260px;
  border-bottom: 1px solid #ebebeb;
  margin-top: 1px; }

.input-error {
  border: 1px solid #ce2929 !important;
  padding: 9px !important; }

.select2-error {
  border: 1px solid #ce2929 !important;
  border-radius: 5px !important; }

.error {
  border-bottom: 1px solid #ce2929 !important; }

.error i {
  color: #ce2929 !important; }

.wi-form-subtitle-login {
  position: absolute;
  font-size: 0.8em;
  margin-left: 40px;
  font-weight: 600;
  color: white;
  margin-top: 8px; }

.wi-form-subtitle {
  position: absolute;
  font-size: 0.8em;
  margin-left: 43px;
  font-weight: 600;
  margin-top: 3px;
  color: #627485;
  /*    color:white;
      margin-top:10px; 
  
  */
  /*display: none;*/
  /*    -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;*/ }

.wi-contenteditor-subtitle {
  position: relative;
  float: left;
  font-size: 0.7em;
  margin-left: 20px;
  margin-top: 12px;
  margin-bottom: -10px;
  font-weight: 600;
  opacity: 0.7; }

.wi-contenteditor-divsubtitle {
  position: relative;
  font-size: 0.7em;
  margin-left: 20px;
  margin-top: 12px;
  text-align: left;
  width: 96%;
  margin-bottom: -12px;
  font-weight: 600;
  opacity: 0.7; }

.wi-contenteditor-inputsubtitle {
  position: relative;
  font-size: 0.7em;
  margin-left: 10px;
  margin-top: 12px;
  text-align: left;
  width: 96%;
  margin-bottom: -12px;
  font-weight: 600;
  opacity: 0.7; }

.wi-form-subtitle-typeahead {
  position: absolute;
  font-size: 0.8em;
  margin-left: 43px;
  margin-top: 5px;
  z-index: 500 !important;
  font-weight: 600;
  color: #627485;
  filter: alpha(opacity=0);
  -moz-opacity: 0.00;
  opacity: 0.00;
  /*        -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;*/ }

.wi-form-subtitle-open, .wi-form-subtitle-open-fixed {
  filter: alpha(opacity=1);
  /* IE */
  -moz-opacity: 1;
  /* Mozilla */
  opacity: 1;
  /* CSS3 */ }

.wi-form-icon {
  position: absolute;
  font-size: 1.6em;
  margin-top: 19px;
  /*25px*/
  text-align: center;
  width: 25px;
  padding-left: 7px;
  -webkit-font-smoothing: antialiased; }

.login-form-container {
  padding-top: 0px;
  width: 350px;
  color: white;
  height: 340px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*
  -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.10);
  -moz-box-shadow:    3px 3px 5px 0px rgba(50, 50, 50, 0.10);
  box-shadow:         3px 3px 5px 0px rgba(50, 50, 50, 0.10);
  */ }

.login-form-content {
  margin-top: 35px;
  color: white !important; }

.login-form-content a {
  color: white !important;
  text-decoration: none; }

a.login-form-content:hover {
  text-decoration: underline; }

#login-form-bg {
  /*
  background: #b8b8b8;
  */
  filter: alpha(opacity=15);
  /* IE */
  -moz-opacity: 0.15;
  /* Mozilla */
  opacity: 0.15;
  /* CSS3 */
  position: absolute;
  top: 0;
  left: 0;
  /*height: 100%; 
  */
  width: 100%; }

.email-login::after {
  position: absolute;
  left: 49px;
  top: 110px;
  font-family: 'FontAwesome';
  content: "\f007";
  font-weight: normal;
  font-size: 1.8em;
  color: white;
  -webkit-font-smoothing: antialiased; }

.pass-login input {
  color: white !important; }

.pass-login::after {
  position: absolute;
  left: 50px;
  top: 159px;
  font-family: 'FontAwesome';
  content: "\f023";
  font-size: 2em;
  color: white;
  -webkit-font-smoothing: antialiased; }

/* placeholder */
.gn-menu {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.gn-search::-webkit-input-placeholder {
  color: #787878; }

.gn-search:-moz-placeholder {
  color: #787878; }

.gn-search::-moz-placeholder {
  color: #787878; }

.gn-search:-ms-input-placeholder {
  color: #787878; }

/* hide placeholder when active in Chrome */
.gn-search:focus::-webkit-input-placeholder,
.gn-menu li.gn-search-item:hover .gn-search:focus::-webkit-input-placeholder {
  color: transparent; }

input.gn-search:focus {
  cursor: text; }

.gn-menu li.gn-search-item:hover input.gn-search {
  color: #3c3f45; }

/* placeholder */
.gn-menu li.gn-search-item:hover .gn-search::-webkit-input-placeholder {
  color: #3c3f45; }

.gn-menu li.gn-search-item:hover .gn-search:-moz-placeholder {
  color: #3c3f45; }

.gn-menu li.gn-search-item:hover .gn-search::-moz-placeholder {
  color: #3c3f45; }

.gn-menu li.gn-search-item:hover .gn-search:-ms-input-placeholder {
  color: #3c3f45; }

.gn-menu-main a.gn-icon-search {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px; }

.top-menu {
  color: #3c3f45 !important; }

.top-menu a.selected {
  color: #e63e7b !important; }

.gn-submenu a.selected {
  color: #e63e7b !important; }

.fa-icon::before {
  display: inline-block;
  width: 60px;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased; }

.fa-icon-submenu::before {
  display: inline-block;
  width: 60px;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased; }

.gn-icon::before {
  display: inline-block;
  width: 60px;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: 'ecoicons';
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased; }

/* if an icon anchor has a span, hide the span */
.gn-icon span {
  width: 0;
  height: 0;
  display: block;
  overflow: hidden; }

/* styles for opening menu */
.gn-menu-wrapper {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2); }

.gn-menu-wrapper.gn-open-all,
.gn-menu-wrapper.gn-open-part {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px); }

.gn-menu-wrapper.gn-open-all {
  width: 280px; }

.gn-menu-wrapper.gn-open-all .gn-submenu li {
  height: 52px;
  margin-left: 20px; }

.squaredFour {
  width: 20px;
  position: relative; }

.squaredFour label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }

.squaredFour label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #e9427f;
  border-top: none;
  border-right: none;
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.squaredFour label:hover::after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5; }

.squaredFour input[type=checkbox] {
  visibility: hidden; }

.squaredFour input[type=checkbox]:checked + label:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1; }

.tt-dropdown-menu, .gist {
  text-align: left; }

.typeahead, .tt-query, .tt-hint {
  /*    background-color: white !important;
      outline: medium none;*/
  width: 100%; }

.typeahead:focus {
  border: 2px solid #0097cf; }

.tt-dropdown-menu {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 0;
  padding: 8px 0;
  width: 100%;
  z-index: 2000 !important; }

.tt-suggestion {
  font-size: 18px;
  line-height: 24px;
  padding: 3px 20px; }

.tt-suggestion.tt-is-under-cursor {
  background-color: #0097cf;
  color: #fff; }

.tt-suggestion p {
  margin: 0; }

.margin-open {
  -webkit-transform: translateX(280px);
  -moz-transform: translateX(280px);
  transform: translateX(280px);
  overflow-x: hidden; }

/* FOR LEFT SIDE MENU WRAP BODY - OFF */
.margin-open-opacity {
  opacity: 0.2; }

.sub-margin-open-opacity {
  opacity: 0.2; }

.sub-margin-open {
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  transform: translateX(60px);
  overflow-x: hidden; }

/* SPECTRUM COLOR PICKER */
.sp-container, .sp-replacer {
  border: 1px solid #627485 !important; }

/* CALENDAR */
.recurring_event_ck {
  font-size: 25px !important;
  padding-top: 0px !important; }

.fc-bgevent {
  background: none repeat scroll 0 0 white !important;
  opacity: 0.5 !important; }

.timeline {
  position: absolute;
  left: 59px;
  border: 1px dashed #627485;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 10;
  opacity: 0.3; }

.week-highlight {
  background-color: #3c3c3c !important;
  opacity: 0.1 !important; }

/*.week-highlight td:first-child {background-color:#fafafa !important;}
.week-highlight td:last-child {background-color:#fafafa !important;}
*/
#event_edit_container {
  display: none; }

.fc {
  direction: ltr;
  text-align: left; }

.fc-rtl {
  text-align: right; }

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed hr,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
  border-color: #ddd; }

.fc-unthemed .fc-popover {
  background-color: #fff; }

.fc-unthemed hr,
.fc-unthemed .fc-popover .fc-header {
  background: #eee; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666; }

.fc-unthemed .fc-today {
  /*background: white;*/ }

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  /*opacity: .3;
  filter: alpha(opacity=30); /* for IE */ }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #ccc; }

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  font-size: 2em;
  line-height: .5em;
  height: .5em;
  /* will make the total height 1em */
  font-family: "Courier New", Courier, monospace; }

.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold; }

.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold; }

.fc-icon-left-double-arrow:after {
  content: "\000AB"; }

.fc-icon-right-double-arrow:after {
  content: "\000BB"; }

.fc-icon-x:after {
  content: "\000D7"; }

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer; }

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: .05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .1em; }

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: Transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border: 1px solid #3C3F45; }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  /* color: white;
   background-color: #3C3F45;
   text-decoration: none;
   background-position: 0 -15px;
   -webkit-transition: background-position 0.1s linear;
      -moz-transition: background-position 0.1s linear;
        -o-transition: background-position 0.1s linear;
           transition: background-position 0.1s linear;*/ }

.fc-state-down,
.fc-state-active {
  background-color: #3C3F45;
  color: white;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block; }

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px; }

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-top: -50px; }

.fc-popover .fc-header {
  padding: 2px 4px; }

.fc-popover .fc-header .fc-title {
  margin: 0 2px; }

.fc-popover .fc-header .fc-close {
  cursor: pointer; }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left; }

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right; }

/* unthemed */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 25px;
  margin-top: 4px; }

/* jqui themed */
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc hr {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-style: solid;
  border-width: 1px 0; }

.fc-clear {
  clear: both; }

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */ }

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */ }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */ }

.fc th {
  text-align: center; }

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  border-color: #e0e0e0;
  padding: 0;
  vertical-align: top; }

.fc td.fc-today {
  /*    border-style: double;  overcome neighboring borders 
  */ }

.fc-axis {
  border-width: 0px !important; }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0; }

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent; }

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */ }

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative; }

.fc-row .fc-bg {
  z-index: 1; }

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent; }

.fc-row .fc-bgevent-skeleton {
  z-index: 2; }

.fc-row .fc-highlight-skeleton {
  z-index: 3; }

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */ }

.fc-row .fc-helper-skeleton {
  z-index: 5; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0; }

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  /* this class goes on elements for guaranteed vertical scrollbars */
  overflow-y: scroll;
  overflow-x: hidden; }

.fc-scroller > * {
  /* we expect an immediate inner element */
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
  overflow: hidden;
  /* don't let negative margins or absolute positioning create further scroll */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .50em;
  line-height: 1.3;
  border-radius: 5px;
  border: 1px solid #3C3F45;
  /* default BORDER color */
  background-color: #3C3F45;
  /* default BACKGROUND color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */ }

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */ }

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */ }

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed; }

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px; }

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-day-grid-event.fc-not-start,
.fc-rtl .fc-day-grid-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.fc-ltr .fc-day-grid-event.fc-not-end,
.fc-rtl .fc-day-grid-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.fc-day-grid-event > .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden; }

.fc-day-grid-event .fc-time {
  font-weight: bold; }

/* resize handle (outside of fc-content, so can go outside of bounds) */
.fc-day-grid-event .fc-resizer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px; }

.fc-ltr .fc-day-grid-event .fc-resizer {
  right: -3px;
  cursor: e-resize; }

.fc-rtl .fc-day-grid-event .fc-resizer {
  left: -3px;
  cursor: w-resize; }

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none; }

a.fc-more:hover {
  text-decoration: underline; }

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none; }

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */ }

.fc-more-popover {
  z-index: 2;
  width: 220px !important;
  max-height: 180px;
  overflow-y: scroll;
  overflow-x: none; }

.fc-more-popover .fc-event-container {
  padding: 10px; }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em; }

.fc-toolbar .fc-left {
  float: left; }

.fc-toolbar .fc-right {
  float: right; }

.fc-toolbar .fc-center {
  display: inline-block; }

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em; }

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0; }

/* title text */
.fc-toolbar h2 {
  margin: 0;
  font-size: 20px;
  color: #3C3F45; }

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative; }

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2; }

.fc-toolbar .fc-state-down {
  z-index: 3; }

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4; }

.fc-toolbar button:focus {
  z-index: 5; }

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1; }

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* we are sure there are no day numbers in these views, so... */
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.fc-basic-view tbody .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */ }

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden; }

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

/* week and day number styling */
.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 0 2px; }

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
  padding-top: 2px;
  padding-bottom: 2px; }

.fc-basic-view .fc-week-number {
  text-align: center; }

.fc-basic-view .fc-week-number span {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em; }

.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right; }

.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left; }

.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
     might want to set the 'color' property instead
     making day-numbers bold also fixes the problem */ }

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */ }

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */ }

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */ }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
  border: 0px;
  font-size: 16px !important;
  font-weight: 600 !important; }

.fc-ltr .fc-axis {
  text-align: right; }

.fc-rtl .fc-axis {
  text-align: left; }

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */ }

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1; }

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
  border: 0 hidden transparent; }

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent; }

.fc-time-grid > .fc-bg {
  z-index: 1; }

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-time-grid .fc-bgevent-skeleton {
  z-index: 3; }

.fc-time-grid .fc-highlight-skeleton {
  z-index: 4; }

.fc-time-grid .fc-content-skeleton {
  z-index: 5; }

.fc-time-grid .fc-helper-skeleton {
  z-index: 6; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-slats td {
  height: 2.3em;
  border-bottom: 0;
  /* each cell is responsible for its top border */ }

.fc-slats .fc-minor td {
  border-top-style: solid; }

.fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */ }

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */ }

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */ }

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-event-container,
.fc-time-grid .fc-bgevent-container {
  /* a div within a cell within the fc-bgevent-skeleton */
  position: relative; }

.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px; }

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%; }

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */ }

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0; }

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.fc-time-grid-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */ }

.fc-time-grid-event > .fc-content {
  /* contains the time and title, but no bg and resizer */
  position: relative;
  z-index: 2;
  /* above the bg */ }

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px; }

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap; }

.fc-time-grid-event .fc-bg {
  z-index: 1;
  /*background: #fff;
  opacity: .25;
  filter: alpha(opacity=25); */ }

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap; }

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top; }

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */ }

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */ }

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
  /* seperate with a dash, wrapped in nbsp's */ }

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */ }

/* resizer */
.fc-time-grid-event .fc-resizer {
  position: absolute;
  z-index: 3;
  /* above content */
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

.fc-time-grid-event .fc-resizer:after {
  content: "="; }

.leftCalendarContainerDashboard {
  border: 0px solid red;
  float: left;
  width: 310px;
  padding: 10px;
  color: #627485;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative; }

.leftCalendarContainer {
  border: 0px dashed #f0f;
  float: left;
  width: 300px;
  padding: 10px; }

.rightCalendarContainer {
  border: 0px dashed #00f;
  overflow: hidden;
  padding: 10px;
  z-index: 1000;
              /*
min-width: 550px;*/ }

.fc-toolbar h2 {
  font-family: "Lato" !important;
  font-weight: 400;
  font-size: 28px !important;
  /*        text-transform: uppercase;*/
  color: #3c3f45 !important;
  letter-spacing: -1px;
  padding-left: 5px; }

.fc button {
  /*    -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fc-calendar-readonly {
  opacity: 0.7 !important;
  cursor: default !important; }

/* Big calendar fixes */
.rightCalendarClass {
  margin-top: 10px !important; }
  .rightCalendarClass .fc-slats td {
    height: 1.3em !important; }
  .rightCalendarClass .fc-today {
    background: none repeat scroll 0 0 #ececd9 !important;
    /*background: none !important;*/
    opacity: 1.0 !important;
    border: 0px !important; }
  .rightCalendarClass .fc-popover {
    padding: 5px !important; }
  .rightCalendarClass .fc-more-popover {
    width: auto !important; }
  .rightCalendarClass .fc-widget-header {
    border: 0px !important;
    font-size: 18px !important;
    font-weight: 400; }
  .rightCalendarClass .fc-time {
    border: 0px !important; }
  .rightCalendarClass .fc-day-grid-container {
    height: auto !important; }
  .rightCalendarClass .fc-content, .rightCalendarClass .fc-event {
    color: white;
    font-size: 10px;
    font-family: "Lato";
    font-weight: 400;
    background-color: none;
    border: 0px solid #f15f74;
    border-radius: 3px;
    padding-top: 2px;
    padding-left: 2px;
    /*-khtml-opacity:.90; 
    -moz-opacity:.90; 
    -ms-filter:”alpha(opacity=90)”;
    filter:alpha(opacity=90);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.90);
    opacity:.90;*/ }
  .rightCalendarClass .fc-content {
    padding: 2px;
    border-radius: 3px; }
  .rightCalendarClass .fc-view-container {
    /* Dia actual */ }
    .rightCalendarClass .fc-view-container th, .rightCalendarClass .fc-view-container td {
      font-size: 14px;
      font-weight: 400;
      color: #3C3C3C;
      font-family: "Lato"; }
    .rightCalendarClass .fc-view-container .fc-state-highlight {
      font-weight: 600; }

/* Left small calendar fixes */
.leftCalendarClass .fc-basic-view tbody .fc-row {
  min-height: 3.2em !important; }

.leftCalendarClass {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }
  .leftCalendarClass .fc-today {
    background-color: none !important;
    font-weight: 800 !important;
    color: #fc5b96 !important;
    font-size: 18px !important; }
  .leftCalendarClass .fc-day-number {
    cursor: pointer; }
  .leftCalendarClass .fc-day-header .fc-widget-header .fc-mon {
    font-size: 18px !important; }
  .leftCalendarClass .fc-widget-header {
    text-transform: uppercase !important;
    color: #3c3f45 !important;
    font-weight: 200 !important;
    margin-top: 10px !important; }
  .leftCalendarClass .fc-basic-view tbody .fc-row {
    min-height: 1em; }
  .leftCalendarClass .fc-day-grid-container {
    height: auto !important; }
  .leftCalendarClass .fc-event {
    position: absolute;
    /*margin-left:10px;
    font-size: 0;
    background-color: #3c3c3c;
    opacity:0.3;
    */
    background: none !important;
    text-align: center;
    border-radius: 0;
    border: 0px;
    overflow: hidden;
    height: 10px;
    width: 27px;
    cursor: pointer; }
  .leftCalendarClass .fc-view-container th, .leftCalendarClass .fc-view-container td {
    border-width: 0px !important;
    text-align: center !important;
    font-size: 13px;
    color: #3C3C3C;
    font-family: "Lato"; }
  .leftCalendarClass .fc-view-container .fc-state-highlight {
    font-weight: 600;
    background-color: none !important; }

.fc-event-container {
  margin: 5px !important;
  padding: 5px !important; }

#canvas-holder {
  width: 240px; }

.doughnut-legend li span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  float: left;
  margin-top: 4px;
  margin-right: 8px; }

.doughnut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  cursor: pointer; }

.doughnut-legend li:hover {
  text-decoration: underline; }

.doughnut-legend li {
  margin-bottom: 4px; }

.doughnut-legend li:first-letter {
  text-transform: capitalize; }

.comm-how {
  display: inline-block;
  float: left;
  color: #979797;
  width: 25px;
  text-align: right;
  margin-right: 10px; }

/* faqs */
.faqCats {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 45px; }
  .faqCats li {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 100; }
    .faqCats li a {
      color: #bcbcbc;
      text-decoration: none; }
      .faqCats li a.on {
        color: #333; }

.answers {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 40px 0 40px 0; }
  .answers li {
    font-size: 1.2em;
    color: #666;
    font-weight: 300;
    padding: 10px; }
    .answers li a {
      text-decoration: none;
      color: inherit; }
    .answers li i {
      font-size: 1.5em; }
    .answers li span {
      display: none;
      background-color: white;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      box-sizing: border-box;
      font-size: 0.9em;
      line-height: 1.5em;
      margin: 20px 0 30px 40px;
      padding: 10px 20px; }

.div-filter-by {
  /*width:inherit;*/ }

.div-filter-by:before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 1.4em;
  margin-left: 10px;
  margin-top: 51px;
  display: block;
  color: #e2e2e2;
  position: absolute; }

#filter-by {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  font-size: 1.3em;
  margin-top: 40px;
  padding: 10px 10px 10px 40px;
  color: #c7c7c7;
  width: 90%; }

.no-results {
  color: #666;
  font-size: 1.2em;
  font-weight: 300;
  display: none; }

.close-modal-btn {
  position: absolute;
  width: 100%;
  color: #999999;
  text-align: right;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer; }

.close-modal-btn i {
  margin-right: 13px;
  margin-top: 13px; }

.dataTables_empty {
  text-align: center !important; }

/* SELECT2 - Main */
.select2-drop {
  border: 1px solid #cccccc;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  min-width: 200px !important; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: white; }

/* SELECT2 - DROP DOWNS */
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 0px; }

.select2-dropdown {
  z-index: 400; }
  .select2-dropdown .select2-drop-active {
    border: 1px solid #fafafa; }
  .select2-dropdown .select2-choices, .select2-dropdown .select2-choice {
    border: 1px solid #fafafa; }
  .select2-dropdown .select2-container-multi .select2-choices .select2-search-choice {
    border: 0px;
    padding: 10px;
    color: white;
    font-size: 18px;
    background-color: #627485;
    background-image: none;
    border-radius: 4px;
    box-shadow: none;
    line-height: 16px;
    padding-left: 19px;
    padding-right: 19px; }
  .select2-dropdown .select2-choice, .select2-dropdown .select2-choices {
    border: 0px;
    background-color: white;
    padding: 3px;
    background-image: none;
    border-radius: 4px;
    box-shadow: 0px; }
  .select2-dropdown .select2-container-active, .select2-dropdown .select2-choice, .select2-dropdown .select2-container-active .select2-choices, .select2-dropdown .select2-search, .select2-dropdown .select2-drop.select2-drop-above, .select2-dropdown .select2-drop, .select2-dropdown .select2-container-multi .select2-choices .select2-search-choice {
    box-shadow: none; }
  .select2-dropdown .select2-focused {
    border: 0px;
    padding: 0px;
    background-image: none;
    box-shadow: 0px; }
  .select2-dropdown .select2-search-field input {
    min-width: 200px !important;
    font-size: 18px !important;
    padding: 10px !important; }
  .select2-dropdown .select2-search-choice-close {
    margin-top: 8px !important;
    margin-left: 4px !important; }
  .select2-dropdown .select2-container .select2-choice {
    padding: 5px;
    color: #627485;
    font-weight: 400;
    font-size: 18px;
    border: 0px solid #fafafa; }
  .select2-dropdown .select2-search input {
    border: 1px solid #cccccc !important;
    margin-top: 5px !important;
    padding: 5px !important; }
  .select2-dropdown .select2-arrow {
    background: none !important;
    border-left: 0px !important; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
    .select2-dropdown .select2-search input,
    .select2-dropdown .select2-search-choice-close,
    .select2-dropdown .select2-container .select2-choice abbr,
    .select2-dropdown .select2-container .select2-choice .select2-arrow b {
      background-image: url("../../_assets/images/select2x2-retina.png") !important;
      background-repeat: no-repeat !important;
      background-size: 120px 60px; }
    .select2-dropdown .select2-search input {
      background-position: 100% -21px !important; } }
  .select2-dropdown .select2-container .select2-choice .select2-arrow b {
    background-image: url("../../_assets/images/select2x2-627485.png") !important;
    background-repeat: no-repeat !important;
    background-size: 120px 60px !important;
    margin-top: 5px !important;
    background-position: -12px -3px !important; }
  .select2-dropdown .select2-search input {
    background-position: 100% -21px !important; }

/* SELECT2 - TAGS */
.select2-tags .select2-drop-active {
  border: 1px solid #cacaca; }
.select2-tags .select2-choices, .select2-tags .select2-choice {
  border: 1px solid #cacaca; }
.select2-tags .select2-container-multi .select2-choices .select2-search-choice {
  border: 0px;
  padding: 8px;
  color: #3c3c3c;
  font-size: 16px;
  background-color: #dddddd;
  background-image: none;
  border-radius: 4px;
  box-shadow: none;
  line-height: 20px;
  padding-left: 22px;
  padding-right: 14px; }
.select2-tags .select2-choice, .select2-tags .select2-choices {
  border: 0px !important;
  background-color: white !important;
  padding: 3px !important;
  background-image: none !important;
  border-radius: 4px !important;
  box-shadow: 0px !important; }
.select2-tags .select2-container-active, .select2-tags .select2-choice, .select2-tags .select2-container-active .select2-choices, .select2-tags .select2-search, .select2-tags .select2-drop.select2-drop-above, .select2-tags .select2-drop, .select2-tags .select2-container-multi .select2-choices .select2-search-choice {
  box-shadow: none; }
.select2-tags .select2-focused {
  border: 0px !important;
  padding: 0px !important;
  background-image: none !important;
  box-shadow: 0px !important; }
.select2-tags .select2-search-field input {
  min-width: 200px !important;
  font-size: 18px !important;
  padding: 10px !important; }
.select2-tags .select2-search-choice-close {
  margin-top: 8px !important;
  margin-left: 4px !important; }
.select2-tags .select2-container .select2-choice {
  padding: 5px;
  color: #627485;
  font-size: 16px;
  border: 1px solid #627485; }
.select2-tags .select2-search input {
  border: 1px solid red !important;
  margin-top: 5px !important;
  padding: 5px !important;
  background-position: 100% -21px !important; }
.select2-tags .select2-container-multi.select2-container-active .select2-choices {
  border: 0px;
  outline: none; }

.select2-alert {
  border: 1px solid #ce2929 !important;
  border-radius: 5px; }

.select2-drop-mask {
  z-index: 400 !important; }

.select2-drop {
  z-index: 1000 !important; }

/* BUTTONS */
.btn_disabled {
  opacity: 0.5; }

.btn_green {
  border: 0px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  height: 34px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_left15 {
  margin-left: 15px; }

.btn_noshow {
  margin-top: 7px;
  border: 0px;
  padding: 4px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #D8D8D8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_noshow:hover {
  background-color: #fc5b96; }

.btn_noshow_disabled:hover {
  background-color: #D8D8D8; }

.btn_pin_modal {
  border: 0px;
  padding: 8px;
  margin-left: 10px;
  float: left;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_pin:hover {
  background-color: #99CC33; }

.btn_pin_grey {
  background-color: #D8D8D8; }

.btn_green_large {
  border: 0px;
  padding: 9px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.update_timeslot_btn {
  padding-left: 20px !important;
  padding-right: 20px !important; }

.insert_timeslot_btn {
  width: 130px;
  margin-left: 5px; }

.close_timeslot_btn {
  width: 87px;
  height: 34px;
  border: 0px;
  padding: 9px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #AFAFAF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.noshow_timeslot_btn {
  width: 87px;
  height: 34px;
  border: 0px;
  padding: 9px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #AFAFAF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.noshow_timeslot_btn:hover {
  background-color: #fc5b96; }

.close_btn {
  width: 87px;
  border: 0px;
  padding: 8px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #AFAFAF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.delete_btn_div {
  float: left;
  position: relative;
  margin-left: 10px; }

.delete_timeslot_btn {
  width: 34px;
  font-size: 24px;
  background-color: #F15F74;
  padding: 3px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  border-radius: 4px;
  text-align: center; }

.delete_timeslot_btn:hover {
  cursor: pointer; }

.btn_gray {
  border: 0px;
  padding: 8px;
  padding-left: 45px;
  padding-right: 45px;
  font-size: 1.1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #AFAFAF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_green_color {
  background-color: #99CC33 !important; }

.btn_terms {
  border: 1px solid #cccccc;
  padding: 5px;
  font-size: 1.1em;
  font-weight: 400;
  color: #999999;
  border-radius: 4px;
  background: none;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_terms_green {
  opacity: 1.0;
  color: white;
  border: 1px solid #99CC33;
  padding-left: 45px;
  padding-right: 45px;
  background-color: #99CC33 !important; }

.btn_green_small {
  border: 0px;
  padding: 8px;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  background-color: #99CC33;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.btn_save {
  margin-top: 30px;
  border: 0px;
  padding: 8px;
  font-size: 1.2em;
  font-weight: 400;
  width: 100%;
  color: white;
  border-radius: 4px;
  /*background-color: #cacaca;*/
  background-color: #99CC33;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /*    -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.10);
      -moz-box-shadow:    3px 3px 5px 0px rgba(50, 50, 50, 0.10);
      box-shadow:         3px 3px 5px 0px rgba(50, 50, 50, 0.10);*/ }

.btn_save:hover {
  background-color: #99CC33; }

.btn_save_popup {
  margin-top: 30px;
  border: 0px;
  padding: 8px;
  font-size: 1em;
  font-weight: 400;
  color: white;
  width: 100%;
  border-radius: 4px;
  background-color: #99CC33;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.1);
  box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.1); }

.btn_login {
  margin-top: 25px;
  border: 0px;
  padding: 14px;
  font-size: 1.5em;
  font-weight: 400;
  color: white;
  width: 350px;
  border-radius: 4px;
  background: #e63e7c;
  background: -moz-linear-gradient(top, #e63e7c 0%, #fe6497 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #e63e7c), color-stop(100%, #fe6497));
  background: -webkit-linear-gradient(top, #e63e7c 0%, #fe6497 100%);
  background: -o-linear-gradient(top, #e63e7c 0%, #fe6497 100%);
  background: -ms-linear-gradient(top, #e63e7c 0%, #fe6497 100%);
  background: linear-gradient(to bottom, #e63e7c 0%, #fe6497 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e63e7c', endColorstr='#fe6497', GradientType=0 );
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

/*
    .btn_login:hover{
   
    background: rgba(230,62,124,1);
    background: -moz-linear-gradient(top, rgba(230,62,124,1) 0%, rgba(254,100,151,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(230,62,124,1)), color-stop(100%, rgba(254,100,151,1)));
    background: -webkit-linear-gradient(top, rgba(230,62,124,1) 0%, rgba(254,100,151,1) 100%);
    background: -o-linear-gradient(top, rgba(230,62,124,1) 0%, rgba(254,100,151,1) 100%);
    background: -ms-linear-gradient(top, rgba(230,62,124,1) 0%, rgba(254,100,151,1) 100%);
    background: linear-gradient(to bottom, rgba(230,62,124,1) 0%, rgba(254,100,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e63e7c', endColorstr='#fe6497', GradientType=0 );

    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    }*/
.btn_login_disabled {
  cursor: default;
  background: rgba(197, 197, 197, 0.2);
  -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02);
  -moz-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02);
  box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02); }

.btn_login_disabled:hover {
  cursor: default;
  background: rgba(197, 197, 197, 0.2);
  -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02);
  -moz-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02);
  box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.02); }

.btn_register {
  margin-top: 5px;
  border: 0px;
  padding: 7px;
  font-size: 1.3em;
  font-weight: 400;
  color: white;
  width: 290px;
  background-color: #a05861;
  filter: alpha(opacity=75);
  /* IE */
  -moz-opacity: 0.75;
  /* Mozilla */
  opacity: 0.75;
  /* CSS3 */
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

a.btn_register:hover {
  filter: alpha(opacity=100);
  /* IE */
  -moz-opacity: 1.0;
  /* Mozilla */
  opacity: 1.0;
  /* CSS3 */ }

.top-menu-btn {
  margin-left: 5px;
  -webkit-border-radius: 6;
  -moz-border-radius: 6;
  border-radius: 6px;
  border: 1px solid #3C3F45;
  background: transparent;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9em;
  color: #3C3F45;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.top-menu-btn a {
  color: #3C3F45 !important; }

a.top-menu-btn:hover {
  background-color: #FE6497;
  color: white !important;
  text-decoration: none;
  border: 1px solid #FE6497; }

.top-menu-active {
  border-radius: 5px;
  background-color: #FE6497;
  color: white !important;
  text-decoration: none;
  border: 1px solid #FE6497; }

table.dataTable tbody th, table.dataTable tbody td:last-child {
  text-align: right; }

.table-btn {
  /*float:right;*/
  margin-left: 5px;
  -webkit-border-radius: 6;
  -moz-border-radius: 6;
  border-radius: 6px;
  /*        border: 1px solid #3C3F45;
  */
  background: #60c0cb;
  padding: 6px 11px 6px 11px;
  text-decoration: none;
  font-weight: 400;
  text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  font-family: "Lato";
  font-size: 1.4em;
  color: white;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

.table-btn a {
  color: #3C3F45 !important; }

a.table-btn:hover {
  background-color: #FE6497;
  color: white !important;
  text-decoration: none;
  /*border:1px solid #FE6497;*/ }

.table-btn-disabled {
  background-color: #BBBBBB !important; }

a.table-btn-disabled:hover {
  background-color: #BBBBBB !important; }

/* MENUS */
.gn-menu-wrapper {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 60px;
  border: 0px;
  border-right: 1px solid #dbdbdb;
  background: #EAEDF1;
  -webkit-transform: translateX(-61px);
  -moz-transform: translateX(-61px);
  transform: translateX(-61px);
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-overflow-scrolling: touch; }

#toolbox {
  color: white !important; }

#toolbox a {
  color: white !important; }

.menu_partner_toolbox {
  padding-top: 11px;
  padding-right: 15px;
  height: 40px;
  color: white;
  text-align: right;
  font-weight: 200;
  font-size: 1.2em;
  float: right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.menu_partner_toolbox a {
  height: 40px;
  text-decoration: none;
  color: white !important;
  font-weight: 200;
  font-size: 1em;
  float: left; }

.menu_partner_avatar {
  padding-right: 15px;
  color: white;
  text-align: right;
  font-weight: 400;
  float: right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.menu_partner_avatar a {
  text-decoration: none;
  color: white; }

#hamburger {
  display: block;
  height: 60px;
  margin: 0px;
  position: fixed;
  z-index: 2000; }

.hamburger-active {
  background: #fc5b96;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

#hamburger:before,
#hamburger:after,
#hamburger span {
  margin-top: 12px;
  margin-bottom: 13px;
  margin-left: 10px;
  background: #fff;
  content: '';
  display: block;
  width: 30px;
  height: 5px;
  position: absolute;
  left: 5px;
  speak: none; }

#hamburger:before {
  top: 5px; }

#hamburger:after {
  bottom: 5px; }

#hamburger span {
  top: 50%;
  margin-top: -3px; }

/* Hamburger animation */
#hamburger:before,
#hamburger:after,
#hamburger span {
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition-property: transform, top, bottom, left, opacity; }

html.mm-opening #hamburger span {
  left: -50px;
  opacity: 0; }

html.mm-opening #hamburger:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 15px; }

html.mm-opening #hamburger:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  bottom: 15px; }

.menu-trigger {
  padding-top: 23px;
  width: 60px;
  height: 37px;
  color: white;
  background-color: #e63e7b;
  text-align: center; }

.menu_partner_title {
  margin-left: 62px;
  padding-left: 15px;
  padding-top: 19px;
  height: 40px;
  color: white;
  font-weight: 200;
  font-size: 1em;
  float: left; }

.menu_partner_logo {
  position: absolute;
  pointer-events: none;
  display: block;
  text-indent: -9999px;
  padding-top: 20px;
  width: 100%;
  height: 38px;
  background: url(../images/hifarmax-logo.png);
  background-size: 182px 38px;
  background-position: center;
  /*width: 54px;
  height: 45px;
  background: url(../svg/venerumlogo-wl.svg);
  background-size: 54px 45px;*/
  background-repeat: no-repeat;
  z-index: 100; }

.menu_clock {
  position: absolute;
  display: block;
  padding-top: 2px;
  padding-left: 10px;
  width: 99%;
  height: 40px;
  color: #787878;
  z-index: 10;
  pointer-events: none;
  font-weight: 600;
  text-align: center;
  font-size: 26px; }

.menu_clock_timeofday {
  font-weight: 300;
  font-size: 14px;
  margin-left: -5px;
  text-transform: lowercase; }

.gn-menu-main ul, .gn-menu-main li, .gn-menu-main a {
  z-index: 2000 !important; }

.gn-menu-main,
.gn-menu-main ul {
  margin: 0;
  padding: 0;
  background: #EAEDF1;
  color: #3c3f45 !important;
  list-style: none;
  text-transform: none;
  font-weight: 400;
  font-family: 'Raleway', Arial, sans-serif;
  line-height: 60px; }

.gn-menu-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px !important;
  border-right: 1px solid #e63e7b;
  width: 100%;
  height: 60px;
  font-size: 13px; }

.gn-menu-main a {
  display: block;
  height: 100%;
  color: #3c3f45 !important;
  text-decoration: none;
  cursor: pointer; }

.gn-menu-main a:hover,
.gn-menu li.gn-search-item:hover,
.gn-menu li.gn-search-item:hover a {
  color: #e63e7b !important; }

.gn-menu-main > li {
  display: block;
  float: left;
  height: 100%;
  border-right: 0px solid #dbdbdb;
  text-align: center; }

/* icon-only trigger (menu item) */
.gn-menu-main li.gn-trigger {
  position: relative;
  width: 60px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #e63e7b; }

.gn-menu-main li.gn-trigger:hover {
  background: #e63e7b !important; }

.gn-menu-main > li:last-child {
  float: right;
  border-right: none; }

.gn-menu-main > li > a {
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold; }

.gn-menu-main:after {
  display: table;
  clear: both;
  content: ""; }

.gn-menu-wrapper-opacity {
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }

.gn-scroller {
  position: absolute;
  overflow-y: scroll;
  width: 370px;
  /*width:100%;*/
  height: 100%; }

.gn-menu {
  border-bottom: 1px solid #dbdbdb;
  text-align: left;
  font-size: 18px; }

.gn-menu li:not(:first-child),
.gn-menu li li {
  box-shadow: inset 0 1px #dcdcdc; }

.gn-submenu li {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s; }

.gn-submenu li a {
  color: #787878 !important;
  font-size: 16px; }

input.gn-search {
  position: relative;
  z-index: 10;
  outline: none;
  border: none;
  width: 180px;
  background: transparent;
  color: #787878;
  font-weight: 300;
  font-family: 'Raleway', Arial, sans-serif;
  cursor: pointer; }

/* styles for opening menu */
.gn-menu-wrapper {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  -webkit-overflow-scrolling: touch; }

.gn-menu-wrapper.gn-open-all,
.gn-menu-wrapper.gn-open-part {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px); }

.gn-menu-wrapper.gn-open-all {
  width: 280px; }

.gn-menu-wrapper.gn-open-all .gn-submenu li {
  height: 52px;
  margin-left: 20px;
  line-height: 52px; }

/*  IPHONE 4 to 6, Galaxy Note, S2, S4 - PORTRAIT */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  .modal_startend {
    width: 65px; }

  .horizontal-scroll {
    height: 40px; }

  .wi-form-subtitle {
    font-size: 0.7em; }

  .DTTT_container {
    display: none; }

  .item {
    text-align: center;
    margin-left: 0; }

  .btn_left15 {
    margin: 0; }

  .fc-left {
    margin-bottom: 10px; }

  .fc-right {
    font-size: 0.85em;
    float: right;
    width: 100%;
    margin-top: 10px; }

  .fc-button {
    font-size: 0.9em !important; }

  .rightCalendarClass .fc-widget-header {
    font-size: 19px !important;
    margin-top: 0px !important; }

  .rightCalendarContainer, .userlogged, .menu_partner_title, .menu_partner_logo, .header-bar, .header-bar-right, .dashboardBottomGraph {
    display: none; }

  .leftCalendarContainerDashboard {
    border-bottom: 0px solid #cacaca;
    margin-bottom: 5px;
    max-height: 300px;
    width: 290px; }

  .leftCalendarContainer {
    width: 260px; }

  .menu_partner_toolbox {
    font-size: 1em; }

  .venerum-login-logo {
    width: 250px; }

  .login-form-container {
    margin-top: 5px !important;
    width: 300px !important; }

  .btn_login {
    width: 300px !important; }

  .partner_toolbox {
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }

  /* Full width menu */
  /*.gn-menu-wrapper.gn-open-all, .partner_toolbox_open{
  		-webkit-transform: translateX(0px);
  		-moz-transform: translateX(0px);
  		transform: translateX(0px);
  		width: 100%;
  }
  .gn-menu-wrapper.gn-open-all .gn-scroller { width: 130%; }
  .gn-menu-wrapper { -webkit-transform: translateX(-60px); -moz-transform: translateX(-60px); transform: translateX(-60px);}
  
  */
  .w-right {
    margin: 0;
    margin-top: 5px; }

  .main-content {
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 33px; }

  .w-right-dashboard {
    margin: 0;
    margin-top: 2px; }

  .copyright, .footer-links {
    height: 25px; }

  .footer-links span {
    margin: 0;
    font-size: 16px;
    margin-left: 20px; } }
/* IPHONE 4 to 6, Galaxy Note, S2, S4 - LANDSCAPE */
@media screen and (max-device-width: 740px) and (orientation: landscape) {
  .modal_startend {
    width: 65px; }

  .DTTT_container {
    display: none; }

  .userlogged, .menu_partner_title, .menu_partner_logo, .menu_clock, .header-bar-left, .header-bar, .header-bar-right, .leftCalendarContainerDashboard {
    display: none; }

  .venerum-login-logo {
    width: 250px; }

  .main-content {
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 30px; }

  .main-content-login {
    padding-top: 30px; }

  .login-form-container {
    margin-top: 5px !important;
    width: 300px !important; }

  .login-form-content {
    margin: 0;
    margin-top: 10px; }

  .btn_login {
    padding: 8px;
    margin: 0;
    margin-top: 10px;
    width: 300px;
    font-size: 1.2em; }

  .editable-main-subtitle-input {
    width: 450px; }

  .div-edit-mode-map {
    height: 760px; }

  .editable-main-subtitle {
    font-size: 16px; }

  .editable-main-title form button {
    margin-top: 685px;
    margin-right: 15px; }

  .w-right {
    margin: 0;
    margin-top: 5px; }

  .w-right-dashboard {
    margin: 0;
    margin-top: 2px; }

  .fc-right {
    float: right;
    width: 100%;
    margin-top: 10px; } }
/* IPAD - LANDSCAPE */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .modal_startend {
    width: 65px; }

  .DTTT_container {
    display: none; }

  .menu_partner_title, .menu_partner_logo, .menu_clock {
    display: none; }

  .inside-table-title {
    font-size: 12px; }

  .copyright {
    text-align: right; }

  .footer-links {
    text-align: left; }

  .fc-toolbar h2 {
    font-size: 22px !important; }

  .venue_campaign_image {
    margin-left: -20px; } }
/* IPAD - PORTRAIT */
@media screen and (min-width: 768px) and (orientation: portrait) {
  .modal_startend {
    width: 65px; }

  .DTTT_container {
    display: none; }

  .w-module-element-widget {
    padding-left: 10px;
    padding-right: 5px; }

  .userlogged {
    font-size: 12px; }

  .w-right {
    margin: 0;
    margin-top: 10px; }

  .main-content {
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 30px; }

  .menu_partner_logo, .header-bar-left, .header-bar, .header-bar-right, .leftCalendarContainerDashboard {
    display: none !important; }

  .fc-toolbar h2 {
    font-size: 22px !important; }

  .leftCalendarContainer {
    width: 230px; }

  .inside-table-title {
    font-size: 12px; }

  .status-widget {
    font-size: 14px; }

  .leftCalendarContainer .fc-right {
    margin-top: 10px;
    margin-left: 5px;
    float: left;
    clear: both; }

  .leftCampaignList {
    font-size: 12px;
    width: 230px; }

  .leftCalendarClass .fc-event {
    width: 17px; }

  .editable-main-subtitle-input {
    width: 450px; }

  .editable-main-subtitle {
    font-size: 16px; }

  .editable-main-title form button {
    margin-top: 615px;
    margin-right: 15px; }

  .rightCalendarContainer {
    overflow: none; }

  .copyright {
    text-align: right; }

  .footer-links {
    text-align: left; } }
/* DISABLED

.masonry {
            -moz-column-count: 1 !important;
            -webkit-column-count: 1 !important;
            column-count: 1 !important;
        }

@media screen and (max-width: 1024px){

		.header-bar-left, .header-bar, .header-bar-right, .leftCalendarContainer {
	        display: none;
	    } 

	   	.main-content{
	   		padding:10px;
	   		padding-top:70px;
	   		padding-bottom:30px;
	   	}

	   	  .leftCalendarContainerDashboard{
	    	display:none;
	    }
}

@media screen and (min-width: 1024px){ 
}

@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){

 		.copyright{
			text-align: center;
			padding-bottom: 10px;
			padding-top:10px;
		}
		
		.footer{
			min-height: 40px;			
		}

		.footer-links{
			text-align: center;
			width: 100%;
			font-size: 1.4em;
		}
			    
		.copyright, .footer-links span{
			margin-right:0px;
		}
		
		.w-right{
			margin:0px;
			margin-top:5px;
		}
}

@media screen and (max-device-width: 640px){

		body {
		    background-color: #dcdcdc;
		}

 		.menu_partner_title, .menu_partner_logo, .header-bar-left, .menu_clock, .header-bar-right {
	        display: none;
	    }
	    
 		.copyright{
			text-align: center;
			padding-bottom: 10px;
			padding-top:10px;
		}
		
		.footer{
			min-height: 42px;
		}

		.footer-links{
			text-align: center;
			padding-bottom:5px;
			width: 100%;
			font-size: 1.2em;
		}
			    
		.copyright span{
			margin-right:0px;
		}
		
		.footer-links span{
			margin-left: 0px;
		}	    

		.item-right{padding-left:0px !important;}
		.item-left{padding-right:0px !important;}
}*/
/* CHROME autofill bug  */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset;
  -khtml-opacity: .50;
  -moz-opacity: .50;
  -ms-filter: ”alpha(opacity=50) ”;
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity: .50; }

.alertify {
  -khtml-opacity: .95;
  -moz-opacity: .95;
  -ms-filter: ”alpha(opacity=95) ”;
  filter: alpha(opacity=95);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.95);
  opacity: .95; }

.alertify-buttons {
  text-align: center !important; }

.alertify-button {
  width: 150px;
  margin: 0 !important;
  padding: 0 !important;
  height: 35px !important; }

/* Fix para margem do datepicker onload */
.ui-datepicker {
  display: none; }

/* UI DATEPICKER */
.ui-datepicker {
  font-family: 'Raleway', sans-serif;
  font-size: 1em; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0.9em;
  background: none;
  border: none; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  /*top: 2px;
  width: 1.8em;
  height: 1.8em;*/
  right: 0px; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 2px; }

.ui-datepicker .ui-datepicker-prev {
  right: 30px; }

.ui-datepicker .ui-datepicker-next {
  right: 10px; }

.ui-datepicker .ui-datepicker-prev-hover {
  right: 30px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 10px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  /*left: 50%;
  margin-left: -8px;*/
  top: 0;
  /*margin-top: -8px;*/
  text-indent: -99999px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0;
  font-size: 1em;
  text-align: left;
  text-transform: uppercase;
  color: #627485;
  font-weight: 600; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%; }

.ui-datepicker table {
  width: 100%;
  font-size: 1.2em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: normal;
  border: 0;
  font-size: 1.2em;
  color: #666; }

.ui-datepicker td {
  border: 0;
  padding: 0px;
  font-size: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #666; }

.ui-datepicker td span,
.ui-datepicker td a {
  /*display: table-cell;
  vertical-align:middle;*/
  /*padding: .2em;*/
  text-align: center;
  text-decoration: none;
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  display: block;
  padding-top: 3px;
  margin: 0 auto; }

.ui-datepicker td a {
  color: inherit; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

/**/
.ui-datepicker-calendar .ui-state-active {
  background: none;
  background-color: #627485;
  /*border: 1px solid #C5027E;*/
  color: #fff;
  border-radius: 20px;
  /*font-weight: bold;*/ }

.ui-datepicker-next .ui-icon, .ui-datepicker-prev .ui-icon {
  background: none; }

.ui-datepicker-next:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 1.5em;
  padding-top: 4px;
  display: block;
  color: #d8d8d8; }

.ui-datepicker-prev:before {
  content: "\f053";
  font-family: FontAwesome;
  font-size: 1.5em;
  padding-left: 2px;
  padding-right: 20px;
  padding-top: 4px;
  display: block;
  color: #d8d8d8; }

.ui-datepicker-prev:hover:before {
  color: #627485; }

.ui-datepicker-next:hover:before {
  color: #627485; }

.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
  /*color:#222;
  background:none;
  border:none;
  font-weight:700;*/
  cursor: pointer; }

.ui-datepicker-next:hover {
  margin: 1px -1px 0 0px; }

.ui-datepicker-prev:hover {
  margin: 1px 1px 0 0; }

.ui-datepicker-other-month, .ui-state-disabled {
  /*background:url(../img/cal_bg.png) transparent !important;*/ }

.ui-datepicker-other-month .ui-state-default {
  background: none !important;
  border: 1px solid #a6a6a6; }

.ui-datepicker-unselectable {
  color: #D8D8D8 !important; }
