/* *********************************
    Alerts (Notify, Warn Bar at top)
********************************** */
.alerts {
  box-sizing: border-box;
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 71px;
  padding: 1em;
  z-index: 9001;
  text-align: center;
  color: #fff;
  background: #111;
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
  cursor: pointer;
  margin: 0;
}
.alerts.confirm {
  color: #fff;
  background-color: #13bf72;
}
.alerts.warn {
  color: #fff;
  background-color: #d12d3d;
}
.alerts a {
  color: #fff;
  text-decoration: underline;
}
.alerts .icon {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
.alerts.sticky {
  position: fixed;
  top: 0;
  z-index: 9001;
}
.alerts div {
  display: table-cell;
  vertical-align: middle;
}
.alerts div:before {
  font-family: "gag-icons-font" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: inline-block;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 2px;
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 5px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/*.alert {
    padding: 1em;
    margin: 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.5em;

    &.error-alert {
        background: red;
    }

    &.ok-alert {
        background: green;
    }
}*/
body.modal-open {
  overflow: hidden;
}
body.modal-open #modal-section {
  display: block;
}
body.modal-open .modal-content {
  animation: slide 0.25s;
}

#modal-section {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}
#modal-section .modal-container {
  width: 100%;
  height: auto;
  margin: -25px auto 0 auto;
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  padding: 0 5%;
}
@media screen and (min-width: 600px) {
  #modal-section .modal-container {
    padding: 0 10%;
  }
}
@media screen and (min-width: 768px) {
  #modal-section .modal-container {
    width: 730px;
    padding: 0;
  }
}
#modal-section .modal-content {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  margin: 0 auto;
}
#modal-section .modal-close {
  z-index: 9999999;
  text-align: right;
  margin-bottom: 10px;
}
#modal-section .icon-close {
  font-size: 12px;
  color: #334D5E;
  padding: 11px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
}

#modal-section .modal-container.calendar-modal {
  height: 85%;
}
@media screen and (min-width: 768px) {
  #modal-section .modal-container.calendar-modal {
    max-width: 1050px;
    width: 100%;
    height: 520px;
    padding: 0 10px;
  }
}
#modal-section .modal-container.calendar-modal .modal-content {
  padding: 0;
}

@keyframes fadeIn {}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  70% {
    opacity: 1;
  }
}
/* REBOOT CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #2B414F;
  text-align: left;
  background-color: #F5F5F5;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans", Arial, sans-serif;
  font-weight: 700;
  color: #2B2A35;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.nav-btn {
  position: relative;
  width: 33px;
  height: 33px;
  background: #ffffff;
  margin: 0;
  z-index: 10;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  position: absolute;
  top: 15px;
  left: 10px;
  cursor: pointer;
}
.nav-btn * {
  pointer-events: none;
}
.nav-btn > span,
.nav-btn > span::before,
.nav-btn > span::after {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #334D5E;
  transition-duration: 0.25s;
  border-radius: 6px;
  left: 9px;
  top: 16px;
}
.nav-btn > span::before {
  content: "";
  top: -5px;
  left: 0px;
}
.nav-btn > span::after {
  content: "";
  top: 5px;
  left: 0px;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #6B60E0;
}

.fields input,
.fields select,
.fields optgroup,
.fields textarea {
  min-width: 400px;
}
.fields .btn {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

button,
input {
  overflow: visible;
  margin-right: 10px;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* END OF REBOOT CSS */
/* GRID STYLES */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-top: 24px;
}

.rowgag {
  display: block;
}
.rowgag:after {
  content: "";
  clear: both;
  display: block;
}

[class*=colgag-] {
  float: left;
  min-height: 1px;
}

.colgag-1 {
  width: 8.33%;
}

.colgag-2 {
  width: 16.66%;
}

.colgag-3 {
  width: 25%;
}

.colgag-4 {
  width: 33.33%;
}

.colgag-5 {
  width: 41.66%;
}

.colgag-6 {
  width: 50%;
}

.colgag-7 {
  width: 58.33%;
}

.colgag-8 {
  width: 66.66%;
}

.colgag-9 {
  width: 75%;
}

.colgag-10 {
  width: 83.33%;
}

.colgag-11 {
  width: 91.66%;
}

.colgag-12 {
  width: 100%;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
}

/* END OF GRID */
body > header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #6b60e0;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  height: 70px;
  position: sticky;
  top: 0;
  left: 0;
}
body > header .logo {
  display: inline-block;
  flex-basis: auto;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 20px 0 10px 40px;
}
body > header .header-opts {
  flex-grow: 1;
  text-align: right;
  line-height: 30px;
  padding-right: 20px;
}
body > header .header-opts > a {
  margin-left: 20px;
}

.clear {
  clear: both;
}

.logout, .change-lang {
  margin-left: 20px;
  display: inline-block;
}
.logout button, .change-lang button {
  background: white;
  border: 0;
}

body > section {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}
body > section nav {
  position: fixed;
  min-width: 250px;
  box-sizing: border-box;
  background: #6b60e0;
  padding: 0 20px;
  z-index: 3;
  height: calc(100vh - 70px);
  overflow-y: auto;
}
body > section nav .header-opts {
  display: none;
}
body > section nav .side-nav .sidenav-li {
  display: block;
  color: #f5f5f5;
  text-decoration: none;
  line-height: 2;
  padding: 20px 30px;
  border-bottom: 1px solid #d3d3d3;
  font-size: 17px;
  font-weight: 400;
}
body > section nav .side-nav .sidenav-li:hover {
  color: #fff;
  font-weight: 900;
}
body > section main {
  flex-grow: 1;
  flex-basis: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  overflow-x: auto;
  margin-left: 280px;
  margin-top: 24px;
}
body > section main.full-page {
  margin-left: 0;
}
body > section main .homepage {
  padding: 30px;
}

body > footer {
  height: 50px;
}

h1 {
  text-align: center;
}

.btn-holder {
  display: block;
  width: 100%;
  margin: 14px 0;
}

.btn-admin {
  display: inline-block;
  min-width: 100px;
  padding: 8px 20px;
  margin: 0 20px;
  text-align: center;
  text-decoration: none;
  font-family: Arial;
  font-size: 16px;
  font-weight: 500;
  background-color: #6B60E0;
  color: #ffffff;
  border: none;
  cursor: pointer;
  line-height: 20px;
  align-self: center;
}
.btn-admin.btn-alert {
  background-color: #f8a42e;
}
.btn-admin.btn-error {
  background-color: darkred;
}
.btn-admin.btn-success {
  background-color: #08c368;
}

.validation-summary-errors, .field-validation-error {
  display: block;
  color: red;
}

.hidden {
  display: none;
  visibility: hidden;
}

.alert {
  padding: 1em;
  margin: 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.5em;
}

.tab-buttons {
  overflow: hidden;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 20px 0;
}
.tab-buttons li a, .tab-buttons li span {
  background: #bdbdbc;
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  margin-right: 10px;
  color: white;
  cursor: pointer;
}
.tab-buttons li a:hover, .tab-buttons li .active {
  background: #5a5a5a;
}

.signup-requests {
  margin-top: 20px;
}
.signup-requests .top-actions {
  margin: 15px 0 10px 0;
}
.signup-requests table {
  width: 100%;
  margin-top: 20px;
}
.signup-requests table tr {
  line-height: 30px;
}
.signup-requests table tr tr:last-child {
  display: none;
}

.signup-request-review {
  padding: 20px;
}
.signup-request-review .sr-section {
  padding: 20px;
}
.signup-request-review .sr-section > div {
  margin: 10px 0;
}
.signup-request-review .sr-section label {
  font-weight: bold;
}
.signup-request-review .sr-section textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
}
.signup-request-review .sr-section input[type=text], .signup-request-review .sr-section input[type=email] {
  width: 100%;
  padding: 5px;
  margin: 10px 0;
}
.signup-request-review .sr-section.sr-info .sr-expareas {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 350px;
}
.signup-request-review .sr-section.sr-info .sr-expareas input {
  flex-shrink: 0;
  flex-grow: 1;
  width: auto;
}
.signup-request-review .sr-section.sr-info .sr-expareas button {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 75px;
}
.signup-request-review .sr-section.sr-info .sr-expareas select {
  flex-basis: 100%;
  height: 100px;
}
.signup-request-review .sr-section .sr-log {
  padding: 0 20px;
}
.signup-request-review .img-preview {
  display: block;
  margin: 10px 0;
  width: 500px;
}
.signup-request-review .profile-pic-link {
  color: #6b60e0;
  text-decoration: underline;
  font-weight: bold;
}

.settings table {
  width: 100%;
  min-width: 500px;
}
.settings table tr {
  line-height: 30px;
}
.settings table tr td:nth-child(2) {
  width: 50%;
}
.settings table tr td:nth-child(3), .settings table tr td:nth-child(4) {
  text-align: center;
}
.settings textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
}

.resources table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
}
.resources table tr {
  line-height: 30px;
}
.resources table tr td:nth-child(2), .resources table tr td:nth-child(3) {
  width: 30%;
}
.resources table tr td:nth-child(4), .resources table tr td:nth-child(5) {
  text-align: center;
}
.resources table tr:nth-child(odd) {
  background: #f6f5f2;
}
.resources table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.resources table td {
  padding: 10px;
}
.resources table td input[type=file] {
  width: 100%;
}
.resources table td img {
  width: 150px;
  height: 150px;
  margin-bottom: 12px;
}
.resources textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
}

.notifications .top-actions, .calendar-settings .top-actions {
  display: flex;
  justify-content: space-between;
}
.notifications table.list, .calendar-settings table.list {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-top: 20px;
  width: 100%;
  display: block;
  overflow: scroll;
}
.notifications table.list tr, .calendar-settings table.list tr {
  line-height: 30px;
}
.notifications table.list tr td:nth-child(1), .notifications table.list tr td:nth-child(7), .calendar-settings table.list tr td:nth-child(1), .calendar-settings table.list tr td:nth-child(7) {
  width: 10%;
}
.notifications table.list tr td:nth-child(2), .notifications table.list tr td:nth-child(3), .notifications table.list tr td:nth-child(4), .notifications table.list tr td:nth-child(7),
.notifications table.list tr th:nth-child(2), .notifications table.list tr th:nth-child(3), .notifications table.list tr th:nth-child(4), .calendar-settings table.list tr td:nth-child(2), .calendar-settings table.list tr td:nth-child(3), .calendar-settings table.list tr td:nth-child(4), .calendar-settings table.list tr td:nth-child(7),
.calendar-settings table.list tr th:nth-child(2), .calendar-settings table.list tr th:nth-child(3), .calendar-settings table.list tr th:nth-child(4) {
  text-align: center;
}
.notifications table.list tr:nth-child(odd), .calendar-settings table.list tr:nth-child(odd) {
  background: #f6f5f2;
}
.notifications table.list tr.title-row, .calendar-settings table.list tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.notifications table.list td, .calendar-settings table.list td {
  padding: 10px;
}
.notifications .update-info, .calendar-settings .update-info {
  font-size: 0.8em;
  line-height: 20px;
  margin-top: 10px;
}
.notifications .counter, .calendar-settings .counter {
  float: right;
  clear: both;
}
.notifications textarea, .calendar-settings textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.notifications textarea.subject, .calendar-settings textarea.subject {
  min-height: 30px;
  margin-bottom: 10px;
}
.notifications textarea.body, .calendar-settings textarea.body {
  min-height: 100px;
}

.misc .top-actions {
  display: flex;
  justify-content: space-between;
}
.misc table.list {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-top: 20px;
}
.misc table.list tr {
  line-height: 30px;
}
.misc table.list tr td:nth-child(3) {
  width: 10%;
}
.misc table.list tr td:nth-child(4), .misc table.list tr td:nth-child(5) {
  width: 30%;
}
.misc table.list tr td:nth-child(3), .misc table.list tr td:nth-child(4), .misc table.list tr td:nth-child(5), .misc table.list tr td:nth-child(6),
.misc table.list tr th:nth-child(3), .misc table.list tr th:nth-child(4), .misc table.list tr th:nth-child(5) {
  text-align: center;
}
.misc table.list tr:nth-child(odd) {
  background: #f6f5f2;
}
.misc table.list tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.misc table.list td {
  padding: 10px;
}
.misc textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.misc textarea#desc {
  min-height: 140px;
}
.misc textarea.emailtitle {
  min-height: 30px;
  margin-bottom: 10px;
}
.misc textarea.value {
  min-height: 100px;
}

.faq .top-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq table.list {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-top: 20px;
}
.faq table.list tr {
  line-height: 30px;
}
.faq table.list tr td.first {
  width: 50%;
}
.faq table.list tr th, .faq table.list tr td {
  text-align: center;
}
.faq table.list tr:nth-child(odd) {
  background: #f6f5f2;
}
.faq table.list tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.faq table.list td {
  padding: 20px 10px;
}
.faq textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
}
.faq textarea:first-child {
  margin-bottom: 10px;
}

table.new-row {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  border: 1px solid black;
  margin-top: 20px;
}
table.new-row tr {
  line-height: 30px;
}
table.new-row tr td {
  padding: 10px;
}
table.new-row tr td:nth-child(1) {
  width: 20%;
}
table.new-row tr.row-action {
  text-align: right;
}
table.new-row .langs {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
table.new-row .langs .content {
  width: 50%;
  margin: 0px 5px;
}
table.new-row textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
table.new-row textarea#desc {
  min-height: 50px;
}
table.new-row textarea.emailtitle {
  min-height: 20px;
  margin-bottom: 10px;
}
table.new-row textarea.value {
  min-height: 75px;
}

.custom-content {
  background: #f6f5f2;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.custom-content .row {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}
.custom-content .row .title {
  display: block;
  float: left;
  width: 13%;
  /*padding-top: 9px;
  padding: 9px 1% 0 0;*/
  text-align: right;
}
.custom-content .row .fields {
  display: block;
  float: right;
  width: 85%;
}
.custom-content .row .fields.cbfields {
  padding: 6px 0;
}
.custom-content .row .fields .btn {
  margin: 10px 0;
}
.custom-content .row .fields textarea {
  margin-left: 2px;
  width: 70%;
  height: 160px;
}
.custom-content .row .fields .multiple-list {
  width: auto;
  height: 240px;
}
.custom-content .row .fields .emailtemp {
  margin-left: 2px;
  width: 90%;
  height: 360px;
}
.custom-content .row .fields .desc {
  height: 80px;
}
.custom-content .row .fields input {
  width: 20%;
}
.custom-content .row .fields .large-input {
  width: 70%;
}
.custom-content .row .fields .submit-btn {
  width: auto;
}
.custom-content .row .fields .check {
  width: auto;
}
.custom-content .row .fields .topbar {
  float: left;
  width: 20%;
  margin-left: 40px;
}
.custom-content .row .fields .name {
  float: left;
  width: 40%;
}
.custom-content .row .fields .name input {
  width: 100%;
}
.custom-content .row .fields .twoinput {
  float: left;
  width: 50%;
  margin-left: 40px;
}
.custom-content .row .fields .twoinput input {
  width: 80%;
}
.custom-content .row .fields .meta-desc {
  height: 75px;
}
.custom-content .row .fields .topbar-first {
  float: left;
  width: 15%;
}
.custom-content .row .fields .topbar-second {
  float: left;
  width: 60%;
}

.event-type-table, .booking-admin-actions-table {
  width: 100%;
}
.event-type-table tr, .booking-admin-actions-table tr {
  background: white;
}
.event-type-table tr td, .booking-admin-actions-table tr td {
  padding: 10px;
}
.event-type-table tr td input, .booking-admin-actions-table tr td input {
  width: 40%;
}
.event-type-table tr td .fullwidth, .booking-admin-actions-table tr td .fullwidth {
  width: 100%;
}
.event-type-table tr:nth-child(odd), .booking-admin-actions-table tr:nth-child(odd) {
  background: #f6f5f2;
}
.event-type-table tr.title-row, .booking-admin-actions-table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.event-type-table .unread, .booking-admin-actions-table .unread {
  background: #ffd6d6 !important;
  border-bottom: 1px solid #fcbebe;
}

.time-range {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  place-items: center;
}
.time-range .js-start-hours, .time-range .js-end-hours, .time-range .js-start-mins, .time-range .js-end-mins {
  margin-left: 5px;
  margin-right: 5px;
}

.event-type-section .event-price, .event-type-section .is-discount, .event-type-section .discount-price {
  display: block;
  margin-bottom: 8px;
}

.consultation-tos-cbx {
  width: 18px !important;
  height: 18px;
}

.custom-pages table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
}
.custom-pages table tr {
  line-height: 30px;
}
.custom-pages table tr:nth-child(odd) {
  background: #f6f5f2;
}
.custom-pages table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.custom-pages table td {
  padding: 10px;
}

.expertise-areas .top-actions {
  margin: 15px 0;
}
.expertise-areas table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
}
.expertise-areas table tr {
  line-height: 30px;
}
.expertise-areas table tr:nth-child(odd) {
  background: #f6f5f2;
}
.expertise-areas table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.expertise-areas table td {
  padding: 10px;
}

.discounts .top-actions {
  margin: 15px 0;
}
.discounts table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
}
.discounts table tr {
  line-height: 30px;
}
.discounts table tr:nth-child(odd) {
  background: #f6f5f2;
}
.discounts table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.discounts table td {
  padding: 10px;
}

.payouts .top-actions {
  margin: 15px 0;
}
.payouts .hidden {
  display: none;
}
.payouts table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
.payouts table tr {
  line-height: 30px;
}
.payouts table tr:nth-child(even), .payouts table tr:nth-child(odd) {
  background: #f6f5f2;
}
.payouts table tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.payouts table td {
  padding: 10px;
}
.payouts table tr.balance-title-row {
  background: #8980e6;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}
.payouts table tr.log-title-row {
  background: #9df9cd;
  font-weight: bold;
}
.payouts table tr.log-row {
  font-weight: bold;
  cursor: pointer;
}
.payouts table tr.tra-title-row {
  background: #dddddb;
  font-weight: bold;
}

.custom-content {
  background: #f6f5f2;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.custom-content .row {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}
.custom-content .row .title {
  display: block;
  float: left;
  width: 13%;
  text-align: right;
}
.custom-content .row .fields {
  display: block;
  float: right;
  width: 85%;
}
.custom-content .row .fields.cbfields {
  padding: 6px 0;
}
.custom-content .row .fields .btn {
  margin: 10px 0;
}
.custom-content .row .fields textarea {
  margin-left: 2px;
  width: 70%;
  height: 160px;
}
.custom-content .row .fields .multiple-list {
  width: auto;
  height: 240px;
}
.custom-content .row .fields .emailtemp {
  margin-left: 2px;
  width: 90%;
  height: 360px;
}
.custom-content .row .fields .desc {
  height: 80px;
}
.custom-content .row .fields .large-input {
  width: 70%;
}
.custom-content .row .fields .submit-btn {
  width: auto;
}
.custom-content .row .fields .check {
  width: auto;
}
.custom-content .row .fields .topbar {
  float: left;
  width: 20%;
  margin-left: 40px;
}
.custom-content .row .fields .name {
  float: left;
  width: 40%;
}
.custom-content .row .fields .name input {
  width: 100%;
}
.custom-content .row .fields .twoinput {
  float: left;
  width: 50%;
  margin-left: 40px;
}
.custom-content .row .fields .twoinput input {
  width: 80%;
}
.custom-content .row .fields .meta-desc {
  height: 75px;
}
.custom-content .row .fields .tag-keywords {
  height: 75px;
}
.custom-content .row .fields .topbar-first {
  float: left;
  width: 15%;
}
.custom-content .row .fields .topbar-second {
  float: left;
  width: 60%;
}
.custom-content .row .fields .left {
  float: left;
  width: 20%;
  margin-left: 20px;
}
.custom-content .row .fields .block {
  display: block;
}
.custom-content .row .fields select {
  width: 50%;
}
.custom-content .lang-section .btns {
  position: relative;
  margin: 10px 0;
  left: 14%;
}
.custom-content .lang-section .tabs {
  padding: 10px 0 0;
  background-color: #e0e0e0;
}

/* BUTTON CSS */
.btngag {
  font: 500 14px/36px "Roboto", Arial, sans-serif;
  height: 36px;
  padding: 0 18px;
  width: auto;
  margin: 0;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.15s ease-in-out;
}

.btngag:hover, .btngag:active {
  filter: brightness(110%);
}

.btngag.btngag-only-border {
  border: 1px solid #AAAAAE;
  color: #2B2A35;
}

.btngag.btngag-white {
  background: #ffffff;
  color: #2B2A35;
}

.btngag.btngag-red {
  background: red;
  color: #ffffff;
}

.btngag.btngag-blue-gradient {
  background: #6B60E0;
  /* Old browsers */
  background: -moz-linear-gradient(left, #596DDF 0%, #7A58E4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #596DDF 0%, #7A58E4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #596DDF 0%, #7A58E4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#596DDF", endColorstr="#7A58E4",GradientType=1 );
  /* IE6-9 */
  color: #F2F2F9;
}

.btngag.btngag-green {
  background: #73F6B7;
  /* Old browsers */
  background: -moz-linear-gradient(left, #73F6B7 0%, #58E7A3 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #73F6B7 0%, #58E7A3 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #73F6B7 0%, #58E7A3 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#73F6B7", endColorstr="#58E7A3",GradientType=1 );
  /* IE6-9 */
  color: #334D5E;
}

.btngag.btngag-sm {
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 700;
}

.btngag.btngag-md {
  height: 46px;
  line-height: 46px;
}

/* TABLE CSS */
section main table {
  margin-top: 20px;
}

section main table th {
  background-color: #6b60e0;
  color: #fff;
}

section main table th:first-child {
  text-align: center;
}

section main table td:first-child {
  text-align: center;
}

section main table th:nth-child(5), section main table th:nth-child(6), section main table th:nth-child(7) {
  text-align: center;
}

section main table td:nth-child(5), section main table td:nth-child(6), section main table td:nth-child(7) {
  text-align: center;
}

section main table tr:nth-child(even) {
  background: #ddd;
}

.presentation-table th:last-child, .composite-question-options-table th:last-child {
  display: table-cell;
}

section main table th, section main table td {
  border: 1px solid white;
  padding: 10px;
}

.hiddenRow {
  display: none;
}

.bookingDetailView, .feedbackDetailView {
  min-height: 100px;
  width: 99%;
  padding: 5px;
  background-color: #ffffff;
  height: 160px;
  border: 1px solid #c7c7c7;
  overflow: auto;
  overflow-x: hidden;
}
.bookingDetailView b, .bookingDetailView strong, .feedbackDetailView b, .feedbackDetailView strong {
  font-weight: 700;
}

.bookingDetailView .booking-detail {
  margin-bottom: 14px;
}
.bookingDetailView .booking-detail span {
  font-weight: 700;
}

.feedbackDetailView {
  min-height: 400px;
}
.feedbackDetailView .feedback-row {
  display: block;
  width: 100%;
}
.feedbackDetailView .feedback-row h4 {
  width: 100%;
  margin-bottom: 16px;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  margin-bottom: 24px;
  background: #ffffff;
  padding: 14px;
  gap: 14px 0;
}
.filters span {
  margin: 0 10px;
  vertical-align: bottom;
}
.filters span .ttl {
  width: 100%;
}
.filters span.dropdown, .filters span.search {
  flex: 0 0 50%;
  margin: 0;
}
.filters span.dropdown select, .filters span.dropdown input, .filters span.search select, .filters span.search input {
  margin-left: 10px;
  width: 450px;
  height: 100px;
}
.filters span.cbx {
  flex: 0 0 100%;
}
.filters .actions {
  width: 100%;
  margin-top: 14px;
}
.filters .actions button {
  width: 200px;
  padding: 4px;
}
.filters .tab-buttons {
  width: 100%;
}

.user-calendar-settings .time-range {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  place-items: center;
}
.user-calendar-settings .time-range .js-start-hours, .user-calendar-settings .time-range .js-end-hours, .user-calendar-settings .time-range .js-start-mins, .user-calendar-settings .time-range .js-end-mins {
  margin-left: 5px;
  margin-right: 5px;
}
.user-calendar-settings .event-type-section .event-price, .user-calendar-settings .event-type-section .is-discount, .user-calendar-settings .event-type-section .discount-price {
  display: block;
  margin-bottom: 8px;
}
.user-calendar-settings .consultation-tos-cbx {
  width: 18px !important;
  height: 18px;
}

.update-calendar-booking .title, .update-calendar-booking .row-title {
  font-weight: 700;
}
.update-calendar-booking .field-row {
  width: 100%;
  margin-top: 14px;
}
.update-calendar-booking .field-row:first-of-type {
  margin-top: 0;
}
.update-calendar-booking input#AttendeePhone {
  width: 80%;
}
.update-calendar-booking input#AttendeeCountryCode {
  width: 10%;
}

.paginator {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 14px 0;
}
.paginator span {
  font-weight: 600;
  align-self: center;
}
.paginator span .pager-input {
  width: 75px;
}
.paginator .btn-pager {
  padding: 4px 0;
  border-radius: 6px;
}

.adsfile-table {
  width: 100%;
}
.adsfile-table tr {
  background: #bdbdbc !important;
}
.adsfile-table tr td {
  border: 1px solid #f6f5f2;
  padding: 10px;
}
.adsfile-table tr td textarea {
  width: 100%;
}
.adsfile-table tr td .submit-btn {
  margin: 10px auto;
  float: none;
}

.bibilen-questions {
  padding: 20px;
}
.bibilen-questions .sr-section {
  padding: 20px;
}
.bibilen-questions .bibilen-question-section .btn-add-new-question {
  margin: 20px 0;
}
.bibilen-questions .bibilen-question-table {
  min-width: 100%;
}
.bibilen-questions .bibilen-question-table tbody .title-row td {
  font-weight: 600;
}
.bibilen-questions .bibilen-question-table tbody td {
  text-align: center;
}
.bibilen-questions .bibilen-question-table textarea {
  min-width: 100%;
  min-height: 100px;
}
.bibilen-questions .profile-tabs {
  margin: 20px 0;
}

.discount-form .vsb-main {
  position: absolute;
}
.discount-form .desc-row {
  clear: both;
  padding-top: 10px;
  position: relative;
  left: 15%;
}

@media screen and (max-width: 1023px) {
  body > section {
    flex-wrap: wrap;
  }
  body > section nav {
    display: none;
    flex-basis: 100%;
    min-height: unset;
    height: 200px;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) {
  body > header .header-opts a, body > header .header-opts form {
    display: none;
  }
  body > section nav .header-opts {
    display: block;
    border-bottom: 2px solid white;
    margin-bottom: 10px;
  }
  body > section nav .header-opts form, body > section nav .header-opts a {
    display: block;
    margin: 0 0 10px 0;
    color: white;
  }
}
.presentation .btn-add-text-content {
  margin-top: 24px;
  margin-left: 0;
}

.js-cbx-row {
  min-width: 100px;
  text-align: center;
  cursor: pointer;
}
.js-cbx-row.active {
  background: #08c368;
}

.product-detail table.list {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-top: 20px;
  width: 100%;
  display: block;
  overflow: scroll;
}
.product-detail table.list tr {
  line-height: 30px;
}
.product-detail table.list tr td:nth-child(1), .product-detail table.list tr td:nth-child(7) {
  width: 10%;
}
.product-detail table.list tr td:nth-child(2), .product-detail table.list tr td:nth-child(3), .product-detail table.list tr td:nth-child(4), .product-detail table.list tr td:nth-child(7),
.product-detail table.list tr th:nth-child(2), .product-detail table.list tr th:nth-child(3), .product-detail table.list tr th:nth-child(4) {
  text-align: center;
}
.product-detail table.list tr:nth-child(odd) {
  background: #f6f5f2;
}
.product-detail table.list tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.product-detail table.list tr.error {
  background: #bf1819;
  color: #ffffff;
}
.product-detail table.list td {
  padding: 10px;
}

.image-holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  gap: 14px;
}
.image-holder .img {
  width: calc(33% - 14px);
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.image-holder .img img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}
.image-holder .img .btn-remove {
  width: 25%;
  padding: 8px;
  margin: 14px 0;
  background: #bf1819;
  color: #ffffff;
}
.image-holder .img .btn-primary {
  width: 25%;
  padding: 8px;
  margin: 14px 0;
}

.btn-primary {
  background: #6B60E0;
  color: #ffffff;
}

.section-title {
  margin: 24px 0;
}

.image-gallery {
  display: none;
}
.image-gallery.active {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.image-gallery.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  background-color: black;
}
.image-gallery.active .top-actions {
  display: flex;
  width: 100%;
  margin-bottom: 18px;
}
.image-gallery.active .top-actions .js-close-gallery {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}
.image-gallery.active .top-actions .btn {
  margin-left: auto;
}
.image-gallery.active .external-image-holder {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  gap: 14px;
  padding: 14px;
  overflow-y: scroll;
  background: #ffffff;
  place-items: flex-start;
  align-content: flex-start;
}
.image-gallery.active .external-image-holder .external-img {
  display: flex;
  flex-wrap: wrap;
  width: calc(16% - 14px);
}
.image-gallery.active .external-image-holder .external-img input[type=checkbox]:checked ~ img {
  border: 3px solid #08c368;
}
.image-gallery.active .external-image-holder .external-img img {
  height: 100%;
  width: auto;
}

.input-editor-btn {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  color: #6B60E0;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.report table.list {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-top: 20px;
  width: 100%;
  display: block;
  overflow: scroll;
}
.report table.list tr {
  line-height: 30px;
}
.report table.list tr td:nth-child(1), .report table.list tr td:nth-child(7) {
  width: 10%;
}
.report table.list tr td:nth-child(2), .report table.list tr td:nth-child(3), .report table.list tr td:nth-child(4), .report table.list tr td:nth-child(7),
.report table.list tr th:nth-child(2), .report table.list tr th:nth-child(3), .report table.list tr th:nth-child(4) {
  text-align: center;
}
.report table.list tr:nth-child(odd) {
  background: #f6f5f2;
}
.report table.list tr.title-row {
  background: #dddddb;
  font-weight: bold;
}
.report table.list tr.error {
  background: #bf1819;
  color: #ffffff;
}
.report table.list td, .report table.list th {
  min-width: 200px;
  padding: 10px;
  text-align: center;
}
.report table.list img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.footer-content h2 {
  margin-bottom: 24px;
}
.footer-content .footer-items {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid black;
}
.footer-content .footer-items h4 {
  margin-bottom: 14px;
}
.footer-content .footer-items .footer-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 14px 0;
  margin-bottom: 14px;
  position: relative;
}
.footer-content .footer-items .footer-item span {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 51%;
}
.footer-content .footer-items .footer-item span input {
  flex: 0 0 100%;
}
.footer-content .footer-items .footer-item .btn-remove {
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  position: absolute;
  top: 50%;
  right: 42%;
  background: red;
  border-radius: 100%;
  padding: 14px;
  width: 14px;
  height: 14px;
  color: white;
}
.footer-content .footer-items .js-add-item {
  margin: 14px 0;
}
.footer-content .btn-success {
  margin: 14px 0;
}

.margin-top {
  margin-top: 48px;
}

.no-items {
  min-height: 250px;
  width: 100%;
  padding: 24px;
}

.beauty-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  gap: 8px;
  margin-bottom: 14px;
}
.beauty-wrapper .beauty-score {
  padding: 0.5rem 1rem;
  border: 1px solid #6B60E0;
  cursor: pointer;
  color: #000;
  font-weight: 600;
}
.beauty-wrapper .beauty-score.selected {
  background: #6B60E0;
  color: #ffffff;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: 100%;
  gap: 12px;
  padding: 14px;
}
.item-list .list-item {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 calc(25% - 9px);
  justify-content: center;
  text-align: center;
}
.item-list .list-item img {
  height: 400px;
  width: auto;
}
.item-list .list-item .row {
  width: 100%;
  flex: 0 0 100%;
  margin: 8px 0;
}
.item-list .list-item .row p {
  font-weight: 600;
  margin: 8px 0;
}
.item-list .list-item .row .beauty-wrapper {
  justify-content: center;
}

.error-bg {
  background: #f8a42e;
}
