/* Style Sheet for WD User Interface Elements*/
/* -------------------------------------------------------------------------------- */
/* MISC */
/* -------------------------------------------------------------------------------- */
.css-hidden,
.wd-hidden {
  display: none !important;
}
/* Make the paginators look like they are clickable, which they are. */
.css-paginator > span,
.wd-paginator > span {
  cursor: pointer;
}
.css-paginator > span.wd-active-page,
.wd-paginator > span.wd-active-page {
  cursor: default;
}
/* Hide the file upload button from user view */
.wd-HideInputFileUpload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
/* -------- */
/* Spinners */
/* -------- */
.wd-ellipsis {
  display: inline-block;
  position: relative;
  --spinner-size: 40px;
  width: var(--spinner-size);
  height: var(--spinner-size);
}
.wd-ellipsis,
.wd-ellipsis div {
  box-sizing: border-box;
}
.wd-ellipsis div {
  position: absolute;
  top: calc(33.33333 * var(--spinner-size) / 80);
  width: calc(13.33333 * var(--spinner-size) / 80);
  height: calc(13.33333 * var(--spinner-size) / 80);
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.wd-ellipsis div:nth-child(1) {
  left: calc(0.1 * var(--spinner-size));
  animation: wd-ellipsis1 0.6s infinite;
}
.wd-ellipsis div:nth-child(2) {
  left: calc(0.1 * var(--spinner-size));
  animation: wd-ellipsis2 0.6s infinite;
}
.wd-ellipsis div:nth-child(3) {
  left: calc(0.4 * var(--spinner-size));
  animation: wd-ellipsis2 0.6s infinite;
}
.wd-ellipsis div:nth-child(4) {
  left: calc(0.7 * var(--spinner-size));
  animation: wd-ellipsis3 0.6s infinite;
}
@keyframes wd-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wd-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes wd-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(calc(0.3 * var(--spinner-size)), 0);
  }
}
.wd-facebook {
  display: inline-block;
  position: relative;
  --spinner-size: 40px;
  width: var(--spinner-size);
  height: var(--spinner-size);
}
.wd-facebook,
.wd-facebook div {
  box-sizing: border-box;
}
.wd-facebook div {
  display: inline-block;
  position: absolute;
  left: calc(0.1 * var(--spinner-size));
  width: calc(0.2 * var(--spinner-size));
  background: currentColor;
  animation: wd-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.wd-facebook div:nth-child(1) {
  left: calc(0.4 * var(--spinner-size));
  animation-delay: -0.24s;
}
.wd-facebook div:nth-child(2) {
  left: calc(0.4 * var(--spinner-size));
  animation-delay: -0.12s;
}
.wd-facebook div:nth-child(3) {
  left: calc(0.7 * var(--spinner-size));
  animation-delay: 0s;
}
@keyframes wd-facebook {
  0% {
    top: calc(0.1 * var(--spinner-size));
    height: calc(0.8 * var(--spinner-size));
  }
  50%,
  100% {
    top: calc(0.3 * var(--spinner-size));
    height: calc(0.4 * var(--spinner-size));
  }
}
.wd-spinner {
  color: currentColor;
  display: inline-block;
  position: relative;
  --spinner-size: 40px;
  width: var(--spinner-size);
  height: var(--spinner-size);
}
.wd-spinner,
.wd-spinner div,
.wd-spinnerdiv:after {
  box-sizing: border-box;
}
.wd-spinner div {
  transform-origin: calc(var(--spinner-size) / 2) calc(var(--spinner-size) / 2);
  animation: wd-spinner 1.2s linear infinite;
}
.wd-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: calc(3.2 * var(--spinner-size) / 80);
  left: calc(36.8 * var(--spinner-size) / 80);
  width: calc(5 * var(--spinner-size) / 80);
  height: calc(17.6 * var(--spinner-size) / 80);
  border-radius: 20%;
  background: currentColor;
}
.wd-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.wd-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.wd-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.wd-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.wd-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.wd-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.wd-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.wd-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.wd-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.wd-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.wd-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.wd-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes wd-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* -------- */
/* Shimmers */
/* -------- */
div.wdgridshimmer {
  display: flex;
  flex-direction: column;
}
div.wdgridshimmer > div.wdgridshimmerrow {
  display: flex;
  flex-direction: row;
}
div.wdgridshimmer > div.wdgridshimmerrow > div.wdgridshimmercell {
  flex: 1;
  margin: 5px;
  border-radius: 4px;
  width: auto;
  height: 18px;
  animation: wdgridshimmeranimation 2s infinite;
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 200% 1000px;
}
@keyframes wdgridshimmeranimation {
  0% {
    background-position: 0px 0px;
  }
  50% {
    background-position: 40% 0px;
  }
  1000% {
    background-position: 0px 0px;
  }
}
/* -------------------------------------------------------------------------------- */
/* TILETOOLBOX */
/* -------------------------------------------------------------------------------- */
div.wd-tile {
  background: #04aeda;
  text-transform: uppercase;
  float: left;
  padding: 10px;
  margin: 0px 0px 5px 5px;
  margin: 0px 5px 5px 0;
  text-align: center;
  width: 100px;
  height: 100px;
}
div.wd-tile img {
  margin: 0 auto 4px;
}
div.wd-tile a {
  color: #FFFFFF;
  margin: 0 auto;
  text-align: center;
  width: 80px;
}
div.wd-tiletoolbox {
  float: left;
  /* margin : 0px 0px 10px 10px; */
  margin-bottom: 10px;
}
div.wd-tiletoolbox.buttons-3 {
  width: 315px;
}
div.wd-tiletoolbox .title {
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 10px;
}
div.wd-tiletoolbox h4 {
  font-size: 1.2em;
  font-weight: 600;
  padding: 5px 0px;
  margin: 0px;
}
div.wd-tile.black {
  background: #000;
}
div.wd-tile.green {
  background: #4CAF50;
}
div.wd-tile.lightblue {
  background: #2196F3;
}
div.wd-tile.teal {
  background: #009688;
}
div.wd-tile.red {
  background: #ce0a0a;
}
div.wd-tile.grey {
  background: #8e8e8e;
}
div.wd-tile.orange {
  background: #ff9800;
}
div.wd-tile.disabled {
  background: #e6e6e6;
  border: 1px solid #d7d7d7;
}
div.wd-tiletoolbox.buttons-3.home {
  float: none;
  width: 100%;
}
/* -------------------------------------------------------------------------------- */
/* EDIT FORM STYLES */
/* -------------------------------------------------------------------------------- */
/* FORM MESSAGE DIALOG BOXES (to override defaults create style like: .wd-dialog-success.custom) */
.wd-formmessage {
  display: none;
}
.wd-dialog-info {
  background: #e5f8ff url(../images/rog_pattern.png);
  color: #000000;
  margin-top: 5px;
  padding: 10px 10px;
  font-style: italic;
  border: solid 1px #baeafc;
}
.wd-dialog-success {
  background: #5CB85C url(../images/prog_pattern.png);
  color: #FFFFFF;
  margin-top: 5px;
  padding: 10px 10px;
  font-style: italic;
  border: solid 1px #4f9e4f;
}
.wd-dialog-error {
  background: #D9534F url(../images/prog_pattern.png);
  color: #FFFFFF;
  margin-top: 5px;
  padding: 10px 10px;
  font-style: italic;
  border: solid 1px #b5423f;
}
.wd-form-button-bar {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
.wd-form-button-bar.right {
  justify-content: flex-end;
}
.wd-form-button-bar.center {
  justify-content: center;
}
/* GROUPPANELS: OBSOLETE.....?? */
div.wd-grouppanel {
  margin-bottom: 10px;
}
div.wd-grouppanel .wd-header {
  display: block;
  height: 25px;
  margin-bottom: 10px;
  position: relative;
}
div.wd-grouppanel .wd-header .wd-caption {
  color: #959595;
  font-size: 1.2em;
  float: left;
  font-weight: normal;
  margin: 2px 0px;
  padding-right: 5px;
}
/* -------------------------------------------------------------------------------- */
/* TABSTRIP */
/* default | pills | pills-stacked */
/* -------------------------------------------------------------------------------- */
div.wd-tabstrip {
  display: flex;
  flex: 1;
  flex-direction: column;
}
div.wd-tabstrip .container-tabstrip > .container-tabs {
  display: flex;
  flex-direction: row;
  list-style: none;
  overflow: hidden;
  margin: 0px;
  padding-left: 5px;
  flex-wrap: wrap;
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .responsive-tab {
  display: none;
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .ResponsiveSelector {
  padding-top: 12px !important;
  display: block;
}
@media screen and (min-width: 992px) {
  div.wd-tabstrip .container-tabstrip > .container-tabs > .responsive-tab {
    display: block;
  }
  div.wd-tabstrip .container-tabstrip > .container-tabs > .ResponsiveSelector {
    display: none;
  }
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button.wd-hidden {
  display: none;
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  background: #337ab7;
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button.active a {
  display: flex;
  flex: 1;
  color: white;
  background-color: inherit;
  /* Prevents wrong color on hightlight and focus */
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button a {
  display: flex;
  flex: 1;
  color: inherit;
}
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button a:hover,
div.wd-tabstrip .container-tabstrip > .container-tabs > .wd-tabbar-button a:focus {
  text-decoration: none;
}
div.wd-tabstrip .container-pages {
  flex: 1;
}
div.wd-tabstrip.flat > .container-tabstrip {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
div.wd-tabstrip.flat > .container-tabstrip > .container-tabs > .wd-tabbar-button {
  border: none;
  height: 47px;
  margin: 0px 0px;
  padding-left: 0px;
  padding-right: 15px;
  padding-top: 15px;
}
div.wd-tabstrip.flat > .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  background-color: inherit;
  border-bottom: none;
  color: inherit;
  font-weight: 800;
}
div.wd-tabstrip.flat > .container-tabstrip > .container-tabs > .wd-tabbar-button.active a {
  color: inherit;
  background-color: inherit;
  border-bottom: 3px solid #337ab7;
}
div.wd-tabstrip.flat > .container-pages {
  padding-top: 15px;
}
div.wd-tabstrip.tabbed > .container-tabstrip {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -10px 10px -12px #CFCFCF;
  -webkit-box-shadow: inset 0 -10px 10px -12px #CFCFCF;
  -moz-box-shadow: inset 0 -10px 10px -12px #CFCFCF;
}
div.wd-tabstrip.tabbed > .container-tabstrip > .container-tabs > .wd-tabbar-button {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  color: #000000;
  cursor: pointer;
  height: 47px;
  margin: 0px 0px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}
div.wd-tabstrip.tabbed > .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  font-weight: bold;
  background: #337ab7;
  border-bottom: 1px solid #337ab7;
}
div.wd-tabstrip.tabbed > .container-pages {
  padding: 15px;
}
div.wd-tabstrip.pills .container-tabstrip {
  border-bottom: none;
  line-height: 1.1em;
  box-shadow: none;
}
div.wd-tabstrip.pills .container-tabstrip > .container-tabs > .wd-tabbar-button {
  border: none;
  padding: 5px 10px 5px 10px;
  height: inherit;
}
div.wd-tabstrip.pills .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  border-radius: 8px;
  background: #337ab7;
}
div.wd-tabstrip.pills > .container-pages {
  padding-top: 15px;
}
div.wd-tabstrip.pills.as-buttons > .container-tabstrip > .container-tabs > .wd-tabbar-button {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #000000;
  cursor: pointer;
  height: 47px;
  margin: 0 12px 0 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  font-size: 14px;
  background: #fbfbfb;
  background: -moz-linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  background: -webkit-linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  background: linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbfbfb", endColorstr="#f2f2f2", GradientType=1);
}
div.wd-tabstrip.pills.as-buttons > .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  border-color: rgba(21, 21, 21, 0.35);
  font-weight: bold;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
div.wd-tabstrip.pills.as-buttons > .container-tabstrip > .container-tabs > .wd-tabbar-button.active a {
  color: #ea5539;
  background-color: transparent;
}
div.wd-tabstrip.pills-stacked {
  flex-direction: row;
}
div.wd-tabstrip.pills-stacked .container-tabstrip {
  border-bottom: none;
  line-height: 1.1em;
  box-shadow: none;
}
div.wd-tabstrip.pills-stacked .container-tabstrip > .container-tabs {
  flex-direction: column;
}
div.wd-tabstrip.pills-stacked .container-tabstrip > .container-tabs > .wd-tabbar-button {
  border: none;
  padding: 5px 10px 5px 10px;
  height: inherit;
  margin-bottom: 10px;
}
div.wd-tabstrip.pills-stacked .container-tabstrip > .container-tabs > .wd-tabbar-button.active {
  border-radius: 8px;
  background: #337ab7;
}
div.wd-tabstrip.pills-stacked.position-left > .container-pages {
  padding: 0px;
  padding-left: 15px;
}
div.wd-tabstrip.pills-stacked.position-right > .container-pages {
  padding: 0px;
  padding-right: 15px;
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* -------------------------------------------------------------------------------- */
/* POPUP MESSAGESBOX */
/* -------------------------------------------------------------------------------- */
div.wd-msgbox {
  padding: 10px 5px 5px;
}
div.wd-msgbox .icon {
  width: 48px;
  height: 48px;
  display: block;
  float: left;
}
div.wd-msgbox .message {
  padding-top: 10px;
  margin-left: 60px;
}
/* -------------------------------------------------------------------------------- */
/* TOOLBUTTON STRIP */
/* -------------------------------------------------------------------------------- */
div.wd-toolbuttonstrip {
  height: 32px;
}
div.wd-toolbutton {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
  margin-right: 5px;
  width: 32px;
  height: 32px;
  background-color: #fff;
}
div.wd-toolbutton img {
  width: 24px;
  height: 24px;
  padding-top: 5px;
}
div.wd-toolbutton input {
  width: 16px;
  height: 16px;
  margin-top: 8px;
}
div.wd-toolbutton.add {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #fff;
}
/* -------------------------------------------------------------------------------- */
/* STYLES FORM MANANGER */
/* -------------------------------------------------------------------------------- */
.wd-form-buttonbar {
  border-top: 1px solid #d3d3d3;
  margin-top: 25px;
  padding: 15px 0px 0px;
}
.wd-form-buttonbar .button {
  float: right;
  margin: 2px;
}
/* v1 formmanager */
.wd-form-item {
  border-bottom: 1px solid #d3d3d3;
  padding: 0px 0px 5px;
}
.wd-form-item:last-of-type {
  border-bottom: none;
}
.wd-form-item .wd-field-label {
  /* font-weight: normal; */
  margin: 5px 0;
  width: 30%;
}
.wd-form-item .wd-field-value {
  margin: 5px 0;
  width: 70% !important;
}
/* v2 formmanager */
.wd-form-field {
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  flex-direction: row;
  padding: 0px 0px 5px;
  margin-bottom: 5px;
}
.wd-form-field:last-of-type {
  border-bottom: none;
}
.wd-form-field .wd-field-label {
  font-weight: normal;
  font-size: 12px;
  color: gray;
  margin: 8px 0px;
  width: 150px;
}
.wd-form-field .wd-field-value {
  flex: 1;
  margin: 5px 0;
}
/* -------------------------------------------------------------------------------- */
/* UI COMPONENT : Grouppanel */
/* -------------------------------------------------------------------------------- */
div.wd-group-panel {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #d3d3d3;
  border-radius: 0.25rem;
}
div.wd-group-panel .wd-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin: 10px;
}
div.wd-group-panel .wd-header-container .wd-header-title {
  font-weight: 600;
}
div.wd-group-panel .wd-header-container .show-hide-button {
  padding: 0.1rem 0.5rem !important;
}
div.wd-group-panel .wd-header-container .show-hide-button.opened,
div.wd-group-panel .wd-header-container .show-hide-button:active,
div.wd-group-panel .wd-header-container .show-hide-button:focus,
div.wd-group-panel .wd-header-container .show-hide-button.btn-primary:focus {
  background-color: #7690a9;
  border: 0;
  box-shadow: none;
}
div.wd-group-panel .wd-header-container .show-hide-button.closed {
  border: 0;
  background-color: #003552;
  box-shadow: none;
}
div.wd-group-panel .wd-header-container .show-hide-button > span {
  color: white;
  font-size: 10px !important;
}
div.wd-group-panel .wd-panel-content {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}
div.wd-group-panel .wd-header-icon {
  width: 24px;
  height: 24px;
}
div.wd-group-panel .wd-footer {
  font-size: 0.75rem;
  color: gray;
  background-color: #f2f3f8;
  border-top: 1px solid #d3d3d3;
  padding: 5px;
}
div.wd-group-panel.card {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 0px;
  margin-bottom: 10px;
}
div.wd-group-panel.card > .wd-header-container {
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  background-color: #f5f5f5;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0px;
}
div.wd-group-panel.panel {
  margin: 0px;
  min-width: 0px;
  box-shadow: rgba(20, 21, 26, 0.04) 0px 1px 2px, rgba(71, 77, 87, 0.04) 0px 3px 6px, rgba(20, 21, 26, 0.1) 0px 0px 1px;
  border-radius: 4px;
  padding: 15px;
  border: none;
}
div.wd-group-panel.panel > .wd-header-container {
  padding-bottom: 15px;
  border-bottom: none;
  margin: 0px;
}
div.wd-group-panel.panel > .wd-header-title {
  font-weight: 600;
}
div.wd-group-panel.simple {
  border: none;
  padding: 0px;
}
div.wd-group-panel.simple > .wd-header-container {
  border: none;
  margin: 0px;
  align-items: center;
}
div.wd-group-panel.simple > .wd-header-container > .wd-container-title {
  display: flex;
  flex: 1;
  flex-direction: row;
}
div.wd-group-panel.simple > .wd-header-container > .wd-container-title > .wd-hr {
  flex: 1;
  border-bottom: 1px solid #d3d3d3;
  height: 12px;
  margin-left: 10px;
}
div.wd-group-panel.simple > .wd-panel-content {
  margin: 0px;
}
/* -------------------------------------------------------------------------------- */
/* COMPONENT : Menu */
/* -------------------------------------------------------------------------------- */
/* Styles for top navigation menu */
.wd-menu .horizontal {
  display: flex;
  /* Making the list horzontal */
  align-items: center;
}
.wd-menu a {
  color: inherit;
}
.wd-menu li {
  display: block;
  position: relative;
}
.wd-menu ul {
  list-style: none;
  /* remove default browser bullet */
  padding: 0;
  /* remove default browser padding */
  margin: 0;
  /* remove default browser padding */
}
.wd-menu a img {
  margin-right: 10px;
  height: 16px;
  width: 16px;
}
.wd-menu-item a {
  align-items: center;
  display: flex;
  padding: 0.5rem 1rem;
}
.wd-menu-item a.disabled {
  color: lightgrey;
}
.wd-menu-item a:hover,
.wd-menu-item a:focus {
  text-decoration: none;
}
/* Styles for sub navigation menu */
.wd-menu-item a:hover,
a:focus {
  background-color: #f8f9fa;
}
.wd-tiny-menu-button {
  margin-right: 5px;
}
.wd-tiny-menu-button > a {
  height: 44px;
  width: 44px;
  padding: 10px 10px;
  border: 1px solid #efefef;
  border-radius: 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-tiny-menu-button > a:hover {
  border-color: black;
}
.wd-tiny-menu-button > a > img {
  margin: 0;
}
/* Styles for drop down action */
.wd-dropdown-content {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  display: none;
  position: absolute;
  min-width: 160px;
  /* Optional */
  padding: 4px;
  z-index: 1;
}
.wd-dropdown-content.right {
  left: 100%;
  /* Pushes the menu to the right of it's parent */
  top: 0px;
  /* Make it appear at the same level as it's parent */
}
.wd-dropdown-content.left {
  right: 100%;
  /* Pushes the menu to the right of it's parent */
  top: 0px;
  /* Make it appear at the same level as it's parent */
}
.wd-dropdown-content.downleft {
  right: 0%;
  /* Pushes the menu to the down and left of it's parent */
}
.wd-tiny-menu-button:hover > .wd-dropdown-content,
.wd-menu-item:hover > .wd-dropdown-content {
  display: block;
  /* Makes the content visible on hover */
}
/* -------------------------------------------------------------------------------- */
/* COMPONENT : GRIDMANAGER for dxDataGrid; */
/* -------------------------------------------------------------------------------- */
.wd-datagrid-showpointer .dx-row {
  cursor: pointer;
}
/* -------------------------------------------------------------------------------- */
/* ERROR WIDGET */
/* -------------------------------------------------------------------------------- */
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.info {
  background-color: #E0E0FF;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.info td {
  background-color: #E0E0FF;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.error {
  background-color: #FFE0E0;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.error td {
  background-color: #FFE0E0;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.warning {
  background-color: #FFFF80;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.warning td {
  background-color: #FFFF80;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.info {
  background-color: #D0D0FF;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.info td {
  background-color: #D0D0FF;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.error {
  background-color: #FFD0D0;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.error td {
  background-color: #FFD0D0;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.warning {
  background-color: #F0F080;
}
div.wd-errorlogwidget div.dx-datagrid-content table.dx-datagrid-table tbody tr.dx-row.dx-data-row.dx-row-alt.warning td {
  background-color: #F0F080;
}
/* Error widget detail page */
div.kbs-logmessage.info {
  background-color: #E0E0FF;
  padding: 10px;
}
div.kbs-logmessage.error {
  background-color: #FFE0E0;
  padding: 10px;
}
div.kbs-logmessage.warning {
  background-color: #FFFF80;
  padding: 10px;
}
div.kbs-logmessage.error {
  background-color: #FFE0E0;
  padding: 10px;
}
div.wd-errorlog-environment table tr.dx-row.dx-data-row td span.hidden {
  display: none;
}
/* -------------------------------------------------------------------------------- */
/* LOGIN WIDGET V2 */
/* -------------------------------------------------------------------------------- */
div.wd-login-widget {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div.wd-login-widget .panel-container {
  border: 1px solid lightgrey;
  border-radius: 5px;
  max-width: 500px;
  padding: 20px;
  width: 80%;
}
div.wd-login-widget .footer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
div.wd-login-widget .footer img {
  height: 20px;
}
/* -------------------------------------------------------------------------------- */
/* WD - UI SIDEBAR COMPOMENT */
/* -------------------------------------------------------------------------------- */
.wd-side-menu {
  min-height: 709px;
  height: 100%;
  width: 270px;
  font-size: 14px;
  overflow-y: auto;
  margin-left: 5px;
  padding: 20px 20px 10px 10px;
  border-right: #d3d3d3 solid 1px;
  color: black;
  transform: translate(-100%, 0);
}
.wd-side-menu.expanded {
  transform: translate(0, 0);
}
.wd-side-menu.animated {
  animation: fadeout 0.15s linear;
}
@keyframes fadein {
  from {
    transform: translate(-100%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes fadeout {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100%, 0);
  }
}
.wd-side-menu.animated.expanded {
  animation: fadein 0.15s linear;
}
.wd-side-menu > .wd-side-menu-heading:first-child {
  margin-top: 0;
}
.wd-side-menu .wd-side-menu-heading {
  color: #003652;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 450;
  text-transform: uppercase;
}
.wd-side-menu a,
.wd-side-menu a:active,
.wd-side-menu a:hover,
.wd-side-menu a:focus {
  color: inherit;
  text-decoration: none;
  background-color: inherit;
}
.wd-side-menu .wd-side-menu-link {
  flex-direction: row;
  display: flex;
  padding: 5px;
  padding-left: 10px;
  border-radius: 5px;
}
.wd-side-menu .wd-side-menu-link .wd-side-menu-link-badge {
  margin-left: auto;
  background-color: #003652;
  color: white;
  border-radius: 4px;
  font-size: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  min-width: 25px;
  height: 16px;
  margin: auto 2px auto auto;
}
.wd-side-menu .wd-side-menu-link.active {
  background-color: #e1edf7;
}
.wd-side-menu .wd-side-menu-link.active:active,
.wd-side-menu .wd-side-menu-link.active:hover,
.wd-side-menu .wd-side-menu-link.active:focus {
  background-color: #e1edf7;
}
.wd-side-menu .wd-side-menu-link:active,
.wd-side-menu .wd-side-menu-link:hover,
.wd-side-menu .wd-side-menu-link:focus {
  background-color: #f5f5f5;
}
.wd-side-menu .wd-side-menu-list {
  list-style-type: none;
  margin: 0;
  margin-bottom: 10px;
  padding-left: 10px;
}
.wd-side-menu .wd-side-menu-drop-down {
  padding: 5px 0 0 5px;
}
.wd-side-menu .wd-side-menu-drop-down > .wd-side-menu-drop-down-link {
  display: flex;
  justify-content: space-between;
  color: black;
  padding-right: 5px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.wd-side-menu .wd-side-menu-drop-down > .wd-side-menu-drop-down-link::after {
  content: '>';
}
.wd-side-menu .wd-side-menu-drop-down > .wd-side-menu-drop-down-content {
  max-height: 0;
  overflow: hidden;
}
.wd-side-menu .wd-side-menu-drop-down.expanded > .wd-side-menu-drop-down-link::after {
  transform: rotate(90deg);
}
.wd-side-menu .wd-side-menu-drop-down.expanded > .wd-side-menu-drop-down-content {
  max-height: none;
}
@keyframes counterclockwise {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@keyframes expand {
  from {
    max-height: 0;
  }
  to {
    max-height: var(--contentHeight);
  }
}
@keyframes collapse {
  from {
    max-height: var(--contentHeight);
  }
  to {
    max-height: 0;
  }
}
.wd-side-menu .wd-side-menu-drop-down.animated > .wd-side-menu-drop-down-link::after {
  animation-name: counterclockwise;
  animation-duration: 0.1s;
}
.wd-side-menu .wd-side-menu-drop-down.animated > .wd-side-menu-drop-down-content {
  animation: collapse 0.2s;
}
.wd-side-menu .wd-side-menu-drop-down.animated.expanded > .wd-side-menu-drop-down-link::after {
  animation: clockwise 0.1s;
}
.wd-side-menu .wd-side-menu-drop-down.animated.expanded > .wd-side-menu-drop-down-content {
  animation: expand 0.2s;
}
/* -------------------------------------------------------------------------------- */
/* WD - UI TABSTRIP FOR BOOTSTRAP, WIP */
/* -------------------------------------------------------------------------------- */
.bootstrap-nav.nav-tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -10px 10px -12px #CFCFCF;
  -webkit-box-shadow: inset 0 -10px 10px -12px #CFCFCF;
  -moz-box-shadow: inset 0 -10px 10px -12px #CFCFCF;
}
.bootstrap-nav.nav-tabs .nav-link {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  color: #000000;
  cursor: pointer;
  height: 47px;
  margin: 0px 0px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  font-size: 14px;
}
.bootstrap-nav.nav-tabs .nav-link.active {
  background: rgba(21, 21, 21, 0.35);
  border-color: rgba(21, 21, 21, 0.35);
  font-weight: bold;
  color: white;
}
.bootstrap-nav.nav-flat,
.bootstrap-nav.nav-pills {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.bootstrap-nav.nav-flat .nav-link,
.bootstrap-nav.nav-pills .nav-link {
  color: #212529;
  font-size: 14px;
}
.bootstrap-nav.nav-pills.stacked-right {
  float: right;
  display: block;
  margin-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.bootstrap-nav.nav-pills.stacked-left {
  float: left;
  display: block;
  margin-right: 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.bootstrap-nav.nav-pills .nav-link.active {
  background: rgba(21, 21, 21, 0.35);
  border-color: rgba(21, 21, 21, 0.35);
  font-weight: bold;
  color: white;
}
.bootstrap-nav.nav-pills.button-style {
  border-bottom: none;
}
.bootstrap-nav.nav-pills.button-style .nav-link {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #000000;
  cursor: pointer;
  height: 47px;
  margin: 0 12px 0 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  font-size: 14px;
  background: #fbfbfb;
  background: -moz-linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  background: -webkit-linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  background: linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbfbfb", endColorstr="#f2f2f2", GradientType=1);
}
.bootstrap-nav.nav-pills.button-style .nav-link.active {
  background: rgba(21, 21, 21, 0.35);
  border-color: rgba(21, 21, 21, 0.35);
  font-weight: bold;
  color: white;
}
.bootstrap-nav.nav-pills.button-style .ResponsiveSelector .nav-link {
  margin: 0px 0px !important;
}
.bootstrap-nav.nav-flat .nav-link.active {
  border-bottom: 3px solid #EA5339;
  font-weight: 800;
}
.bootstrap-nav .responsive-tab {
  display: none;
}
.bootstrap-nav .ResponsiveSelector {
  display: block;
}
.bootstrap-nav .ResponsiveSelector .nav-link {
  padding-top: 11px !important;
}
@media screen and (min-width: 992px) {
  .bootstrap-nav .responsive-tab {
    display: block;
  }
  .bootstrap-nav .ResponsiveSelector {
    display: none;
  }
}
/* -------------------------------------------------------------------------------- */
/* WD - UI MENU BAR */
/* -------------------------------------------------------------------------------- */
.mobile-friendly-nav-container.opened .mobile-friendly-nav {
  padding-top: 10px;
  display: block;
  top: 0;
  left: 0;
  z-index: 100000;
  position: fixed;
  height: 100%;
  width: 40%;
  background-color: #7690a9;
  overflow: scroll;
}
@media (max-width: 568px) {
  .mobile-friendly-nav-container.opened .mobile-friendly-nav {
    width: 60%;
  }
}
.mobile-friendly-nav-container.opened .mobile-friendly-nav .horizontal {
  display: block;
}
.mobile-friendly-nav-container.opened .mobile-friendly-nav .wd-menu-item {
  display: block;
}
.mobile-friendly-nav-container.opened .regular-nav {
  display: block;
  height: 40px;
}
.mobile-friendly-nav-container.opened .regular-nav .wd-menu-item {
  display: none !important;
}
.mobile-friendly-nav-container .mobile-friendly-nav {
  display: none;
  max-width: 250px;
}
.mobile-friendly-nav-container .mobile-nav-button {
  display: none;
}
@media (max-width: 768px) {
  .mobile-friendly-nav-container .regular-nav {
    display: none;
  }
  .mobile-friendly-nav-container .mobile-friendly-nav {
    display: block;
    height: 40px;
  }
  .mobile-friendly-nav-container .wd-menu-item {
    display: none;
  }
  .mobile-friendly-nav-container .mobile-nav-button {
    display: inline-block;
  }
}
/* -------------------------------------------------------------------------------- */
/* WD - UI DX FIXES */
/* -------------------------------------------------------------------------------- */
.blocked-background-popup .dx-popup-wrapper {
  position: fixed !important;
  width: 100vw !important;
  height: 100vh !important;
  transform: none !important;
}
.blocked-background-popup .dx-popup-wrapper .dx-overlay-content {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.blocked-background-popup .dx-popup-wrapper .dx-popup-content .tab-content {
  padding-bottom: 60px;
}
.dx-popup-content {
  max-height: 85vh;
}
.dx-overlay-content {
  height: auto !important;
}
/* -------------------------------------------------------------------------------- */
/* WD - UI BOOTSTRAP OVERRIDES & EXTENSIONS */
/* -------------------------------------------------------------------------------- */
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto,
.col-xxxl-1,
.col-xxxl-2,
.col-xxxl-3,
.col-xxxl-4,
.col-xxxl-5,
.col-xxxl-6,
.col-xxxl-7,
.col-xxxl-8,
.col-xxxl-9,
.col-xxxl-10,
.col-xxxl-11,
.col-xxxl-12,
.col-xxxl,
.col-xxxl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxxl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.666667%;
  }
}
