/**
 * Prefix mixin for generating vendor prefixes.
 * Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
 *
 * Accepts:
 * - $property: {String} css property
 * - $value: {String} value for the css property
 * - $prefixes: {list} list of browsers support
 *
 * Usage:
 * .element {
 *   @include prefix(transform, scale(1), ms webkit spec);
 * }
 *
 */
/**
 * Set a default flexbox config
 *
 * Usage:
 * .selector {
 *   @include display-flexbox ()
 * }
 */
/**
 * flex-wrap
 *
 * Usage:
 * .selector {
 *   @include flex-wrap (wrap)
 * }
 */
/**
 * flex-direction
 *
 * Usage:
 * .selector {
 *   @include flex-direction (column)
 * }
 */
/**
 * align-items
 *
 * Usage:
 * .selector {
 *   @include align-items (center)
 * }
 */
/**
 * flex
 *
 * Usage:
 * .selector {
 *   @include flex (<'flex-grow'> <'flex-shrink'>? || <'flex-basis'>)
 * }
 */
/**
 * flex-basis
 *
 * Usage:
 * .selector {
 *   @include flex-basis (center)
 * }
 */
/**
 * align-self
 *
 * Usage:
 * .selector {
 *   @include align-self (center)
 * }
 */
/**
 * align-content
 *
 * Usage:
 * .selector {
 *   @include align-content (center)
 * }
 */
/**
 * justify-content
 *
 * Usage:
 * .selector {
 *   @include justify-content (center)
 * }
 */
/*
 * Placeholder
 * Usage:
 * .selector {
 *   @include placeholder { color: white; }
 * }
 */
body, html, #app, #content {
  min-height: 100%;
  height: 100%;
}

#app {
  transition: all 0.5s ease;
}

#content {
  width: 100%;
  position: relative;
  margin-right: 0;
  padding-top: 90px;
}
#content.sidebar-active {
  padding-left: 250px;
}

.border {
  border-width: 2px;
  border-style: solid;
  border-color: #f0f0f0;
}

.template-container .fields-group-title {
  box-shadow: inset 0 -2px 0 0 #e8e7e8;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  margin-top: 1.7rem;
  font-weight: 600;
  width: 100%;
}
.template-container .fields-group-subtitle {
  box-shadow: inset 0 -2px 0 0 #e8e7e8;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  margin-top: 1.7rem;
  font-weight: 600;
  width: 100%;
}
.template-container .tabs-container {
  border: 2px solid #fff;
  background: #f4f8fa;
  padding-bottom: 2rem;
}

.field-box-info {
  margin-bottom: 1rem;
}
.field-box-info .box {
  height: 100%;
  background: #FFFFFF;
  border: 2px solid #E8E7E8;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-align: center;
}
.field-box-info .box .dots {
  display: flex;
  width: 100%;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.field-box-info .box .dots span {
  position: relative;
  display: block;
  border: 1px solid #000;
  border-radius: 2px;
  width: 2px;
  height: 2px;
  margin: 0 2px;
}
.field-box-info .box .dots span::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 2px;
  top: 4px;
  left: -1px;
  border: 1px solid #000;
}
.field-box-info .box .image {
  display: block;
  margin: 8px auto;
}
.field-box-info .box .name {
  color: #425B76;
  font-size: 0.8rem;
  line-height: 1.5;
}
.field-box-info .box:hover {
  border: 2px solid #425B76;
  box-shadow: -2px -2px 6px rgba(66, 91, 118, 0.5), 2px 2px 6px rgba(66, 91, 118, 0.5);
}

.field-preview-box {
  background-color: #ffffff;
}
.field-preview-box .field-preview-info {
  transition: all 0.2s ease;
  padding: 2rem 0.5rem 0;
  cursor: pointer;
}
.field-preview-box .field-preview-info .header {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.field-preview-box .field-preview-info .header .drag-icon svg {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.4rem;
}
.field-preview-box .field-preview-info .header span {
  line-height: 1.5;
}
.field-preview-box .field-preview-info .field-label {
  font-size: 1rem;
  line-height: 2;
  text-transform: lowercase;
}
.field-preview-box .field-preview-info .field-label::first-letter {
  text-transform: capitalize;
}
.field-preview-box .field-preview-info .field-box {
  background: #f0f0f0;
  margin: 0.375rem 0;
  box-shadow: 0 1px 0 0 #000;
  min-height: 36px;
}
.field-preview-box .field-preview-info .field-box span {
  color: #a7a7a7;
  font-size: 0.9rem;
  line-height: 2.5;
}
.field-preview-box .field-preview-info .field-box.text_area {
  height: 5.4rem;
}
.field-preview-box .field-preview-info .field-box.date, .field-preview-box .field-preview-info .field-box.dropdown, .field-preview-box .field-preview-info .field-box.multiple_select {
  position: relative;
}
.field-preview-box .field-preview-info .field-box.date::after, .field-preview-box .field-preview-info .field-box.dropdown::after, .field-preview-box .field-preview-info .field-box.multiple_select::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-left: 4px solid #b1b1b1;
  border-bottom: 4px solid #b1b1b1;
  border-top: 4px solid #e1e5e8;
  border-right: 4px solid #e1e5e8;
  transform: rotate(-45deg);
}

.fields-group-categories {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.field-category-box {
  margin-bottom: 1rem;
  width: 48%;
}
.field-category-box .box {
  display: flex;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 2px solid #E8E7E8;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.6rem;
  text-align: center;
  padding-left: 1.2rem;
  outline: none;
}
.field-category-box .box .dots {
  margin-left: 0.5rem;
}
.field-category-box .box .dots span {
  position: relative;
  display: block;
  border: 1px solid #000;
  border-radius: 2px;
  width: 2px;
  height: 2px;
  margin: 0px -12px 4px;
}
.field-category-box .box .dots span::before {
  content: "";
  display: block;
  border: 1px solid #000;
  width: 2px;
  height: 2px;
  top: -1px;
  left: -6px;
  position: absolute;
  border-radius: 2px;
}
.field-category-box .box .name {
  color: #959696;
  font-size: 0.6rem;
  line-height: 0.5;
}
.field-category-box .box:hover {
  box-shadow: inset 0 -2px 0 0 #abccec;
  border: 2px solid #425B76;
  box-shadow: -2px -2px 6px rgba(66, 91, 118, 0.5), 2px 2px 6px rgba(66, 91, 118, 0.5);
}
.field-category-box .box:hover .dots span,
.field-category-box .box:hover .dots span::before {
  border: 1px solid #425B76;
}

.fields-droppable {
  min-height: 90%;
}
.fields-droppable .empty-fields {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  border: 4px dashed #e8e7e8;
}
.fields-droppable .empty-fields .drop-here {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #b1b1b1;
}

.categories-accordion .card {
  border: none;
  border-radius: 0;
}
.categories-accordion .card .card-header {
  margin: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
  background: 0;
}
.categories-accordion .card .card-header .btn-link {
  position: relative;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  padding-left: 1.2rem;
}
.categories-accordion .card .card-header .btn-link .icon {
  transform-origin: 50% 50%;
  position: absolute;
  left: 0;
  top: 1rem;
  transition: all 0.4s ease;
}
.categories-accordion .card .card-header .btn-link .icon svg {
  height: 18px;
  width: 18px;
}
.categories-accordion .card .card-header .btn-link.collapsed .icon {
  transform: rotate(90deg);
}
.categories-accordion .card .card-body {
  padding: 0 1.25rem;
}

.bg-ipad {
  position: relative;
  display: block;
  background-image: url("../images/ipad.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 842px 1242px;
  height: 1242px;
  width: 842px;
  margin: 0 auto;
}
.bg-ipad::before {
  content: "";
  width: 100%;
  height: 127px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f4f8fa;
  background-image: url("../images/ipad.png");
  background-size: 100%;
  z-index: 100;
}
.bg-ipad::after {
  content: "";
  width: 100%;
  height: 127px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f4f8fa;
  background-image: url("../images/ipad.png");
  background-position: bottom left;
  background-size: 100%;
  z-index: 100;
}
.bg-ipad .ipad-content {
  padding-top: 120px;
  padding-bottom: 160px;
  padding-left: 80px;
  padding-right: 80px;
  overflow: auto;
  height: 100%;
}
.bg-ipad .ipad-content::-webkit-scrollbar {
  display: none;
}
.bg-ipad .field-preview-box:first-of-type {
  margin-top: 24px;
}
.bg-ipad .empty-fields {
  margin-top: 24px;
  padding: 16px 24px;
}
@media screen and (max-width: 1360px) {
  .bg-ipad {
    background-size: 505px 745px;
    height: 745px;
    width: 505px;
  }
  .bg-ipad::before {
    height: 100px;
  }
  .bg-ipad::after {
    height: 100px;
  }
  .bg-ipad .ipad-content {
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 992px) {
  .bg-ipad {
    background-size: 303px 447px;
    width: 303px;
    height: 447px;
  }
  .bg-ipad::before {
    height: 50px;
  }
  .bg-ipad::after {
    height: 50px;
  }
  .bg-ipad .ipad-content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.calculation-field {
  display: flex;
  width: auto;
  -moz-flex-direction: column;
  flex-direction: column;
  padding-top: 2rem;
}
.calculation-field table thead {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background: #eaebec;
}
.calculation-field table tbody {
  border-bottom: 1px solid #000000;
}
.calculation-field table tbody td {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.calculation-field table input[type=number] {
  height: 100%;
  text-align: right;
}
.calculation-field table button {
  background: #FFFFFF;
  padding: 0.2rem;
  text-align: center;
  -webkit-appearance: none;
  border: none;
}
.calculation-field table button svg {
  width: 1rem;
  height: 1rem;
}
.calculation-field .calculation-field-footer {
  display: flex;
  width: auto;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
}
.calculation-field .calculation-field-footer button[type=button] {
  background: #FFFFFF;
  border: 2px solid #E8E7E8;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  padding: 0.2rem;
  text-align: center;
}
.calculation-field .calculation-field-footer button[type=button]:hover, .calculation-field .calculation-field-footer button[type=button]:active {
  box-shadow: inset 0 -2px 0 0 #abccec;
  border: 2px solid #425B76;
  box-shadow: -2px -2px 6px rgba(66, 91, 118, 0.5), 2px 2px 6px rgba(66, 91, 118, 0.5);
}
.calculation-field .calculation-field-footer .total {
  display: flex;
  width: auto;
  -moz-flex-direction: column;
  flex-direction: column;
}
.calculation-field .calculation-field-footer .total div {
  display: flex;
  width: auto;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.calculation-field .calculation-field-footer .total div span {
  margin-left: 1rem;
  text-align: right;
}

.field-html {
  padding-top: 40px;
  color: #8b8b8b;
}

.breadcrumb {
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.breadcrumb .breadcrumb-item {
  text-transform: uppercase;
  font-size: 1.1rem;
}
.breadcrumb .breadcrumb-item .initials {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-right: 16px;
  font-size: 16px;
}
.breadcrumb .breadcrumb-item .customer-icon {
  margin-top: -8px;
}

.filters .card {
  border: 2px solid #f0f0f0;
  border-radius: 0;
}
.filters .card .card-header {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background: none;
  border: none;
}
.filters .card .card-header .input-search {
  min-width: 25%;
}
.filters .card .card-header .btn-link .feather-chevron-down {
  width: 18px;
  height: 18px;
  color: #000;
  margin-left: 0.5rem;
}

.input-group {
  -moz-flex-direction: column;
  flex-direction: column;
}

.input-group-disabled .react-datepicker-wrapper .react-datepicker__input-container input, .input-group-disabled .form-control {
  background: #e8e8e8 !important;
}

.invalid-feedback,
.valid-feedback {
  margin-bottom: 0;
}

.form-control {
  border-radius: 0;
  background: #f0f0f0;
  border: none;
  transition: all 0.2s ease;
  outline: none;
  box-shadow: none;
  height: auto;
  width: 100% !important;
}
.form-control ::-webkit-input-placeholder {
  color: #a9a9a9;
}
.form-control ::-moz-placeholder {
  color: #a9a9a9;
}
.form-control :-moz-placeholder {
  color: #a9a9a9;
}
.form-control :-ms-input-placeholder {
  color: #a9a9a9;
}
.form-control:not(textarea) {
  line-height: 2.5em;
}
.form-control:active, .form-control:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #000;
  background: #f0f0f0;
}

.custom-dropdown {
  position: relative;
}
.custom-dropdown .dropdown-options {
  position: absolute;
  background: #fff;
  z-index: 99;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow: auto;
  box-shadow: 0 5px 10px 2px #dbdbdb;
}
.custom-dropdown .dropdown-options span {
  display: block;
  padding: 5px 10px;
  cursor: pointer;
}
.custom-dropdown .dropdown-options span:hover {
  background: #dbdbdb;
}

.wysiwyg-wrapper {
  width: 100% !important;
  display: block !important;
  margin-bottom: 25px !important;
}
.wysiwyg-wrapper .rdw-editor-toolbar {
  border: 2px solid #ececec;
}
.wysiwyg-wrapper .rdw-editor-toolbar .rdw-option-wrapper {
  padding: 10px 10px;
  height: auto;
}

.wysiwyg-editor {
  border: 2px solid #ececec;
  padding: 5px !important;
  background: #fff;
  height: 250px;
}

.fields-accordion {
  min-height: 60px;
  border: 1px solid #e0e0e0;
  background: rgba(0, 0, 0, 0.03);
}
.fields-accordion .field-block {
  margin-bottom: 10px;
}
.fields-accordion .field-block:last-of-type {
  margin-bottom: 0;
}
.fields-accordion .field-card {
  border-radius: 0;
  border: 1px solid #e0e0e0;
}
.fields-accordion .field-card .card-header {
  display: flex;
  width: 100%;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background: #fff;
  padding: 0 16px;
}
.fields-accordion .field-card .card-header h2 button {
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}
.fields-accordion .field-card .card-header svg {
  width: 16px;
  height: 16px;
}

.radio-buttons {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
}
.radio-buttons .radio-buttons-label {
  margin-top: 10px;
  margin-bottom: 0;
}
.radio-buttons .radio-buttons-options {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: 100%;
}
.radio-buttons .radio-buttons-options.vertical {
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-justify-content: center;
  justify-content: center;
}
.radio-buttons .radio-buttons-options.horizontal {
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .radio-buttons .radio-buttons-options {
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.radio-buttons .radio-buttons-options .radio input {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}
.radio-buttons .radio-buttons-options .radio input:focus + label {
  background: #eeeeff;
}
.radio-buttons .radio-buttons-options .radio input:focus + label .checker {
  border-color: #0066f2;
}
.radio-buttons .radio-buttons-options .radio input:checked + label .checker {
  box-shadow: inset 0 0 0 6px #0066f2;
}
.radio-buttons .radio-buttons-options .radio label {
  display: flex;
  align-items: center;
  height: 28px;
  border-radius: 14px;
  padding: 0 8px 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.radio-buttons .radio-buttons-options .radio label:hover {
  background: #eeeeff;
}
.radio-buttons .radio-buttons-options .radio label:hover .checker {
  box-shadow: inset 0 0 0 2px #0066f2;
}
.radio-buttons .radio-buttons-options .radio .checker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: inset 0 0 0 2px #ccc;
  transition: box-shadow 0.3s ease;
}
.radio-buttons .invalid-feedback,
.radio-buttons .valid-feedback {
  display: block;
  margin-bottom: 0;
}

.checkbox-buttons {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
}
.checkbox-buttons .checkbox-buttons-options {
  display: flex;
  width: 100%;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 100%;
}
@media (max-width: 640px) {
  .checkbox-buttons .checkbox-buttons-options {
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.checkbox-buttons .invalid-feedback,
.checkbox-buttons .valid-feedback {
  display: block;
  margin-bottom: 0;
}

.checkbox input {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}
.checkbox input:focus + label {
  background: #eeeeff;
}
.checkbox input:focus + label .checker {
  border-color: #0066f2;
}
.checkbox input:checked + label .checker {
  box-shadow: inset 0 0 0 10px #0066f2;
}
.checkbox input:checked + label .checker::before {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.checkbox label {
  display: flex;
  align-items: center;
  height: 28px;
  border-radius: 28px;
  margin: 10px;
  padding: 0 8px 0 6px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.checkbox label:hover {
  background: #eeeeff;
}
.checkbox label:hover .checker {
  box-shadow: inset 0 0 0 2px #0066f2;
}
.checkbox .checker {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  margin-right: 8px;
  box-shadow: inset 0 0 0 2px #ccc;
  transition: box-shadow 0.1s ease;
}
.checkbox .checker::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 2px;
  left: 6px;
  border: none;
  transition: all 0.1s ease 0.1s;
}
.checkbox.checkbox-gray input:focus + label {
  background: none;
}
.checkbox.checkbox-gray input:focus + label .checker {
  border-color: #e0e2e2;
}
.checkbox.checkbox-gray input:checked + label .checker {
  box-shadow: inset 0 0 0 12px #e0e2e2;
}
.checkbox.checkbox-gray input:checked + label .checker::before {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}
.checkbox.checkbox-gray label {
  padding: 0;
  margin: 12px 6px 0 12px;
  height: 0;
  border-radius: 0;
}
.checkbox.checkbox-gray label:hover {
  background: none;
}
.checkbox.checkbox-gray label:hover .checker {
  box-shadow: inset 0 0 0 2px #ccc;
}
.checkbox.checkbox-gray .checker {
  border-radius: 0;
  height: 24px;
  width: 24px;
  box-shadow: inset 0 0 0 1px #ccc;
}
.checkbox.checkbox-gray .checker::before {
  width: 8px;
  height: 14px;
  top: 4px;
  left: 8px;
}

.react-datepicker {
  border: none;
  border-radius: 0;
  box-shadow: 0 0 0px 1px #0066f2;
}

.react-datepicker-wrapper {
  width: 100%;
}
.react-datepicker-wrapper .react-datepicker__input-container {
  width: 100%;
}
.react-datepicker-wrapper .react-datepicker__input-container input {
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 0;
  background: #f0f0f0;
  border: none;
  transition: all 0.2s ease;
  outline: none;
  box-shadow: none;
  line-height: 2.5em;
  width: 100%;
}
.react-datepicker-wrapper .react-datepicker__input-container input:active, .react-datepicker-wrapper .react-datepicker__input-container input:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #000;
  background: #f0f0f0;
}

.react-datepicker-popper .react-datepicker__header {
  background: #0066f2;
  border: none !important;
  border-radius: 0 !important;
}
.react-datepicker-popper .react-datepicker__header .react-datepicker__current-month,
.react-datepicker-popper .react-datepicker__header .react-datepicker-time__header,
.react-datepicker-popper .react-datepicker__header .react-datepicker-year-header,
.react-datepicker-popper .react-datepicker__header .react-datepicker__day-name {
  color: #fff;
}
.react-datepicker-popper .react-datepicker__month .react-datepicker__day:hover,
.react-datepicker-popper .react-datepicker__month .react-datepicker__month-text:hover {
  background: #e4ecff;
  border-radius: 0;
}
.react-datepicker-popper .react-datepicker__month .react-datepicker__day--keyboard-selected,
.react-datepicker-popper .react-datepicker__month .react-datepicker__month-text--keyboard-selected {
  border-radius: 0;
  background: #0066f2;
}
.react-datepicker-popper .react-datepicker__month .react-datepicker__day--selected,
.react-datepicker-popper .react-datepicker__month .react-datepicker__day--in-selecting-range,
.react-datepicker-popper .react-datepicker__month .react-datepicker__day--in-range,
.react-datepicker-popper .react-datepicker__month .react-datepicker__month-text--selected,
.react-datepicker-popper .react-datepicker__month .react-datepicker__month-text--in-selecting-range,
.react-datepicker-popper .react-datepicker__month .react-datepicker__month-text--in-range {
  border-radius: 0;
  background: #0066f2;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  border-top: none;
  border-bottom-color: #0066f2;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  content: none !important;
}

.input-file {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background: #f0f0f0;
  padding: 0.7rem 0.75rem;
}
.input-file .btn-uploader {
  padding: 0;
}

.uploader {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: relative;
  border: 2px dashed #a9a9a9;
  height: 480px;
}
.uploader span {
  color: #a9a9a9;
  margin-top: 16px;
}
.uploader span.uploader-or {
  display: block;
  font-size: 14px;
  color: #c0c0c0;
}
.uploader span.uploader-or::after, .uploader span.uploader-or::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #ececec;
  margin: 0 8px 3px;
}
.uploader .btn {
  z-index: 999;
}
.uploader .form-upload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  opacity: 0;
}

.uploading {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: relative;
  border: 2px dashed #a9a9a9;
  height: 480px;
}

.navbar .navbar-brand {
  text-transform: uppercase;
  color: #000;
  font-size: 1.5rem;
}
.navbar.active {
  box-shadow: 0 0px 10px -5px #000000;
  background: #fff;
}
.navbar .nav-link {
  font-size: 1.1rem;
  text-decoration: none;
}
.navbar .dropdown-toggle .icon-user svg {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  color: #000;
}
.navbar .dropdown-toggle::after {
  content: none;
}
.navbar .dropdown-menu.show {
  top: 52px;
  border: none;
  border-radius: 0;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

.notification-container {
  box-sizing: border-box;
  position: fixed;
  top: 90px;
  right: 0;
  z-index: 9999999;
  width: 320px;
  padding: 0 1rem;
  max-height: calc(100% - 180px);
  overflow: hidden;
}

.notification {
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.2rem;
  position: relative;
  margin-top: 15px;
  color: #fff;
}
.notification .title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.notification-enter {
  visibility: hidden;
  transform: translate3d(100%, 0, 0);
}
.notification-enter.notification-enter-active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s;
}

.notification-leave {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.notification-leave.notification-leave-active {
  visibility: hidden;
  transform: translate3d(100%, 0, 0);
  transition: all 0.4s;
}

.notification-info {
  background-color: #23c6c8;
}

.notification-success {
  background-color: #1ab394;
}

.notification-warning {
  background-color: #f8ac59;
}

.notification-error {
  background-color: #ed5565;
}

.btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0;
}

.btn-large {
  padding-left: 2rem;
  padding-right: 2rem;
}

.link {
  display: inline-block;
  color: #0066f2 !important;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.link:hover {
  text-decoration: underline !important;
}

.btn-light {
  background: #F5F5F5;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.1px;
  text-align: center;
  line-height: 24px;
}
.btn-light.dropdown-toggle {
  margin-left: auto;
  margin-right: 0;
  display: block;
}

.dropdown-button .dropdown-menu {
  background: #F5F5F5;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 0;
}
.dropdown-button .dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #0065F2;
  letter-spacing: 0.09px;
  line-height: 34px;
  text-decoration: underline;
  padding: 0 1rem;
}
.dropdown-button .dropdown-menu .dropdown-item:hover {
  background: #F5F5F5;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-spinner div {
  transform-origin: 32px 32px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #b0b0b0;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.custom-modal {
  display: none;
  position: fixed;
  min-height: 100vh;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}
.custom-modal .custom-modal-content {
  height: 100%;
  width: 520px;
  background: #fff;
  margin-left: auto;
}
.custom-modal .custom-modal-content .custom-modal-header {
  display: flex;
  width: 100%;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 2px solid #f0f0f0;
  height: 60px;
}
.custom-modal .custom-modal-content .custom-modal-header h3 {
  padding-left: 0.75rem;
}
.custom-modal .custom-modal-content .custom-modal-body {
  height: 88%;
  padding: 0.75rem;
  padding-bottom: 120px;
  overflow: auto;
}
.custom-modal .footer-modal {
  position: fixed;
  bottom: 0;
  right: 15px;
  width: 520px;
  background: #fff;
  padding: 1rem 2rem 3rem 0;
}
.custom-modal.show {
  display: block;
}
.custom-modal.center .custom-modal-content {
  height: 50vh;
  width: 520px;
  margin: 0 auto;
  margin-top: 25vh;
}

.pagination {
  border: 2px solid #f0f0f0;
  border-radius: 0;
  padding: 1rem 0;
}
.pagination .page-item .page-link {
  background: none;
  border: none;
}
.pagination .page-item .page-link:hover {
  text-decoration: underline;
  background: none;
  border: none;
}
.pagination .page-item.active .page-link {
  background: #f0f0f0;
  color: #000;
}

.payment-card svg {
  width: 38px;
  height: 21px;
}

.payment-card-item {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e3e3e3 !important;
}
.payment-card-item .card-info {
  display: flex;
  width: auto;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  margin: 0 auto 0 20px;
}
.payment-card-item .card-info .card-info-number {
  font-size: 16px;
  font-weight: 500;
}
.payment-card-item .card-info .card-info-number span:first-of-type {
  color: #afafaf;
}
.payment-card-item .card-info .card-info-expiration {
  color: #8e8e8e;
  font-size: 12px;
  font-weight: 300;
}

.toggle-intervals {
  display: flex;
  width: 100%;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin: 20px auto;
}
.toggle-intervals .interval-option {
  padding: 0.5rem 1rem;
  border: 2px solid #e3e3e3;
  cursor: pointer;
  text-transform: capitalize;
}
.toggle-intervals .interval-option.active {
  border-color: #0066f2;
  color: #0066f2;
}

.plans {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
}
.plans .plan {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  border: 2px solid #e3e3e3;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.plans .plan .plan-name h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.plans .plan .plan-name h3 span {
  font-size: 0.9rem;
  color: #d6d6d6;
  font-weight: 300;
}
.plans .plan .plan-name p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #d6d6d6;
}
.plans .plan .plan-amount span {
  font-size: 1.1rem;
  font-weight: 500;
}
.plans .plan .plan-amount small {
  margin-left: 0.2rem;
  font-size: 0.9rem;
  color: #d6d6d6;
  font-weight: 300;
}
.plans .plan:hover, .plans .plan.active {
  border-color: #0066f2;
}

.current-plan-section {
  display: flex;
  width: 100%;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}
.current-plan-section .plan-info h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.current-plan-section .plan-info h3 span {
  font-size: 0.9rem;
  color: #8e8e8e;
  font-weight: 300;
}
.current-plan-section .plan-info p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #8e8e8e;
}
.current-plan-section .plan-amount span {
  font-size: 1.1rem;
  font-weight: 500;
}
.current-plan-section .plan-amount small {
  margin-left: 0.2rem;
  font-size: 0.9rem;
  color: #8e8e8e;
  font-weight: 300;
}

.table.table-striped thead tr {
  background: #f0f0f0;
}
.table.table-striped tbody tr:nth-of-type(odd) {
  background: #fff;
}
.table.table-striped tbody tr:nth-of-type(even) {
  background: #f0f0f0;
}
.table td {
  vertical-align: middle !important;
}
.table td.clickable:hover {
  cursor: pointer;
}
.table td.clickable:hover span {
  text-decoration: underline;
}
.table .btn-link {
  padding: 0;
  border: none;
  font-weight: 800;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  margin-right: 1rem;
}

.template-tabs {
  -ms-justify-content: center;
  justify-content: center;
  border-top: 2px solid #e8e7e8;
  border-bottom: 2px solid #e8e7e8;
  margin: 24px 0 0;
}
.template-tabs .nav-item {
  margin-bottom: -2px;
}
.template-tabs .nav-link {
  border: none;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 0;
}
.template-tabs .nav-link.active {
  box-shadow: inset 0 -4px 0 0 #000;
}

.auth {
  display: flex;
  width: 100%;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  height: 100%;
}
.auth .card {
  border: none;
  border-radius: 0;
  box-shadow: 0 0 5px 1px #e8e8e8;
}
.auth .card .card-header {
  border: none;
  background: none;
  padding-top: 50px;
  text-align: center;
}
.auth .card .card-header h1 {
  font-weight: 700;
  font-size: 2rem;
}

.initials {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 20px;
  background: #7d7d7d;
  color: #e2e1e2;
  text-align: center;
  line-height: 32px;
  margin-right: 16px;
}

.customer-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 16px;
}

.block-title {
  text-align: center;
  border-top: 2px solid #e8e7e8;
  border-bottom: 2px solid #e8e7e8;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 2.5rem;
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.templates-selector {
  border-right: 2px solid #e8e7e8;
}
.templates-selector h2 {
  font-size: 1.2rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  border-bottom: 2px solid #e8e7e8;
  margin-bottom: 2rem;
}
.templates-selector .list {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
  padding: 0 1rem;
}
.templates-selector .list .template {
  display: flex;
  width: 100%;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 1.2rem;
  border: 2px solid #c8e1f6;
  background: #eaf0f5;
  padding: 1rem;
  cursor: pointer;
}
.templates-selector .list .template .circle {
  display: block;
  width: 48px !important;
  height: 48px;
  margin-right: 1rem;
  border-radius: 50%;
  background: #7d7d7d;
  color: #e7e7e7;
  text-align: center;
  line-height: 1.2;
  padding: 1rem 0;
}
.templates-selector .list .template .content {
  flex: 2;
}
.templates-selector .list .template .content span {
  font-size: 1rem;
  font-weight: 600;
}
.templates-selector .list .template .content p {
  font-size: 0.8rem;
  font-weight: 400;
}
.templates-selector .list .template.active {
  border: 2px solid #1d9aff;
  background: #ffffff;
}
.templates-selector .list .template.inactive {
  border: 2px solid #e4e4e4;
  background: #fafafa;
  cursor: default;
}

.template-icon {
  margin-right: 8px;
}

.block-title-divider {
  border-bottom: 2px solid #e8e7e8;
  margin-top: 1rem;
}

.document-container .fields-container {
  border-right: 2px solid #e8e7e8;
}
.document-container .fields-group-title {
  padding: 1rem 0;
  border-bottom: 2px solid #e8e7e8;
}
.document-container .field-preview-box {
  position: relative;
}
.document-container .field-preview-box .edit-icon {
  position: absolute;
  display: block;
  right: 32px;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.document-container .field-preview-box .edit-icon svg {
  width: 18px;
  height: 18px;
}

.customer-header-preview,
.customer-footer-preview {
  display: flex;
  width: auto;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background: #F5F5F5;
  border: 2px solid #ECEEEF;
  margin: 40px auto;
  padding: 16px;
}

.document-container .available-fields .fields-group-title {
  margin-top: 0;
}

.page-404 {
  display: flex;
  width: 100%;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  height: 100vh;
}
.page-404 h1 {
  font-size: 4rem;
}
.page-404 h2 {
  font-size: 3rem;
}
.page-404 p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.page-404 .btn {
  padding: 1rem 3rem;
}

.template-container {
  height: 100px;
}
.template-container .fields-container {
  border-right: 2px solid #e8e7e8;
}
.template-container .tabs-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.template-container .tabs-container .tab-content {
  background: #f4f8fa;
  height: 100%;
}

.templates-list,
.groups-list {
  display: flex;
  width: 100%;
  -moz-flex-direction: row;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}
.templates-list li,
.groups-list li {
  color: #6cb2eb;
}
.templates-list li::after,
.groups-list li::after {
  content: ",";
  margin-right: 2px;
}
.templates-list li:last-of-type::after,
.groups-list li:last-of-type::after {
  content: none;
}
.templates-list li.active,
.groups-list li.active {
  color: #343a40;
}

.fields-pdf {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, 48%);
  padding-top: 10px;
}
.fields-pdf .field-pdf {
  display: flex;
  width: auto;
  -ms-justify-content: space-between;
  justify-content: space-between;
  transition: all 0.2s ease;
  border: 2px solid #E8E7E8;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.6rem;
  cursor: pointer;
}
.fields-pdf .field-pdf .field-name {
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.1px;
  line-height: 24px;
  overflow: hidden;
  margin: 0;
}
.fields-pdf .field-pdf svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.fields-pdf .field-pdf .remove-field {
  display: none;
}
.fields-pdf .field-pdf:hover {
  border: 2px solid #b5c46a;
  box-shadow: -2px -2px 6px rgba(199, 215, 117, 0.5), 2px 2px 6px rgba(199, 215, 117, 0.5);
  background-color: #c7d775;
}
.fields-pdf .field-pdf:hover span {
  display: none;
}
.fields-pdf .field-pdf:hover span.remove-field {
  display: block;
}
.fields-pdf .field-pdf.disabled {
  opacity: 0.5;
}
.fields-pdf .field-pdf.disabled:hover {
  opacity: 1;
}

.annotationLayer .textWidgetAnnotation input,
.annotationLayer .textWidgetAnnotation textarea,
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  background-color: rgba(0, 54, 255, 0);
  border: 1px solid #c7d775;
  border-top-color: transparent;
}

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
  background-color: #dee8ab;
  border: 1px solid #c7d775 !important;
}

.field-preview-box {
  position: relative;
}
.field-preview-box .edit-icon {
  position: absolute;
  display: block;
  right: 32px;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.field-preview-box .edit-icon svg {
  width: 18px;
  height: 18px;
}
.field-preview-box .drag-icon {
  position: absolute;
  display: block;
  right: 8px;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.field-preview-box .drag-icon svg {
  width: 18px;
  height: 18px;
}

.available-fields {
  width: 30vw;
  height: calc(100vh - 220px);
  background-color: #fff;
  transition: all 0.5s ease;
}
.available-fields .fields-pdf {
  height: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .available-fields {
    position: unset;
    width: auto;
    height: auto;
  }
}

.list-group-item {
  border: none;
  padding: 1.25rem 1.25rem;
  border-radius: 0 !important;
}
.list-group-item.active {
  background: none;
}
.list-group-item.active a {
  color: #000;
}