@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove _all_ animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-play-state: paused !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: #ffffff;
}
body.content {
  background: #ffffff;
}
body.modal {
  overflow: hidden;
}

header.login-header {
  height: 98px;
  background: #ffffff;
}
header.login-header .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 24px 0 0 62px;
}

header.header {
  background: #ffffff;
}
header.header .top-navigation {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid #eeeeee;
}
header.header .top-navigation .settings, header.header .top-navigation .logout {
  font-size: 15px;
}
header.header .top-navigation .settings a, header.header .top-navigation .logout a {
  color: #5f5f5f;
  text-decoration: none;
}
header.header .top-navigation .settings {
  border-right: 1px solid #eeeeee;
  padding: 9px 10px 6px 0;
  margin: 0 16px 0 0;
}
header.header .top-navigation .logout {
  padding: 9px 0 6px 4px;
  margin: 0 59px 0 0;
}
header.header .navigation {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header.header .navigation .menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 45px 0 0 39px;
}
@media only screen and (max-width: 768px) {
  header.header .navigation .menu ul {
    margin: 10px 0 0 15px;
  }
}
header.header .navigation .menu ul li {
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 37px;
}
@media only screen and (max-width: 768px) {
  header.header .navigation .menu ul li {
    margin-right: 20px;
  }
}
header.header .navigation .menu ul li a {
  color: #333333;
  text-decoration: none;
}
header.header .navigation .menu ul li.active a {
  color: #0091d0;
}
header.header .navigation .logo {
  margin: 25px 59px 23px 0;
}

.main {
  background: #ffffff;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}
.main .breadcrumb {
  font-size: 14px;
  margin: 20px 0 0 0;
}
.main .breadcrumb a {
  text-decoration: none;
  color: #0091d0;
}
.main h1 {
  font-size: 32px;
  font-weight: bold;
  color: #0091d0;
  text-transform: uppercase;
  padding: 42px 0 39px 0;
}
.main .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .actions .create {
  width: 300px;
}
.main .actions .search {
  width: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: 1px solid #3c3c3c;
  width: 260px;
  height: 42px;
  background: #ffffff;
  margin: 15px 0 0 0;
}
.main .actions .search img {
  width: 20px;
  height: 20px;
  margin: 10px 0 0 9px;
}
.main .actions .search input {
  width: calc(100% - 16px);
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  margin-left: 16px;
}

footer {
  height: 47px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #cccccc;
}
footer .wrapper {
  margin: 0 0 0 45px;
}
footer .wrapper .content {
  line-height: 26px;
  margin-top: 12px;
  display: flex;
  flex-direction: row;
}
footer .wrapper .content a {
  color: #3c3c3c;
  text-decoration: none;
  margin-right: 20px;
}

@media only screen and (max-width: 480px) {
  footer {
    position: relative;
    bottom: auto;
  }
  footer .wrapper {
    margin: 0 0 0 45px;
  }
  footer .wrapper .content {
    padding-top: 12px;
  }
}
@media only screen and (max-height: 650px) {
  footer {
    position: relative;
    bottom: auto;
  }
  footer .wrapper {
    margin: 0 0 0 45px;
  }
  footer .wrapper .content {
    padding-top: 12px;
  }
}
.input-text {
  position: relative;
  display: flex;
  transition: 0.1s ease-out;
  padding: 8px;
  color: #5f5f5f;
  cursor: text;
  flex-direction: row;
  background-color: #fff;
  border: 1px solid #a3a3a3;
}
.input-text ~ .error-message {
  display: none;
}
.input-text.error {
  border: 1px #e80004 solid !important;
}
.input-text.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  font-weight: bold;
}
.input-text .input-text__text {
  width: 100%;
  margin-top: 11px;
  margin-left: 8px;
  border: 0;
  color: #222;
  box-shadow: none;
  background-color: inherit;
  outline: none;
}
.input-text .input-text__label {
  display: block;
  position: absolute;
  top: 24px;
  left: 18px;
  transition: 0.1s ease-out;
  color: #5f5f5f;
}
.input-text .input-text__icon {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
}
.input-text .input-text__icon svg {
  width: 20px;
  height: 20px;
  fill: #3c3c3c;
}
.input-text.input-text--focus {
  border-color: #0091d0;
}
.input-text.input-text--focus .input-text__label {
  color: #0091d0 !important;
}
.input-text.input-text--filled .input-text__label {
  top: 8px;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}

.btn {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding: 17px 24px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: #0091d0;
  border-color: #0091d0;
  cursor: pointer;
}
.btn:hover {
  color: #0091d0;
  background-color: #ffffff;
  border-color: #0091d0;
}
.btn.width-300 {
  width: 300px;
}

.btn.secondary {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #0091d0;
  width: 100%;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding: 17px 24px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #0091d0;
  background-color: #fff;
  cursor: pointer;
}
.btn.secondary:hover {
  color: #fff;
  background-color: #0091d0;
}

.dropdown {
  position: relative;
  height: 55px;
}
.dropdown ~ .error-message {
  display: none;
}
.dropdown.error .dropdown__wrapper {
  border: 1px #e80004 solid !important;
}
.dropdown.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  margin-top: 3px;
  font-weight: bold;
}
.dropdown .dropdown__wrapper {
  background-color: #fff;
  border: 1px solid #a3a3a3;
  position: absolute;
  width: 100%;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle {
  color: #5f5f5f;
  display: flex;
  flex-direction: row;
  line-height: 1;
  padding: 9px 16px 7px;
  width: 100%;
  height: 53px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  overflow: visible;
  outline: none;
  justify-content: space-between;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 40px;
  text-align: left;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon svg {
  width: 24px;
  height: 24px;
  fill: #5f5f5f;
}
.dropdown .dropdown__wrapper .dropdown__content {
  display: none;
  flex-direction: column;
  border: 1px solid #fff;
  top: 40px;
  width: 100%;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  background-image: linear-gradient(to top, #fff 100%, #fff0 100%), linear-gradient(to bottom, #fff 100%, #fff0 100%);
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__select {
  display: none;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option {
  font-size: 14px;
  line-height: 21px;
  margin: 8px 0 7px;
  user-select: none;
  transition: 0.1s ease-out;
  color: #5f5f5f;
  cursor: pointer;
  padding: 0 0.25rem 0.25rem 1rem;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option:hover {
  color: #222;
}
.dropdown .dropdown__wrapper.dropdown--is-open {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.14);
  border-color: #0000;
  z-index: 1;
}
.dropdown .dropdown__wrapper.dropdown--is-open .dropdown_button .dropdown_toggle {
  color: #222;
}
.dropdown .dropdown__wrapper.dropdown--is-open .dropdown__content {
  display: flex;
}

.global-checkbox {
  position: absolute;
  opacity: 0;
}
.global-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
}
.global-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 25px;
  height: 25px;
  background: white;
  border: 2px solid #333333;
}
.global-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.global-checkbox:checked + label:before {
  background: #0091d0;
  border: 2px solid #0091d0;
}
.global-checkbox:checked + label:after {
  content: "";
  background: url("../images/icon_check.svg");
  background-position: center center;
  background-size: cover;
  height: 18px;
  width: 18px;
  position: absolute;
  left: 4px;
  top: 4px;
}

.checkbox {
  align-items: center;
  color: #5f5f5f;
  cursor: pointer;
  display: flex;
  position: relative;
}
.checkbox:hover .checkbox__box-outline {
  border: 2px solid #0091d0;
}
.checkbox .checkbox__input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox .checkbox__input:checked ~ .checkbox__box-outline {
  border: 2px solid #0091d0;
  background-color: #0091d0;
}
.checkbox .checkbox__box-outline {
  background-color: #fff;
  height: 18px;
  width: 18px;
  align-self: start;
  border: 1px solid #a3a3a3;
  flex-shrink: 0;
  margin: 8px 8px 8px 0;
  position: relative;
  transition: 0.1s ease-out;
}
.checkbox .checkbox__box-outline .checkbox__tick-outline {
  height: 0.8rem;
  width: 0.4rem;
  border: solid #fff;
  border-width: 0 0.1rem 0.1rem 0;
  bottom: 0.16rem;
  display: block;
  left: 4px;
  position: absolute;
  transform: rotate(45deg);
}
.checkbox .checkbox__label {
  font-size: 16px;
  color: #343434;
  line-height: 1.3125rem;
  margin: 8px 0 7px 2px;
  user-select: none;
  transition: 0.1s ease-out;
}

.radio-buttons {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.radio-buttons .radio-button {
  color: #5f5f5f;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 8px 8px 24px;
  flex: 0 0 auto;
}
.radio-buttons .radio-button:first-of-type {
  margin: 0 8px 8px 0;
}
.radio-buttons .radio-button:hover .radio-button__box-outline {
  border: 2px solid #0091d0;
}
.radio-buttons .radio-button:hover .radio-button__label {
  color: #222;
}
.radio-buttons .radio-button .radio-button__input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.radio-buttons .radio-button .radio-button__input:checked ~ .radio-button__box-outline {
  background-color: #0091d0;
  border: 2px solid #0091d0;
}
.radio-buttons .radio-button .radio-button__box-outline {
  height: 1.125rem;
  width: 1.125rem;
  align-self: start;
  border: 1px solid #a3a3a3;
  flex-shrink: 0;
  margin: 8px 8px 8px 0;
  position: relative;
  transition: 0.1s ease-out;
  border-radius: 50%;
  background-color: #fff;
}
.radio-buttons .radio-button .radio-button__label {
  font-size: 16px;
  color: #343434;
  line-height: 1.3125rem;
  margin: 8px 0 7px 2px;
  user-select: none;
  transition: 0.1s ease-out;
}

.password-box {
  width: 100%;
  position: relative;
  padding: 8px;
  color: #5f5f5f;
  cursor: no-drop;
  background-color: #f2f2f2;
  margin-bottom: 16px;
  border: 1px solid #a3a3a3;
  box-shadow: none;
  height: 54px;
}
.password-box .title {
  display: block;
  position: absolute;
  top: 8px;
  left: 18px;
  color: #5f5f5f;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}
.password-box .circles {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  margin-left: 11px;
}
.password-box .circles .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5f5f5f;
  margin-right: 5px;
}

.text-readonly {
  text-readonly: 100%;
  position: relative;
  padding: 8px;
  color: #5f5f5f;
  cursor: no-drop;
  background-color: #f2f2f2;
  border: 1px solid #a3a3a3;
  box-shadow: none;
  height: 54px;
}
.text-readonly .title {
  display: block;
  position: absolute;
  top: 8px;
  left: 18px;
  color: #5f5f5f;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}
.text-readonly .content {
  margin-top: 14px;
  margin-left: 10px;
}

.textarea {
  width: 100%;
  box-shadow: none;
  position: relative;
  display: block;
  transition: 0.1s ease-out;
  padding: 0.5rem;
  color: #5f5f5f;
  cursor: text;
  flex-direction: row;
  background-color: #fff;
  border: 1px #a3a3a3 solid;
}
.textarea ~ .error-message {
  display: none;
}
.textarea.error {
  border: 1px #e80004 solid !important;
}
.textarea.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  font-weight: bold;
}
.textarea .textarea__text {
  width: 100%;
  margin-top: 11px;
  margin-left: 8px;
  border: 0;
  color: #222;
  box-shadow: none;
  background-color: inherit;
  outline: none;
  resize: none;
}
.textarea .textarea__label {
  display: block;
  position: absolute;
  top: 24px;
  left: 18px;
  transition: 0.1s ease-out;
  color: #5f5f5f;
}
.textarea.textarea--focus {
  border-color: #0091d0;
}
.textarea.textarea--focus .textarea__label {
  color: #0091d0 !important;
}
.textarea.textarea--filled .textarea__label {
  top: 8px;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}

.data-table .head {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #dadada;
}
.data-table .head .col {
  display: flex;
  flex-direction: row;
  padding: 47px 0 7px 0;
}
.data-table .head .col .label {
  font-size: 16px;
  font-weight: bold;
  color: #5f5f5f;
  cursor: pointer;
}
.data-table .head .col .sort {
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  cursor: pointer;
  margin: 0 0 0 9px;
}
.data-table .head .col .sort .up, .data-table .head .col .sort .down {
  width: 14px;
  height: 12px;
}
.data-table .head .col .sort .up svg, .data-table .head .col .sort .down svg {
  fill: #3c3c3c;
}
.data-table .head .col .sort .up {
  margin: -5px 0 0 0;
}
.data-table .head .col .sort.up .up svg {
  fill: #333333;
}
.data-table .head .col .sort.up .down svg {
  fill: #ffffff;
}
.data-table .head .col .sort.down .up svg {
  fill: #ffffff;
}
.data-table .head .col .sort.down .down svg {
  fill: #333333;
}
.data-table .body {
  margin-bottom: 140px;
}
.data-table .body .row {
  height: 110px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #dadada;
  overflow: hidden;
}
.data-table .body .row.hidden {
  display: none;
}
.data-table .body .row .col {
  font-size: 16px;
  color: #5f5f5f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
  line-height: 28px;
}

.context-menu {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  padding: 9px 0;
  min-width: 227px;
  transform-origin: top right;
  transform: scale(0.2);
  transition: all 0.15s ease-out;
}
.context-menu.show {
  transform: scale(1);
}
.context-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.context-menu ul li .menu-item {
  font-size: 15px;
  color: #5f5f5f;
  padding: 10px 0 10px 20px;
  cursor: pointer;
}
.context-menu ul li .menu-item.disabled {
  color: #3c3c3c;
  cursor: no-drop;
}
.context-menu ul li .menu-item:hover {
  background: #eeeeee;
}

.confirm-dialog {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.confirm-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.confirm-dialog.show .confirm-dialog-container {
  transform: translateY(0);
}
.confirm-dialog .confirm-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 700px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.confirm-dialog .confirm-dialog-container h2 {
  color: #0091d0;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.confirm-dialog .confirm-dialog-container p {
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin: 0 0 48px 0;
}
.confirm-dialog .confirm-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.confirm-dialog .confirm-dialog-container .buttons .btn {
  margin-right: 40px;
}
.confirm-dialog .confirm-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.confirm-dialog .confirm-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

@media only screen and (max-width: 768px) {
  .confirm-dialog .confirm-dialog-container {
    width: calc(100% - 40px);
    padding: 34px 40px 50px 40px;
  }
}
.hint {
  position: relative;
}
.hint .icon {
  border: 2px solid #5f5f5f;
  color: #5f5f5f;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 23px;
  font-weight: bold;
  cursor: pointer;
  margin: 14px 0 0 16px;
}
.hint .explanation {
  display: none;
  position: absolute;
  top: 31px;
  left: 17px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  min-width: 450px;
  max-width: 450px;
  padding: 16px 20px 16px 20px;
  color: #5f5f5f;
  z-index: 100;
}
.hint .explanation.show {
  display: block;
}

.login-dialog {
  max-width: 460px;
  width: 460px;
  min-width: 460px;
  margin: 0 auto;
  background: #e6e6e6;
  padding: 40px;
}
.login-dialog .wrapper h1 {
  color: #0091d0;
  font-weight: bold;
  font-size: 32px;
}
.login-dialog .wrapper h2 {
  color: #333333;
  font-weight: bold;
  font-size: 18px;
  margin: 26px 0 0 0;
}
.login-dialog .wrapper .email {
  margin: 17px 0 16px 0;
}
.login-dialog .wrapper .password {
  margin: 3px 0 16px 0;
}
.login-dialog .wrapper .error {
  color: #e80004;
  font-size: 16px;
  margin-top: 10px;
  display: none;
}
.login-dialog .wrapper .error.black {
  color: #333333;
}
.login-dialog .wrapper a {
  color: #0091d0;
  text-decoration: none;
}
.login-dialog .wrapper .login-button {
  margin: 4px 0 0 0;
}
.login-dialog .wrapper .remember-forgot {
  font-size: 14px;
  color: #5f5f5f;
  line-height: 16px;
  margin: 15px 0 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}
.login-dialog .wrapper .remember-forgot label {
  cursor: pointer;
}
.login-dialog .wrapper .remember-forgot a {
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  .login-dialog {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    padding: 20px;
  }
  .login-dialog .wrapper h1 {
    line-height: 1.1;
  }
  .login-dialog .wrapper h2 {
    margin: 26px 0 0 0;
  }
  .login-dialog .wrapper .email {
    margin: 17px 0 16px 0;
  }
  .login-dialog .wrapper .password {
    margin: 3px 0 16px 0;
  }
  .login-dialog .wrapper .login-button {
    margin: 4px 0 0 0;
  }
  .login-dialog .wrapper .forgot {
    font-size: 14px;
    color: #5f5f5f;
    line-height: 16px;
    margin: 20px 0 0 0;
  }
}
.dashboard {
  box-sizing: border-box;
  display: flex;
  flex-align: row;
  justify-content: center;
  background: #e6e6e6;
  width: 100%;
  height: calc(100vh - 122px);
}
.dashboard .area {
  width: 30%;
  max-width: 350px;
  margin: 20px;
  height: 200px;
  background: #ffffff;
  cursor: pointer;
}
.dashboard .area .icon {
  text-align: center;
  padding: 36px 0 0 0;
  height: 160px;
}
.dashboard .area .icon svg {
  width: 112px;
  fill: #0091d0;
}
.dashboard .area.catalog .icon svg {
  width: 104px;
}
.dashboard .area.youtube .icon svg {
  width: 90px;
}
.dashboard .area .title {
  text-align: center;
}
@media only screen and (max-width: 880px) {
  .dashboard .area .title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .dashboard {
    display: block;
    justify-content: center;
    height: auto;
    padding: 20px 0;
  }
  .dashboard .area {
    width: calc(100% - 40px);
    max-width: none;
    margin: 20px;
    height: 200px;
  }
  .dashboard .area:first-of-type {
    margin-top: 0;
  }
  .dashboard .area .title {
    font-size: 16px;
  }
}
.usersettings-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.usersettings-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.usersettings-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.usersettings-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.usersettings-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.usersettings-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.usersettings-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.usersettings-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.usersettings-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.usersettings-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.search-langauge {
  display: flex;
  flex-direction: row;
}
.search-langauge .search {
  width: 260px;
}
.search-langauge .job-language {
  margin-left: 21px;
  width: 260px;
  padding: 15px 0 0 0;
}
.search-langauge .job-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle {
  height: 40px;
}
.search-langauge .job-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title {
  line-height: 22px;
}
.search-langauge .job-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title .job-count {
  color: #949494;
}
.search-langauge .job-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon {
  margin-top: 0;
}
.search-langauge .job-language .dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option .job-count {
  color: #949494;
}

.data-table.jobs .head .col:nth-child(1),
.data-table.jobs .body .col:nth-child(1) {
  width: 9.3%;
  padding-left: 18px;
}
.data-table.jobs .head .col:nth-child(2),
.data-table.jobs .body .col:nth-child(2) {
  width: 30.7%;
}
.data-table.jobs .head .col:nth-child(3),
.data-table.jobs .body .col:nth-child(3) {
  width: 12.8%;
}
.data-table.jobs .head .col:nth-child(4),
.data-table.jobs .body .col:nth-child(4) {
  width: 12.8%;
}
.data-table.jobs .head .col:nth-child(5),
.data-table.jobs .body .col:nth-child(5) {
  width: 12.8%;
}
.data-table.jobs .head .col:nth-child(6),
.data-table.jobs .body .col:nth-child(6) {
  width: 14.4%;
}
.data-table.jobs .head .col:nth-child(7),
.data-table.jobs .body .col:nth-child(7) {
  width: 7.2%;
}
.data-table.jobs .head .col:nth-child(7) .edit,
.data-table.jobs .body .col:nth-child(7) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.jobs .head .col:nth-child(7) .edit img,
.data-table.jobs .body .col:nth-child(7) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}
.data-table.jobs .head .state-icon,
.data-table.jobs .body .state-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: help;
}
.data-table.jobs .head .state-icon.draft,
.data-table.jobs .body .state-icon.draft {
  background: #f9ba3c;
}
.data-table.jobs .head .state-icon.active,
.data-table.jobs .body .state-icon.active {
  background: #50902b;
}
.data-table.jobs .head .state-icon.archive,
.data-table.jobs .body .state-icon.archive {
  background: #3c3c3c;
}
.data-table.jobs .head .state-icon.planned,
.data-table.jobs .body .state-icon.planned {
  background: #0091d0;
}
.data-table.jobs .head .state-icon .state-text,
.data-table.jobs .body .state-icon .state-text {
  display: none;
}

.job-form .mandatory {
  margin-bottom: 28px;
  color: #5f5f5f;
}
.job-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.job-form .row.space-top {
  margin-top: 33px;
}
.job-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.job-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.job-form .row .col-inputs.two-column {
  width: 940px;
  min-width: 940px;
  max-width: 940px;
}
.job-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.job-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.job-form .row .col-inputs .col-input.two-column {
  display: flex;
  flex-direction: row;
}
.job-form .row .col-inputs .col-left {
  width: 450px;
  margin-right: 40px;
}
.job-form .row .col-inputs .col-left .job-image {
  border: 1px solid #3c3c3c;
}
.job-form .row .col-inputs .col-left .job-image img {
  width: 448px;
  height: auto;
}
.job-form .row .col-inputs .col-right {
  width: 450px;
}
.job-form .row .col-inputs .col-right #select-image {
  margin-top: 72px;
}
.job-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.job-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.job-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.job-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.job-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.job-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.job-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.image-dialog {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-dialog.pre-show {
  display: flex;
}
.image-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.image-dialog.show .image-dialog-container {
  transform: translateY(0);
}
.image-dialog .image-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 760px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.image-dialog .image-dialog-container h2 {
  color: #0091d0;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.image-dialog .image-dialog-container .images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 375px;
  margin-bottom: 40px;
  overflow-y: auto;
}
.image-dialog .image-dialog-container .images .image {
  width: 306px;
  margin: 0 40px 40px 0;
  cursor: pointer;
  border: 4px solid #ffffff;
}
.image-dialog .image-dialog-container .images .image:nth-child(2n) {
  margin-right: 0;
}
.image-dialog .image-dialog-container .images .image.selected {
  border-color: #f9ba3c;
}
.image-dialog .image-dialog-container .images .image img {
  width: 100%;
  height: auto;
}
.image-dialog .image-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  padding: 0 0 0 4px;
}
.image-dialog .image-dialog-container .buttons .btn {
  margin-right: 40px;
  width: 250px;
}
.image-dialog .image-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.image-dialog .image-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.data-table.users .head .col:nth-child(1),
.data-table.users .body .col:nth-child(1) {
  width: 18%;
  padding-left: 40px;
}
.data-table.users .head .col:nth-child(2),
.data-table.users .body .col:nth-child(2) {
  width: 28%;
}
.data-table.users .head .col:nth-child(3),
.data-table.users .body .col:nth-child(3) {
  width: 14.5%;
}
.data-table.users .head .col:nth-child(4),
.data-table.users .body .col:nth-child(4) {
  width: 19%;
}
.data-table.users .head .col:nth-child(5),
.data-table.users .body .col:nth-child(5) {
  width: 13%;
}
.data-table.users .head .col:nth-child(6),
.data-table.users .body .col:nth-child(6) {
  width: 7.5%;
}
.data-table.users .head .col:nth-child(6) .edit,
.data-table.users .body .col:nth-child(6) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.users .head .col:nth-child(6) .edit img,
.data-table.users .body .col:nth-child(6) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}

.user-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.user-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.user-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.user-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.user-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.user-form .row .col-inputs .col-input .generate-password {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  text-align: right;
  color: #0091d0;
  cursor: pointer;
}
.user-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.user-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.user-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.user-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.user-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.user-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.user-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.emailtext-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.emailtext-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.emailtext-form .row .col-inputs {
  width: 900px;
  min-width: 900px;
  max-width: 900px;
}
.emailtext-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.emailtext-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.emailtext-form .row .col-inputs .col-input .generate-password {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  text-align: right;
  color: #0091d0;
  cursor: pointer;
}
.emailtext-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.emailtext-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.emailtext-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.emailtext-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.emailtext-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.emailtext-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.emailtext-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.preview-dialog {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preview-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.preview-dialog.show .preview-dialog-container {
  transform: translateY(0);
}
.preview-dialog .preview-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 850px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.preview-dialog .preview-dialog-container .preview-iframe-wrapper {
  width: 753px;
  height: 400px;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.preview-dialog .preview-dialog-container .preview-iframe-wrapper .preview-iframe {
  width: 1048px;
  border: 0;
  transform: scale(0.7);
  transform-origin: 0 0;
}
.preview-dialog .preview-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.preview-dialog .preview-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.preview-wrapper {
  max-width: 1048px;
  min-width: 1048px;
  width: 1048px;
  background: #ffffff;
}
.preview-wrapper .top {
  color: #f9ba3c;
  background-color: #0091d0;
  border-top: 10px solid #f9ba3c;
  padding: 20px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.preview-wrapper .top .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.preview-wrapper .top .number {
  font-size: 20px;
}
.preview-wrapper .image {
  position: relative;
}
.preview-wrapper .image img {
  width: 100%;
  height: auto;
}
.preview-wrapper .image .caption {
  background-color: #0058a2bf;
  border-top: 6px solid #fbba00;
  bottom: -20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 80px);
}
.preview-wrapper .image .caption .caption-top {
  color: #fbba00;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 30px 10px 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-middle {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-pre-bottom {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 30px 15px 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-bottom {
  background-color: #fbba00;
  color: #0058a2;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  text-transform: uppercase;
}
.preview-wrapper .description {
  background-color: #d8d8d8;
  padding: 60px 55px 40px 55px;
}
.preview-wrapper .description .block {
  margin-bottom: 20px;
}
.preview-wrapper .description .block .title {
  color: #0058a2;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
.preview-wrapper .description .block ul {
  list-style: none inside;
  margin: 0;
  margin-top: -0.8em;
  padding-left: 1.6em;
}
.preview-wrapper .description .block ul li {
  font-size: 18px;
  line-height: 28px;
}
.preview-wrapper .description .block ul li:before {
  color: #0058a2;
  content: "■";
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  margin-left: -0.8em;
  padding-right: 0.3em;
  position: relative;
  top: -1px;
  width: 0.8em;
}
.preview-wrapper .description .address {
  font-size: 18px;
  margin-bottom: 2.5em;
  margin-top: 50px;
  line-height: 28px;
}

.data-table.images .head .col:nth-child(1),
.data-table.images .body .col:nth-child(1) {
  width: 35%;
  padding-left: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table.images .head .col:nth-child(2),
.data-table.images .body .col:nth-child(2) {
  width: 13%;
}
.data-table.images .head .col:nth-child(2) img,
.data-table.images .body .col:nth-child(2) img {
  height: 89px;
  width: 116px;
}
.data-table.images .head .col:nth-child(3),
.data-table.images .body .col:nth-child(3) {
  width: 47%;
}
.data-table.images .head .col:nth-child(4),
.data-table.images .body .col:nth-child(4) {
  width: 5%;
}
.data-table.images .head .col:nth-child(4) .edit,
.data-table.images .body .col:nth-child(4) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.images .head .col:nth-child(4) .edit img,
.data-table.images .body .col:nth-child(4) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}

.language-dialog {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.language-dialog.pre-show {
  display: flex;
}
.language-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.language-dialog.show .image-dialog-container {
  transform: translateY(0);
}
.language-dialog .language-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 760px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.language-dialog .language-dialog-container h2 {
  color: #0091d0;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.language-dialog .language-dialog-container .languages {
  max-height: 435px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-bottom: 40px;
}
.language-dialog .language-dialog-container .languages .input-header {
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 16px;
}
.language-dialog .language-dialog-container .languages .input-header:first-of-type {
  margin-top: 0;
}
.language-dialog .language-dialog-container .languages .two-cols {
  display: flex;
  flex-direction: row;
}
.language-dialog .language-dialog-container .languages .two-cols .col {
  flex: 1;
}
.language-dialog .language-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  padding: 0 0 0 4px;
}
.language-dialog .language-dialog-container .buttons .btn {
  margin-right: 40px;
  width: 250px;
}
.language-dialog .language-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.language-dialog .language-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.nl-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.nl-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.nl-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.nl-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.nl-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.nl-form .row .col-inputs .mandatory-field-explanation {
  color: #5f5f5f;
  font-size: 14px;
}
.nl-form .row .col-inputs .response {
  margin-top: 10px;
  font-weight: bold;
}
.nl-form .row .col-inputs .response.success {
  color: #50902b;
}
.nl-form .row .col-inputs .response.error {
  color: #e80004;
}
.nl-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.nl-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.nl-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.nl-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.nl-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.nl-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.nl-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .main h1 {
    font-size: 26px;
  }

  .nl-form .row .col-label,
.nl-form .row .col-hints {
    display: none;
  }
  .nl-form .row .col-inputs {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
#please-wait {
  display: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0091d0;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0091d0 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.catalog-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.catalog-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.catalog-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.catalog-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.catalog-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.catalog-form .row .col-inputs .radio-buttons.row-buttons {
  display: block;
}
.catalog-form .row .col-inputs .mandatory-field-explanation {
  color: #5f5f5f;
  font-size: 14px;
}
.catalog-form .row .col-inputs .response {
  margin-top: 10px;
  font-weight: bold;
}
.catalog-form .row .col-inputs .response.success {
  color: #50902b;
}
.catalog-form .row .col-inputs .response.error {
  color: #e80004;
}
.catalog-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.catalog-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.catalog-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.catalog-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.catalog-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.catalog-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.catalog-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.journal-title {
  color: #a7a7a7;
}

@media only screen and (max-width: 768px) {
  .main h1 {
    font-size: 26px;
  }

  .catalog-form .row .col-label,
.catalog-form .row .col-hints {
    display: none;
  }
  .catalog-form .row .col-inputs {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
#please-wait {
  display: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0091d0;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0091d0 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.video-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.video-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.video-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.video-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.video-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.video-form .row .col-inputs .mandatory-field-explanation {
  color: #5f5f5f;
  font-size: 14px;
}
.video-form .row .col-inputs .response {
  margin-top: 10px;
  font-weight: bold;
}
.video-form .row .col-inputs .response.success {
  color: #50902b;
}
.video-form .row .col-inputs .response.error {
  color: #e80004;
}
.video-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.video-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.video-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.video-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.video-form .row .col-inputs .radio-buttons .row-button {
  width: 33%;
}
@media only screen and (max-width: 450px) {
  .video-form .row .col-inputs .radio-buttons .row-button {
    width: 50%;
  }
}
.video-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.video-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.video-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .main h1 {
    font-size: 26px;
  }

  .video-form .row .col-label,
.video-form .row .col-hints {
    display: none;
  }
  .video-form .row .col-inputs {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
#please-wait {
  display: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0091d0;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0091d0 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.data-table.videos .head .col:nth-child(1),
.data-table.videos .body .col:nth-child(1) {
  width: 7%;
  padding-left: 10px;
}
.data-table.videos .head .col:nth-child(2),
.data-table.videos .body .col:nth-child(2) {
  width: 19%;
  padding-left: 10px;
  padding-right: 10px;
}
.data-table.videos .head .col:nth-child(3),
.data-table.videos .body .col:nth-child(3) {
  width: 20%;
}
.data-table.videos .head .col:nth-child(4),
.data-table.videos .body .col:nth-child(4) {
  width: 54%;
}
.data-table.videos .head .col .check-video,
.data-table.videos .body .col .check-video {
  cursor: pointer;
}
.data-table.videos .head .col-mobile,
.data-table.videos .body .col-mobile {
  display: none;
}

.videos-loading {
  margin-left: 190px;
}

#video-actions,
#video-list,
#loading-videos {
  display: none;
}

@media only screen and (max-width: 768px) {
  .data-table.videos .head {
    display: none;
  }

  .data-table.videos .body {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .data-table.videos .head {
    display: none;
  }

  .data-table.videos .body {
    padding-top: 20px;
  }
  .data-table.videos .body .row {
    flex-direction: column;
    height: auto;
  }
  .data-table.videos .body .col:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    padding: 0;
  }
  .data-table.videos .body .col:nth-child(2) {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .data-table.videos .body .col:nth-child(2) img {
    width: 100%;
    height: auto;
  }
  .data-table.videos .body .col:nth-child(3) {
    display: none;
  }
  .data-table.videos .body .col:nth-child(4) {
    display: none;
  }
  .data-table.videos .body .col-mobile {
    font-size: 16px;
    color: #5f5f5f;
    display: block;
    padding: 10px 0 20px 10px;
  }
}
.main .actions#reminder-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .actions#reminder-actions .selected-count {
  font-size: 12px;
  margin: 53px 0 0 25px;
}

.search-reminder {
  display: flex;
  flex-direction: row;
}
.search-reminder .search {
  width: 260px;
}

.data-table.reminders .head .col.inactive,
.data-table.reminders .body .col.inactive {
  color: #cecece;
}
.data-table.reminders .head .col:nth-child(1),
.data-table.reminders .body .col:nth-child(1) {
  width: 7%;
}
.data-table.reminders .head .col:nth-child(1) a,
.data-table.reminders .body .col:nth-child(1) a {
  color: #5f5f5f;
}
.data-table.reminders .head .col:nth-child(2),
.data-table.reminders .body .col:nth-child(2) {
  width: 21%;
}
.data-table.reminders .head .col:nth-child(2) a,
.data-table.reminders .body .col:nth-child(2) a {
  color: #5f5f5f;
}
.data-table.reminders .head .col:nth-child(3),
.data-table.reminders .body .col:nth-child(3) {
  width: 30%;
}
.data-table.reminders .head .col:nth-child(3) a,
.data-table.reminders .body .col:nth-child(3) a {
  color: #5f5f5f;
}
.data-table.reminders .head .col:nth-child(4),
.data-table.reminders .body .col:nth-child(4) {
  width: 18.5%;
}
.data-table.reminders .head .col:nth-child(4) a,
.data-table.reminders .body .col:nth-child(4) a {
  color: #5f5f5f;
}
.data-table.reminders .head .col:nth-child(5),
.data-table.reminders .body .col:nth-child(5) {
  width: 18.5%;
}
.data-table.reminders .head .col:nth-child(5) a,
.data-table.reminders .body .col:nth-child(5) a {
  color: #5f5f5f;
}
.data-table.reminders .head .col:nth-child(6),
.data-table.reminders .body .col:nth-child(6) {
  width: 5%;
}
.data-table.reminders .head .col:nth-child(6) .edit,
.data-table.reminders .body .col:nth-child(6) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.reminders .head .col:nth-child(6) .edit img,
.data-table.reminders .body .col:nth-child(6) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}

.delete-selected {
  margin-bottom: 140px;
}

.reminder-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.reminder-form .row.hidden {
  display: none;
}
.reminder-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.reminder-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.reminder-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.reminder-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.reminder-form .row .col-inputs .col-input.hidden {
  display: none;
}
.reminder-form .row .col-inputs .radio-buttons.row-buttons {
  display: block;
}
.reminder-form .row .col-inputs .mandatory-field-explanation {
  color: #5f5f5f;
  font-size: 14px;
}
.reminder-form .row .col-inputs .response {
  margin-top: 10px;
  font-weight: bold;
}
.reminder-form .row .col-inputs .response.success {
  color: #50902b;
}
.reminder-form .row .col-inputs .response.error {
  color: #e80004;
}
.reminder-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.reminder-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.reminder-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.reminder-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.reminder-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.reminder-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.reminder-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.journal-title {
  color: #a7a7a7;
}

@media only screen and (max-width: 768px) {
  .main h1 {
    font-size: 26px;
  }

  .reminder-form .row .col-label,
.reminder-form .row .col-hints {
    display: none;
  }
  .reminder-form .row .col-inputs {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
#please-wait {
  display: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0091d0;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0091d0 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */
