/* Including Font Awesome */
@font-face {
  font-family: 'fontawesome';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fontawesome-pro-regular-400.woff2") format("woff2"), url("../fonts/fontawesome-pro-regular-400.woff") format("woff");
}
@font-face {
  font-family: 'fontawesome-brands';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fontawesome-pro-brands-900.woff2") format("woff2"), url("../fonts/fontawesome-pro-brands-900.woff") format("woff");
}
/* Fix input placeholders */
::-webkit-input-placeholder {
  text-overflow: ellipsis;
  opacity: 0.5;
  color: inherit;
}
:-ms-input-placeholder {
  text-overflow: ellipsis;
  opacity: 0.5;
  color: inherit;
}
::placeholder {
  text-overflow: ellipsis;
  opacity: 0.5;
  color: inherit;
}
/* Browser CSS hacks */
* {
  box-sizing: border-box;
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}
input:-moz-focusring,
select:-moz-focusring,
textarea:-moz-focusring {
  color: inherit;
  text-shadow: 0 0 0 #000;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
/* Typography */
html {
  height: 100%;
  font: 16px/28px 'Roboto', sans-serif;
  background-color: #fff;
  color: #3b4e62;
}
html.overlay_fixed {
  overflow: hidden;
}
a {
  color: #277cea;
  text-decoration: none;
  transition-property: background-color, box-shadow, border, color, opacity, transform;
  transition-duration: 0.3s;
}
a:hover {
  color: #3b4e62;
}
a.external:after {
  display: inline-block;
  vertical-align: top;
  content: '\f08e';
  font-family: fontawesome;
  font-size: 0.6em;
  margin-left: 0.6em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
h1 .g-hlink,
h2 .g-hlink,
h3 .g-hlink,
h4 .g-hlink,
h5 .g-hlink,
h6 .g-hlink {
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}
h1:hover .g-hlink,
h2:hover .g-hlink,
h3:hover .g-hlink,
h4:hover .g-hlink,
h5:hover .g-hlink,
h6:hover .g-hlink {
  opacity: 1;
}
h1 {
  font-size: 2.2rem;
  font-weight: 300;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1.1rem;
}
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  padding-top: 1.5rem;
}
p,
ul,
ol,
dl,
address,
pre,
table,
blockquote,
fieldset {
  margin: 0 0 1.5rem;
}
pre {
  padding: 0.6rem 1rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-x: auto;
  font-family: Consolas, monospace;
  background: #3b4e62;
  color: #fff;
}
pre a:hover {
  color: #fff;
}
p + pre {
  margin-top: -1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid #e1e4e6;
  transition: background-color 0.2s;
}
thead td {
  vertical-align: top;
  font-size: 0.9rem;
  font-weight: bold;
  padding-top: 0;
  white-space: nowrap;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='url'],
input[type='tel'],
input[type='number'],
input[type='date'],
input[type='search'],
input[type='range'],
select,
textarea {
  padding: 0 10px;
  width: 100%;
  line-height: 42px;
  height: 42px;
  border: 1px solid #e1e4e6;
  background: #f1f2f3;
  color: inherit;
  box-shadow: none;
  transition: all 0.2s;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='tel']:focus,
input[type='number']:focus,
input[type='date']:focus,
input[type='search']:focus,
input[type='range']:focus,
select:focus,
textarea:focus {
  border-color: #277cea;
}
textarea {
  line-height: inherit;
  height: auto;
  padding: 0.6em 1em;
  resize: vertical;
}
label {
  cursor: pointer;
}
/* Alignment */
.align_left {
  text-align: left;
}
.align_right {
  text-align: right;
}
.align_center {
  text-align: center;
}
/* Animations */
@keyframes cf-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Highlight */
.highlight-success,
.highlight-error,
.highlight-delete {
  opacity: 0.3;
}
/* Actions */
.g-actions {
  display: flex;
  justify-content: flex-end;
}
.g-action {
  flex-shrink: 0;
  display: block;
  position: relative;
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s;
}
.g-action.loading {
  cursor: default;
  font-size: 0;
}
.g-action.loading::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: '\f110' !important;
  font-family: fontawesome;
  font-size: 20px;
  line-height: 20px;
  height: 20px;
  width: 20px;
  margin: -10px 0 0 -10px;
  animation: cf-spin 2s infinite linear;
}
.g-action.action_delete.type_label,
.g-action.action_deletestats.type_label {
  color: #ea524a;
}
.g-action.action_disabled.type_label {
  color: #9096a3;
  padding-bottom: 10px;
}
.g-action.action_disabled.type_label:after {
  content: 'Upgrade to Unlock';
  position: absolute;
  display: block;
  /* background: red; */
  bottom: -3px;
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1;
}
.g-action.action_move {
  cursor: move;
}
.g-action.type_icon {
  line-height: 42px;
  width: 42px;
  text-align: center;
}
.g-action.type_icon::before {
  vertical-align: top;
  font-family: fontawesome;
}
.g-action.type_icon.action_refresh:before {
  content: '\f021';
}
.g-action.type_icon.action_stats:before {
  content: '\f080';
}
.g-action.type_icon.action_external_link:before {
  content: '\f08e';
}
.g-action.type_icon.action_settings:before {
  content: '\f013';
}
.g-action.type_icon.action_edit:before {
  content: '\f040';
}
.g-action.type_icon.action_more:before {
  content: '\f141';
}
.g-action.type_icon.action_move:before {
  content: '\f07d';
}
.g-action.type_icon.action_delete:before {
  content: '\f2ed';
}
.g-action.type_icon.action_activate:before {
  content: '\f04b';
}
.g-action.type_icon.action_deactivate:before {
  content: '\f04c';
}
.g-action.type_icon.action_list:before {
  content: '\f00b';
}
.g-action.type_icon.action_log:before {
  content: '\f1c0';
}
.g-action.type_icon.action_retry:before {
  content: '\f021';
}
.g-icon {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.5rem;
  margin-right: 5px;
}
.g-icon::before {
  vertical-align: top;
  font-family: fontawesome;
}
.g-icon.type_check::before {
  content: "\f00c";
  color: #53b753;
}
/* Breadcrumbs */
.g-breadcrumbs {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  line-height: 2.5rem;
}
.g-breadcrumbs-item {
  vertical-align: top;
}
.g-breadcrumbs-separator::before {
  content: "\f105";
  font-family: FontAwesome;
  vertical-align: top;
  margin: 0 0.3rem;
}
/* Separator */
.g-separator {
  display: block;
  height: 0;
  padding: 1.5rem 0;
}
/* Filters */
.g-filters {
  display: flex;
  border: 1px #e1e4e6 solid;
  border-radius: 3px;
  line-height: 2.5rem;
  height: 2.5rem;
}
.g-filters-item {
  flex: 1 0 auto;
  line-height: inherit;
  padding: 0 1rem;
  border-right: 1px #e1e4e6 solid;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
.g-filters-item:first-child {
  border-radius: 3px 0 0 3px;
}
.g-filters-item:last-child {
  border-radius: 0 3px 3px 0;
}
.g-filters-item.active {
  background-color: #277cea;
  color: #fff;
  cursor: default;
}
.g-filters-item.active .g-ticket-type::before {
  color: #fff;
}
.g-filters.type_checkbox {
  flex-wrap: wrap;
  border: none;
  margin-bottom: 4px;
}
.g-filters.type_checkbox .g-filters-title {
  flex-shrink: 0;
  font-size: 0.8rem;
  width: 4rem;
  color: #9096a3;
}
.g-filters.type_checkbox .g-filters-item {
  flex-grow: 0;
  border: none;
  margin: 2px;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}
.g-filters.type_checkbox .g-filters-item:hover {
  background-color: #f1f2f3;
}
.g-filters.type_checkbox .g-filters-item.active {
  font-weight: bold;
  cursor: pointer;
  background-color: #f1f2f3;
  color: #3b4e62;
}
.g-filters.type_checkbox .g-filters-item span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-weight: normal;
  line-height: 1.5rem;
  min-width: 1.5rem;
  padding: 0 0.3rem;
  margin: 0.5rem 0;
  border-radius: 3rem;
  background-color: #277cea;
  color: #fff;
  pointer-events: none;
}
.g-filters.type_checkbox .g-filters-item span.count_0 {
  display: none;
}
/* Pagination */
.g-pagination {
  display: flex;
  line-height: 2.5rem;
}
.g-pagination-item {
  padding: 0 1rem;
  min-width: 2.5rem;
  text-align: center;
}
.g-pagination-item:hover {
  background-color: #f1f2f3;
}
.g-pagination-item.active {
  background-color: #277cea;
  color: #fff;
}
.g-pagination-item.to_prev,
.g-pagination-item.to_next {
  display: none;
}
/* Status */
.g-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: normal;
  text-align: center;
  text-transform: capitalize;
  padding: 0.6rem 0.5rem;
  line-height: 0;
  border-radius: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #fff;
}
.g-status.type_error {
  background-color: #ea524a;
}
.g-status.type_active,
.g-status.type_resolved,
.g-status.type_done {
  background-color: #53b753;
}
.g-status.type_suspended,
.g-status.type_inactive,
.g-status.type_cancelled {
  background-color: #9096a3;
}
.g-status.type_blocked {
  background-color: #3b4e62;
}
.g-status.type_archived,
.g-status.type_scheduled {
  background-color: #795548;
}
.g-status.type_new {
  background-color: #277cea;
}
.g-status.type_waiting {
  background-color: #cc3db4;
}
.g-status.type_investigating {
  background-color: #ff9800;
}
/* Note */
.g-note {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.4rem 0;
  position: relative;
}
.g-note::before {
  font-family: fontawesome;
  vertical-align: top;
  margin-right: 5px;
}
.g-note.type_wizard::before {
  content: '\f0d0';
}
.g-note.type_warning::before {
  content: "\f06a";
  color: #ea524a;
}
.g-note.type_locked {
  position: relative;
  background-color: #f1f2f3;
  display: inline-block;
  padding: 20px 30px 20px 50px;
  border-radius: 10px;
}
.g-note.type_locked::before {
  content: "\f023";
  position: absolute;
  left: 22px;
  top: 16px;
  font-size: 20px;
}
/* Alert */
.g-alert {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: #e1e4e6;
  line-height: 1.5;
  font-size: 0.9rem;
}
.g-alert-body p:last-child,
.g-alert-body ul:last-child,
.g-alert-body ol:last-child {
  margin-bottom: 0;
}
.g-alert.type_warning {
  background: #ffece8;
}
.g-alert.type_note {
  background: #edf5ff;
}
.g-alert.icon_clock {
  padding-left: 50px;
}
.g-alert.icon_clock::before {
  position: absolute;
  top: 1.2rem;
  left: 18px;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f017";
}
.g-alert.icon_userplus {
  padding-left: 50px;
}
.g-alert.icon_userplus::before {
  position: absolute;
  top: 1.2rem;
  left: 18px;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f234";
}
.g-alert.icon_percent {
  padding-left: 50px;
}
.g-alert.icon_percent::before {
  position: absolute;
  top: 1.2rem;
  left: 18px;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f295";
}
.g-alert.icon_lamp {
  padding-left: 50px;
}
.g-alert.icon_lamp::before {
  position: absolute;
  top: 1.2rem;
  left: 18px;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f0eb";
}
.g-alert.icon_error {
  padding-left: 50px;
}
.g-alert.icon_error::before {
  position: absolute;
  top: 1.2rem;
  left: 18px;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f071";
}
.g-alert:last-child {
  margin-bottom: 0;
}
.g-alert-closer {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.5;
}
.g-alert-closer + .g-alert-body {
  padding-right: 1rem;
}
.g-alert-closer::after {
  content: '\00D7';
  vertical-align: top;
  font-size: 26px;
}
.g-alert-closer:hover {
  opacity: 1;
}
/* Lists as tables */
.g-table td:first-child {
  padding-left: 0;
}
.g-table td:last-child {
  padding-right: 0;
}
.g-table td p:last-child {
  margin: 0;
}
.g-table td img {
  display: block;
  max-width: 250px;
}
.g-table td.empty {
  display: none;
}
.g-table td.for_actions {
  text-align: right;
}
.g-table td.for_created,
.g-table td.for_status {
  white-space: nowrap;
}
.g-table td .b-sitename,
.g-table td .b-widgetname {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
}
.g-table td .b-sitename a,
.g-table td .b-widgetname a {
  display: inline-block;
  vertical-align: top;
}
.g-table td .b-sitename + .g-note,
.g-table td .b-widgetname + .g-note {
  padding-top: 0.2rem;
}
.g-table td .b-sitename + .g-note a {
  color: inherit;
}
.g-table thead td a {
  color: inherit;
}
.g-table thead td a:hover {
  color: #277cea;
}
.g-table thead td.sort_asc a,
.g-table thead td.sort_desc a {
  color: #277cea;
}
.g-table thead td.sort_asc a:after,
.g-table thead td.sort_desc a:after {
  display: inline-block;
  vertical-align: top;
  content: "\f0d8";
  margin-left: 0.3rem;
  font-size: 0.8rem;
  font-family: 'FontAwesome';
}
.g-table thead td.sort_desc a:after {
  content: "\f0d7";
}
.g-table.for_broadcast .for_visibility .g-action {
  position: relative;
  padding-left: 30px;
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  margin-right: 40px;
}
.g-table.for_broadcast .for_visibility .g-action-icon {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #e1e4e6;
  background: #fff;
  color: #fff;
  cursor: pointer;
  font-family: FontAwesome;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  transition: all .2s;
}
.g-table.for_broadcast .for_visibility .g-action-icon::before {
  content: "\f00c";
}
.g-table.for_broadcast .for_visibility .g-action.type_disable .g-action-icon {
  border-color: #277cea;
  background: #277cea;
}
.g-table.for_notifications td {
  vertical-align: top;
}
.g-table.for_widgets {
  margin-bottom: 6.4rem;
}
.g-table.for_tickets td {
  vertical-align: top;
}
.g-table.for_tickets td .g-status {
  vertical-align: inherit;
  margin-top: 0.3rem;
  margin-left: 0.3rem;
}
.b-ticketlist.for_customer .g-table.for_tickets td.for_type {
  padding-right: 0;
}
.g-table.for_tickets td.for_type .g-ticket-type {
  cursor: help;
  font-size: 1.2rem;
  width: 1rem;
  color: #9096a3;
}
.g-table.for_tickets td.for_assignee {
  font-size: 0.9rem;
}
.g-table.for_tickets td.for_votes {
  text-align: right;
}
.g-table.for_tickets td.for_votes span {
  font-size: 1.2rem;
}
.g-table.for_tickets td.for_votes span::before {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.3rem;
  font-size: 0.8rem;
  font-weight: normal;
  font-family: 'FontAwesome';
  content: "\f164";
  color: #9096a3;
}
.g-table.for_tickets td.for_status .g-status {
  margin-left: 0;
  width: 5rem;
}
.g-table.for_users td.for_avatar {
  width: 3rem;
  border: none;
}
.g-table.for_users td.for_avatar img {
  display: block;
  border-radius: 50%;
  width: 3rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.g-table.for_users td.for_username {
  padding-left: 0;
}
.g-table.for_users td.for_username a {
  display: block;
  line-height: 1.2rem;
}
.g-table.for_users td.for_username .g-badge {
  height: 1.8rem;
  width: 1.4rem;
}
.g-table.for_users td.for_username .g-badge.type_ltdf {
  width: 2.9rem;
}
.g-table.for_users td.for_registered,
.g-table.for_users td.for_expires {
  white-space: nowrap;
}
.g-table.for_users + .b-results {
  margin-bottom: 80px;
}
.g-table.for_interrors tbody tr[data-id="template"] {
  display: none;
}
.g-table.for_transactions .for_name {
  width: 100%;
}
.g-table.for_transactions .for_amount {
  text-align: right;
}
.g-table.for_transactions .for_receipt {
  text-align: center;
}
.g-table.for_transactions .for_receipt a {
  font-family: fontawesome;
  font-size: 20px;
  color: inherit;
}
.g-table.for_transactions .for_receipt a::before {
  content: "\f0ed";
}
.g-table.for_transactions .for_status.type_success::before {
  color: #53b753;
  font-family: fontawesome;
  content: "\f00c";
}
.g-table.for_transactions .for_status.type_refunded::before {
  color: #ff9800;
  font-family: fontawesome;
  content: "\f0e2";
}
.g-table.for_transactions .for_status.type_fail::before {
  color: #d33229;
  font-family: fontawesome;
  content: "\f00d";
}
/* Buttons */
.g-btn,
.button,
button,
input[type='submit'] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: inherit;
  font-weight: normal;
  line-height: 2.8em;
  padding: 0 1.5em;
  border-radius: 0.2em;
  transition-property: background-color, color, opacity;
  transition-duration: 0.3s;
  background-color: #277cea;
  color: #fff;
}
.g-btn:hover,
.button:hover,
button:hover,
input[type='submit']:hover {
  background-color: #1f63bb;
  color: #fff;
}
.g-btn::before,
.button::before,
button::before,
input[type='submit']::before {
  vertical-align: top;
}
.g-btn.width_full {
  width: 100%;
}
.g-btn.style_solid.color_green {
  background-color: #53b753;
}
.g-btn.style_solid.color_green:hover {
  background-color: #3f983f;
}
.g-btn.style_solid.color_red {
  background-color: #ea524a;
}
.g-btn.style_solid.color_red:hover {
  background-color: #d33229;
}
.g-btn.style_solid.color_dark {
  background-color: #3b4e62;
}
.g-btn.style_solid.color_dark:hover {
  background-color: #314152;
}
.g-btn.style_solid.color_light {
  background-color: #e1e4e6;
  color: #3b4e62;
}
.g-btn.style_solid.color_light:hover {
  background-color: #d5d8db;
}
.g-btn.style_solid.color_white {
  background-color: #fff;
  color: #277cea;
}
.g-btn.style_solid.color_white:hover {
  background-color: #e1e4e6;
  color: #3b4e62;
}
.g-btn.style_transparent {
  background-color: transparent;
  color: #277cea;
}
.g-btn.style_transparent:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: #277cea;
}
.g-btn.style_transparent.color_green {
  color: #53b753;
}
.g-btn.style_transparent.color_dark {
  color: #3b4e62;
}
.g-btn.style_transparent.color_red {
  color: #ea524a;
}
.g-btn.style_outlined {
  box-shadow: inset 0 0 0 2px #277cea;
  background-color: transparent;
  color: #277cea;
}
.g-btn.style_outlined:hover {
  background-color: #277cea;
  color: #fff;
}
.g-btn.style_outlined.color_green {
  box-shadow: inset 0 0 0 2px #53b753;
  color: #53b753;
}
.g-btn.style_outlined.color_green:hover {
  background-color: #53b753;
  color: #fff;
}
.g-btn.style_outlined.color_dark {
  box-shadow: inset 0 0 0 2px #3b4e62;
  color: #3b4e62;
}
.g-btn.style_outlined.color_dark:hover {
  background-color: #3b4e62;
  color: #fff;
}
.g-btn.style_outlined.color_red {
  box-shadow: inset 0 0 0 2px #ea524a;
  color: #ea524a;
}
.g-btn.style_outlined.color_red:hover {
  background-color: #ea524a;
  color: #fff;
}
.g-btn.type_intable {
  vertical-align: middle;
}
.g-btn[class*="icon_"]::before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 0.6em;
}
.g-btn.icon_check::before {
  content: "\f00c";
}
.g-btn.icon_connect::before {
  content: '\f1e6';
}
.g-btn.icon_edit::before {
  content: "\f040";
}
.g-btn.icon_list::before {
  content: "\f03a";
}
.g-btn.icon_delete::before {
  content: "\f2ed";
}
.g-btn.icon_plus::before {
  content: "\f067";
}
.g-btn.icon_cancel::before {
  content: "\f05e";
}
.g-btn.icon_back::before {
  content: "\f0e2";
}
.g-btn.icon_vote::before {
  content: "\f164";
}
.g-btn.size_s {
  font-size: .8rem;
}
.g-btn.size_xs {
  font-size: .7rem;
}
.g-btn.state_disabled {
  opacity: .5;
  cursor: default;
}
.g-btn.loading,
.loading .g-btn {
  cursor: default;
  pointer-events: none;
  opacity: .5;
}
.g-btn.loading::before,
.loading .g-btn::before {
  font-family: FontAwesome;
  display: inline-block;
  content: '\f110';
  color: inherit;
  animation: cf-spin 2s infinite linear;
  margin-right: 10px;
}
/* Custom checkbox & radio button */
.g-checkbox,
.g-radio {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 2rem;
  line-height: 1.5rem;
  cursor: pointer;
}
.g-checkbox.disabled,
.g-radio.disabled {
  cursor: default;
  color: #9096a3;
}
.g-checkbox > input,
.g-radio > input {
  display: none;
}
.g-checkbox-icon,
.g-radio-icon {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 1.4rem;
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  border: 1px solid #e1e4e6;
  background: #fff;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.g-checkbox-icon::before,
.g-radio-icon::before {
  vertical-align: top;
  font-family: FontAwesome;
}
input:checked ~ .g-checkbox-icon,
input:checked ~ .g-radio-icon {
  border-color: #277cea;
  background: #277cea;
}
.g-checkbox-icon::before {
  content: "\f00c";
  font-size: 0.9rem;
}
.g-radio-icon {
  border-radius: 50%;
}
.g-radio-icon::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  border: 4px solid;
  margin: 7px;
  border-radius: 50%;
}
.g-select {
  position: relative;
  border-bottom: 1px solid #e1e4e6;
  min-width: 10rem;
}
.g-select-current {
  padding: 10px 30px 10px 0;
}
.g-select-current::before {
  content: "\f107";
  position: absolute;
  top: 10px;
  right: 0;
  font-family: FontAwesome;
  font-size: 1.2rem;
  cursor: pointer;
}
.g-select-item {
  white-space: nowrap;
  cursor: pointer;
}
.g-select-item img {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  width: 30px;
  margin-right: 5px;
}
.g-select-item span {
  display: inline-block;
  vertical-align: middle;
}
.g-select-list {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  z-index: 11;
  padding: 5px 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.g-select-list .g-select-item {
  padding: 5px 10px;
}
.g-select-list .g-select-item span {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
}
.g-select:hover .g-select-list {
  display: block;
}
/* Forms */
.g-form-row {
  margin-bottom: 1.5rem;
}
.g-form-row:last-child {
  margin-bottom: 0;
}
.g-form-row-label {
  display: block;
  padding-bottom: 0.3rem;
}
.g-form-row-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.3rem;
  color: #9096a3;
}
.g-form-row-state {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.3rem;
}
.g-form-row-state:empty {
  display: none;
}
.g-form-row.check_wrong .g-form-row-state {
  color: #ea524a;
}
.g-form-row-link {
  display: inline-block;
}
.g-form-row.for_submit {
  padding-top: 1rem;
}
.g-form-row.for_coupon > a {
  color: inherit;
  border-bottom: 1px dotted;
}
.g-form-row.for_coupon #profile_coupon {
  max-width: 16rem;
  margin-right: 0.5rem;
}
.g-form-field {
  position: relative;
}
.g-form-field-accordion {
  border: 1px solid;
  margin-bottom: .5em;
  padding: 5px;
}
.g-form-field-accordion-title {
  font-weight: bold;
  margin-bottom: 2px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.g-form-field-accordion-body {
  height: 0;
  padding: 0;
  transition: height .3s;
  margin-bottom: 0;
}
.g-form-field-accordion.is-active .g-form-field-accordion-body {
  height: 100%;
}
.g-form-separator {
  padding: 0.75rem 0;
}
.g-form.labels_left .g-form-row::after {
  content: '';
  clear: both;
  display: block;
}
.g-form.labels_left .g-form-row-label {
  float: left;
  line-height: 1.5;
  padding: 0.5rem 1rem 0.5rem 0;
  width: 30%;
}
.g-form.labels_left .g-form-field,
.g-form.labels_left .g-form-row-description,
.g-form.labels_left .g-form-row-state {
  float: right;
  width: 70%;
}
.g-form.width_half {
  max-width: 50rem;
}
.g-form.for_oauth2_site_connect,
.g-form.for_sign_in,
.g-form.for_sign_up,
.g-form.for_confirm_email,
.g-form.for_resetpass {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 3rem;
  max-width: 25rem;
  margin: 2rem auto;
}
.g-form.for_oauth2_site_connect + div,
.g-form.for_sign_in + div,
.g-form.for_sign_up + div,
.g-form.for_confirm_email + div,
.g-form.for_resetpass + div {
  line-height: 2rem;
}
.g-form.for_oauth2_site_connect + div {
  text-align: center;
}
.g-form.for_ticket {
  margin: 0 auto;
}
.g-form.for_ticket .g-form-row {
  margin-left: 110px;
}
.g-form.for_ticket .g-form-row.for_select {
  margin-top: 1em;
}
.g-form.for_ticket .g-form-row.for_select .g-form-field::after {
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -0.5em;
  line-height: 1em;
  font-size: 0.9em;
  content: '\f078';
  font-family: FontAwesome;
  pointer-events: none;
}
.g-form.for_ticket .g-form-row.for_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  border: 1px solid #e1e4e6;
  border-radius: 3px;
  background: transparent;
  transition: all 0.3s;
}
.g-form.for_ticket .g-form-row.for_select select::-ms-expand {
  opacity: 0;
}
.g-form.for_ticket .g-form-row.for_select select:focus {
  border-color: #277cea;
}
.g-form.for_ticket .g-form-row.for_type {
  margin-left: 0;
}
.g-form.for_ticket .g-form-row.for_desttype {
  margin-left: 0;
}
.g-form.for_ticket .g-form-row.for_desttype .g-radio input[type='radio'] {
  top: 0;
}
.g-form.for_ticket .g-form-row.for_screenshot .g-form-field-image > img {
  max-width: 100%;
}
.g-form.for_ticket .g-form-row input[type="file"] {
  padding: 10px 0;
}
.g-form.for_ticket .g-form-row.for_private {
  margin-bottom: 0.5rem;
}
.g-form.for_ticket .g-form-row.disabled label {
  display: none;
}
.g-form.for_ticket .g-form-row.for_follow p,
.g-form.for_ticket .g-form-row.for_private p,
.g-form.for_ticket .g-form-row.for_scope p {
  display: none;
  text-align: left;
}
.g-form.for_ticket .g-form-row.for_follow.disabled p,
.g-form.for_ticket .g-form-row.for_private.disabled p,
.g-form.for_ticket .g-form-row.for_scope.disabled p {
  display: block;
}
.g-form.for_ticket .g-form-field-image {
  padding-top: 10px;
}
.g-form.for_ticket .g-form-field-image img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  max-height: 300px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.g-form.for_ticket .g-form-field-image-remove {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  font: 24px/30px FontAwesome;
  text-align: center;
  width: 30px;
  cursor: pointer;
  opacity: 0.5;
  right: 0;
  background: #fff;
  transition: opacity 0.3s;
}
.g-form.for_ticket .g-form-field-image-remove:hover {
  opacity: 1;
}
.g-form.for_ticket .g-form-field-image-remove::before {
  content: "\f00d";
}
.g-form.for_ticket .g-form-field-label {
  position: absolute;
  top: 7px;
  left: -110px;
}
.g-form.for_ticket .g-form-field-options {
  display: flex;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 1px #e1e4e6 inset;
  line-height: 3.5rem;
}
.g-form.for_ticket .g-form-field-option {
  flex: 1 0 6rem;
  padding: 0 1rem;
  border-right: 1px #e1e4e6 solid;
  text-align: center;
  cursor: pointer;
}
.g-form.for_ticket .g-form-field-option .g-ticket-type {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.5rem;
}
.g-form.for_ticket .g-form-field-option:last-child {
  border-right: none;
}
.g-form.for_ticket .g-form-field-option:hover {
  background-color: #f1f2f3;
}
.g-form.for_ticket .g-form-field-option.active {
  background-color: #277cea;
  color: #fff;
  cursor: default;
}
.g-form.for_ticket .g-form-field-option.active .g-ticket-type::before {
  color: #fff;
}
.g-form.for_ticket .b-links {
  margin: 0 0 1.5rem 110px;
}
.g-form.for_ticket .b-links-item .g-ticket-type {
  margin-right: 0.4rem;
}
.g-form.for_ticket .b-links-close {
  position: absolute;
  top: 0;
  right: 0;
  font: 24px/50px FontAwesome;
  text-align: center;
  width: 50px;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.g-form.for_ticket .b-links-close::before {
  content: "\f00d";
}
.g-form.for_ticket .b-links-close:hover {
  opacity: 1;
}
.g-form.for_article blockquote,
.g-form.for_ticket blockquote,
.g-form.for_reply blockquote {
  margin: 0;
  padding-left: 40px;
  color: #9096a3;
  border: 0 !important;
}
.g-form.for_article blockquote:before,
.g-form.for_ticket blockquote:before,
.g-form.for_reply blockquote:before {
  font-family: 'fontawesome';
  content: '\f10e';
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-style: normal;
  word-wrap: normal;
  width: 40px;
  margin-left: -40px;
  opacity: 0.3;
}
.g-form.for_article blockquote + blockquote::before,
.g-form.for_ticket blockquote + blockquote::before,
.g-form.for_reply blockquote + blockquote::before {
  display: none;
}
.g-form.for_ticket .g-form-row.for_submit .g-btn,
.g-form.for_reply .g-form-row.for_submit .g-btn {
  margin-right: 0.8rem;
}
.g-form.for_ticket .g-form-row.for_submit a,
.g-form.for_reply .g-form-row.for_submit a {
  line-height: 2.5;
}
.g-form.for_reply .g-radio {
  margin-right: 1rem;
}
.g-form-info {
  font-size: 14px;
  border: solid #f1f2f3;
  border-width: 1px 0;
  margin: -15px -30px 15px;
  padding: 15px 30px;
}
.g-form-info-text {
  padding-top: 10px;
  line-height: 1.4;
  font-size: 13px;
}
.g-form-info-text.with_icon {
  position: relative;
  padding-top: 0;
  padding-left: 60px;
  line-height: 40px;
  font-size: 12px;
  opacity: .9;
}
.g-form-info-text.with_icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 40px;
  text-align: center;
  content: "\f0ec";
  line-height: 40px;
  font-size: 20px;
  font-family: FontAwesome;
  transform: rotate(90deg);
}
.g-form-info-site {
  position: relative;
  padding: 10px 0 10px 60px;
  line-height: 1.2;
}
.g-form-info-site-name {
  font-weight: bold;
}
.g-form-info-site-name,
.g-form-info-site-domain {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.g-form-info-site-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 50px;
}
.g-form-info-site.platform_WordPress .g-form-info-site-icon::before {
  content: "\f19a";
  font-family: 'fontawesome-brands';
}
.g-form-info-site.platform_Shopify .g-form-info-site-icon::before {
  content: '';
  display: block;
  top: 1px;
  left: 1px;
  width: 48px;
  height: 48px;
  background: url(../img/icons/shopify_mask_retina.png) 50% 50% no-repeat;
  background-size: cover;
  background-color: currentColor;
}
.g-form-info-account {
  position: relative;
  padding: 10px 0 10px 60px;
  line-height: 1.2;
}
.g-form-info-account-username {
  font-weight: bold;
}
.g-form-info-account-username,
.g-form-info-account-subnote {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.g-form-info-account-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
}
.g-form-info-error {
  margin: 10px 0;
  line-height: 1.2;
  background: #ffbfbf;
  border: 1px solid #ea524a;
  padding: 10px;
}
/* Preloader */
.g-preloader {
  position: relative;
  height: 24px;
  width: 24px;
  transition: opacity 0.2s;
}
.g-preloader::before,
.g-preloader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid;
}
.g-preloader::before {
  opacity: 0.2;
}
.g-preloader::after {
  border-color: transparent;
  border-top-color: inherit;
  animation: cf-spin 0.8s infinite cubic-bezier(0.6, 0.3, 0.3, 0.6);
}
/* Rows / Columns */
.g-row {
  display: flex;
  margin: 0 -2rem;
}
.g-col {
  flex: 1 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.g-col.size_1 {
  width: 8.333%;
}
.g-col.size_2 {
  width: 16.666%;
}
.g-col.size_3 {
  width: 25%;
}
.g-col.size_4 {
  width: 33.333%;
}
.g-col.size_5 {
  width: 41.666%;
}
.g-col.size_6 {
  width: 50%;
}
.g-col.size_7 {
  width: 58.333%;
}
.g-col.size_8 {
  width: 66.666%;
}
.g-col.size_9 {
  width: 75%;
}
.g-col.size_10 {
  width: 83.333%;
}
.g-col.size_11 {
  width: 91.666%;
}
.g-col.size_12 {
  width: 100%;
}
.g-hoverpopup {
  position: relative;
  text-align: left;
}
.g-hoverpopup-items {
  position: absolute;
  visibility: hidden;
  z-index: 1;
  right: 0;
  min-width: 9rem;
  white-space: nowrap;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.g-hoverpopup-items::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -6px;
  right: 7px;
  margin: 0 0 0 -12px;
  width: 25px;
  height: 25px;
  background: #fff;
  transform: rotate(-45deg);
  pointer-events: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.g-hoverpopup-items::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 60px;
  height: 40px;
  background: #fff;
}
.g-hoverpopup-items a {
  display: block;
  font-size: 15px;
  padding: 0 20px;
  line-height: 42px;
  background: #fff;
  color: #3b4e62;
}
.g-hoverpopup-items a:hover {
  background-color: #f1f2f3;
}
.g-hoverpopup:hover .g-hoverpopup-items {
  visibility: visible;
}
.g-progress {
  position: relative;
  overflow: hidden;
  width: 300px;
  border-radius: 6px;
  height: 6px;
  background: #53b753;
  margin: 1rem 0 1.5rem;
}
.g-progress div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #d33229;
}
.g-badge {
  flex-shrink: 0;
  font-size: 0;
  height: 3rem;
  width: 2.4rem;
  margin-right: 0.3rem;
  cursor: help;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.g-badge-checker {
  display: none;
}
.g-badge-button {
  opacity: 0.33;
}
.g-badge-checker:checked + .g-badge-button {
  opacity: 1;
}
.g-badge.size_small {
  height: 1.8rem;
  width: 1.4rem;
}
.g-badge.type_blogmaster {
  background-image: url(../img/badges/blogmaster.svg);
}
.g-badge.type_commstar {
  background-image: url(../img/badges/commstar.svg);
}
.g-badge.type_feedback {
  background-image: url(../img/badges/feedback.svg);
}
.g-badge.type_generator {
  background-image: url(../img/badges/generator.svg);
}
.g-badge.type_hacker {
  background-image: url(../img/badges/hacker.svg);
}
.g-badge.type_helpmate {
  background-image: url(../img/badges/helpmate.svg);
}
.g-badge.type_mailman {
  background-image: url(../img/badges/mailman.svg);
}
.g-badge.type_moneymaker {
  background-image: url(../img/badges/moneymaker.svg);
}
.g-badge.type_optinguru {
  background-image: url(../img/badges/optinguru.svg);
}
.g-badge.type_tester {
  background-image: url(../img/badges/tester.svg);
}
.g-badge.type_wordsmith {
  background-image: url(../img/badges/wordsmith.svg);
}
.g-badge.type_pro {
  background-image: url(../img/badges/pro.svg);
}
.g-badge.type_vip {
  background-image: url(../img/badges/vip.svg);
}
.g-badge.type_ltdf {
  width: 4.9rem;
  background-image: url(../img/badges/ltdf.svg);
  background-position: 50% 100%;
}
.g-badge.type_ltdf.size_small {
  width: 2.9rem;
}
.g-badge.type_team {
  align-self: flex-start;
  position: relative;
  font-style: normal;
  font-size: 0.7rem;
  line-height: 1.4rem;
  padding: 0 0.6rem;
  margin-top: 0.3rem;
  height: auto !important;
  width: auto !important;
  border-radius: 1rem;
  background: #277cea;
  color: #fff;
  font-weight: normal;
  white-space: nowrap;
}
.g-ticket-type::before {
  font-family: 'FontAwesome';
}
.type_bug .g-ticket-type::before {
  content: "\f188";
}
.type_feature .g-ticket-type::before {
  content: "\f12e";
}
.type_question .g-ticket-type::before {
  content: "\f059";
}
.type_article .g-ticket-type::before {
  content: "\f15b";
}
.type_notfound .g-ticket-type::before {
  content: "\f05c";
}
.g-tooltip {
  position: absolute;
  z-index: 111;
  width: 200px;
  font-size: 12px;
  line-height: 1.4;
  padding: 12px 18px;
  text-align: left;
  white-space: normal;
  cursor: default;
  transition: opacity 0.2s ease 0.2s;
  background-color: #000;
  color: #e1e4e6;
  visibility: hidden;
  opacity: 0;
}
:hover > .g-tooltip {
  visibility: visible;
  opacity: 1;
}
.g-tooltip::before {
  content: '';
  position: absolute;
}
.g-tooltip::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: inherit;
  transform: rotate(45deg);
}
.g-tooltip a {
  color: #9ec3f3;
}
.g-tooltip a:hover {
  color: #fff !important;
}
.g-tooltip.place_bottom {
  left: 50%;
  top: 100%;
  transform: translate(-50%, 6px);
}
.g-tooltip.place_bottom::before {
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}
.g-tooltip.place_bottom::after {
  left: 50%;
  top: -6px;
  margin-left: -6px;
}
.g-tooltip.place_top {
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -6px);
}
.g-tooltip.place_top::before {
  bottom: -8px;
  left: 0;
  right: 0;
  height: 12px;
}
.g-tooltip.place_top::after {
  left: 50%;
  bottom: -6px;
  margin-left: -6px;
}
/* Froala */
.fr-toolbar {
  border-top: 0 !important;
}
.fr-popup .fr-input-line input + label,
.fr-popup .fr-input-line textarea + label {
  background: transparent !important;
}
.fr-btn .fa,
.fr-command .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}
.fr-btn .fa-rotate-left:before,
.fr-command .fa-rotate-left:before {
  content: "\f0e2";
}
.fr-btn .fa-rotate-right:before,
.fr-command .fa-rotate-right:before {
  content: "\f01e";
}
.fr-btn .fa-exchange:before,
.fr-command .fa-exchange:before {
  content: "\f0ec";
}
.fr-btn .fa-paragraph:before,
.fr-command .fa-paragraph:before {
  content: "\f1dd";
}
.fr-btn .fa-bold:before,
.fr-command .fa-bold:before {
  content: "\f032";
}
.fr-btn .fa-italic:before,
.fr-command .fa-italic:before {
  content: "\f033";
}
.fr-btn .fa-strikethrough:before,
.fr-command .fa-strikethrough:before {
  content: "\f0cc";
}
.fr-btn .fa-list-ol:before,
.fr-command .fa-list-ol:before {
  content: "\f0cb";
}
.fr-btn .fa-list-ul:before,
.fr-command .fa-list-ul:before {
  content: "\f0ca";
}
.fr-btn .fa-quote-left:before,
.fr-command .fa-quote-left:before {
  content: "\f10d";
}
.fr-btn .fa-photo:before,
.fr-command .fa-photo:before,
.fr-btn .fa-image:before,
.fr-command .fa-image:before,
.fr-btn .fa-picture-o:before,
.fr-command .fa-picture-o:before {
  content: "\f03e";
}
.fr-btn .fa-chain:before,
.fr-command .fa-chain:before,
.fr-btn .fa-link:before,
.fr-command .fa-link:before {
  content: "\f0c1";
}
.fr-btn.fr-active .fa-link:before,
.fr-command.fr-active .fa-link:before {
  content: "\f127";
}
.fr-btn .fa-code:before,
.fr-command .fa-code:before {
  content: "\f121";
}
.fr-btn .fa-align-justify:before,
.fr-command .fa-align-justify:before {
  content: "\f039";
}
.fr-btn .fa-align-left:before,
.fr-command .fa-align-left:before {
  content: "\f036";
}
.fr-btn .fa-align-justify:before,
.fr-command .fa-align-justify:before {
  content: "\f039";
}
.fr-btn .fa-align-right:before,
.fr-command .fa-align-right:before {
  content: "\f038";
}
.fr-btn .fa-trash:before,
.fr-command .fa-trash:before {
  content: "\f1f8";
}
.fr-btn .fa-arrow-left:before,
.fr-command .fa-arrow-left:before {
  content: "\f060";
}
.fr-btn .fa-info:before,
.fr-command .fa-info:before {
  content: "\f129";
}
.fr-btn .fa-arrows-alt:before,
.fr-command .fa-arrows-alt:before {
  content: "\f0b2";
}
.fr-btn .fa-magic:before,
.fr-command .fa-magic:before {
  content: "\f0d0";
}
.fr-btn .fa-edit:before,
.fr-command .fa-edit:before,
.fr-btn .fa-pencil-square-o:before,
.fr-command .fa-pencil-square-o:before {
  content: "\f044";
}
.fr-btn .fa-unlink:before,
.fr-command .fa-unlink:before,
.fr-btn .fa-chain-broken:before,
.fr-command .fa-chain-broken:before {
  content: "\f127";
}
.fr-btn .fa-external-link:before,
.fr-command .fa-external-link:before {
  content: "\f08e";
}
.fr-btn .fa-reply:before,
.fr-command .fa-reply:before {
  content: "\f15c";
}
.fr-btn .fa-upload:before,
.fr-command .fa-upload:before {
  content: "\f093";
}
.is-hidden {
  display: none !important;
}
.b-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}
.b-body.style_alternate,
.b-body.auth-oauth2_site_connect {
  background: #f1f2f3;
}
.b-canvas {
  flex-grow: 1;
  width: 100%;
}
.b-section {
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.b-section-h {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 3rem 0;
  max-width: 1200px;
}
.b-section-h::after {
  content: '';
  display: block;
  clear: both;
}
.b-section.width_full {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.b-section.width_full .b-section-h {
  max-width: none !important;
}
/* BASIC HEADER */
.b-header {
  position: relative;
  z-index: 4;
  line-height: 60px;
  height: 60px;
  background-color: #277cea;
  color: #fff;
  min-width: 1024px;
}
.b-header a {
  color: inherit;
}
.b-header-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  margin: 0 auto;
}
.b-header .b-menu {
  display: flex;
}
.b-header .b-menu-item {
  flex-shrink: 0;
  position: relative;
}
.b-header .b-menu-item a {
  display: block;
  font-size: 15px;
  padding: 0 20px;
  transition: background-color 0.1s;
}
.b-header .b-menu-item:hover > a {
  background: #1f63bb;
}
.b-header .b-menu-item.active {
  overflow: hidden;
}
.b-header .b-menu-item.active::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 55px;
  left: 50%;
  margin: 0 0 0 -12px;
  width: 25px;
  height: 25px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.b-header .b-menu-item.has_dropdown > a::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin-top: 28px;
  margin-left: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 5px 5px 0 5px;
}
.b-header .b-menu-item.has_dropdown:hover .b-menu-list {
  visibility: visible;
  opacity: 1;
}
.b-header .b-menu-item-icon {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  margin-right: 8px;
}
.b-header .b-menu-item-icon img {
  display: block;
  max-width: 100%;
  border-radius: 50%;
}
.b-header .b-menu-list {
  position: absolute;
  overflow: hidden;
  visibility: hidden;
  min-width: 100%;
  opacity: 0;
  background: #1f63bb;
}
.b-header .b-menu-list a {
  display: block;
  white-space: nowrap;
  line-height: 2.5rem;
  padding: 0 20px;
}
.b-header .b-menu-list a:hover {
  background: #277cea;
}
.b-header .b-menu.pos_left {
  margin-right: auto;
}
.b-header .b-menu.pos_right {
  margin-left: auto;
}
.b-header .b-menu.pos_right .b-menu-item:last-child .b-menu-list {
  right: 0;
}
.b-subheader {
  width: 100%;
  padding: 0 1.5rem;
}
.b-subheader-h {
  margin: 0 auto;
  max-width: 1200px;
}
.b-titlebar {
  position: relative;
  z-index: 2;
}
.b-body.stats-get .b-titlebar {
  padding-top: 3rem;
}
.b-titlebar-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
}
.b-body.user-admin .b-titlebar-h:nth-child(2),
.b-body.user-get .b-titlebar-h,
.b-body.user-votes .b-titlebar-h,
.b-body.user-searches .b-titlebar-h,
.b-body.user-tickets .b-titlebar-h,
.b-body.user-billing .b-titlebar-h,
.b-body.user-integrations .b-titlebar-h,
.b-body.user-notifications .b-titlebar-h,
.b-body.widget-create .b-titlebar-h,
.b-body.tickets .b-titlebar-h,
.b-body.search-results .b-titlebar-h {
  padding-bottom: 0;
}
.b-titlebar-h > .b-textfilter {
  margin-bottom: -12px;
  margin-right: auto;
}
.b-titlebar-controls {
  position: relative;
  flex-shrink: 0;
}
.b-body.user-list .b-titlebar-controls {
  flex-grow: 1;
  margin-left: 2rem;
}
.b-body.tickets .b-titlebar-controls .g-btn {
  width: 288px;
}
.b-titlebar h1 {
  flex-shrink: 0;
  line-height: 2.5rem;
  margin: 0 2rem 0 0;
}
.b-titlebar h1 span {
  color: #9096a3;
}
.b-titlebar p {
  clear: both;
  margin: 0;
  line-height: 2.5rem;
}
.b-titlebar-fixed-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: inherit;
  margin: 0 auto;
}
.b-body.stats-get .b-titlebar-fixed-h {
  height: 50px;
}
.b-titlebar.is-fixed {
  box-shadow: none;
  background: none;
  padding-bottom: 50px;
}
.b-body.search-results .b-titlebar.is-fixed,
.b-body.tickets .b-titlebar.is-fixed,
.b-body.user-votes .b-titlebar.is-fixed,
.b-body.user-searches .b-titlebar.is-fixed,
.b-body.user-tickets .b-titlebar.is-fixed,
.b-body.user-billing .b-titlebar.is-fixed,
.b-body.user-integrations .b-titlebar.is-fixed,
.b-body.user-notifications .b-titlebar.is-fixed,
.b-body.user-get .b-titlebar.is-fixed {
  padding-bottom: 60px;
}
.b-titlebar.is-fixed .b-titlebar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 50px;
  padding-top: 0;
  background: #fff;
  box-shadow: 0 -1px 0 0 #e1e4e6 inset;
}
.b-titlebar.is-fixed .b-titlebar-fixed .g-btn,
.b-titlebar.is-fixed .b-titlebar-fixed .b-titlebar-control-message {
  font-size: 14px;
}
.b-titlebar .b-datepicker {
  flex-shrink: 0;
  margin: 0;
}
.b-titlebar .b-userbox {
  display: flex;
  align-items: center;
}
.b-titlebar .b-userbox-avatar {
  flex-shrink: 0;
}
.b-titlebar .b-userbox-fullname {
  margin-right: 1rem;
}
.b-sidebar {
  float: right;
  width: 24%;
}
.b-sidebar > div {
  margin-bottom: 3rem;
}
.b-sidebar > div:last-child {
  margin-bottom: 0 !important;
}
.b-sidebar .b-html {
  padding: 2rem;
}
.b-sidebar .b-html.type_banner {
  background: #f1f2f3;
}
.b-sidebar .b-html.type_banner ul {
  padding-left: 1rem;
}
.b-sidebar .b-html.type_banner > *:last-child {
  margin-bottom: 0;
}
.b-sidebar + .b-content {
  float: left;
  width: 71%;
}
/* BASIC FOOTER */
.b-footer {
  overflow: hidden;
  font-size: 0.85rem;
  padding: 1.5rem;
  line-height: 2rem;
  background-color: #fff;
}
.b-footer-h {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}
.b-footer-h > * {
  margin: 0.5rem;
}
.b-footer-icon {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  margin-bottom: 0;
}
/* b-actionbox */
.b-actionbox {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: #f1f2f3;
}
.b-actionbox h3 {
  display: inline-block;
  margin: 10px;
  vertical-align: middle;
}
.b-actionbox .g-btn {
  margin: 10px;
  vertical-align: middle;
}
.b-actionbox .g-preloader {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
.b-article img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.b-article a[target="_blank"]:not([href*="prntscr"]):after {
  content: '\f08e';
  font-family: fontawesome;
  font-size: 80%;
  margin-left: 0.3rem;
}
.g-form-field > .b-article {
  margin-bottom: 1.5rem;
}
.b-article blockquote {
  padding-left: 2rem;
  color: #9096a3;
}
.b-article blockquote:before {
  font-family: 'fontawesome';
  content: '\f10e';
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
  font-style: normal;
  word-wrap: normal;
  width: 2rem;
  margin-left: -2rem;
  opacity: 0.5;
}
.b-article blockquote + blockquote::before {
  display: none;
}
.b-billing-fields {
  display: flex;
  margin: 0 0 1.5rem;
}
.b-billing-fields::after {
  content: '';
  display: table;
  clear: both;
}
.b-billing-field {
  float: left;
  padding: 0 20px;
  width: 50%;
}
.b-billing-field:first-child {
  padding-left: 0;
}
.b-billing-field:last-child {
  padding-right: 0;
}
.b-billing-table {
  border-top: 1px solid #e1e4e6;
}
.b-billing-table th:last-child {
  text-align: right;
}
.b-billing-table tbody tr:nth-child(even) td,
.b-billing-table tbody tr:nth-child(even) th {
  background: #f1f2f3;
}
.b-billing-table tfoot td,
.b-billing-table tfoot th {
  background: #e1e4e6;
}
.b-billing-table tfoot th:first-child {
  text-align: left;
}
.b-billing-cards {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 1rem 0 1.5rem;
  border-radius: 10px;
  border: 1px solid #d5d8db;
}
.b-billing-cards-h {
  display: flex;
  width: 100%;
}
.b-billing-cards.type_yearly .for_monthly {
  display: none;
}
.b-billing-cards:not(.type_yearly) .for_yearly {
  display: none;
}
.b-billing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  width: 33.33%;
  border-left: 1px solid #d5d8db;
}
.b-billing-card:first-child {
  border-left: 0;
}
.b-billing-card-title {
  padding: 15px 0;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}
.b-billing-card-title .g-badge {
  display: inline-block;
  vertical-align: top;
  height: 36px;
}
.b-billing-card-content {
  padding: 20px 0;
  flex-grow: 1;
}
.b-billing-card .g-btn {
  display: block;
  margin: 0 20px 20px;
}
.b-billing-card-price {
  padding: 20px 0;
  border: solid #d5d8db;
  border-width: 1px 0;
}
.b-billing-card-price:first-line {
  line-height: 1;
  font-size: 24px;
  font-weight: 300;
}
.b-billing-card-price span {
  font-size: 48px;
  font-weight: 400;
}
.b-billing-card-price.type_basic {
  background: #f1f2f3;
}
.b-billing-card-price.type_pro {
  background: #edf5ff;
}
.b-billing-card-price.type_vip {
  background: #9ec3f3;
}
.b-billing-moneyback {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 1.5rem;
  padding: 0 0 0 120px;
  min-height: 100px;
  background: url(../img/money-back-guarantee-icon.png) 0 50% no-repeat;
  background-size: 100px 100px;
  justify-content: center;
}
.b-box {
  margin: 0 auto 2rem;
  padding: 2rem;
  border: 1px solid #e1e4e6;
}
.b-box .g-btn {
  margin-right: 1rem;
}
.b-box-title {
  font-size: 1.4rem;
  padding: 1rem 0 0;
  margin: 0;
}
.b-box-icon {
  font-size: 3rem;
  line-height: 3rem;
  opacity: 0.5;
}
.b-box-icon .icon_wordpress::before,
.b-box-icon .icon_link::before {
  font-style: normal;
  font-family: FontAwesome;
}
.b-box-icon .icon_wordpress::before {
  content: "\f19a";
  font-family: 'fontawesome-brands';
}
.b-box-icon .icon_link::before {
  content: "\f0c1";
}
.b-box-icon .icon_shopify {
  display: block;
  margin: auto;
  width: 48px;
  height: 48px;
  background: url(../img/icons/shopify_mask_retina.png) 50% 50% no-repeat;
  background-size: cover;
  background-color: currentColor;
}
.b-box.type_link {
  display: block;
  position: relative;
  text-align: center;
  color: inherit;
}
.b-box.type_link:hover {
  z-index: 1;
  border: 3px solid #277cea;
  color: #277cea;
}
.b-box.for_sitecreate .js-back-button {
  float: right;
}
.b-box.for_sitecreate .js-back-button::before {
  float: left;
  padding-right: 5px;
  font-family: FontAwesome;
  content: "\f0e2";
}
.b-box > p:last-child {
  margin-bottom: 0;
}
.b-boxlist {
  display: flex;
  flex-wrap: wrap;
}
.b-boxlist.for_sitecreate .b-boxlist-item {
  width: 50%;
}
.b-boxlist-item {
  position: relative;
  width: 25%;
  margin: 0 0 -1px -1px;
  box-shadow: 0 0 0 1px #e1e4e6 inset;
}
.b-boxlist-item.state_hidden:before {
  content: 'HIDDEN';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.7rem;
  padding: 0 0.6rem;
  color: #fff;
  background-color: #9096a3;
}
.b-boxlist-item.hidden {
  display: none;
}
.b-boxlist-item .b-box {
  margin: 0;
  height: 100%;
  border: 3px solid transparent;
}
#structure .state_hidden::after {
  content: "HIDDEN";
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  font-size: 12px;
  line-height: 10px;
  padding: 3px 5px;
  color: #fff;
  background-color: #9096a3;
  border-radius: 4px;
}
/* Convertful Options Framework */
@keyframes cof-spin {
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.cof-container {
  position: relative;
}
.cof-section-header {
  display: none;
}
.cof-section-content {
  padding: 20px;
  background-color: #fff;
}
.b-builder {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  max-width: 100%;
}
.b-builder.noinit {
  pointer-events: none;
}
.b-builder.noinit * {
  transition: none !important;
}
.b-builder.noinit::before {
  content: "";
  position: absolute;
  z-index: 600000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}
.b-builder-tab {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  background: #fff;
}
.b-builder-tab[data-id="design"] {
  padding-top: 42px;
}
.b-builder-tab-screens {
  display: flex;
  position: absolute;
  z-index: 5;
  top: 60px;
  left: 0;
  width: 100%;
  font-size: 15px;
  line-height: 34px;
  padding: 2px;
  background: #fff;
}
.b-builder-tab-screens-h {
  display: flex;
}
.b-builder-tab-screen {
  position: relative;
  overflow: hidden;
  padding: 0 34px 0 16px;
  margin: 2px;
  min-width: 240px;
  background: #e1e4e6;
  cursor: pointer;
}
.b-builder-tab-screen:hover {
  background: #d5d8db;
}
.b-builder-tab-screen:hover .b-builder-tab-screen-remove {
  opacity: 0.5;
}
.b-builder-tab-screen.is-active {
  background: #9096a3;
  color: #fff;
  cursor: default;
}
.b-builder-tab-screen.is-active .b-builder-tab-screen-remove {
  opacity: 0.5;
}
.b-builder-tab-screen-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0;
}
.b-builder-tab-screen-remove::before {
  vertical-align: top;
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 14px;
}
.b-builder-tab-screen-remove:hover {
  opacity: 1 !important;
}
.b-builder-tab-screen.type_offer .b-builder-tab-screen-remove {
  display: none;
}
.b-builder-tab-newscreen {
  position: relative;
  margin: 2px;
  width: 34px;
  text-align: center;
}
.b-builder-tab-newscreen-list {
  display: none;
  position: absolute;
  top: 100%;
  white-space: nowrap;
  min-width: 180px;
  background: #e1e4e6;
  text-align: left;
}
.b-builder-tab-newscreen-item {
  padding: 0 10px;
  cursor: pointer;
}
.b-builder-tab-newscreen-item:hover {
  background: #d5d8db;
}
.b-builder-tab-newscreen-item.is-locked {
  cursor: not-allowed;
  background-color: inherit;
}
.b-builder-tab-newscreen::before {
  vertical-align: top;
  content: "\f067";
  font-family: FontAwesome;
}
.b-builder-tab-newscreen:hover {
  background: #e1e4e6;
}
.b-builder-tab-newscreen:hover .b-builder-tab-newscreen-list {
  display: block;
}
.b-builder-tab:not(.for_design) .b-builder-fieldset {
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
}
.b-builder-toolbar {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 60px;
  background: #314152;
  color: #fff;
}
.b-builder-toolbar-h {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  min-width: 0;
}
.b-builder-toolbar-title {
  position: relative;
  overflow: hidden;
}
.b-builder-toolbar-title .g-preloader {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  color: #9096a3;
}
.b-builder-toolbar-title.highlight-success {
  opacity: 1;
}
.b-builder-toolbar-title.highlight-success .g-preloader {
  display: block;
}
.b-builder-toolbar-title.highlight-success .b-builder-toolbar-title-input span {
  display: none;
}
.b-builder-toolbar-title.is-active .b-builder-toolbar-title-input input[type="text"] {
  text-overflow: clip;
}
.b-builder-toolbar-title-text {
  position: absolute;
  visibility: hidden;
  padding: 0 40px 0 10px;
  border: 1px solid;
  font-size: 20px;
  white-space: nowrap;
}
.b-builder-toolbar-title-input {
  display: flex;
  padding: 10px;
}
.b-builder-toolbar-title-input input[type="text"] {
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  padding: 0 40px 0 10px;
  max-width: 800px;
  text-overflow: ellipsis;
  transition: border-color 0.2s;
  background-color: transparent;
  border-color: transparent;
}
.b-builder-toolbar-title-input input[type="text"] + span {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  line-height: 40px;
  margin-left: -40px;
  text-align: center;
  color: #9096a3;
  transition: color 0.3s;
}
.b-builder-toolbar-title-input input[type="text"] + span::after {
  vertical-align: top;
  font-family: FontAwesome;
  content: "\f040";
}
.b-builder-toolbar-title-input input[type="text"]:hover {
  border-color: #9096a3;
}
.b-builder-toolbar-title-input input[type="text"]:focus {
  background-color: #fff;
  border-color: #fff;
  color: #314152;
}
.b-builder-toolbar-title-error {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ea524a;
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-200px);
  transition: opacity 3s ease 2s, transform 3s ease 2s;
}
.b-builder-toolbar-title-error-h {
  text-align: center;
}
.highlight-error > .b-builder-toolbar-title-error {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.b-builder-toolbar-tabs {
  display: flex;
  line-height: 60px;
}
.b-builder-toolbar-tabs-item {
  white-space: nowrap;
  position: relative;
  font-size: 15px;
  padding: 0 20px;
  cursor: pointer;
}
.b-builder-toolbar-tabs-item.is-active {
  cursor: default;
  background-color: #fff;
  color: #3b4e62;
}
.b-builder-toolbar-tabs-item:not(.is-active):hover {
  background-color: #3b4e62;
}
.b-builder-toolbar-tabs-item-warning {
  display: none;
  position: relative;
  vertical-align: top;
  line-height: 30px;
  margin-top: 15px;
  padding: 0 5px;
  cursor: help;
}
.b-builder-toolbar-tabs-item-warning::after {
  content: "\f06a";
  vertical-align: top;
  font-family: FontAwesome;
  color: #ea524a;
}
.b-builder-toolbar-tabs-item.is-warning .b-builder-toolbar-tabs-item-warning {
  display: inline-block;
}
.b-builder-toolbar .b-stateswitcher.action_activate {
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.b-builder-toolbar-controls {
  display: flex;
  margin-left: auto;
}
.b-builder-toolbar-controls-group {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.b-builder-toolbar-control {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 15px;
  line-height: 40px;
  cursor: pointer;
  transition: none;
}
.b-builder-toolbar-control .g-preloader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.b-builder-toolbar-control.action_exit {
  margin-left: 10px;
  min-width: 100px;
}
.b-builder-toolbar-control.action_save {
  margin: 0 10px;
  min-width: 180px;
}
.b-builder-toolbar-control.action_save .b-builder-toolbar-control-message {
  display: none;
}
.b-builder-toolbar-control.action_save.action_success .b-builder-toolbar-control-message {
  display: block;
}
.b-builder-toolbar-control.state_disabled {
  opacity: .2;
  cursor: default;
  pointer-events: none;
}
.b-builder-toolbar-control.state_loading {
  cursor: default;
  pointer-events: none;
}
.b-builder-toolbar-control.state_loading span {
  display: none;
}
.b-builder-toolbar-control.state_loading .g-preloader {
  display: block;
}
.b-builder-toolbar-control.state_error {
  background: transparent !important;
}
.b-builder-toolbar-control.state_error span {
  display: none;
}
.b-builder-toolbar-control.state_error .b-builder-toolbar-control-message {
  display: inline;
  color: #ea524a;
}
.b-builder-toolbar-control.state_success {
  background: transparent !important;
}
.b-builder-toolbar-control.state_success span {
  display: none;
}
.b-builder-toolbar-control.state_success .b-builder-toolbar-control-message {
  display: inline;
  color: #53b753;
}
.b-builder-preview {
  display: flex;
  flex-grow: 1;
  position: relative;
  margin-left: 60px;
  width: auto;
  transition: margin .3s linear;
  box-sizing: border-box;
  max-width: 100%;
  overflow: auto;
  flex-direction: column;
}
.b-builder-preview [class*="conv_id"] {
  position: relative;
}
.b-builder-preview [class*="conv_id"]:hover {
  z-index: 1;
}
.b-builder-preview [class*="conv_id"]:hover > .conv-text-h {
  position: relative;
  z-index: 1;
}
.b-builder-preview > .b-builder-highlight .b-builder-highlight-helpers {
  visibility: hidden !important;
}
.b-builder-preview .show_controls {
  z-index: 5;
}
.b-builder-preview .show_controls > .b-builder-highlight-helpers {
  visibility: visible;
  z-index: 600000;
  opacity: 1;
  background: #277cea;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2 > .conv-form-field:nth-child(2),
.b-builder-preview .show_controls.conv-form.conv_layout_hor2 > .conv-form-field:nth-child(3) {
  padding-top: 0 !important;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_s > .conv-form-field:nth-child(odd) {
  padding-left: 0.25em;
  padding-right: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_s > .conv-form-field:nth-child(even) {
  padding-right: 0.25em;
  padding-left: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_m > .conv-form-field:nth-child(odd) {
  padding-left: 0.5em;
  padding-right: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_m > .conv-form-field:nth-child(even) {
  padding-right: 0.5em;
  padding-left: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_l > .conv-form-field:nth-child(odd) {
  padding-left: 0.75em;
  padding-right: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_l > .conv-form-field:nth-child(even) {
  padding-right: 0.75em;
  padding-left: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_x > .conv-form-field:nth-child(odd) {
  padding-left: 1em;
  padding-right: 0;
}
.b-builder-preview .show_controls.conv-form.conv_layout_hor2.conv_fields_interval_x > .conv-form-field:nth-child(even) {
  padding-right: 1em;
  padding-left: 0;
}
.b-builder-preview .conv-col > .b-builder-highlight-helpers,
.b-builder-preview .conv-row > .b-builder-highlight-helpers,
.b-builder-preview .conv-widget > .b-builder-highlight-helpers {
  pointer-events: none;
  background: #ff9800;
}
.b-builder-preview .conv-col > .b-builder-highlight-helpers .b-builder-highlight-helpers-button,
.b-builder-preview .conv-row > .b-builder-highlight-helpers .b-builder-highlight-helpers-button,
.b-builder-preview .conv-widget > .b-builder-highlight-helpers .b-builder-highlight-helpers-button {
  display: none;
}
.b-builder-preview .conv-share > .b-builder-highlight-helpers .b-builder-highlight-helpers-button.type_duplicate,
.b-builder-preview .conv-follow > .b-builder-highlight-helpers .b-builder-highlight-helpers-button.type_duplicate,
.b-builder-preview .conv-countdown > .b-builder-highlight-helpers .b-builder-highlight-helpers-button.type_duplicate,
.b-builder-preview .conv-socsign > .b-builder-highlight-helpers .b-builder-highlight-helpers-button.type_duplicate,
.b-builder-preview .conv-form > .b-builder-highlight-helpers .b-builder-highlight-helpers-button.type_duplicate {
  display: none;
}
.b-builder-preview .conv-form-field {
  pointer-events: none;
}
.b-builder-preview .conv-form-field select {
  transition: none;
}
.b-builder-preview .conv-follow-item > iframe,
.b-builder-preview .conv-follow-item > div {
  pointer-events: none;
}
.b-builder-preview .conv-share-item > div {
  pointer-events: none;
}
.b-builder-preview .conv-btn-text:empty::after,
.b-builder-preview .conv-text-h:empty::after {
  content: "Enter text here";
}
.b-builder-preview .conv-html-h:empty::after {
  content: "HTML code is empty or contains errors";
}
.b-builder-preview .g-preloader:only-child {
  margin: 0 auto;
  position: relative;
}
.b-builder-preview .g-preloader:not(:only-child) {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1 !important;
}
.b-builder-preview-h {
  display: flex;
  flex-grow: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
.b-builder-preview .b-builder-preview-h > .conv-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.b-builder-preview .b-builder-preview-h > .conv-container .conv-wrap {
  position: static !important;
  padding: 50px 0;
}
.b-builder-preview .b-builder-preview-h > .conv-container .conv-overlay {
  position: absolute;
  z-index: -1;
}
.b-builder-preview.is-elementdrag {
  z-index: 2;
}
.b-builder-preview.is-elementdrag .conv-widget {
  perspective: none !important;
}
.b-builder-preview.is-elementdrag .conv-col {
  outline: dashed 2px;
  outline-offset: -3px;
  overflow: hidden;
}
.b-builder-preview.is-elementdrag .conv-col-h {
  min-height: 5em;
  opacity: .5;
}
.b-builder-preview.is-elementdrag .conv-col-h::before,
.b-builder-preview.is-elementdrag .conv-col-h::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1000px;
}
.b-builder-preview.is-elementdrag .conv-col-h::before {
  bottom: 100%;
}
.b-builder-preview.is-elementdrag .conv-col-h::after {
  top: 100%;
}
.b-builder-preview.is-elementdrag .conv_type_welcome .conv-col-h {
  min-height: 2em;
}
.b-builder-preview.is-elementdrag .b-builder-highlight {
  display: none !important;
}
.b-builder-preview.is-elementdrag .b-builder-highlight-helpers {
  display: none;
}
.b-builder-preview.is-elementdrag .gu-mirror .b-builder-highlight-helpers {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #277cea;
}
.b-builder-preview.is-elementdrag .gu-mirror {
  z-index: 600000;
  margin-bottom: 0 !important;
}
.b-builder-preview.is-elementdrag .gu-mirror .conv-spacer-h {
  min-height: 30px;
  background: #fff;
}
.b-builder-preview.is-elementdrag .gu-transit .conv-spacer-h {
  background: #fff;
}
.b-builder-preview .conv-widget {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.b-builder-preview .conv-text,
.b-builder-preview .conv-btn {
  cursor: default;
}
.b-builder-preview .conv-video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.b-builder-preview .conv-spacer.conv-preloader {
  height: 30px;
}
.b-builder-preview.state_desktop {
  background: #d5d8db;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container {
  display: flex;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h {
  display: flex;
  flex-grow: 1;
  transition: padding .3s;
  position: relative;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_bar {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  align-self: baseline;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_bar.conv_place_bottom {
  align-self: flex-end;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_bar .conv-widget-h {
  position: relative;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_scrollbox {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_scrollbox .conv-widget-h {
  position: relative;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_inline {
  position: relative;
  margin: 50px auto;
  align-self: baseline;
  flex-grow: 1;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_welcome {
  width: 100%;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_welcome .conv-widget-h {
  min-height: 0;
  bottom: 0;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-wrap {
  overflow: visible;
  padding: 5em;
}
.b-builder-preview.state_desktop .b-builder-preview-h > .conv-container > .conv-container-h .conv-wrap-closer {
  position: absolute;
}
.b-builder-preview.state_desktop .conv-col-h:empty {
  min-height: 2em;
}
.b-builder-preview.state_mobile {
  background-color: #d5d8db;
}
.b-builder-preview.state_mobile .b-builder-preview-h > .conv-container {
  font-size: 14px;
  line-height: 26px;
}
.b-builder-preview.state_mobile .b-builder-preview-h > .conv-container > .conv-container-h {
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  height: 568px;
  width: 320px;
  background: #d5d8db;
  box-sizing: content-box;
  border-color: #3b4e62;
  border-style: solid;
  border-width: 77px 17px;
  border-radius: 44px;
}
.b-builder-preview.state_mobile .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget {
  position: absolute;
  z-index: 2;
}
.b-builder-preview.state_mobile .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_welcome {
  position: static;
}
.b-builder-preview.state_mobile .b-builder-preview-h > .conv-container > .conv-container-h .conv-widget.conv_type_welcome .conv-widget-h {
  min-height: 0;
  bottom: 0;
}
.b-builder-preview.state_mobile .b-builder-highlight:not(.type_element) {
  display: none !important;
}
.b-builder-preview.state_mobile .show_controls.conv-col > .b-builder-highlight-helpers,
.b-builder-preview.state_mobile .show_controls.conv-row > .b-builder-highlight-helpers,
.b-builder-preview.state_mobile .show_controls.conv-widget > .b-builder-highlight-helpers {
  display: none;
}
.b-builder-preview iframe,
.b-builder-preview input {
  pointer-events: none;
  /* disable text fields */
  transition: none !important;
  /* correct highlights */
}
.b-builder-panel {
  font-size: 15px;
  /* Fixed value for COF elements */
  position: absolute;
  top: 102px;
  bottom: 0;
  left: 0;
  width: 60px;
  padding-left: 60px;
  z-index: 2;
}
.b-builder-panel-h {
  position: relative;
  width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s linear, min-width 0.3s linear;
}
.b-builder-panel-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  z-index: 5;
  background: #f1f2f3;
}
.b-builder-panel-controls.for_state {
  top: auto;
  bottom: 0;
  height: 120px;
}
.b-builder-panel-control {
  display: block;
  position: relative;
  padding-top: 11px;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 9px;
  cursor: pointer;
}
.b-builder-panel-control::before {
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1;
  font-family: FontAwesome;
}
.b-builder-panel-control span {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 100%;
  line-height: 1;
}
.b-builder-panel-control:hover {
  background: #fff;
}
.b-builder-panel-control.is-active {
  background: #fff;
  color: #277cea;
}
.b-builder-panel-control.type_widget::before {
  content: "\f3f0";
}
.b-builder-panel-control.type_layout::before {
  content: "\f0db";
}
.b-builder-panel-control.type_elements::before {
  content: "\f067";
}
.b-builder-panel-control.type_custom_css::before {
  content: "\f121";
}
.b-builder-panel-control.type_import:before {
  content: "\f310";
}
.b-builder-panel-control.type_desktop,
.b-builder-panel-control.type_mobile {
  padding-top: 0;
}
.b-builder-panel-control.type_desktop.is-active,
.b-builder-panel-control.type_mobile.is-active {
  background: #d5d8db;
  color: #277cea;
}
.b-builder-panel-control.type_desktop::before,
.b-builder-panel-control.type_mobile::before {
  line-height: 60px;
}
.b-builder-panel-control.type_desktop::before {
  content: "\f108";
}
.b-builder-panel-control.type_mobile::before {
  content: "\f10b";
}
.b-builder-panel.is-active .b-builder-panel-h {
  transform: translateX(0);
}
.b-builder-panel-closer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  text-align: center;
  font: 20px/60px FontAwesome;
  background-color: transparent;
  transition: background-color 0.3s;
  cursor: pointer;
  opacity: .5;
}
.b-builder-panel-closer::before {
  vertical-align: top;
  content: "\f00d";
}
.b-builder-panel-closer:hover {
  opacity: 1;
}
.b-builder-panel-title {
  padding: 0 20px;
  line-height: 60px;
  font-size: 20px;
}
.b-builder-panel-title.with_border {
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.b-builder-highlight {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  overflow: visible !important;
}
.b-builder-highlight-h {
  border: 1px solid #ff9800;
  height: 100%;
}
.b-builder-highlight-h:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px dashed #fff;
}
.b-builder-highlight-helpers {
  padding: 0 !important;
  opacity: 0;
  position: absolute;
  color: #fff;
  z-index: 2;
  text-transform: capitalize;
  white-space: nowrap;
  line-height: 36px;
  font-size: 0;
  font-family: 'Roboto', sans-serif !important;
  visibility: hidden;
}
.active_fieldset.show_controls > .b-builder-highlight-helpers,
.active_fieldset > .show_controls > .b-builder-highlight-helpers {
  visibility: hidden;
  opacity: 0;
}
.active_fieldset.show_controls:hover > .b-builder-highlight-helpers,
.active_fieldset > .show_controls:hover > .b-builder-highlight-helpers {
  visibility: visible;
  opacity: 1;
}
.b-builder-highlight-helpers::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.b-builder-highlight-helpers-title {
  display: inline-block;
  vertical-align: top;
  padding: 0 12px;
  font-size: 13px;
  cursor: default;
}
.b-builder-highlight-helpers-button {
  display: inline-block;
  vertical-align: top;
  width: 36px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 15px;
  transition: none;
}
.b-builder-highlight-helpers-button.type_duplicate::before {
  vertical-align: top;
  content: "\f24d";
  font-family: FontAwesome;
}
.b-builder-highlight-helpers-button.type_remove::before {
  vertical-align: top;
  content: "\f2ed";
  font-family: FontAwesome;
}
.b-builder-highlight-helpers-button:hover {
  background: rgba(0, 0, 0, 0.3);
}
.b-builder-highlight-helpers.pos_top_left {
  top: 0;
  left: 0;
  margin-top: -36px;
  transform-origin: left bottom;
}
.b-builder-highlight-helpers.pos_top_left::before {
  top: 100%;
}
.b-builder-highlight-helpers.pos_bottom_left {
  left: 0;
  bottom: 0;
  margin-bottom: -36px;
  transform-origin: left top;
}
.b-builder-highlight-helpers.pos_bottom_left::before {
  bottom: 100%;
}
.b-builder-highlight-helpers.pos_top_right {
  top: 0;
  right: 0;
  margin-top: -36px;
  transform-origin: right bottom;
}
.b-builder-highlight-helpers.pos_top_right::before {
  top: 100%;
}
.b-builder-highlight-helpers.pos_bottom_right {
  right: 0;
  bottom: 0;
  margin-bottom: -36px;
  transform-origin: right top;
}
.b-builder-highlight-helpers.pos_bottom_right::before {
  bottom: 100%;
}
.b-builder-highlight-helpers.place_inside {
  margin: 0;
  transform-origin: left top;
}
.b-builder-highlight.type_element .b-builder-highlight-h {
  border-color: #277cea;
}
.b-builder-fieldset {
  display: none;
  padding: 20px;
  overflow-y: auto;
}
.b-builder-tab > .b-builder-fieldset > .b-builder-fieldset-h {
  margin: 20px 60px;
  max-width: 900px;
}
.b-builder-panel-h > .b-builder-fieldset {
  padding-top: 0;
  height: calc(100vh - 162px);
}
.b-builder-fieldset.is-active {
  display: block;
}
.b-builder-fieldset.for_html,
.b-builder-fieldset.for_custom_css {
  padding: 0;
}
.b-builder-fieldset.for_html .cof-form-row.type_editor,
.b-builder-fieldset.for_custom_css .cof-form-row.type_editor {
  margin: 0;
}
.b-builder-fieldset.for_html .cof-form-row.type_editor .cof-form-row-control,
.b-builder-fieldset.for_custom_css .cof-form-row.type_editor .cof-form-row-control {
  height: calc(100vh - 162px);
}
.b-builder-fieldset.for_html .cof-form-row-resize,
.b-builder-fieldset.for_custom_css .cof-form-row-resize {
  display: none;
}
.b-builder-fieldset.for_btn .fr-btn[data-cmd="formatOL"],
.b-builder-fieldset.for_btn .fr-btn[data-cmd="formatUL"],
.b-builder-fieldset.for_btn .fr-btn[data-cmd="link"] {
  display: none;
}
.b-builder-fieldset.for_import .cof-form-row-title,
.b-builder-fieldset.for_import .cof-form-row-resize {
  display: none;
}
.b-builder-fieldset.for_layout .cof-form-row.type_layout {
  overflow: hidden;
}
.b-builder-fieldset .cof-form-row.type_image[data-name="image"] .cof-button.type_remove {
  display: none;
}
.b-builder-fieldset .cof-form-row.type_hidden {
  display: none;
}
.b-builder .conv_hidden {
  display: none !important;
}
.b-builder .cof-color-clear {
  left: auto;
  right: -2rem;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_tc {
  justify-content: center;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_tr {
  justify-content: flex-end;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_ml {
  align-items: center;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_mr {
  justify-content: flex-end;
  align-items: center;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_bl .conv-widget {
  align-self: flex-end;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_bc {
  justify-content: center;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_bc .conv-widget {
  align-self: flex-end;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_br {
  justify-content: flex-end;
}
.b-builder[data-type="scrollbox"] .conv-container-h.conv_place_br .conv-widget {
  align-self: flex-end;
}
/* b-controls */
.b-controls {
  position: absolute;
  top: 3.3rem;
  right: 0;
  font-size: 0;
}
.b-controls + h1 {
  padding-top: 0;
}
/* Datepicker */
.b-datepicker {
  display: flex;
}
.b-datepicker-presets {
  display: flex;
  margin-left: 1rem;
}
.b-datepicker-preset {
  line-height: 42px;
  height: 42px;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px #e1e4e6 solid;
  cursor: pointer;
}
.b-datepicker-preset:first-child {
  border-right-width: 0;
}
.b-datepicker-preset.active {
  background-color: #277cea;
  border-color: transparent;
  color: #fff;
  cursor: default;
}
.b-datepicker-calendar,
.b-datepicker-timezone {
  flex-shrink: 0;
}
.b-datepicker-calendar-label,
.b-datepicker-timezone-label {
  line-height: 42px;
  height: 42px;
  padding: 0 1rem;
  cursor: pointer;
  background-color: #fff;
  border: 1px #e1e4e6 solid;
  transition: background 0.3s, border 0.3s;
}
.b-datepicker-calendar-label::before,
.b-datepicker-timezone-label::before {
  content: '\f073';
  font-family: fontawesome;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.6rem;
}
.b-datepicker-calendar {
  position: relative;
  line-height: 2.5rem;
}
.b-datepicker-calendar-label {
  min-width: 10rem;
}
.b-datepicker-calendar-time {
  display: flex;
  clear: left;
  padding: 0.5rem 0;
  justify-content: center;
  align-items: center;
}
.b-datepicker-calendar-time > span {
  padding: 0 0.5em;
  line-height: 42px;
}
.b-datepicker-calendar-time > label {
  display: block;
}
.b-datepicker-calendar-time > label input[type="text"] {
  text-align: center;
  width: 3rem;
}
.b-datepicker-calendar-time > .cof-select {
  margin: 0 0.5em;
}
.b-datepicker-calendar-picker {
  display: none;
  position: absolute;
  z-index: 5;
  left: 50%;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.b-datepicker-calendar-picker-prev,
.b-datepicker-calendar-picker-next {
  position: absolute;
  display: block;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  cursor: pointer;
}
.b-datepicker-calendar-picker-prev::before,
.b-datepicker-calendar-picker-next::before {
  font-family: fontawesome;
}
.b-datepicker-calendar-picker-prev:hover,
.b-datepicker-calendar-picker-next:hover {
  background-color: #f1f2f3;
}
.b-datepicker-calendar-picker-prev {
  left: 0;
}
.b-datepicker-calendar-picker-prev::before {
  content: '\f177';
}
.b-datepicker-calendar-picker-next {
  right: 0;
}
.b-datepicker-calendar-picker-next::before {
  content: '\f178';
}
.b-datepicker.mode_day .b-datepicker-calendar-picker,
.b-datepicker.mode_datetime .b-datepicker-calendar-picker {
  width: 17.5rem;
  margin-left: -8.75rem;
}
.b-datepicker.mode_range .b-datepicker-calendar-picker {
  width: 35rem;
  margin-left: -17.5rem;
}
.b-datepicker-calendar-picker.place_down,
.b-datepicker-calendar-picker.place_downleft,
.b-datepicker-calendar-picker.place_downright {
  top: 100%;
}
.b-datepicker-calendar-picker.place_up,
.b-datepicker-calendar-picker.place_upleft,
.b-datepicker-calendar-picker.place_upright {
  bottom: 100%;
}
.b-datepicker-calendar-picker.place_downleft,
.b-datepicker-calendar-picker.place_upleft {
  margin: 0;
  left: 0;
}
.b-datepicker-calendar-picker.place_downright,
.b-datepicker-calendar-picker.place_upright {
  margin: 0;
  left: auto;
  right: 0;
}
.b-datepicker-calendar-month {
  float: left;
  width: 17.5rem;
}
.b-datepicker-calendar-month:nth-child(3) {
  box-shadow: 1px 0 0 #e1e4e6 inset;
}
.b-datepicker-calendar-month-weekdays,
.b-datepicker-calendar-month-days {
  font-size: 0;
}
.b-datepicker-calendar-month-weekdays i,
.b-datepicker-calendar-month-days i {
  display: inline-block;
  vertical-align: top;
  width: 2.5rem;
  font-style: normal;
}
.b-datepicker-calendar-month-weekdays i {
  font-size: 0.7rem;
  color: #9096a3;
}
.b-datepicker-calendar-month-days i {
  font-size: 0.9rem;
  opacity: 0.3;
  cursor: default;
}
.b-datepicker-calendar-month-days i:hover {
  background-color: #f1f2f3;
}
.b-datepicker-calendar-month-days i.month_start,
.b-datepicker-calendar-month-days i.month_start ~ i {
  opacity: 1;
  cursor: pointer;
}
.b-datepicker-calendar-month-days i.month_start ~ i.month_start,
.b-datepicker-calendar-month-days i.month_start ~ i.month_start ~ i {
  opacity: 0.3;
  cursor: default;
}
.b-datepicker-calendar-month-days i.range_start {
  background-color: #277cea;
  color: #fff;
}
.b-datepicker-calendar-month-days i.range_start ~ i,
.b-datepicker-calendar-month-days i.range_continue,
.b-datepicker-calendar-month-days i.range_continue ~ i {
  background-color: #9ec3f3;
}
.b-datepicker-calendar-month-days i.range_end ~ i {
  background-color: transparent;
}
.b-datepicker-calendar-month-days i.range_end ~ i:hover {
  background-color: #f1f2f3;
}
.b-datepicker-calendar-month-days i.range_end {
  background-color: #277cea !important;
  color: #fff !important;
}
.b-datepicker-calendar-month-days i.today {
  font-weight: bold;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) inset;
}
.b-datepicker-timezone {
  float: right;
}
.b-datepicker-timezone-label {
  cursor: default;
}
/* Field Type: agreement */
.b-dpasign:not(.step_start) .b-dpasign-step[data-id="start"],
.b-dpasign:not(.step_fields) .b-dpasign-step[data-id="fields"],
.b-dpasign:not(.step_sign) .b-dpasign-step[data-id="sign"],
.b-dpasign:not(.step_success) .b-dpasign-step[data-id="success"] {
  display: none;
}
.b-dpasign iframe {
  width: 100%;
  height: 600px;
}
.b-dpasign-link:before {
  display: inline-block;
  font-family: FontAwesome;
  margin-right: 10px;
  vertical-align: top;
}
.b-dpasign-link.type_pdf:before {
  content: '\f1c1';
}
.b-dpasign-link.type_page:before {
  content: '\f15c';
}
/* b-faq */
.b-faq-section {
  border-bottom: 1px solid #e1e4e6;
}
.b-faq-section:first-child {
  border-top: 1px solid #e1e4e6;
}
.b-faq-section-header {
  display: block;
  position: relative;
  padding: 13px 20px 13px 38px;
  color: inherit;
}
.b-faq-section-title {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit;
}
.b-faq-section-number {
  position: absolute;
  top: 13px;
  left: 0;
  font-size: 14px;
  line-height: 26px;
  font-weight: bold;
  width: 26px;
  text-align: center;
  border-radius: 50%;
  background-color: #f1f2f3;
  color: #9096a3;
  transition: background-color 0.3s;
}
.b-faq-section.active .b-faq-section-header {
  color: #277cea;
}
.b-faq-section.active .b-faq-section-number {
  background-color: #277cea;
  color: #fff;
}
.b-faq-section-content p:empty {
  display: none;
}
.b-faq-section-content-h {
  padding: 13px 0;
}
/* b-feedback */
.b-feedback {
  padding: 30px 35px;
  margin: 50px 0;
  background-color: #f1f2f3;
}
.b-feedback h3 {
  margin-bottom: 15px;
}
.b-feedback-message {
  font-size: 18px;
  color: #53b753;
}
.b-feedback-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  margin-right: 10px;
}
.b-feedback .g-form-row {
  margin: 0 0 10px;
}
.b-feedback .g-form-row.for_submit {
  margin-bottom: 0;
}
.b-feedback textarea {
  border-color: #e1e4e6;
  resize: vertical;
  min-height: 95px;
}
.b-feedback-comments {
  margin-top: 30px;
}
.b-feedback-comment {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e1e4e6;
}
.b-feedback-comment:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.b-feedback-comment-footer {
  position: relative;
  clear: both;
  overflow: hidden;
}
.b-feedback-comment-link {
  display: inline-block;
  vertical-align: top;
  margin: 4px 0 0 10px;
}
.b-feedback-comment-meta {
  float: right;
  text-align: right;
  font-size: 14px;
  line-height: 18px;
}
.b-feedback-comment-date {
  color: #9096a3;
}
.b-feedback .b-userbox-badges {
  position: absolute;
  left: 53px;
  top: 23px;
}
.b-filter {
  display: flex;
  width: 100%;
  box-shadow: 0 -1px 0 0 #e1e4e6 inset;
}
.b-filter-item {
  flex-shrink: 0;
  position: relative;
  padding: 0 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  color: inherit;
}
.b-filter-item::before {
  vertical-align: top;
  margin-right: 5px;
  font-family: 'FontAwesome';
  opacity: 0.5;
}
.b-filter-item::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #277cea;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.b-filter-item img {
  display: block;
  margin: 16px auto 0;
  height: 54px;
}
.is-fixed .b-filter-item img {
  display: none;
}
.b-filter-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.b-filter-item.is-active {
  color: #277cea;
}
.b-filter-item.is-active::before,
.b-filter-item.is-active::after {
  opacity: 1;
  transform: translateY(0);
}
.b-filter-item.type_bug::before {
  content: "\f188";
}
.b-filter-item.type_feature::before {
  content: "\f12e";
}
.b-filter-item.type_question::before {
  content: "\f059";
}
.b-filter-item.type_article::before {
  content: "\f15b";
}
.b-filter-item .type_notfound::before {
  content: "\f05c";
}
.b-filter.width_full .b-filter-item {
  flex-grow: 1;
}
/* b-index */
.b-index {
  margin-top: 42px;
  line-height: 1.5;
  padding: 2rem;
  background-color: #f1f2f3;
}
.b-index ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.b-index ul ul {
  font-size: 0.9rem;
  margin: 0.6rem 0;
  padding-left: 1rem;
}
.b-index ul ul ul {
  font-size: 0.8rem;
  margin: 0.6rem 0;
}
.b-index li {
  margin-bottom: 0.6rem;
}
/* b-links */
.b-links {
  line-height: 1.5;
  padding: 2rem;
  background-color: #f1f2f3;
}
.b-links-item {
  display: block;
  margin-bottom: 0.6rem;
}
/* b-listing */
.b-listing-list {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -2rem 0;
}
.b-listing-item {
  flex: 0 0 33.3333%;
  padding: 2rem;
}
.b-listing-item-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: normal;
}
.b-listing-item-text {
  transition: color 0.3s;
  color: #9096a3;
}
.b-listing-item:hover .b-listing-item-text {
  color: inherit;
}
.b-listing-item.state_hidden {
  position: relative;
}
.b-listing-item.state_hidden:before {
  content: 'HIDDEN';
  position: absolute;
  font-size: 12px;
  line-height: 10px;
  padding: 3px 5px;
  color: #fff;
  background-color: #9096a3;
  border-radius: 4px;
  top: 0;
  right: 0;
}
.b-logo {
  flex-shrink: 0;
}
.b-logo img {
  display: block;
  height: 20px;
}
.b-logo.type_blue {
  text-align: center;
  margin: 0;
}
.b-logo.type_blue img {
  display: inline-block;
  vertical-align: top;
  height: 36px;
}
/* Message */
.b-message {
  position: relative;
  z-index: 100;
}
.b-message-h {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.b-message-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  line-height: 44px;
  cursor: pointer;
  padding: 0 20px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.b-message-close:hover {
  opacity: 1;
}
.b-message-text {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 30px;
}
.b-message-text p {
  margin: 0;
}
.b-message.type_normal {
  background-color: #e1e4e6;
  color: #3b4e62;
}
.b-message.type_important {
  background-color: #ff9800;
  color: #fff;
}
.b-payment {
  margin-right: 10px;
  font-family: fontawesome-brands;
  font-style: normal;
  font-size: 20px;
}
.b-payment.type_paypal::before {
  content: "\f1ed";
}
/* Popup */
.b-popup-overlay,
.b-popup-wrap {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
}
.b-popup-overlay.pos_absolute,
.b-popup-wrap.pos_absolute {
  position: absolute;
}
.b-popup-overlay.pos_fixed,
.b-popup-wrap.pos_fixed {
  position: fixed;
}
.b-popup-overlay {
  z-index: 1001;
  transition: opacity 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.b-popup-overlay.active {
  opacity: 1;
}
.b-popup-wrap {
  cursor: pointer;
  z-index: 1002;
}
.b-popup-wrap.pos_fixed {
  overflow-x: hidden;
  overflow-y: auto;
}
.b-popup-closer {
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  font-weight: normal;
  line-height: 4rem;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.3s;
  opacity: 0;
}
.b-popup-closer:before {
  content: '\f00d';
  font-size: 4rem;
  font-family: fontawesome;
}
.b-popup-box.active + .b-popup-closer {
  opacity: 0.33;
}
.b-popup-box.active + .b-popup-closer:hover {
  opacity: 1;
}
.b-popup-box {
  position: absolute;
  top: 0;
  left: 50%;
  cursor: default;
}
.b-popup-box-h {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.b-popup-box-closer {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-weight: normal;
  line-height: 4rem;
  width: 4rem;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.33;
}
.b-popup-box-closer:before {
  vertical-align: top;
  font-family: fontawesome;
  content: '\f00d';
  font-size: 1.5rem;
}
.b-popup-box-closer:hover {
  opacity: 1;
}
.b-popup-box-header,
.b-popup-box-footer {
  overflow: hidden;
  font-weight: normal;
  padding: 2rem 2rem 1rem;
  background-color: #fff;
}
.b-popup-box-header strong,
.b-popup-box-footer strong {
  display: block;
}
.b-popup-box-header span,
.b-popup-box-footer span {
  display: block;
  font-weight: normal;
}
.b-popup-box-header {
  font-size: 20px;
}
.b-popup-box-footer-button {
  float: right;
  margin-left: 1rem;
}
.b-popup-box-footer-button.state_disabled {
  opacity: .5;
}
.b-popup-box-footer-button.state_error {
  background: #ea524a;
}
.b-popup-box-content {
  overflow: hidden;
  height: 100%;
  padding: 0 2rem 2rem;
  background-color: #fff;
}
.b-popup-box-content img {
  vertical-align: top;
}
.b-popup-box-content iframe {
  vertical-align: top;
  width: 100%;
  border: 0;
}
.b-popup-box-content h1,
.b-popup-box-content h2,
.b-popup-box-content h3,
.b-popup-box-content h4,
.b-popup-box-content h5,
.b-popup-box-content h6 {
  color: inherit;
}
.b-popup-box.paddings_none .b-popup-box-content {
  padding: 0 !important;
}
.b-popup-box.paddings_none .b-popup-box-header {
  padding: 1rem !important;
}
.b-popup-box.size_s {
  width: 400px;
  margin-left: -200px;
  padding: 25px 0;
}
.b-popup-box.size_m {
  width: 600px;
  margin-left: -300px;
  padding: 25px 0;
}
@media (max-width: 700px) {
  .b-popup-box.size_m {
    left: 50px;
    right: 50px;
    width: auto;
    margin-left: 0;
  }
  .b-popup-box.size_m + .b-popup-closer {
    width: 50px;
  }
}
.b-popup-box.size_l {
  width: 800px;
  margin-left: -400px;
  padding: 25px 0;
}
.b-popup-box.size_l .b-popup-box-header {
  padding-left: 40px;
  padding-right: 40px;
}
.b-popup-box.size_l .b-popup-box-content {
  padding: 40px;
}
@media (max-width: 900px) {
  .b-popup-box.size_l {
    left: 40px;
    right: 40px;
    width: auto;
    margin-left: 0;
  }
  .b-popup-box.size_l + .b-popup-closer {
    width: 50px;
  }
}
.b-popup-box.size_xl {
  width: 1000px;
  margin-left: -500px;
  padding: 25px 0;
}
.b-popup-box.size_xl .b-popup-box-header {
  padding-left: 50px;
  padding-right: 50px;
}
.b-popup-box.size_xl .b-popup-box-content {
  padding: 50px;
}
@media (max-width: 1100px) {
  .b-popup-box.size_xl {
    left: 50px;
    right: 50px;
    width: auto;
    margin-left: 0;
  }
  .b-popup-box.size_xl + .b-popup-closer {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .b-popup-box.size_s,
  .b-popup-box.size_m,
  .b-popup-box.size_l,
  .b-popup-box.size_xl {
    left: 0;
    right: 0;
    width: auto;
    padding: 0;
    margin: 0;
  }
  .b-popup-box-header,
  .b-popup-box-footer {
    line-height: 20px;
    padding-right: 55px;
  }
  .b-popup-box-content {
    padding: 25px !important;
  }
}
.b-popup-box.animation_fadeIn .b-popup-box-h {
  opacity: 0;
  transition: opacity 0.3s;
}
.b-popup-box.animation_fadeIn.active .b-popup-box-h {
  opacity: 1;
}
/* User profile */
.b-profile-header h2 {
  display: inline-block;
  margin-right: 1.5rem;
}
.b-profile-header a {
  margin-right: 1.5rem;
}
.b-profile-item {
  display: flex;
  margin-bottom: 1rem;
}
.b-profile-item-label {
  flex-shrink: 0;
  width: 11rem;
  color: #9096a3;
}
.b-profile-item-value {
  flex-grow: 1;
  overflow: auto;
}
/* b-results */
.b-results {
  display: flex;
  justify-content: space-between;
}
.b-results-list {
  width: 100%;
}
.b-results-list .g-ticket-type {
  color: #9096a3;
  opacity: 0.7;
}
.b-results-item {
  display: block;
  margin: 10px 0;
  position: relative;
  cursor: pointer;
}
.b-results-item .g-status {
  margin: 0 15px;
}
.b-results-item .g-ticket-type {
  margin-right: 6px;
  margin-left: 3px;
  width: 24px;
}
.b-results-item-title {
  vertical-align: top;
  font-size: 17px;
  margin-right: 5px;
  transition: color .3s;
}
.b-results-item-date {
  margin-left: 5px;
  color: #9096a3;
}
.b-results-footer {
  overflow: hidden;
  margin-top: 25px;
}
.b-results-meta {
  float: right;
  font-size: 13px;
  line-height: 18px;
  padding-top: 13px;
  margin-left: 20px;
  color: #9096a3;
}
.b-results-text {
  font-size: 0.9rem;
  line-height: 2.5rem;
  margin-left: auto;
}
.b-results-perpage {
  line-height: 2.5rem;
}
.b-results-perpage select {
  line-height: 28px;
  height: 28px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-bottom: 1px dotted;
  padding: 0;
  cursor: pointer;
}
.b-results-perpage select::-ms-expand {
  opacity: 0;
}
.b-search {
  display: flex;
  padding-top: 3rem;
}
.b-search .g-form.for_search {
  flex-grow: 1;
}
.b-search .g-form.for_search.preload .g-preloader {
  opacity: 1;
}
.b-search .g-form.for_search.preload .g-form-row.for_search i::before {
  opacity: 0;
}
.b-search .g-form-row {
  margin-bottom: 0;
  position: relative;
}
.b-search .g-form-row.for_search i:before {
  content: '\f002';
  font-family: 'FontAwesome';
  font-size: 1.5rem;
  font-style: normal;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 3.5rem;
  width: 3.5rem;
  transition: opacity 0.2s;
}
.b-search .g-form-row.for_submit {
  display: none;
}
.b-search input[type='text'] {
  font-size: 1.4rem;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0 1rem;
  background: #f1f2f3;
}
.b-search-suggest {
  display: none;
  position: absolute;
  right: 0;
  top: 59px;
  left: 0;
  z-index: 9;
  font-size: 14px;
  line-height: 22px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #3b4e62;
}
.b-search-suggest::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 13px;
  margin: 0 0 0 -12px;
  width: 25px;
  height: 25px;
  background: #fff;
  transform: rotate(-45deg);
}
.b-search-suggest-section {
  overflow: hidden;
  position: relative;
  padding: 14px 20px;
  border-top: 1px solid #e1e4e6;
}
.b-search-suggest-section-title {
  float: left;
  padding: 3px 0 3px 28px;
  position: relative;
}
.b-search-suggest-section:first-child {
  border: none;
}
.b-search-suggest-section .g-ticket-type {
  position: absolute;
  top: 16px;
  left: 25px;
  color: #9096a3;
}
.b-search-suggest-list {
  margin-left: 170px;
}
.b-search-suggest-item {
  display: block;
  padding: 3px 0;
  overflow: hidden;
  white-space: nowrap;
}
.b-search-suggest-item-title {
  max-width: 800px;
  min-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.b-search-suggest-item:hover {
  color: #277cea;
}
.b-search-suggest-item .g-status {
  margin: 0 15px;
}
.b-search-suggest-item-date {
  font-size: 13px;
  margin: 0 3px;
  color: #9096a3;
}
.b-search-suggest-close {
  float: right;
  padding: 3px 0;
}
.b-search-suggest-all {
  display: inline-block;
  padding: 3px 0;
  vertical-align: top;
}
.b-search .g-preloader {
  position: absolute;
  left: auto;
  top: 18px;
  right: 14px;
  opacity: 0;
}
.b-sidepanel {
  padding: 1.5rem;
  max-width: 288px;
  background-color: #f1f2f3;
}
@media (min-width: 1280px) {
  .b-sidepanel.sticky {
    position: fixed;
    z-index: 4;
    top: 0;
    width: 100%;
  }
}
.b-sidepanel-block {
  display: flex;
  align-items: center;
  line-height: 2rem;
  padding: 0.5rem;
}
.b-sidepanel-block-title {
  flex-shrink: 0;
  width: 33%;
}
.b-sidepanel-block .g-votes {
  flex-grow: 1;
}
.b-sidepanel-block .g-votes-quantity {
  vertical-align: top;
  font-size: 1.5rem;
  margin-right: 1rem;
}
.b-sidepanel-block .g-votes.disabled .g-btn {
  display: none !important;
}
.b-sidepanel-block .g-status {
  flex-grow: 1;
  position: relative;
  padding: 0;
}
.b-sidepanel-block .g-status-label {
  display: block;
  cursor: help;
  padding: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.b-sidepanel-block .g-status-label:hover + .g-status-description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.b-sidepanel-block .g-status-description {
  display: block;
  position: absolute;
  z-index: 15;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 150px;
  padding: 0.8rem;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: normal;
  text-transform: none;
  background-color: #3b4e62;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s;
}
.b-sidepanel-block .g-status-description:before {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  margin-left: -6px;
  height: 12px;
  width: 12px;
  background-color: #3b4e62;
  transform: rotate(45deg);
}
.b-sidepanel-block.type_transitions {
  flex-wrap: wrap;
}
.b-sidepanel-block.type_transitions .g-btn {
  margin: 0 0 0.2rem;
  width: 100%;
}
.b-sidepanel-block .g-select {
  flex-grow: 1;
}
.b-sidepanel-block.type_follow .i-followvalue {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 20px;
  padding-left: 22px;
  position: relative;
}
.b-sidepanel-block.type_follow .i-followvalue::before {
  content: "\f0e0";
  position: absolute;
  top: 0;
  left: 0;
  font: 15px/20px FontAwesome;
}
/* b-stateswitcher */
.b-stateswitcher {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 90px;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
  border-radius: 15px;
  text-align: center;
  transition: background .15s;
  cursor: pointer;
}
.b-stateswitcher span {
  display: inline-block;
  vertical-align: top;
  transition: color .15s, opacity .15s;
}
.b-stateswitcher::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
  transition: transform .15s, width .15s;
}
.b-stateswitcher.action_activate {
  padding: 0 10px 0 30px;
  background: #e1e4e6;
  color: #3b4e62;
}
.b-stateswitcher.action_activate::before {
  transform: translateX(0);
}
.b-stateswitcher.action_activate > span:nth-child(2) {
  display: none;
}
.b-stateswitcher.action_activate.state_loading {
  pointer-events: none;
  cursor: default;
}
.b-stateswitcher.action_activate.state_loading::before {
  width: 25px;
}
.b-stateswitcher.action_activate.state_loading span {
  opacity: 0.5;
}
.b-stateswitcher.action_deactivate {
  padding: 0 30px 0 10px;
  background: #277cea;
  color: #fff;
}
.b-stateswitcher.action_deactivate::before {
  transform: translateX(60px);
}
.b-stateswitcher.action_deactivate > span:nth-child(1) {
  display: none;
}
.b-stateswitcher.action_deactivate.state_loading {
  pointer-events: none;
  cursor: default;
}
.b-stateswitcher.action_deactivate.state_loading::before {
  transform: translateX(55px);
  width: 25px;
}
.b-stateswitcher.action_deactivate.state_loading span {
  opacity: 0.5;
}
.b-stateswitcher.state_active .g-tooltip {
  display: none;
}
.b-stateswitcher.state_disabled {
  cursor: no-drop;
}
.b-stateswitcher.state_disabled span {
  opacity: .5;
}
.b-stateswitcher.state_error {
  background: #ea524a !important;
}
.b-stateswitcher.state_error span {
  display: none;
}
/* Stats */
.b-stats-block {
  float: left;
  position: relative;
  width: 58%;
  margin-left: 0;
  margin-bottom: 3rem;
}
.b-stats-block:hover {
  z-index: 1;
}
.b-stats-block-tooltip {
  opacity: 1;
  position: absolute;
  border-radius: 3px;
  transition: all .1s ease;
  pointer-events: none;
  transform: translate(-50%, 0);
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.b-stats-block-tooltip-title {
  font-weight: 500;
  font-size: 16px;
}
.b-stats-block-tooltip-item {
  margin: 1px 0;
  line-height: 14px;
  font-size: 12px;
}
.b-stats-block-tooltip-item span {
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 0 0;
  width: 12px;
  height: 12px;
  box-sizing: content-box;
}
.b-stats-block.type_table {
  float: right;
  min-height: 1200px;
  width: 38%;
  margin-left: 4%;
}
.b-stats-block > .g-pagination:last-child {
  margin-bottom: 0;
}
.b-stats-block-legend-entry i {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 24px;
  vertical-align: bottom;
  margin-right: 10px;
}
.b-stats-block-legend-entry span {
  font-weight: bold;
}
.b-stats-block-empty {
  position: absolute;
  top: 210px;
  left: 50%;
  background: #fff;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  color: #9096a3;
}
.b-stats-block canvas {
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.b-stats-block-chartlegend ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.b-stats-block-chartlegend li {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  position: relative;
  padding: 0 20px 0 37px;
  margin: 0;
  cursor: pointer;
  line-height: 28px;
  font-size: 16px;
}
.b-stats-block-chartlegend li > span {
  position: absolute;
  top: 8px;
  left: 20px;
  width: 12px;
  height: 12px;
}
.b-stats-block-chartlegend li div {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.b-stats-block-chartlegend li div.noellipsis {
  text-overflow: clip;
}
.b-stats-block-chartlegend li.is-disabled {
  text-decoration: line-through !important;
}
.b-stats .b-subscribers-list td {
  font-size: 0.9rem;
  padding-top: 0;
  border: none;
}
.b-stats .b-subscribers-list td:last-child {
  text-align: right;
}
.b-stats .b-subscribers-empty {
  color: #9096a3;
}
.b-stats .g-pagination-item {
  padding: 0 9px;
}
.b-stats .g-pagination-item.to_prev,
.b-stats .g-pagination-item.to_next {
  position: relative;
  text-indent: -9999px;
}
.b-stats .g-pagination-item.to_prev::before,
.b-stats .g-pagination-item.to_next::before {
  position: absolute;
  font-family: fontawesome;
  width: 100%;
  height: 100%;
  font-size: 20px;
  left: 0;
  text-indent: 0;
}
.b-stats .g-pagination-item.to_prev::before {
  content: '\f104';
}
.b-stats .g-pagination-item.to_next::before {
  content: '\f105';
}
.b-survey .g-form {
  padding-bottom: 1rem;
}
.b-survey .g-form .g-checkbox,
.b-survey .g-form .g-radio {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 28px;
}
.b-survey .g-form .g-checkbox-icon,
.b-survey .g-form .g-radio-icon {
  margin-top: 2px;
}
.b-survey .g-form textarea {
  height: 8rem;
}
.b-survey .g-form-save {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.b-survey .g-form-editable {
  position: relative;
  padding-right: 1.5em;
}
.b-survey .g-form-editable span {
  display: block;
}
.b-survey .g-form-editable:after {
  content: "\f040";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: normal;
  color: #277cea;
  opacity: 0;
  transition: opacity 0.3s;
}
.b-survey .g-form-editable.editable {
  cursor: pointer;
}
.b-survey .g-form-editable.editable:hover:after {
  opacity: 1;
}
/* b-switcher */
.b-switcher {
  position: relative;
  flex-shrink: 0;
  color: #fff;
  min-height: 60px;
}
.b-switcher-h {
  position: relative;
}
.b-switcher-current {
  position: relative;
  z-index: 1;
  height: 60px;
}
.b-switcher-current .b-switcher-item {
  padding: 0 40px 0 60px;
  cursor: pointer;
  line-height: 60px;
  font-size: 1.1rem;
  font-weight: bold;
}
.b-switcher-current .b-switcher-item::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 5px 5px 0 5px;
}
.b-switcher-list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  min-width: 100%;
  overflow: hidden;
}
.b-switcher-list .b-switcher-item {
  position: relative;
  font-size: 15px;
}
.b-switcher-list .b-switcher-item[class*="icon_"]::before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 10px;
}
.b-switcher-list .b-switcher-item.icon_list {
  margin-top: 1rem;
}
.b-switcher-list .b-switcher-item.icon_list::before {
  content: "\f03a";
}
.b-switcher-list .b-switcher-item.icon_add::before {
  content: "\f067";
}
.b-switcher-item {
  display: block !important;
  white-space: nowrap;
  line-height: 2.5rem;
  padding: 0 20px;
  max-width: 25vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b-switcher .b-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  padding: 20px 0;
}
.b-switcher .b-logo img {
  margin: auto;
}
.b-switcher:hover {
  background: #1f63bb;
}
.b-switcher:hover .b-switcher-list {
  visibility: visible;
  opacity: 1;
  background: #1f63bb;
}
.b-switcher:hover .b-switcher-list .b-switcher-item:hover {
  background-color: #277cea;
}
/* .b-textfilter */
.b-textfilter {
  line-height: 24px;
}
.b-textfilter-trigger {
  position: relative;
  display: inline-block;
  vertical-align: top;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
}
.b-textfilter-trigger > span {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  transition: color 0.3s;
  color: #277cea;
}
.b-textfilter-trigger > span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px dotted;
}
.b-textfilter-trigger > span:hover {
  color: #3b4e62;
}
.b-textfilter-popup {
  display: none;
  position: absolute;
  z-index: 50;
  top: 100%;
  left: -16px;
  margin-top: 10px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.b-textfilter-trigger.is-active > .b-textfilter-popup {
  display: block;
}
.b-textfilter-popup-h {
  position: relative;
  overflow-y: auto;
  max-height: 300px;
}
.b-textfilter-popup::before {
  content: '';
  display: block;
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: #e1e4e6 solid;
  border-width: 1px 0 0 1px;
  top: -6px;
  transform: rotateZ(45deg);
}
.b-textfilter-popup-item {
  white-space: nowrap;
  line-height: 40px;
  padding: 0 30px 0 18px;
  transition: background 0.3s;
  cursor: pointer;
}
.b-textfilter-popup-item:before {
  content: '\f00c';
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  width: 18px;
  visibility: hidden;
}
.b-textfilter-popup-item:hover {
  background: #f1f2f3;
}
.b-textfilter-popup-item.is-active {
  font-weight: normal;
  color: #53b753;
}
.b-textfilter-popup-item.is-active:before {
  visibility: visible;
}
.b-textfilter-trigger.type_status .b-textfilter-popup {
  text-transform: capitalize;
}
.b-ticketlist-ticket-title {
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
}
.b-ticketlist-ticket-age,
.b-ticketlist-ticket-freshness {
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  color: inherit;
}
.b-ticketlist-ticket-author {
  display: inline-block;
  vertical-align: top;
  font-size: 0.9rem;
  color: #9096a3;
}
.b-ticketlist-ticket-author:hover {
  color: #3b4e62;
}
.b-ticket,
.b-reply {
  position: relative;
  padding: 3rem;
  border-top: 1px solid #e1e4e6;
}
.b-ticket p:last-child,
.b-reply p:last-child {
  margin: 0;
}
.b-ticket blockquote,
.b-reply blockquote {
  padding-left: 2rem;
  color: #9096a3;
}
.b-ticket blockquote:before,
.b-reply blockquote:before {
  font-family: 'fontawesome';
  content: '\f10e';
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
  font-style: normal;
  word-wrap: normal;
  width: 2rem;
  margin-left: -2rem;
  opacity: 0.5;
}
.b-ticket blockquote + blockquote::before,
.b-reply blockquote + blockquote::before {
  display: none;
}
.b-ticket-footer,
.b-reply-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2.5rem;
}
.b-ticket-meta,
.b-reply-meta {
  flex-shrink: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}
.b-ticket-meta a,
.b-reply-meta a {
  color: #9096a3;
}
.b-ticket-meta a:hover,
.b-reply-meta a:hover {
  color: #3b4e62;
}
.b-ticket-controls,
.b-reply-controls {
  opacity: 0;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.b-ticket-control,
.b-reply-control {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  color: inherit;
}
.b-ticket-control:hover,
.b-reply-control:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.b-ticket-control.for_trash:hover,
.b-reply-control.for_trash:hover,
.b-ticket-control.for_delete:hover,
.b-reply-control.for_delete:hover {
  background-color: #ea524a;
  color: #fff;
}
.b-ticket-screenshot {
  position: relative;
}
.b-ticket-screenshot img {
  max-width: 100%;
}
.b-ticket .g-ticket-type {
  position: absolute;
  top: 3rem;
  left: 0;
  font-size: 1.8rem;
  line-height: 3rem;
  opacity: 0.3;
  cursor: help;
}
.b-ticket:hover .b-ticket-controls {
  opacity: 1;
}
.b-ticket.scope_private {
  background-color: #edf5ff;
}
.b-ticket.scope_private::after {
  content: 'PRIVATE TICKET';
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  padding: 0 0.6rem;
  color: rgba(0, 0, 0, 0.3);
}
.b-ticket.scope_private .b-ticket-title {
  padding-left: 3rem;
}
.b-ticket.scope_private .g-ticket-type {
  left: 3rem;
}
.b-replies-title {
  text-align: center;
  margin: 0;
  padding: 1rem 3rem;
  border-top: 1px solid #e1e4e6;
}
.b-reply.action_create,
.b-reply.action_disabled {
  margin-bottom: 3rem;
}
.b-reply.scope_private {
  background-color: #edf5ff;
}
.b-reply.scope_private::before {
  content: 'PRIVATE REPLY';
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  padding: 0 0.6rem;
  color: rgba(0, 0, 0, 0.3);
}
.b-reply.scope_internal {
  background-color: #ffece8;
}
.b-reply.scope_internal::before {
  content: 'INTERNAL SUPPORT COMMENT';
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  padding: 0 0.6rem;
  color: rgba(0, 0, 0, 0.3);
}
.b-reply-text img {
  max-width: 100%;
}
.b-reply-date span {
  font-weight: bold;
}
.b-reply:hover .b-reply-controls {
  opacity: 1;
}
.b-log {
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 1rem 3rem;
  border-top: 1px solid #e1e4e6;
  color: #9096a3;
}
.b-log + .b-log {
  border-top: none;
  padding-top: 0;
}
.b-log-text {
  float: left;
}
.b-log-text a {
  color: inherit;
}
.b-log-text a:hover {
  color: #3b4e62;
}
.b-log-date {
  float: right;
}
.b-log-date span {
  font-weight: bold;
}
.b-titleeditor {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.b-titleeditor-text {
  position: relative;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
}
.b-titleeditor-text:hover {
  border-bottom: 1px dashed;
}
.b-titleeditor-input {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.b-titleeditor-button {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  width: 40px;
  background: #f1f2f3;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-family: FontAwesome;
}
.b-titleeditor-button:hover {
  background: #e1e4e6;
}
.b-titleeditor-button.type_cancel {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.b-titleeditor-button.type_cancel::before {
  content: "\f00d";
  vertical-align: top;
}
.b-titleeditor-button.type_save::before {
  content: "\f00c";
  vertical-align: top;
}
.b-titleeditor.is-active {
  overflow: visible;
  width: 100%;
}
.b-titleeditor.is-active .b-titleeditor-text {
  visibility: hidden;
}
.b-titleeditor.is-active .b-titleeditor-input {
  display: flex;
}
/* b-toggler */
.b-toggler {
  background-color: #f1f2f3;
  margin-bottom: 1.5rem;
}
.b-toggler-header {
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 1.5rem 2rem;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.b-toggler-header:before {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  font-size: 1.5rem;
  top: 1.5rem;
  right: 1.5rem;
}
.b-toggler-header:hover {
  background-color: #e1e4e6;
}
.b-toggler-body {
  padding: 0.5rem 2rem 2rem;
}
.b-userbox {
  flex-grow: 1;
}
.b-userbox-avatar {
  float: left;
  margin-right: 0.8rem;
  width: 3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.b-userbox-avatar img {
  display: block;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}
.b-userbox-fullname {
  display: block;
  line-height: 1.2rem;
  text-transform: capitalize;
}
.b-userbox-badges {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: wrap;
}
/* Form Creation */
.b-widgetcreate-templates {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 40px;
}
.b-widgetcreate-template {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  padding: 0 25px 40px;
  width: 300px;
}
.b-widgetcreate-template-title {
  position: relative;
  text-align: center;
  line-height: 36px;
  font-size: 1rem;
}
.b-widgetcreate-template-image {
  position: relative;
  margin: 0 auto;
  width: 250px;
  height: 153px;
  cursor: zoom-in;
}
.b-widgetcreate-template-image img {
  display: block;
  width: 100%;
}
.b-widgetcreate-template-image-desktop {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 0;
  width: 225px;
  height: 154px;
  background: #fff url("../img/widgetbuilder/bg_desktop.svg") no-repeat;
  background-size: cover;
  border: solid #3b4e62;
  border-width: 12px 8px;
  border-radius: 8px;
}
.b-widgetcreate-template-image-desktop img {
  background: url("../img/widgetbuilder/bg_desktop.svg") no-repeat;
  background-size: cover;
}
.b-widgetcreate-template-image-mobile {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 57px;
  height: 119px;
  background: #fff url("../img/widgetbuilder/bg_mobile.svg") no-repeat;
  background-size: cover;
  border: solid #3b4e62;
  border-width: 14px 3px;
  border-radius: 8px;
}
.b-widgetcreate-template-image-mobile img {
  background: url("../img/widgetbuilder/bg_mobile.svg") no-repeat;
  background-size: cover;
}
.b-widgetcreate-template-image.preview_type2 .b-widgetcreate-template-image-desktop {
  left: 0;
  right: auto;
}
.b-widgetcreate-template-image.preview_type2 .b-widgetcreate-template-image-mobile {
  left: auto;
  right: 0;
}
.b-widgetcreate-template-meta {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 220px 0 25px;
  background: #fff;
  border: 3px solid #277cea;
  transform: scale(0.95);
  transform-origin: 50% 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  transition: transform .3s, opacity .15s;
}
.b-widgetcreate-template:hover {
  z-index: 1;
}
.b-widgetcreate-template:hover .b-widgetcreate-template-meta {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.b-widgetcreate-popup .b-popup-box-content {
  padding-bottom: 20px !important;
}
.b-widgetcreate-popup .b-popup-box-footer strong {
  display: block;
  font-size: 1.4rem;
  line-height: 42px;
}
.b-widgetcreate-popup .b-popup-box-footer span {
  display: inline;
}
.b-widgetcreate-popup:not([data-type="popup"]) .for_popup,
.b-widgetcreate-popup:not([data-type="scrollbox"]) .for_scrollbox,
.b-widgetcreate-popup:not([data-type="welcome"]) .for_welcome,
.b-widgetcreate-popup:not([data-type="bar"]) .for_bar,
.b-widgetcreate-popup:not([data-type="inline"]) .for_inline {
  display: none;
}
.b-widgetcreate-popup-image {
  position: relative;
  width: 686px;
  height: 420px;
}
.b-widgetcreate-popup-image img {
  display: block;
  width: 100%;
}
.b-widgetcreate-popup-image-desktop {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 74px;
  width: 622px;
  height: 420px;
  background: #fff url("../img/widgetbuilder/bg_desktop.svg") no-repeat;
  background-size: cover;
  border: solid #3b4e62;
  border-width: 30px 23px;
  border-radius: 21px;
}
.b-widgetcreate-popup-image-desktop img {
  background: #fff url("../img/widgetbuilder/bg_desktop.svg") no-repeat;
  background-size: cover;
}
.b-widgetcreate-popup-image-mobile {
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 156px;
  height: 322px;
  background: #fff url("../img/widgetbuilder/bg_mobile.svg") no-repeat;
  background-size: cover;
  border: solid #3b4e62;
  border-width: 37px 8px;
  border-radius: 21px;
}
.b-widgetcreate-popup-image-mobile img {
  background: #fff url("../img/widgetbuilder/bg_mobile.svg") no-repeat;
  background-size: cover;
}
.b-widgetcreate-popup-image.preview_type2 .b-widgetcreate-popup-image-desktop {
  left: 4px;
}
.b-widgetcreate-popup-image.preview_type2 .b-widgetcreate-popup-image-mobile {
  left: auto;
  right: -10px;
}
/* Emptylist */
.b-emptylist {
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 1200px;
  text-align: center;
  font-size: 1.4rem;
}
.b-emptylist.with_arrow {
  position: relative;
  padding: 4rem 10rem 0 0;
  text-align: right;
}
.b-emptylist.with_arrow::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 4rem;
  width: 82px;
  height: 93px;
  background: url("../img/zerolist.png") no-repeat;
  background-size: cover;
}
.auth-shopify-connect .conv-connect {
  padding: 2.5rem 0;
  text-align: center;
  font: 16px/28px 'Roboto', sans-serif;
  color: #335578;
}
.auth-shopify-connect .conv-connect-logo {
  display: block;
  margin: auto;
  width: 266px;
  height: 36px;
}
.auth-shopify-connect .conv-connect-logo-img {
  display: block;
  width: 266px;
  height: 36px;
}
.auth-shopify-connect .conv-connect-box {
  box-shadow: 0 3px 20px rgba(54, 59, 65, 0.1);
  background-color: #fff;
  padding: 45px 30px 40px;
  width: 680px;
  margin: 40px auto 20px;
}
.auth-shopify-connect .conv-connect-header {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 400;
  color: #335578;
}
.auth-shopify-connect .conv-connect-card-body p {
  margin: 0 0 25px;
  font-size: 16px;
}
.auth-shopify-connect .conv-connect-card-body p strong {
  font-weight: 700;
}
.auth-shopify-connect .conv-btn {
  display: block;
  margin: auto;
  padding: 12px 0;
  width: 310px;
  line-height: 1;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  transition: all .5s ease;
  border: 0;
  border-radius: 20px;
  background: #7bb24d;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
.auth-shopify-connect .conv-btn:hover {
  border-color: #6da142;
  background: #6da142;
  color: #fff;
}
.auth-shopify-connect .conv-btn-premium {
  display: block;
  margin-top: 19px;
  box-shadow: none !important;
  /* <- fix border after click */
}
.auth-shopify-connect .conv-connect-help {
  font-weight: 300;
  line-height: 40px;
  font-size: 14px;
  text-decoration: none;
  color: #335578;
}
.auth-shopify-connect .conv-connect-help:hover {
  text-decoration: underline;
}
.auth-shopify-connect .conv-connect-disconnect {
  font-weight: 300;
  line-height: 40px;
  font-size: 14px;
  text-decoration: none;
  color: rgba(58, 97, 136, 0.49);
}
.auth-shopify-connect .conv-connect-disconnect:hover {
  text-decoration: underline;
}
.b-body.user-integrations .cof-integrations-item {
  padding: 0;
  border: none;
}
.b-body.user-integrations .cof-integrations-item-content {
  border: 0;
  padding: 0;
}
.b-body.user-integrations .cof-integrations-credentials.loading {
  text-align: center;
  padding: 2rem;
}
.b-body.user-integrations .cof-integrations-credentials.loading:before {
  display: inline-block;
  vertical-align: top;
  font-family: FontAwesome;
  content: '\f110';
  font-size: 25px;
  animation: cf-spin 2s infinite linear;
}
.b-body.widget-list {
  overflow-y: scroll;
}
.b-body.widget-list .g-table.for_widgets td.for_impressions,
.b-body.widget-list .g-table.for_widgets td.for_optins,
.b-body.widget-list .g-table.for_widgets td.for_conversion {
  text-align: right;
}
.b-body.widget-list .g-table.for_widgets tbody tr[data-id="template"] {
  display: none;
}
.b-body.widget-list .g-table.for_widgets tbody tr.status_archived .g-action.action_archive,
.b-body.widget-list .g-table.for_widgets tbody tr:not(.status_archived) .g-action.action_restore,
.b-body.widget-list .g-table.for_widgets tbody tr.variation .g-action.action_ab_split,
.b-body.widget-list .g-table.for_widgets tbody tr:not(.variation) .g-action.action_ab_primary {
  display: none;
}
.b-body.widget-list .g-table.for_widgets tbody tr.status_inactive.cannot_activate .g-action.action_activate,
.b-body.widget-list .g-table.for_widgets tbody tr.status_suspended .g-action.action_activate {
  opacity: .5;
  cursor: default;
}
.b-body.widget-list .g-table.for_widgets tbody tr.status_inactive.cannot_activate .g-action.action_activate:hover,
.b-body.widget-list .g-table.for_widgets tbody tr.status_suspended .g-action.action_activate:hover {
  color: inherit;
  background-color: transparent;
}
.b-body.widget-list .g-table.for_widgets tbody tr.status_suspended .g-action.action_activate {
  display: block;
}
.b-body.widget-list .g-table.for_widgets tbody tr.variation td.for_name span {
  flex-shrink: 0;
  line-height: 1.3rem;
  width: 2.2rem;
  margin: 0.2rem 0.5rem 0.2rem 0;
  text-align: center;
  font-size: 10px;
  font-weight: normal;
  border-radius: 2rem;
  cursor: help;
  background: #e1e4e6;
}
.b-body.widget-list .g-table.for_widgets .g-action.action_move {
  cursor: pointer;
}
.b-body.widget-create .b-titlebar.is-fixed {
  padding-bottom: 130px;
}
.b-body.widget-create .b-filter-item {
  width: 200px;
}
.b-body.widget-create .b-popup-wrap {
  cursor: auto;
}
.b-body.widget-create .b-popup-closer::before,
.b-body.widget-create .b-popup-closer::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 23px;
  width: 35px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.b-body.widget-create .b-popup-closer::before {
  transform: rotate(-45deg);
}
.b-body.widget-create .b-popup-closer::after {
  transform: rotate(45deg);
}
.b-body.widget-create .b-popup-arrow {
  cursor: pointer;
  position: fixed;
  top: 50%;
  margin-top: -33px;
  width: 32px;
  height: 65px;
  opacity: 0.7;
  transition: opacity .5s;
}
.b-body.widget-create .b-popup-arrow::before,
.b-body.widget-create .b-popup-arrow::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 44px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.b-body.widget-create .b-popup-arrow::before {
  transform: rotate(-45deg);
}
.b-body.widget-create .b-popup-arrow::after {
  transform: rotate(45deg);
}
.b-body.widget-create .b-popup-arrow:hover {
  opacity: 1;
}
.b-body.widget-create .b-popup-arrow.type_prev {
  left: 40px;
}
.b-body.widget-create .b-popup-arrow.type_prev::before {
  top: 32px;
  left: 0;
}
.b-body.widget-create .b-popup-arrow.type_prev::after {
  left: 2px;
}
.b-body.widget-create .b-popup-arrow.type_prev::before,
.b-body.widget-create .b-popup-arrow.type_prev::after {
  transform-origin: 0 0;
}
.b-body.widget-create .b-popup-arrow.type_next {
  right: 40px;
}
.b-body.widget-create .b-popup-arrow.type_next::before {
  top: 30px;
  right: -2px;
}
.b-body.widget-create .b-popup-arrow.type_next::after {
  right: 0;
}
.b-body.widget-create .b-popup-arrow.type_next::before,
.b-body.widget-create .b-popup-arrow.type_next::after {
  transform-origin: 100% 100%;
}
.b-body.widget-update .b-canvas {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: #f1f2f3;
}
.b-body.widget-update .b-main {
  display: flex;
  flex-grow: 1;
}
.b-body.widget-update .b-section {
  display: flex;
  flex-grow: 1;
  background: #f1f2f3;
  max-width: 100%;
}
.b-body.widget-update .b-section-h {
  display: flex;
  flex-grow: 1;
  padding: 0;
  max-width: 100% !important;
}
.b-body.site-update h1,
.b-body.site-update h2,
.b-body.site-update h3,
.b-body.site-update h4,
.b-body.site-update h5,
.b-body.site-update h6 {
  margin-bottom: 1rem;
}
.b-body.site-update h2 {
  margin-top: 4rem;
}
.b-body.site-update .b-section-h {
  padding-top: 2rem;
}
