
.editr {
  border: 1px solid #e4e4e4;
  width: 100%;
}
.editr--toolbar {
  background: #f6f6f6;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
}
.editr--toolbar a {
  display: inline-block;
  width: 8vw;
  max-width: 32px;
  height: 32px;
  color: #333;
  fill: #333;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.editr--toolbar a:hover {
  background: rgba(0,0,0,0.1);
}
.editr--toolbar a:active {
  background: rgba(0,0,0,0.2);
}
.editr--toolbar a svg {
  width: 16px;
  height: 16px;
  margin: 8px auto;
}
.editr--toolbar a svg path {
  fill: inherit;
}
.editr--toolbar a.vw-btn-separator {
  width: 1px;
  margin: 0 8px;
}
.editr--toolbar a.vw-btn-separator:hover {
  background: initial;
  cursor: default;
}
.editr--toolbar a.vw-btn-separator i.vw-separator {
  border-left: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  position: absolute;
  width: 1px;
}
.editr--toolbar .dashboard {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  text-align: left;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #f6f6f6;
}
.editr--content {
  min-height: 150px;
  padding: 12px 8px 16px 8px;
  line-height: 1.33;
  font-family: inherit;
  color: inherit;
  overflow-y: auto;
}
.editr--content[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: rgba(0,0,0,0.3);
  display: block; /* For Firefox */
}
.editr--content img {
  max-width: 100%;
}
.editr--content table {
  width: 100%;
  border-collapse: collapse;
}
.editr--content table th {
  text-align: left;
}
.editr--content table th,
.editr--content table td {
  border: 1px solid #ddd;
  padding: 2px;
}
.editr--content:focus {
  outline: 0;
}
.editr--content ul li,
.editr--content ol li {
  list-style-position: inside;
}
@media screen and (max-width: 320px) {
.editr--toolbar a {
    margin: 0 2px;
}
.editr--toolbar a.vw-btn-separator {
    display: none;
}
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.dropzone, .dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.vue-dropzone {
  border: 2px solid #E5E5E5;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.2px;
  color: #777;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.vue-dropzone:hover {
  background-color: #F6F6F6;
}
.vue-dropzone i {
  color: #CCC;
}
.vue-dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.vue-dropzone .dz-preview .dz-image img:not([src]) {
  width: 200px;
  height: 200px;
}
.vue-dropzone .dz-preview .dz-image:hover img {
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
}
.vue-dropzone .dz-preview .dz-details {
  bottom: 0;
  top: 0;
  color: white;
  background-color: rgba(33, 150, 243, 0.8);
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  text-align: left;
}
.vue-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden;
}
.vue-dropzone .dz-preview .dz-details .dz-filename span,
.vue-dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: none;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: transparent;
  border: none;
}
.vue-dropzone .dz-preview .dz-progress .dz-upload {
  background: #cccccc;
}
.vue-dropzone .dz-preview .dz-remove {
  position: absolute;
  z-index: 30;
  color: white;
  margin-left: 15px;
  padding: 10px;
  top: inherit;
  bottom: 15px;
  border: 2px white solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  opacity: 0;
}
.vue-dropzone .dz-preview:hover .dz-remove {
  opacity: 1;
}
.vue-dropzone .dz-preview .dz-success-mark,
.vue-dropzone .dz-preview .dz-error-mark {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  top: 35%;
  left: 0;
}
.vue-dropzone .dz-preview .dz-success-mark svg,
.vue-dropzone .dz-preview .dz-error-mark svg {
  margin-left: auto;
  margin-right: auto;
}
.vue-dropzone .dz-preview .dz-error-message {
  top: calc(15%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 100%;
}
.vue-dropzone .dz-preview .dz-error-message:after {
  bottom: -6px;
  top: initial;
  border-top: 6px solid #a92222;
  border-bottom: none;
}


.form[data-v-ebce4d12] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}
.form label[data-v-ebce4d12] {
  margin-right: 1rem;
}/*Base*/
/*Heading Secondary*/
/*Grid*/
/*Breakpoints*/
/*Container Widths*/
/*Modal*/
/*Bootstrap Imports*/
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-ms: 375px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-mid: 1420px;
  --breakpoint-xxl: 1500px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-ms-1, .col-ms-2, .col-ms-3, .col-ms-4, .col-ms-5, .col-ms-6, .col-ms-7, .col-ms-8, .col-ms-9, .col-ms-10, .col-ms-11, .col-ms-12, .col-ms,
.col-ms-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-mid-1, .col-mid-2, .col-mid-3, .col-mid-4, .col-mid-5, .col-mid-6, .col-mid-7, .col-mid-8, .col-mid-9, .col-mid-10, .col-mid-11, .col-mid-12, .col-mid,
.col-mid-auto, .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 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333333%;
          flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66666667%;
          flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333333%;
          flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66666667%;
          flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333333%;
          flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66666667%;
          flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 375px) {
  .col-ms {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-ms-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-ms-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-ms-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-ms-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-ms-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-ms-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-ms-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-ms-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-ms-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-ms-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-ms-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-ms-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-ms-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-ms-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-ms-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-ms-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-ms-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-ms-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-ms-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-ms-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-ms-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-ms-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-ms-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-ms-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-ms-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-ms-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-ms-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-ms-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-ms-0 {
    margin-left: 0;
  }
  .offset-ms-1 {
    margin-left: 8.33333333%;
  }
  .offset-ms-2 {
    margin-left: 16.66666667%;
  }
  .offset-ms-3 {
    margin-left: 25%;
  }
  .offset-ms-4 {
    margin-left: 33.33333333%;
  }
  .offset-ms-5 {
    margin-left: 41.66666667%;
  }
  .offset-ms-6 {
    margin-left: 50%;
  }
  .offset-ms-7 {
    margin-left: 58.33333333%;
  }
  .offset-ms-8 {
    margin-left: 66.66666667%;
  }
  .offset-ms-9 {
    margin-left: 75%;
  }
  .offset-ms-10 {
    margin-left: 83.33333333%;
  }
  .offset-ms-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1420px) {
  .col-mid {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-mid-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-mid-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-mid-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-mid-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-mid-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-mid-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-mid-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-mid-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-mid-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-mid-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-mid-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-mid-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-mid-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-mid-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-mid-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-mid-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-mid-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-mid-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-mid-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-mid-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-mid-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-mid-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-mid-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-mid-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-mid-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-mid-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-mid-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-mid-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-mid-0 {
    margin-left: 0;
  }
  .offset-mid-1 {
    margin-left: 8.33333333%;
  }
  .offset-mid-2 {
    margin-left: 16.66666667%;
  }
  .offset-mid-3 {
    margin-left: 25%;
  }
  .offset-mid-4 {
    margin-left: 33.33333333%;
  }
  .offset-mid-5 {
    margin-left: 41.66666667%;
  }
  .offset-mid-6 {
    margin-left: 50%;
  }
  .offset-mid-7 {
    margin-left: 58.33333333%;
  }
  .offset-mid-8 {
    margin-left: 66.66666667%;
  }
  .offset-mid-9 {
    margin-left: 75%;
  }
  .offset-mid-10 {
    margin-left: 83.33333333%;
  }
  .offset-mid-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1500px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}

.form-control {
  display: block;
  width: 100%;
  height: 32px;
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 32px;
  color: #151617;
  background-color: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #151617;
  background-color: none;
  border-color: #ee5860;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form-control::placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: rgba(21, 22, 23, 0.1);
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #151617;
  background-color: none;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 32px;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 32px;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated
.custom-select:valid ~ .valid-feedback,
.was-validated
.custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback,
.was-validated
.custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
  color: #151617;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #B5121B;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #f3868c;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #B5121B;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #B5121B;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #B5121B;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #151617;
  vertical-align: middle;
  background: none url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #ee5860;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 88, 96, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 88, 96, 0.5);
}

.custom-select:focus::-ms-value {
  color: #151617;
  background-color: none;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 32px;
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #ee5860;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #ee5860;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: rgba(21, 22, 23, 0.1);
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 32px;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #151617;
  background-color: none;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #151617;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #B5121B;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #f3868c;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #B5121B;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #f3868c;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #B5121B;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #f3868c;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #B5121B;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(181, 18, 27, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #B5121B;
  border-color: #B5121B;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #E1E1E1;
  border-radius: 0;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px 50px 70px;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 50px 70px;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 1000px;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 375px) {
  .d-ms-none {
    display: none !important;
  }
  .d-ms-inline {
    display: inline !important;
  }
  .d-ms-inline-block {
    display: inline-block !important;
  }
  .d-ms-block {
    display: block !important;
  }
  .d-ms-table {
    display: table !important;
  }
  .d-ms-table-row {
    display: table-row !important;
  }
  .d-ms-table-cell {
    display: table-cell !important;
  }
  .d-ms-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-ms-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1420px) {
  .d-mid-none {
    display: none !important;
  }
  .d-mid-inline {
    display: inline !important;
  }
  .d-mid-inline-block {
    display: inline-block !important;
  }
  .d-mid-block {
    display: block !important;
  }
  .d-mid-table {
    display: table !important;
  }
  .d-mid-table-row {
    display: table-row !important;
  }
  .d-mid-table-cell {
    display: table-cell !important;
  }
  .d-mid-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-mid-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1500px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 375px) {
  .flex-ms-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-ms-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-ms-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-ms-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-ms-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-ms-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-ms-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-ms-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-ms-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-ms-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-ms-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-ms-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-ms-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-ms-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-ms-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-ms-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-ms-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-ms-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-ms-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-ms-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-ms-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-ms-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-ms-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-ms-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-ms-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-ms-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-ms-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-ms-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-ms-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-ms-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-ms-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-ms-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-ms-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-ms-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1420px) {
  .flex-mid-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-mid-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-mid-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-mid-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-mid-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-mid-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-mid-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-mid-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-mid-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-mid-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-mid-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-mid-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-mid-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-mid-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-mid-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-mid-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-mid-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-mid-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-mid-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-mid-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-mid-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-mid-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-mid-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-mid-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-mid-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-mid-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-mid-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-mid-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-mid-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-mid-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-mid-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-mid-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-mid-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-mid-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1500px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 375px) {
  .float-ms-left {
    float: left !important;
  }
  .float-ms-right {
    float: right !important;
  }
  .float-ms-none {
    float: none !important;
  }
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

@media (min-width: 1420px) {
  .float-mid-left {
    float: left !important;
  }
  .float-mid-right {
    float: right !important;
  }
  .float-mid-none {
    float: none !important;
  }
}

@media (min-width: 1500px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 375px) {
  .m-ms-0 {
    margin: 0 !important;
  }
  .mt-ms-0,
  .my-ms-0 {
    margin-top: 0 !important;
  }
  .mr-ms-0,
  .mx-ms-0 {
    margin-right: 0 !important;
  }
  .mb-ms-0,
  .my-ms-0 {
    margin-bottom: 0 !important;
  }
  .ml-ms-0,
  .mx-ms-0 {
    margin-left: 0 !important;
  }
  .m-ms-1 {
    margin: 0.25rem !important;
  }
  .mt-ms-1,
  .my-ms-1 {
    margin-top: 0.25rem !important;
  }
  .mr-ms-1,
  .mx-ms-1 {
    margin-right: 0.25rem !important;
  }
  .mb-ms-1,
  .my-ms-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-ms-1,
  .mx-ms-1 {
    margin-left: 0.25rem !important;
  }
  .m-ms-2 {
    margin: 0.5rem !important;
  }
  .mt-ms-2,
  .my-ms-2 {
    margin-top: 0.5rem !important;
  }
  .mr-ms-2,
  .mx-ms-2 {
    margin-right: 0.5rem !important;
  }
  .mb-ms-2,
  .my-ms-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-ms-2,
  .mx-ms-2 {
    margin-left: 0.5rem !important;
  }
  .m-ms-3 {
    margin: 1rem !important;
  }
  .mt-ms-3,
  .my-ms-3 {
    margin-top: 1rem !important;
  }
  .mr-ms-3,
  .mx-ms-3 {
    margin-right: 1rem !important;
  }
  .mb-ms-3,
  .my-ms-3 {
    margin-bottom: 1rem !important;
  }
  .ml-ms-3,
  .mx-ms-3 {
    margin-left: 1rem !important;
  }
  .m-ms-4 {
    margin: 1.5rem !important;
  }
  .mt-ms-4,
  .my-ms-4 {
    margin-top: 1.5rem !important;
  }
  .mr-ms-4,
  .mx-ms-4 {
    margin-right: 1.5rem !important;
  }
  .mb-ms-4,
  .my-ms-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-ms-4,
  .mx-ms-4 {
    margin-left: 1.5rem !important;
  }
  .m-ms-5 {
    margin: 3rem !important;
  }
  .mt-ms-5,
  .my-ms-5 {
    margin-top: 3rem !important;
  }
  .mr-ms-5,
  .mx-ms-5 {
    margin-right: 3rem !important;
  }
  .mb-ms-5,
  .my-ms-5 {
    margin-bottom: 3rem !important;
  }
  .ml-ms-5,
  .mx-ms-5 {
    margin-left: 3rem !important;
  }
  .p-ms-0 {
    padding: 0 !important;
  }
  .pt-ms-0,
  .py-ms-0 {
    padding-top: 0 !important;
  }
  .pr-ms-0,
  .px-ms-0 {
    padding-right: 0 !important;
  }
  .pb-ms-0,
  .py-ms-0 {
    padding-bottom: 0 !important;
  }
  .pl-ms-0,
  .px-ms-0 {
    padding-left: 0 !important;
  }
  .p-ms-1 {
    padding: 0.25rem !important;
  }
  .pt-ms-1,
  .py-ms-1 {
    padding-top: 0.25rem !important;
  }
  .pr-ms-1,
  .px-ms-1 {
    padding-right: 0.25rem !important;
  }
  .pb-ms-1,
  .py-ms-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-ms-1,
  .px-ms-1 {
    padding-left: 0.25rem !important;
  }
  .p-ms-2 {
    padding: 0.5rem !important;
  }
  .pt-ms-2,
  .py-ms-2 {
    padding-top: 0.5rem !important;
  }
  .pr-ms-2,
  .px-ms-2 {
    padding-right: 0.5rem !important;
  }
  .pb-ms-2,
  .py-ms-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-ms-2,
  .px-ms-2 {
    padding-left: 0.5rem !important;
  }
  .p-ms-3 {
    padding: 1rem !important;
  }
  .pt-ms-3,
  .py-ms-3 {
    padding-top: 1rem !important;
  }
  .pr-ms-3,
  .px-ms-3 {
    padding-right: 1rem !important;
  }
  .pb-ms-3,
  .py-ms-3 {
    padding-bottom: 1rem !important;
  }
  .pl-ms-3,
  .px-ms-3 {
    padding-left: 1rem !important;
  }
  .p-ms-4 {
    padding: 1.5rem !important;
  }
  .pt-ms-4,
  .py-ms-4 {
    padding-top: 1.5rem !important;
  }
  .pr-ms-4,
  .px-ms-4 {
    padding-right: 1.5rem !important;
  }
  .pb-ms-4,
  .py-ms-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-ms-4,
  .px-ms-4 {
    padding-left: 1.5rem !important;
  }
  .p-ms-5 {
    padding: 3rem !important;
  }
  .pt-ms-5,
  .py-ms-5 {
    padding-top: 3rem !important;
  }
  .pr-ms-5,
  .px-ms-5 {
    padding-right: 3rem !important;
  }
  .pb-ms-5,
  .py-ms-5 {
    padding-bottom: 3rem !important;
  }
  .pl-ms-5,
  .px-ms-5 {
    padding-left: 3rem !important;
  }
  .m-ms-auto {
    margin: auto !important;
  }
  .mt-ms-auto,
  .my-ms-auto {
    margin-top: auto !important;
  }
  .mr-ms-auto,
  .mx-ms-auto {
    margin-right: auto !important;
  }
  .mb-ms-auto,
  .my-ms-auto {
    margin-bottom: auto !important;
  }
  .ml-ms-auto,
  .mx-ms-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1420px) {
  .m-mid-0 {
    margin: 0 !important;
  }
  .mt-mid-0,
  .my-mid-0 {
    margin-top: 0 !important;
  }
  .mr-mid-0,
  .mx-mid-0 {
    margin-right: 0 !important;
  }
  .mb-mid-0,
  .my-mid-0 {
    margin-bottom: 0 !important;
  }
  .ml-mid-0,
  .mx-mid-0 {
    margin-left: 0 !important;
  }
  .m-mid-1 {
    margin: 0.25rem !important;
  }
  .mt-mid-1,
  .my-mid-1 {
    margin-top: 0.25rem !important;
  }
  .mr-mid-1,
  .mx-mid-1 {
    margin-right: 0.25rem !important;
  }
  .mb-mid-1,
  .my-mid-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-mid-1,
  .mx-mid-1 {
    margin-left: 0.25rem !important;
  }
  .m-mid-2 {
    margin: 0.5rem !important;
  }
  .mt-mid-2,
  .my-mid-2 {
    margin-top: 0.5rem !important;
  }
  .mr-mid-2,
  .mx-mid-2 {
    margin-right: 0.5rem !important;
  }
  .mb-mid-2,
  .my-mid-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-mid-2,
  .mx-mid-2 {
    margin-left: 0.5rem !important;
  }
  .m-mid-3 {
    margin: 1rem !important;
  }
  .mt-mid-3,
  .my-mid-3 {
    margin-top: 1rem !important;
  }
  .mr-mid-3,
  .mx-mid-3 {
    margin-right: 1rem !important;
  }
  .mb-mid-3,
  .my-mid-3 {
    margin-bottom: 1rem !important;
  }
  .ml-mid-3,
  .mx-mid-3 {
    margin-left: 1rem !important;
  }
  .m-mid-4 {
    margin: 1.5rem !important;
  }
  .mt-mid-4,
  .my-mid-4 {
    margin-top: 1.5rem !important;
  }
  .mr-mid-4,
  .mx-mid-4 {
    margin-right: 1.5rem !important;
  }
  .mb-mid-4,
  .my-mid-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-mid-4,
  .mx-mid-4 {
    margin-left: 1.5rem !important;
  }
  .m-mid-5 {
    margin: 3rem !important;
  }
  .mt-mid-5,
  .my-mid-5 {
    margin-top: 3rem !important;
  }
  .mr-mid-5,
  .mx-mid-5 {
    margin-right: 3rem !important;
  }
  .mb-mid-5,
  .my-mid-5 {
    margin-bottom: 3rem !important;
  }
  .ml-mid-5,
  .mx-mid-5 {
    margin-left: 3rem !important;
  }
  .p-mid-0 {
    padding: 0 !important;
  }
  .pt-mid-0,
  .py-mid-0 {
    padding-top: 0 !important;
  }
  .pr-mid-0,
  .px-mid-0 {
    padding-right: 0 !important;
  }
  .pb-mid-0,
  .py-mid-0 {
    padding-bottom: 0 !important;
  }
  .pl-mid-0,
  .px-mid-0 {
    padding-left: 0 !important;
  }
  .p-mid-1 {
    padding: 0.25rem !important;
  }
  .pt-mid-1,
  .py-mid-1 {
    padding-top: 0.25rem !important;
  }
  .pr-mid-1,
  .px-mid-1 {
    padding-right: 0.25rem !important;
  }
  .pb-mid-1,
  .py-mid-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-mid-1,
  .px-mid-1 {
    padding-left: 0.25rem !important;
  }
  .p-mid-2 {
    padding: 0.5rem !important;
  }
  .pt-mid-2,
  .py-mid-2 {
    padding-top: 0.5rem !important;
  }
  .pr-mid-2,
  .px-mid-2 {
    padding-right: 0.5rem !important;
  }
  .pb-mid-2,
  .py-mid-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-mid-2,
  .px-mid-2 {
    padding-left: 0.5rem !important;
  }
  .p-mid-3 {
    padding: 1rem !important;
  }
  .pt-mid-3,
  .py-mid-3 {
    padding-top: 1rem !important;
  }
  .pr-mid-3,
  .px-mid-3 {
    padding-right: 1rem !important;
  }
  .pb-mid-3,
  .py-mid-3 {
    padding-bottom: 1rem !important;
  }
  .pl-mid-3,
  .px-mid-3 {
    padding-left: 1rem !important;
  }
  .p-mid-4 {
    padding: 1.5rem !important;
  }
  .pt-mid-4,
  .py-mid-4 {
    padding-top: 1.5rem !important;
  }
  .pr-mid-4,
  .px-mid-4 {
    padding-right: 1.5rem !important;
  }
  .pb-mid-4,
  .py-mid-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-mid-4,
  .px-mid-4 {
    padding-left: 1.5rem !important;
  }
  .p-mid-5 {
    padding: 3rem !important;
  }
  .pt-mid-5,
  .py-mid-5 {
    padding-top: 3rem !important;
  }
  .pr-mid-5,
  .px-mid-5 {
    padding-right: 3rem !important;
  }
  .pb-mid-5,
  .py-mid-5 {
    padding-bottom: 3rem !important;
  }
  .pl-mid-5,
  .px-mid-5 {
    padding-left: 3rem !important;
  }
  .m-mid-auto {
    margin: auto !important;
  }
  .mt-mid-auto,
  .my-mid-auto {
    margin-top: auto !important;
  }
  .mr-mid-auto,
  .mx-mid-auto {
    margin-right: auto !important;
  }
  .mb-mid-auto,
  .my-mid-auto {
    margin-bottom: auto !important;
  }
  .ml-mid-auto,
  .mx-mid-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1500px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 375px) {
  .text-ms-left {
    text-align: left !important;
  }
  .text-ms-right {
    text-align: right !important;
  }
  .text-ms-center {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1420px) {
  .text-mid-left {
    text-align: left !important;
  }
  .text-mid-right {
    text-align: right !important;
  }
  .text-mid-center {
    text-align: center !important;
  }
}

@media (min-width: 1500px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*!
 * jQuery QueryBuilder 2.5.2
 * Copyright 2014-2018 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
 * Licensed under MIT (https://opensource.org/licenses/MIT)
 */
.query-builder .rules-group-container, .query-builder .rule-container, .query-builder .rule-placeholder {
  position: relative;
  margin: 4px 0;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #EEE;
  background: rgba(255, 255, 255, 0.9);
}

.query-builder .rule-container .rule-filter-container,
.query-builder .rule-container .rule-operator-container,
.query-builder .rule-container .rule-value-container, .query-builder .error-container, .query-builder .drag-handle {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.query-builder .rules-group-container {
  padding: 10px;
  padding-bottom: 6px;
  border: 1px solid #DCC896;
  background: rgba(250, 240, 210, 0.5);
}

.query-builder .rules-group-header {
  margin-bottom: 10px;
}

.query-builder .rules-group-header .group-conditions .btn.readonly:not(.active),
.query-builder .rules-group-header .group-conditions input[name$='_cond'] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.query-builder .rules-group-header .group-conditions .btn.readonly {
  border-radius: 3px;
}

.query-builder .rules-list {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}

.query-builder .rule-value-container {
  border-left: 1px solid #DDD;
  padding-left: 5px;
}

.query-builder .rule-value-container label {
  margin-bottom: 0;
  font-weight: normal;
}

.query-builder .rule-value-container label.block {
  display: block;
}

.query-builder .rule-value-container select,
.query-builder .rule-value-container input[type='text'],
.query-builder .rule-value-container input[type='number'] {
  padding: 1px;
}

.query-builder .error-container {
  display: none;
  cursor: help;
  color: #F00;
}

.query-builder .has-error {
  background-color: #FDD;
  border-color: #F99;
}

.query-builder .has-error .error-container {
  display: inline-block !important;
}

.query-builder .rules-list > *::before, .query-builder .rules-list > *::after {
  content: '';
  position: absolute;
  left: -10px;
  width: 10px;
  height: calc(50% + 4px);
  border-color: #CCC;
  border-style: solid;
}

.query-builder .rules-list > *::before {
  top: -4px;
  border-width: 0 0 2px 2px;
}

.query-builder .rules-list > *::after {
  top: 50%;
  border-width: 0 0 0 2px;
}

.query-builder .rules-list > *:first-child::before {
  top: -12px;
  height: calc(50% + 14px);
}

.query-builder .rules-list > *:last-child::before {
  border-radius: 0 0 0 4px;
}

.query-builder .rules-list > *:last-child::after {
  display: none;
}

.query-builder.bt-checkbox-glyphicons .checkbox input[type='checkbox']:checked + label::after {
  font-family: 'Glyphicons Halflings';
  content: '\E013';
}

.query-builder.bt-checkbox-glyphicons .checkbox label::after {
  padding-left: 4px;
  padding-top: 2px;
  font-size: 9px;
}

.query-builder .error-container + .tooltip .tooltip-inner {
  color: #F99 !important;
}

.query-builder p.filter-description {
  margin: 5px 0 0 0;
  background: #D9EDF7;
  border: 1px solid #BCE8F1;
  color: #31708F;
  border-radius: 5px;
  padding: 2.5px 5px;
  font-size: .8em;
}

.query-builder .rules-group-header [data-invert] {
  margin-left: 5px;
}

.query-builder .drag-handle {
  cursor: move;
  vertical-align: middle;
  margin-left: 5px;
}

.query-builder .dragging {
  position: fixed;
  opacity: .5;
  z-index: 100;
}

.query-builder .dragging::before, .query-builder .dragging::after {
  display: none;
}

.query-builder .rule-placeholder {
  border: 1px dashed #BBB;
  opacity: .7;
}

/*Layout*/
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #151617;
}

.color-primary {
  color: #B5121B !important;
}

.color-black-fifty {
  color: rgba(21, 22, 23, 0.5);
}

/*Web Fonts*/
@font-face {
  font-family: 'OpenSans';
  src: url("/assets/fonts/OpenSans.eot");
  src: url("/assets/fonts/OpenSans.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans.woff2") format("woff2"), url("/assets/fonts/OpenSans.woff") format("woff"), url("/assets/fonts/OpenSans.ttf") format("truetype"), url("/assets/fonts/OpenSans.svg#OpenSans") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Semibold';
  src: url("/assets/fonts/OpenSans-Semibold.eot");
  src: url("/assets/fonts/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans-Semibold.woff2") format("woff2"), url("/assets/fonts/OpenSans-Semibold.woff") format("woff"), url("/assets/fonts/OpenSans-Semibold.ttf") format("truetype"), url("/assets/fonts/OpenSans-Semibold.svg#OpenSans-Semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Bold';
  src: url("/assets/fonts/OpenSans-Bold.eot");
  src: url("/assets/fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans-Bold.woff2") format("woff2"), url("/assets/fonts/OpenSans-Bold.woff") format("woff"), url("/assets/fonts/OpenSans-Bold.ttf") format("truetype"), url("/assets/fonts/OpenSans-Bold.svg#OpenSans-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*Font Mixins*/
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ai-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jc-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jc-flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jc-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jc-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.hover-cursor:hover {
  cursor: pointer;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.hover-pointer:hover {
  cursor: pointer;
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.header-main {
  background: #B5121B;
  color: #FFF;
  padding: 1.25rem 2rem;
  position: relative;
  z-index: 1001;
}

.header-main .header-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .header-main .header-title {
    font-size: 32px;
  }
}

.header-main .logo > span {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .header-main .logo > span {
    font-size: 12px;
    letter-spacing: 2px;
    margin-left: 30px;
  }
}

.header-main .dropdown a {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.page-header {
  background: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F5F6F7));
  background: linear-gradient(180deg, #FFF 0%, #F5F6F7 100%);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

@media (min-width: 1200px) {
  .page-header {
    padding: 2rem 0;
  }
}

.page-header.has-dates {
  padding: 2rem 0 0;
}

.page-header.stacked-on-mobile .page-header-left {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .page-header.stacked-on-mobile .page-header-left {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}

.page-header.stacked-on-mobile .page-header-right {
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .page-header.stacked-on-mobile .page-header-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .page-header.stacked-on-mobile .menu-wrapper:not(:last-of-type) .menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 1200px) {
  .page-header.stacked-on-mobile .menu-wrapper.only-menu .menu {
    right: auto !important;
    left: 0 !important;
  }
}

.page-header .menu-wrapper.disabled {
  position: relative;
  opacity: .5;
}

.page-header .menu-wrapper.disabled:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.page-header .page-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.25px;
  margin: 0;
}

@media (min-width: 1200px) {
  .page-header .page-title {
    font-size: 36px;
  }
}

.page-header .page-title.has-dropdown i {
  position: relative;
  top: -4px;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.page-header .page-title.has-dropdown.is-triggered i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.page-header .page-title span {
  display: inline-block;
}

@media (min-width: 1500px) {
  .page-header .page-title span {
    display: inline-block;
    margin-left: 0.5rem;
  }
}

.row-dates {
  padding-top: 2rem;
}

@media (max-width: 991px) {
  .row-top-stats .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.row-top-stats .col-sm-3,
.row-top-stats .col-sm-4 {
  border-right: 1px solid #E1E1E1;
}

.row-top-stats .col-sm-3:last-child,
.row-top-stats .col-sm-4:last-child {
  border-right: none;
}

.row-top-stats h2 {
  font-size: 80px;
  font-weight: 300;
  margin: 1rem;
  line-height: 1em;
}

.row-top-stats p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.row-bottom-stats {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #E1E1E1;
}

.row-bottom-stats h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.row-bottom-stats p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .row-bottom-stats .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 768px) {
  .row-bottom-stats .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333%;
        flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }
}

.row-bottom-stats .col.divider-after {
  border-right: 1px solid #E1E1E1;
}

@media (max-width: 991px) {
  .row-bottom-stats .col.divider-after {
    border-right: none;
  }
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1280px;
  }
}

/*Container Full*/
.container-full {
  padding-left: 10px;
  padding-right: 10px;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .container-full {
    padding-left: 0;
    padding-right: 0;
  }
}

body.admin > .wrapper {
  padding-bottom: 4rem;
}

a {
  color: #B5121B;
}

.row-checkin-buttons {
  padding: 1rem 0;
}

.row-checkin-buttons .col-sm-2,
.row-checkin-buttons .col-sm-8 {
  padding: 0 !important;
}

.row-profile {
  margin: 0 0 2rem;
}

.row-profile img {
  max-width: 100%;
  border-radius: 0.25rem;
}

.profile-title {
  font-size: 36px;
  font-weight: 400;
  color: #151617;
  letter-spacing: 0.25px;
  margin: 0 0 0.25rem;
}

.profile-meta {
  font-size: 18px;
  font-weight: 400;
  color: #151617;
}

.profile-meta span {
  display: inline-block;
  line-height: 1.75rem;
  border-right: 1px solid #E1E1E1;
  padding-right: 1rem;
  margin-right: 1rem;
}

.profile-meta span:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.report-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #151617;
  width: 100%;
  text-decoration: none !important;
  height: 3rem;
  position: relative;
  margin-bottom: -26px;
  opacity: 0.25;
}

.report-title:hover {
  color: #151617;
}

.report-title.is-active {
  border-bottom: 5px solid #B5121B;
  opacity: 1.0;
}

.reporting-back-button {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  display: inline-block;
  color: #151617;
  margin-bottom: 20px;
  text-decoration: none;
  letter-spacing: 1px;
}

.reporting-back-button:hover {
  color: #B5121B;
  text-decoration: none;
}

.reporting-back-button img {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.filter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 2rem 0 0;
}

.row-top-stats {
  margin: 2.5rem 0 0;
}

.reporting-filters a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #151617;
  margin-right: 1.5rem;
  text-decoration: none !important;
}

.reporting-filters a:last-child {
  margin-right: 0;
}

.reporting-filters a i {
  margin: 0 0.25rem;
}

.input-img {
  margin-bottom: 1rem;
}

.input-img img {
  max-width: 100%;
  max-height: 20rem;
}

@media print {
  body {
    font-size: 12px;
  }
  .print-hide {
    visibility: hidden;
  }
  .admin .container {
    max-width: 90%;
  }
  .admin .row-top-stats h2 {
    font-size: 66px;
  }
  .admin .filters .icon {
    visibility: hidden;
  }
  /* Reports */
  .admin-report .page-header {
    page-break-after: always;
  }
  /* TODO: Since these below are all identical styles for different report screens, we could potentially refactor these to a single set of .report-list styles instead of individual styles for each report. */
  .admin-report .participant-list .participant,
  .admin-report .event-list .event,
  .admin-report .group-list .group,
  .admin-report .client-list .client {
    padding: 0.25rem 0;
  }
  /* User Profiles */
  .admin-user .page-header {
    display: none;
  }
  .admin-user .form .form-addition {
    display: none;
  }
  .admin-user .dropdown-profile .dropdown-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

/* CSS additions from Doug for the Leadlist Query tool */
body.admin-leadlist {
  /* Pagination container styles */
  /* Pagination Link Styles */
  /* START Pagination Media Queries */
  /* END Pagination Media Queries */
}

body.admin-leadlist .btn-group.pull-right.group-actions {
  float: right;
}

body.admin-leadlist .form label {
  opacity: 1;
}

body.admin-leadlist .btn-group.pull-right.rule-actions {
  float: right;
}

body.admin-leadlist .rule-filter-container {
  /* border: 1px solid grey; */
  /* border-radius: 3px; */
}

body.admin-leadlist .form .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: .5rem;
  font-size: 16px;
  line-height: 24px;
  color: #151617;
  background: none;
  background-clip: padding-box;
  border: 1px solid #e1e1e6;
  border-radius: 3px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: all .15s ease-in;
  transition: all .15s ease-in;
}

body.admin-leadlist .query-builder .rules-group-container {
  border: 1px solid white;
  background-color: white;
}

body.admin-leadlist .query-builder .rule-operator-container .hide {
  display: none;
}

body.admin-leadlist .pagination-container {
  text-align: center;
}

body.admin-leadlist ul.pagination {
  list-style: none;
  padding: 3rem 0 0;
}

body.admin-leadlist li.page-item {
  display: inline;
  padding: 0 0.75rem;
}

body.admin-leadlist li.page-item a {
  color: #B5121B;
}

@media only screen and (max-width: 33.75rem) {
  body.admin-leadlist li.page-item {
    padding: 0 0.5rem;
  }
}

@media only screen and (max-width: 26.25rem) {
  body.admin-leadlist li.page-item {
    padding: 0 0.4rem;
  }
}

body.admin-leadlist .rule-filter-container,
body.admin-leadlist .rule-operator-container,
body.admin-leadlist .rule-value-container {
  /* border: 1px solid #e1e1e6; */
  /* border-radius: 3px; */
}

body.admin-leadlist .rule-value-container {
  /* height: 42px; */
}

body.admin-leadlist label.btn.btn-xs.btn-primary {
  opacity: 0.5;
}

body.admin-leadlist label.btn.btn-xs.btn-primary.active {
  opacity: 1;
}

body.admin-leadlist .query-builder .rule-container {
  padding: 8px;
  margin: 6px 0;
}

body.admin-leadlist table {
  width: 100%;
}

body.admin-leadlist td {
  padding: 10px;
}

body.admin-leadlist .query-builder a {
  color: #B5121B;
}

body.admin-leadlist .query-builder a:hover {
  color: #B5121B;
  text-decoration: underline;
}

body.admin-leadlist tr:nth-of-type(even) {
  background-color: #f2f3f5;
}

body.admin-leadlists-query .export-link {
  text-align: center;
  margin-top: 1.5rem;
}

body.admin-leadlists-create #upload {
  width: 430px;
  margin: 0 auto;
}

body.admin-leadlists-create .form-group.col-sm-6 {
  /* margin: 0 auto; */
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  max-width: 100%;
}

body.admin-leadlists-create #app.wrapper h2:nth-of-type(1) {
  text-align: center;
  padding-top: 4rem;
  margin-bottom: 1rem;
}

body.admin-leadlists-create #upload .form {
  padding: 15px;
}

body.admin-leadlists-create .card-footer {
  text-align: center;
}

body.admin-leadlists-create .card-footer > .btn {
  width: 100%;
}

body.admin-leadlist #mapper {
  overflow: scroll;
}

body.admin-leadlist #mapper .mapper-table tr td {
  font-size: 15px;
  min-width: 150px;
}

body.admin-leadlist #mapper .mapper-table tr.mapper-header td {
  color: #808080;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'OpenSans-Semibold';
}

.admin-body .leadlist-import-failures {
  max-height: 300px;
  overflow: scroll;
  list-style: none;
  background: #fcc;
  border: solid 1px #900;
  padding: 3px;
}

.admin-body .leadlist-import-failures .failure-row-number {
  font-weight: bold;
}

.admin-body .leadlist-import-failures code {
  font-size: .8em;
  font-family: monospace;
}

.admin-body .leadlist-import-failures .errors {
  color: #900;
  font-size: .8em;
}

.event-setup {
  border-bottom: 1px solid #E1E1E1;
}

.col-event-setup {
  position: relative;
  padding: 7rem 0;
  border-left: 1px solid #E1E1E1;
}

.col-event-setup:last-child {
  border-right: 1px solid #E1E1E1;
}

.col-event-setup .details p {
  font-size: 13px;
  color: #505152;
  padding-bottom: 2rem;
}

.col-event-setup .title {
  font-size: 20px;
  font-weight: 600;
}

.col-event-setup .links {
  position: absolute;
  bottom: 1.5rem;
}

.col-event-setup .link, .col-event-setup .page-link {
  display: block;
  width: 100%;
  text-align: center;
}

.col-event-setup .link:not(:last-of-type), .col-event-setup .page-link:not(:last-of-type) {
  margin-bottom: 10px;
}

.col-event-setup .toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
}

.row-archive-event {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  left: 0;
}

.query-builder {
  display: block !important;
}

body.registration-page-landing .nav-header .btn.btn-primary, body.registration-page-confirmation .nav-header .btn.btn-primary, body.registration-page-index .nav-header .btn.btn-primary {
  display: none !important;
}

.capacity-config-row {
  border-top: 1px solid #808080;
}

.touchless-notifications-status .stat-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.touchless-notifications-status .stat-container .label {
  min-width: 90px;
}

.background-report-status {
  background: #e3e3e3;
  padding: 10px 0;
  font-weight: bold;
  font-style: italic;
  text-align: right;
}

.background-report-status .icon {
  margin-top: 3px;
  margin-right: .2em;
}

.clients-list.is-searching {
  display: none;
}

.clients-list-search {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  border-left: 1px solid #E1E1E1;
}

.clients-list-search.is-searching {
  display: block;
}

.clients-list-search .event-list-item {
  display: block;
}

.clients-list-search .event-list-item a, .clients-list-search .event-list-item span {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #E1E1E1;
}

#users-list-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid lightgrey;
  max-height: 40vh;
  overflow-y: scroll;
}

#users-list-search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#users-list-search-results ul li {
  display: block;
  padding: 10px;
}

#users-list-search-results ul li:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}

#users-list-search-results ul li a {
  display: block;
  text-decoration: none;
  color: #151617;
}

#users-list-search-results ul li a span:first-child {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

#users-list-search-results ul li a span:last-child {
  font-size: 12px;
  color: #D1D2D9;
}

#users-list-search-results ul li:hover {
  background: #E1E1E1;
}

.custom-field-option {
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid lightgray;
  padding: 20px;
  position: relative;
}

.vdp-datepicker__calendar {
  right: 0;
}

/*Modules*/
.dropdown {
  border-bottom: 1px solid #E1E1E1;
}

.dropdown .dropdown-bar {
  padding: 12px 0;
}

.dropdown .dropdown-content {
  display: none;
}

.dropdown .dropdown-content .dropdown-content-item {
  background: #F2F3F5;
  padding: 1.25rem 0;
}

.dropdown .dropdown-content .dropdown-content-item:nth-child(even) {
  background: #FFF;
}

.dropdown .dropdown-content .dropdown-content-item.is-highlighted {
  background: rgba(181, 18, 27, 0.25);
}

.dropdown .dropdown-content .dropdown-content-item p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.dropdown .dropdown-content .dropdown-content-item .link {
  margin-left: 1.5rem;
}

@media (min-width: 992px) {
  .dropdown .dropdown-content .dropdown-content-item .link {
    margin-left: 3.5rem;
  }
}

.dropdown .dropdown-links a.link {
  font-size: 13px;
  color: #505152;
  font-weight: 400;
  text-decoration: none;
}

.dropdown .dropdown-links a.link i {
  margin-right: 0.5rem;
}

.dropdown .dropdown-links a.btn-primary {
  margin-left: 2rem;
}

.dropdown .dropdown-links span {
  font-size: 12px;
  color: #151617;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-left: 1.25rem;
}

.dropdown-profile {
  padding: 2rem 0;
}

.dropdown-title {
  font-size: 20px;
  font-weight: 600;
  color: #151617;
  text-decoration: none !important;
}

.dropdown-title i {
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  margin-right: 0.25rem;
}

.dropdown-title:hover {
  color: #151617;
}

.dropdown-title.is-active > i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.reporting-filters select[name="session_id"] {
  margin-left: 1rem;
}

/* TODO: Since these below are all identical styles for different report screens, we could potentially refactor these to a single set of .report-list styles instead of individual styles for each report. */
@media (max-width: 991px) {
  .participant-list.wide-on-mobile .container, .event-list.wide-on-mobile .container, .group-list.wide-on-mobile .container, .client-list.wide-on-mobile .container {
    max-width: none;
  }
}

.participant-list.has-border-top, .event-list.has-border-top, .group-list.has-border-top, .client-list.has-border-top {
  border-top: 1px solid #E1E1E1;
  padding-top: 2rem;
}

.participant-list.no-extra-padding-top, .event-list.no-extra-padding-top, .group-list.no-extra-padding-top, .client-list.no-extra-padding-top {
  padding-top: 0;
}

.participant-list ul, .event-list ul, .group-list ul, .client-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.participant-list ul li, .event-list ul li, .group-list ul li, .client-list ul li {
  display: block;
}

.participant-list .filters, .event-list .filters, .group-list .filters, .client-list .filters {
  padding: 1rem 0 0.5rem;
}

.participant-list .filters a, .event-list .filters a, .group-list .filters a, .client-list .filters a {
  text-decoration: none;
  font-size: 11px;
  color: #151617;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .participant-list .filters a, .event-list .filters a, .group-list .filters a, .client-list .filters a {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

.participant-list .filters a i, .event-list .filters a i, .group-list .filters a i, .client-list .filters a i {
  margin-left: 0.25rem;
}

.participant-list .participant, .participant-list .event, .participant-list .group, .participant-list .client, .event-list .participant, .event-list .event, .event-list .group, .event-list .client, .group-list .participant, .group-list .event, .group-list .group, .group-list .client, .client-list .participant, .client-list .event, .client-list .group, .client-list .client {
  background: #F2F3F5;
  padding: 1.25rem 0;
}

.participant-list .participant a, .participant-list .event a, .participant-list .group a, .participant-list .client a, .event-list .participant a, .event-list .event a, .event-list .group a, .event-list .client a, .group-list .participant a, .group-list .event a, .group-list .group a, .group-list .client a, .client-list .participant a, .client-list .event a, .client-list .group a, .client-list .client a {
  color: #151617;
}

.participant-list .participant:hover .icon-note,
.participant-list .participant:hover .icon-external-link-gray, .participant-list .event:hover .icon-note,
.participant-list .event:hover .icon-external-link-gray, .participant-list .group:hover .icon-note,
.participant-list .group:hover .icon-external-link-gray, .participant-list .client:hover .icon-note,
.participant-list .client:hover .icon-external-link-gray, .event-list .participant:hover .icon-note,
.event-list .participant:hover .icon-external-link-gray, .event-list .event:hover .icon-note,
.event-list .event:hover .icon-external-link-gray, .event-list .group:hover .icon-note,
.event-list .group:hover .icon-external-link-gray, .event-list .client:hover .icon-note,
.event-list .client:hover .icon-external-link-gray, .group-list .participant:hover .icon-note,
.group-list .participant:hover .icon-external-link-gray, .group-list .event:hover .icon-note,
.group-list .event:hover .icon-external-link-gray, .group-list .group:hover .icon-note,
.group-list .group:hover .icon-external-link-gray, .group-list .client:hover .icon-note,
.group-list .client:hover .icon-external-link-gray, .client-list .participant:hover .icon-note,
.client-list .participant:hover .icon-external-link-gray, .client-list .event:hover .icon-note,
.client-list .event:hover .icon-external-link-gray, .client-list .group:hover .icon-note,
.client-list .group:hover .icon-external-link-gray, .client-list .client:hover .icon-note,
.client-list .client:hover .icon-external-link-gray {
  opacity: 1;
}

.participant-list .participant:nth-child(even), .participant-list .event:nth-child(even), .participant-list .group:nth-child(even), .participant-list .client:nth-child(even), .event-list .participant:nth-child(even), .event-list .event:nth-child(even), .event-list .group:nth-child(even), .event-list .client:nth-child(even), .group-list .participant:nth-child(even), .group-list .event:nth-child(even), .group-list .group:nth-child(even), .group-list .client:nth-child(even), .client-list .participant:nth-child(even), .client-list .event:nth-child(even), .client-list .group:nth-child(even), .client-list .client:nth-child(even) {
  background: #FFF;
}

.participant-list .participant.is-pending, .participant-list .event.is-pending, .participant-list .group.is-pending, .participant-list .client.is-pending, .event-list .participant.is-pending, .event-list .event.is-pending, .event-list .group.is-pending, .event-list .client.is-pending, .group-list .participant.is-pending, .group-list .event.is-pending, .group-list .group.is-pending, .group-list .client.is-pending, .client-list .participant.is-pending, .client-list .event.is-pending, .client-list .group.is-pending, .client-list .client.is-pending {
  background: #F7DFDF;
}

.participant-list .participant .row.is-guest, .participant-list .event .row.is-guest, .participant-list .group .row.is-guest, .participant-list .client .row.is-guest, .event-list .participant .row.is-guest, .event-list .event .row.is-guest, .event-list .group .row.is-guest, .event-list .client .row.is-guest, .group-list .participant .row.is-guest, .group-list .event .row.is-guest, .group-list .group .row.is-guest, .group-list .client .row.is-guest, .client-list .participant .row.is-guest, .client-list .event .row.is-guest, .client-list .group .row.is-guest, .client-list .client .row.is-guest {
  margin-top: 1rem;
  line-height: 26px;
  position: relative;
}

.participant-list .participant .row.is-guest > .col-sm-3,
.participant-list .participant .row.is-guest > .col-sm-4,
.participant-list .participant .row.is-guest > .col-sm-6, .participant-list .event .row.is-guest > .col-sm-3,
.participant-list .event .row.is-guest > .col-sm-4,
.participant-list .event .row.is-guest > .col-sm-6, .participant-list .group .row.is-guest > .col-sm-3,
.participant-list .group .row.is-guest > .col-sm-4,
.participant-list .group .row.is-guest > .col-sm-6, .participant-list .client .row.is-guest > .col-sm-3,
.participant-list .client .row.is-guest > .col-sm-4,
.participant-list .client .row.is-guest > .col-sm-6, .event-list .participant .row.is-guest > .col-sm-3,
.event-list .participant .row.is-guest > .col-sm-4,
.event-list .participant .row.is-guest > .col-sm-6, .event-list .event .row.is-guest > .col-sm-3,
.event-list .event .row.is-guest > .col-sm-4,
.event-list .event .row.is-guest > .col-sm-6, .event-list .group .row.is-guest > .col-sm-3,
.event-list .group .row.is-guest > .col-sm-4,
.event-list .group .row.is-guest > .col-sm-6, .event-list .client .row.is-guest > .col-sm-3,
.event-list .client .row.is-guest > .col-sm-4,
.event-list .client .row.is-guest > .col-sm-6, .group-list .participant .row.is-guest > .col-sm-3,
.group-list .participant .row.is-guest > .col-sm-4,
.group-list .participant .row.is-guest > .col-sm-6, .group-list .event .row.is-guest > .col-sm-3,
.group-list .event .row.is-guest > .col-sm-4,
.group-list .event .row.is-guest > .col-sm-6, .group-list .group .row.is-guest > .col-sm-3,
.group-list .group .row.is-guest > .col-sm-4,
.group-list .group .row.is-guest > .col-sm-6, .group-list .client .row.is-guest > .col-sm-3,
.group-list .client .row.is-guest > .col-sm-4,
.group-list .client .row.is-guest > .col-sm-6, .client-list .participant .row.is-guest > .col-sm-3,
.client-list .participant .row.is-guest > .col-sm-4,
.client-list .participant .row.is-guest > .col-sm-6, .client-list .event .row.is-guest > .col-sm-3,
.client-list .event .row.is-guest > .col-sm-4,
.client-list .event .row.is-guest > .col-sm-6, .client-list .group .row.is-guest > .col-sm-3,
.client-list .group .row.is-guest > .col-sm-4,
.client-list .group .row.is-guest > .col-sm-6, .client-list .client .row.is-guest > .col-sm-3,
.client-list .client .row.is-guest > .col-sm-4,
.client-list .client .row.is-guest > .col-sm-6 {
  padding-left: 3rem;
  position: relative;
}

.participant-list .participant .row.is-guest:before, .participant-list .event .row.is-guest:before, .participant-list .group .row.is-guest:before, .participant-list .client .row.is-guest:before, .event-list .participant .row.is-guest:before, .event-list .event .row.is-guest:before, .event-list .group .row.is-guest:before, .event-list .client .row.is-guest:before, .group-list .participant .row.is-guest:before, .group-list .event .row.is-guest:before, .group-list .group .row.is-guest:before, .group-list .client .row.is-guest:before, .client-list .participant .row.is-guest:before, .client-list .event .row.is-guest:before, .client-list .group .row.is-guest:before, .client-list .client .row.is-guest:before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  background: url("/assets/img/icons/bracket.svg");
  background-size: 17px 17px;
  left: 1rem;
}

.participant-list .participant ul, .participant-list .event ul, .participant-list .group ul, .participant-list .client ul, .event-list .participant ul, .event-list .event ul, .event-list .group ul, .event-list .client ul, .group-list .participant ul, .group-list .event ul, .group-list .group ul, .group-list .client ul, .client-list .participant ul, .client-list .event ul, .client-list .group ul, .client-list .client ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.participant-list .participant ul li, .participant-list .event ul li, .participant-list .group ul li, .participant-list .client ul li, .event-list .participant ul li, .event-list .event ul li, .event-list .group ul li, .event-list .client ul li, .group-list .participant ul li, .group-list .event ul li, .group-list .group ul li, .group-list .client ul li, .client-list .participant ul li, .client-list .event ul li, .client-list .group ul li, .client-list .client ul li {
  font-size: 15px;
  font-weight: 400;
}

.participant-list .participant .status, .participant-list .event .status, .participant-list .group .status, .participant-list .client .status, .event-list .participant .status, .event-list .event .status, .event-list .group .status, .event-list .client .status, .group-list .participant .status, .group-list .event .status, .group-list .group .status, .group-list .client .status, .client-list .participant .status, .client-list .event .status, .client-list .group .status, .client-list .client .status {
  position: relative;
  padding-left: 1.25rem;
}

.participant-list .participant .status:before, .participant-list .event .status:before, .participant-list .group .status:before, .participant-list .client .status:before, .event-list .participant .status:before, .event-list .event .status:before, .event-list .group .status:before, .event-list .client .status:before, .group-list .participant .status:before, .group-list .event .status:before, .group-list .group .status:before, .group-list .client .status:before, .client-list .participant .status:before, .client-list .event .status:before, .client-list .group .status:before, .client-list .client .status:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.participant-list .participant .status.is-pending:before, .participant-list .event .status.is-pending:before, .participant-list .group .status.is-pending:before, .participant-list .client .status.is-pending:before, .event-list .participant .status.is-pending:before, .event-list .event .status.is-pending:before, .event-list .group .status.is-pending:before, .event-list .client .status.is-pending:before, .group-list .participant .status.is-pending:before, .group-list .event .status.is-pending:before, .group-list .group .status.is-pending:before, .group-list .client .status.is-pending:before, .client-list .participant .status.is-pending:before, .client-list .event .status.is-pending:before, .client-list .group .status.is-pending:before, .client-list .client .status.is-pending:before {
  background: #B5121B;
}

.participant-list .participant .status.is-checked-in:before, .participant-list .event .status.is-checked-in:before, .participant-list .group .status.is-checked-in:before, .participant-list .client .status.is-checked-in:before, .event-list .participant .status.is-checked-in:before, .event-list .event .status.is-checked-in:before, .event-list .group .status.is-checked-in:before, .event-list .client .status.is-checked-in:before, .group-list .participant .status.is-checked-in:before, .group-list .event .status.is-checked-in:before, .group-list .group .status.is-checked-in:before, .group-list .client .status.is-checked-in:before, .client-list .participant .status.is-checked-in:before, .client-list .event .status.is-checked-in:before, .client-list .group .status.is-checked-in:before, .client-list .client .status.is-checked-in:before {
  background: #7ED321;
}

.participant-list .participant .status.is-registered:before, .participant-list .event .status.is-registered:before, .participant-list .group .status.is-registered:before, .participant-list .client .status.is-registered:before, .event-list .participant .status.is-registered:before, .event-list .event .status.is-registered:before, .event-list .group .status.is-registered:before, .event-list .client .status.is-registered:before, .group-list .participant .status.is-registered:before, .group-list .event .status.is-registered:before, .group-list .group .status.is-registered:before, .group-list .client .status.is-registered:before, .client-list .participant .status.is-registered:before, .client-list .event .status.is-registered:before, .client-list .group .status.is-registered:before, .client-list .client .status.is-registered:before {
  background: #4A90E2;
}

.participant-list .participant .status.is-no-show:before, .participant-list .event .status.is-no-show:before, .participant-list .group .status.is-no-show:before, .participant-list .client .status.is-no-show:before, .event-list .participant .status.is-no-show:before, .event-list .event .status.is-no-show:before, .event-list .group .status.is-no-show:before, .event-list .client .status.is-no-show:before, .group-list .participant .status.is-no-show:before, .group-list .event .status.is-no-show:before, .group-list .group .status.is-no-show:before, .group-list .client .status.is-no-show:before, .client-list .participant .status.is-no-show:before, .client-list .event .status.is-no-show:before, .client-list .group .status.is-no-show:before, .client-list .client .status.is-no-show:before {
  background: #D1D2D9;
}

.participant-list a.participant, .event-list a.participant, .group-list a.participant, .client-list a.participant {
  display: block;
  color: #151617;
  text-decoration: none;
  position: relative;
}

.participant-list a.participant:after, .event-list a.participant:after, .group-list a.participant:after, .client-list a.participant:after {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  right: 30px;
  height: 18px;
  width: 10px;
  background-image: url("/assets/img/icons/icon-right-link-arrow.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 2;
}

.participant-list a.participant.current-quick-stat, .event-list a.participant.current-quick-stat, .group-list a.participant.current-quick-stat, .client-list a.participant.current-quick-stat {
  font-weight: bold !important;
}

.participant-list .participant.checkin-participant a, .event-list .participant.checkin-participant a, .group-list .participant.checkin-participant a, .client-list .participant.checkin-participant a {
  text-decoration: none;
  cursor: pointer;
}

.participant-list .participant.checkin-participant .participant-status, .event-list .participant.checkin-participant .participant-status, .group-list .participant.checkin-participant .participant-status, .client-list .participant.checkin-participant .participant-status {
  font-size: 15px;
  color: #979797;
}

.participant-list .participant.checkin-participant .participant-expanded-details, .event-list .participant.checkin-participant .participant-expanded-details, .group-list .participant.checkin-participant .participant-expanded-details, .client-list .participant.checkin-participant .participant-expanded-details {
  font-size: 15px;
  color: #979797;
  margin-top: 7px;
  display: inline-block;
  line-height: 18px;
}

.participant-list .participant.checkin-participant .participant-single-survey-status, .event-list .participant.checkin-participant .participant-single-survey-status, .group-list .participant.checkin-participant .participant-single-survey-status, .client-list .participant.checkin-participant .participant-single-survey-status {
  margin-right: 30px;
  width: 90px;
}

.participant-list .participant.checkin-participant .participant-single-survey-status i, .event-list .participant.checkin-participant .participant-single-survey-status i, .group-list .participant.checkin-participant .participant-single-survey-status i, .client-list .participant.checkin-participant .participant-single-survey-status i {
  margin-right: 5px;
}

.participant-list .participant.checkin-participant .participant-single-survey-status a, .event-list .participant.checkin-participant .participant-single-survey-status a, .group-list .participant.checkin-participant .participant-single-survey-status a, .client-list .participant.checkin-participant .participant-single-survey-status a {
  text-decoration: none;
}

.participant-list .participant.checkin-participant .participant-checkin-status, .event-list .participant.checkin-participant .participant-checkin-status, .group-list .participant.checkin-participant .participant-checkin-status, .client-list .participant.checkin-participant .participant-checkin-status {
  margin-right: 30px;
  width: 140px;
}

.participant-list .participant.checkin-participant .participant-checkin-status i, .event-list .participant.checkin-participant .participant-checkin-status i, .group-list .participant.checkin-participant .participant-checkin-status i, .client-list .participant.checkin-participant .participant-checkin-status i {
  margin-right: 5px;
}

.participant-list .participant.checkin-participant .participant-checkin-status a, .event-list .participant.checkin-participant .participant-checkin-status a, .group-list .participant.checkin-participant .participant-checkin-status a, .client-list .participant.checkin-participant .participant-checkin-status a {
  text-decoration: none;
}

.participant-list .participant.checkin-participant .participant-checkin-status .btn-primary, .event-list .participant.checkin-participant .participant-checkin-status .btn-primary, .group-list .participant.checkin-participant .participant-checkin-status .btn-primary, .client-list .participant.checkin-participant .participant-checkin-status .btn-primary {
  background: #f7f7f7;
  border: 1px solid #E5E5E5;
}

.participant-list .participant.checkin-participant .participant-checkin-status .no-waiver-indicator, .event-list .participant.checkin-participant .participant-checkin-status .no-waiver-indicator, .group-list .participant.checkin-participant .participant-checkin-status .no-waiver-indicator, .client-list .participant.checkin-participant .participant-checkin-status .no-waiver-indicator {
  text-align: center;
  color: #D31212;
  padding-top: 5px;
  font-size: 12px;
}

.column-highlight {
  font-weight: bold !important;
  color: #87BF56 !important;
}

.col-date {
  text-align: center;
  opacity: 0.25;
  border-bottom: 5px solid rgba(181, 18, 27, 0);
  padding-bottom: 0.25rem;
}

.col-date.is-active {
  opacity: 1;
  border-bottom: 5px solid #b5121b;
}

.col-date h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

@media (min-width: 992px) {
  .col-date h4 {
    font-size: 20px;
  }
}

.col-date p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.survey-container {
  padding-top: 4rem;
}

.survey-container.has-border-top {
  border-top: 1px solid #E1E1E1;
  padding-top: 2rem;
}

.row-table {
  padding: 1rem 0;
  font-size: 15px;
  border-bottom: 1px solid #E1E1E1;
}

.row-table:last-child {
  border-bottom: 0;
}

.row-table p {
  margin: 0;
}

.row-table strong {
  font-weight: 600;
}

table.table-formatted th {
  color: #808080;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'OpenSans-Semibold';
}

table.table-formatted td {
  font-size: 15px;
}

table.table-formatted td a {
  background: #B5121B;
  color: #FFF;
  display: inline-block;
  text-decoration: none !important;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-family: 'OpenSans-Semibold';
}

table.table-formatted td a:hover {
  cursor: pointer;
  background: #cc141e;
}

.permissions {
  position: relative;
}

.permissions.is-group {
  margin-left: 2rem;
  padding-left: 1.5rem;
}

.permissions.is-group:before {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border-bottom: 1px solid #E1E1E1;
  border-left: 1px solid #E1E1E1;
}

.permissions.is-event {
  margin-left: 2rem;
  padding-left: 1.5rem;
}

.permissions.is-event:before {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border-bottom: 1px solid #E1E1E1;
  border-left: 1px solid #E1E1E1;
}

.permissions .permissions-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.permissions .permissions-content .heading-secondary {
  margin: 0 1rem 0 0;
  font-size: 1rem;
}

.permissions .permissions-content .input-group {
  max-width: 156px;
}

.date-reorder span {
  background: url("/assets/admin/img/icons/sortable.svg") center center/contain no-repeat;
  width: 12px;
  height: 12px;
  background-size: 12px;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: -2px;
  cursor: pointer;
}

.reporting-checked-in {
  color: #4A90E2 !important;
}

.reporting-attended {
  color: #87BF56 !important;
}

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0.25rem;
  border: none;
  padding: 0.5rem 1.5rem;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.btn:hover {
  cursor: pointer;
}

.btn.btn-default {
  background: #F2F3F5;
}

.btn.btn-default:hover {
  background: #e4e6ea;
}

.btn.btn-primary:not(:disabled):not(.disabled):active, .btn.btn-primary:not(:disabled):not(.disabled).active, .btn.btn-primary, .btn.btn-success:not(:disabled):not(.disabled):active, .btn.btn-success:not(:disabled):not(.disabled).active, .btn.btn-success {
  background: #B5121B;
  color: #FFF;
}

.btn.btn-primary:not(:disabled):not(.disabled):active:hover, .btn.btn-primary:not(:disabled):not(.disabled).active:hover, .btn.btn-primary:hover, .btn.btn-success:not(:disabled):not(.disabled):active:hover, .btn.btn-success:not(:disabled):not(.disabled).active:hover, .btn.btn-success:hover {
  background: #cc141e;
}

.btn.btn-primary:not(:disabled):not(.disabled):active:focus, .btn.btn-primary:not(:disabled):not(.disabled).active:focus, .btn.btn-primary:focus, .btn.btn-success:not(:disabled):not(.disabled):active:focus, .btn.btn-success:not(:disabled):not(.disabled).active:focus, .btn.btn-success:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-danger, .btn.btn-secondary {
  background: #505152;
  color: #FFF;
}

.btn.btn-danger:hover, .btn.btn-secondary:hover {
  background: #5d5e5f;
}

.btn.btn-danger:focus, .btn.btn-secondary:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-tertiary {
  background: #151617;
  color: #FFF;
  font-size: 14px;
  letter-spacing: .75px;
  min-height: 40px;
  text-transform: uppercase;
}

.btn.btn-tertiary:hover {
  background: #B5121B;
}

.btn.btn-faded {
  background: #E1E1E1;
  border-color: #E1E1E1;
  color: #151617;
  font-size: 14px;
  letter-spacing: .75px;
  text-transform: uppercase;
}

.btn.btn-faded:hover {
  background: #151617;
  color: #FFF;
}

.btn.btn-outline-tertiary {
  background: #FFF;
  border: solid 1px #151617;
  font-size: 14px;
  letter-spacing: .75px;
  text-transform: uppercase;
}

.btn.btn-outline-tertiary:hover {
  background: #B5121B;
  border-color: #B5121B;
  color: #FFF;
}

.btn.btn-outline-faded {
  background: transparent;
  border: solid 1px #D1D2D9;
  font-size: 14px;
  letter-spacing: .75px;
  text-transform: uppercase;
}

.btn.btn-outline-faded:hover {
  background: #151617;
  border-color: #151617;
  color: #FFF;
}

.btn.btn-question-correct, .btn.btn-question-remove {
  position: absolute;
  top: 8px;
  padding: 0;
  margin: 0;
  border: none;
  background: none !important;
}

.btn.btn-question-correct {
  right: 48px;
  opacity: 0.5;
}

.btn.btn-question-correct:hover, .btn.btn-question-correct.is-correct {
  opacity: 1;
}

.btn.btn-question-remove {
  right: 24px;
}

.btn.is-square {
  border-radius: 0;
}

.btn.is-rounded {
  border-radius: 8px;
}

.btn.is-pill {
  border-radius: 20px;
}

.btn.btn-delete {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #B5121B;
  padding: 0;
}

.btn.btn-block {
  width: 100%;
}

.btn.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  color: white !important;
}

.btn.btn-sm, .btn-group-sm > .btn {
  padding: 0.3rem 0.5rem;
}

.btn.btn-text {
  padding: 5px 0;
  font-family: 'OpenSans-Semibold';
}

.btn.btn-text:hover {
  color: #B5121B;
}

.btn.btn-trash {
  background: url("/assets/img/icons/trash.svg") center center/contain no-repeat;
  display: block;
  height: 18px;
  position: absolute;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  width: 16px;
}

.btn.btn-trash:hover {
  opacity: .5;
}

.btn.jscolor {
  border: solid 1px #E1E1E1;
  font-size: 0;
}

.link {
  text-decoration: none;
  border: none;
  -webkit-appearance: none;
}

.link:hover {
  text-decoration: none;
  cursor: pointer;
}

.link:focus {
  outline: none;
}

.link.link-archive {
  color: #808080;
  font-size: 13px;
}

.link.link-archive:hover {
  color: #505152;
}

.link.link-archive.is-reactivate {
  color: #505152;
  background: none;
}

.link.link-archive.is-reactivate i {
  color: #B5121B;
  margin-right: 0.5rem;
}

.link.link-profile {
  color: #B5121B;
  font-size: 14px;
}

.link.link-profile:hover {
  color: #cc141e;
}

.link.link-profile i {
  margin-right: 0.25rem;
}

.link.link-download {
  color: #151617;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 1.5rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .link.link-download {
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .link.link-download {
    font-size: 12px;
  }
}

.link.link-download:first-child {
  margin-left: 0;
}

.link.link-download i {
  margin-right: 0.25rem;
}

.toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.toggle .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 0.5rem;
  -webkit-transition: all 0.25s cubic-bezier(0.68, 0.03, 0.22, 0.96);
  transition: all 0.25s cubic-bezier(0.68, 0.03, 0.22, 0.96);
}

.toggle .label:before {
  content: 'inactive';
}

.toggle .switch {
  position: relative;
  width: 50px;
  height: 25px;
  border-radius: 25px;
  background: #E1E1E1;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.toggle .switch:before {
  content: '';
  -webkit-box-sizing: unset;
          box-sizing: unset;
  position: absolute;
  width: 19px;
  height: 19px;
  top: 3px;
  left: 3px;
  background: #FFF;
  border-radius: 50%;
  border: 0px solid #FFF;
  -webkit-box-shadow: 0 0 4px rgba(21, 22, 23, 0.2), 0 2px 3px rgba(21, 22, 23, 0.3);
          box-shadow: 0 0 4px rgba(21, 22, 23, 0.2), 0 2px 3px rgba(21, 22, 23, 0.3);
  -webkit-transition: all 0.25s cubic-bezier(0.68, 0.03, 0.22, 0.96);
  transition: all 0.25s cubic-bezier(0.68, 0.03, 0.22, 0.96);
}

.toggle.is-active .label {
  opacity: 1.0;
}

.toggle.is-active .label:before {
  content: 'live';
}

.toggle.is-active .switch {
  background: #96C865;
}

.toggle.is-active .switch:before {
  top: -2px;
  left: 28px;
  background: #96C865;
  border: 5px solid #FFF;
}

/*Button Row*/
.btn-row {
  margin: 0 -5px;
}

.btn-row .btn {
  margin: 0 5px;
}

.rules-group-header .btn-group button.btn[data-add="rule"] {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background: #505152;
}

.rules-group-header .btn-group button.btn[data-add="rule"]:hover {
  background: #5d5e5f;
}

.rules-group-header .btn-group button.btn[data-add="group"] {
  display: none;
}

.short-form .form-control.disabled {
  opacity: .5;
}

.short-form label.disabled {
  opacity: .5;
}

.form.form-profile .col-sm-3 {
  padding-left: 0 !important;
}

.form label {
  font-size: 12px;
  font-weight: 600;
  color: #151617;
  text-transform: uppercase;
  opacity: 0.5;
  letter-spacing: 1px;
}

.form label.image-select {
  opacity: 1;
}

.form .input-group {
  margin: 0 0 2rem;
}

.form .input-group label {
  position: absolute;
  top: 0.5rem;
  max-width: 8rem;
}

.form .form-control {
  display: block;
  width: 100%;
  padding: 0 0 0.5rem;
  font-size: 18px;
  line-height: 32px;
  color: #151617;
  background: none;
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid #E1E1E1;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.form .form-control.has-label {
  padding-left: 9rem;
}

.form .form-control.has-error {
  border-bottom: 1px solid #B5121B;
}

.form .form-control.form-search {
  background-color: #F5F6F7;
  background-image: url("/assets/img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 21px 20px;
  border: 1px solid #E1E1E1;
  border-radius: 0.25rem;
  font-size: 15px;
  color: rgba(21, 22, 23, 0.5);
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 2.5rem;
}

.form .form-control.form-search.form-search-with-toggle {
  padding: 0 135px 0 2.5rem;
}

.form .form-control.form-search:focus {
  border: 1px solid #D1D2D9;
}

.form .form-control[type="color"] {
  height: 41px;
}

.form .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form .form-control:focus {
  outline: 0;
  outline: none;
  border-bottom: 1px solid #B5121B;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form .form-control::-webkit-input-placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form .form-control::-ms-input-placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form .form-control::placeholder {
  color: #D1D2D9;
  opacity: 1;
}

.form .form-control:disabled, .form .form-control[readonly] {
  background-color: rgba(21, 22, 23, 0.1);
  opacity: .5;
}

.form select.form-control {
  background: none;
}

.form select.form-control:not([size]):not([multiple]) {
  height: 40px;
}

.form select.form-control:focus::-ms-value {
  color: #151617;
  background-color: none;
}

.form .input-group {
  position: relative;
}

.form .form-addition {
  font-size: 14px;
  font-weight: 700;
  display: block;
  position: absolute;
  right: 0;
  top: 20%;
}

.form .form-addition:hover {
  cursor: pointer;
}

.image-select {
  background: #F2F3F5;
  text-align: center;
  width: 100%;
}

.image-select:hover {
  cursor: pointer;
}

.image-select input[type="file"] {
  display: none;
}

.image-select span {
  display: block;
  padding: 9rem 0 4rem;
  background-image: url("/assets/img/icons/profile.svg");
  background-size: 45px 42px;
  background-position: center center;
  background-repeat: no-repeat;
  color: rgba(21, 22, 23, 0.5);
}

/*Custom Select*/
.select-custom {
  background: #F2F3F5;
  border: solid 1px #F2F3F5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.select-custom:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #151617;
  content: '';
  display: inline-block;
  height: 0;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 0;
}

.select-custom .form-control {
  background: transparent;
  border: none;
  font-size: 15px;
  line-height: 1;
  min-height: 38px;
  padding: 8px 20px;
  text-align: left;
  width: 130%;
  -webkit-appearance: none;
  font-family: 'OpenSans-Bold';
}

.select-custom .form-control:focus {
  background: #d5d8df;
  border: none;
  outline: none;
}

/*Custom Radio/Checkbox*/
.form-check {
  padding-left: 0;
  /*Checkbox*/
  /*Radio*/
}

.form-check .form-check-label {
  font-size: 15px;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 4px 0 4px 25px;
  position: relative;
}

.form-check .form-check-label:before {
  content: '';
  display: inline-block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 20px;
}

.form-check [type="radio"], .form-check [type="checkbox"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.form-check [type="checkbox"]:checked + label:before {
  background-image: url("/assets/img/checkbox-checked.svg");
}

.form-check [type="checkbox"] + label:before {
  background: url("/assets/img/checkbox-unchecked.svg") center center/contain no-repeat;
}

.form-check [type="radio"]:checked + label:before {
  background-image: url("/assets/img/radio-checked.svg");
}

.form-check [type="radio"] + label:before {
  background: url("/assets/img/radio-unchecked.svg") center center/contain no-repeat;
}

.form-group.has-error label {
  color: #B5121B;
}

.admin-block .form-group.is-invalid label {
  color: #B5121B;
}

.admin-block .form-group.is-invalid .form-control {
  border: none;
  background: rgba(181, 18, 27, 0.2);
}

.predict-wrapper {
  position: absolute;
  background: #fff;
  z-index: 99;
  width: 100%;
  padding: 0.5rem 1rem;
  max-height: 256px;
  overflow-y: scroll;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.predict-wrapper a {
  display: block;
  font-size: 13px;
  padding: 0.5rem 0;
}

.is-verified {
  border: 1px solid #7ED321 !important;
}

.is-unverified {
  border: 1px solid #B5121B !important;
}

.icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.icon.icon-directdown {
  background-image: url("/assets/admin/img/icons/directdown.svg");
  width: 10px;
  height: 6px;
}

.icon.icon-directdown-large {
  background-image: url("/assets/admin/img/icons/directdown-large.svg");
  width: 12px;
  height: 8px;
}

.icon.icon-directright {
  background-image: url("/assets/admin/img/icons/directright.svg");
  width: 8px;
  height: 12px;
}

.icon.icon-reporting {
  background-image: url("/assets/admin/img/icons/reporting.svg");
  width: 21px;
  height: 20px;
}

.icon.icon-checkin {
  background-image: url("/assets/admin/img/icons/checkin.svg");
  width: 18px;
  height: 18px;
}

.icon.icon-settings {
  background-image: url("/assets/admin/img/icons/settings.svg");
  margin-left: 0 5px;
  width: 20px;
  height: 20px;
}

.icon.icon-settings-red {
  background-image: url("/assets/admin/img/icons/settings-red.svg");
  width: 20px;
  height: 20px;
}

.icon.icon-signup {
  background-image: url("/assets/admin/img/icons/signup.svg");
  width: 20px;
  height: 18px;
}

.icon.icon-surveys {
  background-image: url("/assets/admin/img/icons/surveys.svg");
  width: 19px;
  height: 15px;
}

.icon.icon-caretright {
  background-image: url("/assets/admin/img/icons/caretright.svg");
  width: 6px;
  height: 10px;
}

@media (max-width: 991.98px) {
  .icon.icon-caretright {
    margin: 0 5px;
  }
}

.icon.icon-ascdesc {
  background-image: url("/assets/admin/img/icons/ascdesc.svg");
  width: 8px;
  height: 19px;
}

.icon.icon-asc {
  background-image: url("/assets/admin/img/icons/asc.svg");
  width: 7px;
  height: 4px;
}

.icon.icon-desc {
  background-image: url("/assets/admin/img/icons/desc.svg");
  width: 7px;
  height: 4px;
}

.icon.icon-arrow-left-red {
  background-image: url("/assets/admin/img/icons/arrowleftred.svg");
  width: 14px;
  height: 10px;
}

.icon.icon-download {
  background-image: url("/assets/admin/img/icons/download.svg");
  width: 13px;
  height: 16px;
}

.icon.icon-search {
  background-image: url("/assets/admin/img/icons/search.svg");
  width: 15px;
  height: 16px;
}

.icon.icon-share {
  background-image: url("/assets/admin/img/icons/share.svg");
  width: 17px;
  height: 11px;
}

.icon.icon-circle {
  background-image: url("/assets/admin/img/icons/circle.svg");
  width: 18px;
  height: 18px;
}

.icon.icon-circle.is-checked {
  background-image: url("/assets/admin/img/icons/circle-checked.svg");
}

.icon.icon-circle.is-checked-green {
  background-image: url("/assets/admin/img/icons/circle-checked-green.svg");
}

.icon.icon-circle.is-checked-blue {
  background-image: url("/assets/admin/img/icons/circle-checked-blue.svg");
}

.icon.icon-circle.is-checked-gray {
  background-image: url("/assets/admin/img/icons/circle-checked-gray.svg");
}

.icon.icon-note {
  background-image: url("/assets/admin/img/icons/note.svg");
  width: 14px;
  height: 18px;
}

@media (max-width: 991.98px) {
  .icon.icon-note {
    margin: 0 5px;
  }
}

@media (min-width: 992px) {
  .icon.icon-note {
    opacity: 0;
  }
}

.icon.icon-note.is-active {
  opacity: 1;
}

.icon.icon-close-modal {
  background-image: url("/assets/admin/img/icons/close-modal.svg");
  width: 16px;
  height: 16px;
}

.icon.icon-close-black {
  background-image: url("/assets/admin/img/icons/close-black.svg");
  width: 16px;
  height: 16px;
}

.icon.icon-trash {
  background-image: url("/assets/admin/img/icons/trash.svg");
  width: 13px;
  height: 16px;
}

.icon.icon-check {
  background-image: url("/assets/admin/img/icons/check.svg");
  width: 14px;
  height: 11px;
}

.icon.icon-timer {
  background-image: url("/assets/admin/img/icons/timer.svg");
  width: 15px;
  height: 16px;
}

.icon.icon-dont {
  background-image: url("/assets/admin/img/icons/dont.svg");
  width: 15px;
  height: 15px;
}

.icon.icon-plus {
  background-image: url("/assets/admin/img/icons/plus.svg");
  width: 15px;
  height: 15px;
}

.icon.icon-profile {
  background-image: url("/assets/admin/img/icons/profile.svg");
  width: 45px;
  height: 42px;
}

.icon.icon-caretleft-large {
  background-image: url("/assets/admin/img/icons/caretleft-large.svg");
  width: 12px;
  height: 20px;
}

.icon.icon-caretright-large {
  background-image: url("/assets/admin/img/icons/caretright-large.svg");
  width: 12px;
  height: 20px;
}

.icon.icon-title {
  background-image: url("/assets/admin/img/icons/title.svg");
  width: 40px;
  height: 30px;
}

.icon.icon-text {
  background-image: url("/assets/admin/img/icons/text.svg");
  width: 37px;
  height: 30px;
}

.icon.icon-image {
  background-image: url("/assets/admin/img/icons/image.svg");
  width: 45px;
  height: 30px;
}

.icon.icon-button {
  background-image: url("/assets/admin/img/icons/button.svg");
  width: 60px;
  height: 30px;
}

.icon.icon-divider {
  background-image: url("/assets/admin/img/icons/divider.svg");
  width: 60px;
  height: 30px;
}

.icon.icon-spacer {
  background-image: url("/assets/admin/img/icons/spacer.svg");
  width: 57px;
  height: 30px;
}

.icon.icon-date-picker {
  background-image: url("/assets/admin/img/icons/date-picker.svg");
  width: 45px;
  height: 32px;
}

.icon.icon-field {
  background-image: url("/assets/admin/img/icons/field.svg");
  width: 60px;
  height: 30px;
}

.icon.icon-dropdown {
  background-image: url("/assets/admin/img/icons/dropdown.svg");
  width: 65px;
  height: 30px;
}

.icon.icon-checkboxes {
  background-image: url("/assets/admin/img/icons/checkboxes.svg");
  width: 30px;
  height: 30px;
}

.icon.icon-radio-buttons {
  background-image: url("/assets/admin/img/icons/radio-buttons.svg");
  width: 30px;
  height: 30px;
}

.icon.icon-hidden-field {
  background-image: url("/assets/admin/img/icons/hidden-field.svg");
  width: 36px;
  height: 30px;
}

.icon.icon-signature {
  background-image: url("/assets/admin/img/icons/signature.svg");
  width: 60px;
  height: 31px;
}

.icon.icon-likert-scale {
  background-image: url("/assets/admin/img/icons/likert-scale.svg");
  width: 63px;
  height: 30px;
}

.icon.icon-survey {
  background-image: url("/assets/admin/img/icons/survey.svg");
  width: 60px;
  height: 30px;
}

.icon.icon-code {
  background-image: url("/assets/admin/img/icons/icon-code.svg");
  width: 54px;
  height: 27px;
}

.icon.icon-external-link {
  background-image: url("/assets/admin/img/icons/external-link-alt.svg");
  width: 14px;
  height: 12px;
}

.icon.icon-external-link-gray {
  background-image: url("/assets/admin/img/icons/external-link-alt-gray.svg");
  width: 14px;
  height: 12px;
}

@media (max-width: 991.98px) {
  .icon.icon-external-link-gray {
    margin: 0 5px;
  }
}

.icon.icon-external-link-gray.is-larger {
  width: 22px;
  height: 18px;
}

.icon.icon-sortable {
  background-image: url("/assets/admin/img/icons/sortable.svg");
  width: 12px;
  height: 12px;
}

.icon.icon-question-correct {
  background-image: url("/assets/admin/img/icons/question-correct.svg");
  width: 12px;
  height: 12px;
}

.icon.icon-question-remove {
  background-image: url("/assets/admin/img/icons/question-remove.svg");
  width: 12px;
  height: 12px;
}

.icon.icon-swap {
  background-image: url("/assets/admin/img/icons/icon-swap.svg");
  width: 20px;
  height: 17px;
}

.icon.icon-user {
  background-image: url("/assets/admin/img/icons/icon-profile.svg");
  width: 14px;
  height: 18px;
}

.menu-wrapper {
  -webkit-perspective: 2000px;
          perspective: 2000px;
  z-index: 99;
  position: relative;
}

.menu-wrapper.is-header {
  z-index: 100;
}

.menu-wrapper .event-menu-trigger {
  line-height: 1em;
}

.menu-wrapper .event-menu-trigger:hover {
  cursor: pointer;
}

.menu-wrapper .event-menu-trigger i {
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.menu-wrapper .event-menu-trigger.is-triggered i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu-wrapper .menu-trigger {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important;
}

.menu-wrapper .menu-trigger i {
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.menu-wrapper .menu-trigger.is-triggered i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu-wrapper .filter-trigger {
  display: block;
  margin: 0 2rem 0 0;
  color: #151617;
  text-decoration: none;
}

.menu-wrapper .filter-trigger:hover {
  color: #151617;
}

.menu-wrapper .filter-trigger i {
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.menu-wrapper .filter-trigger.is-triggered i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu-wrapper .menu {
  background: #fff;
  -webkit-transform: rotateX(-15deg);
          transform: rotateX(-15deg);
  -webkit-transform-origin: 50% -50px;
          transform-origin: 50% -50px;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 40px;
  border: 1px solid #E1E1E1;
  border-radius: 0.25rem;
  z-index: 999;
  width: 384px;
  padding: 0 2rem;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  pointer-events: none;
}

.menu-wrapper .menu.height-of-window {
  max-height: 70vh;
  overflow: scroll;
}

.menu-wrapper .menu.is-active {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  opacity: 1;
  pointer-events: all;
}

.menu-wrapper .menu.menu-events {
  top: 60px;
  left: 0;
  right: auto;
}

.menu-wrapper .menu.menu-events ul li a {
  padding: 1.5rem 0;
  text-align: left;
}

.menu-wrapper .menu.menu-filter {
  padding: 0 1rem;
  width: 280px;
}

.menu-wrapper .menu.menu-filter ul li a {
  padding: 1rem 0;
  font-size: 15px;
}

.menu-wrapper .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-wrapper .menu ul li {
  display: block;
}

.menu-wrapper .menu ul li a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15px;
  padding: 1.3rem 0;
  color: #151617;
  text-decoration: none !important;
  border-bottom: 1px solid #E1E1E1;
  background: url("/assets/img/icons/caretright.svg") no-repeat 94% center;
  background-size: 6px 10px;
}

.menu-wrapper .menu ul li a.has-subtitle {
  padding: 3rem 0 2rem;
}

.menu-wrapper .menu ul li a > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #B5121B;
  letter-spacing: 1px;
}

.menu-wrapper .menu ul li a.is-in-venue {
  border-right: 10px solid #B5121B;
}

.menu-wrapper .menu ul li:last-child a {
  border-bottom: none;
}

.page-header .menu-wrapper, .header-main .menu-wrapper {
  z-index: 998;
}

.page-header .menu-wrapper.is-header, .header-main .menu-wrapper.is-header {
  z-index: 999;
}

.date-menu-wrapper .menu.menu-filter {
  width: 666px;
}

.date-menu-wrapper .menu .vdp-datepicker {
  float: left;
  margin-top: 24px;
  margin-right: 8px;
  margin-left: 8px;
}

.date-menu-wrapper .menu .all-dates {
  clear: both;
}

.modal {
  position: fixed;
  z-index: 999999;
  background: #FFF;
  border: 1px solid #E1E1E1;
  border-radius: 0.25rem;
}

.modal.fade {
  background: none;
  border: none;
}

.modal.half-fade {
  background: rgba(0, 0, 0, 0.5);
}

.modal.modal-note {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem 2rem 1.75rem;
}

.modal.modal-note .notes {
  font-size: 15px;
  border: 1px solid #E1E1E1;
  line-height: 20px;
  margin: 0.5rem 0;
  padding: 0.5rem 0.75rem;
  width: 100%;
}

.modal.modal-note .notes:focus {
  outline: 0;
  outline: none;
}

.modal.modal-actions {
  display: block;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  min-width: 272px;
  -webkit-box-shadow: 0 10px 14px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 14px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.modal.modal-actions .actions {
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal.modal-actions .actions .action {
  display: block;
}

.modal.modal-actions .actions .action a {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 15px;
  color: #151617;
}

.modal.modal-actions .actions .action a i {
  margin-right: 0.5rem;
}

.modal.modal-actions .actions .divider {
  height: 1px;
  width: 100%;
  background: #E1E1E1;
  margin: 1rem 0;
}

.modal .modal-dialog {
  background: #FFF;
  max-width: 1024px;
  padding: 1rem 2rem;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 50px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.modal .modal-dialog .close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  -webkit-appearance: none;
  padding: 0.25rem;
  margin: 0;
  z-index: 99;
}

.modal .modal-dialog .close:hover {
  cursor: pointer;
}

.modal .modal-dialog .close:focus {
  outline: none;
}

.modal .modal-dialog .row-modal {
  border-bottom: 1px solid #E1E1E1;
  padding: 1rem 0 0;
}

.modal .modal-dialog .row-modal:last-child {
  border-bottom: none;
}

.modal .modal-dialog .row-modal .heading-primary {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 1rem;
}

.modal .modal-dialog .row-modal .heading-secondary {
  font-size: 12px;
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

.modal .modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
}

.modal .modal-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.modal .modal-title strong {
  font-weight: 700;
}

.modal .modal-buttons .link {
  font-size: 13px;
  color: #505152;
  text-decoration: none !important;
}

.modal .modal-buttons .link i {
  margin-right: 0.5rem;
}

.modal-backdrop {
  display: none;
}

/*Modal - Content Block*/
.modal-content-block {
  background: rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  /*Element List*/
  /*Element Image*/
  /*Element Title*/
}

.modal-content-block .modal-dialog {
  -webkit-box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.modal-content-block .modal-row {
  border-bottom: solid 1px #E1E1E1;
  padding-bottom: 25px;
  padding-top: 25px;
}

.modal-content-block .modal-row:last-child {
  border-bottom: none;
}

.modal-content-block .close {
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 14px;
  width: 14px;
}

.modal-content-block .close:before, .modal-content-block .close:after {
  background-color: #151617;
  content: '';
  height: 14px;
  left: 7px;
  position: absolute;
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
  width: 1px;
}

.modal-content-block .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-content-block .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-content-block .close:hover:before, .modal-content-block .close:hover:after {
  background-color: #B5121B;
}

.modal-content-block .element-list {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.modal-content-block .element-list li {
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 768px) {
  .modal-content-block .element-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1500px) {
  .modal-content-block .element-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
}

.modal-content-block .element-list a {
  display: block;
  height: 100%;
  text-decoration: none;
  width: 100%;
}

.modal-content-block .element-list a:hover .element-title {
  color: #B5121B;
}

.modal-content-block .element-img {
  display: block;
  margin: 0 auto 15px;
}

.modal-content-block .element-title {
  color: #151617;
  display: block;
  font-size: 15px;
  -webkit-transition: .3s;
  transition: .3s;
  font-family: 'OpenSans-Semibold';
}

.add-block {
  text-align: center;
  margin: 0 0 2rem;
}

.add-block:hover {
  cursor: pointer;
}

.add-block .icon {
  display: block;
  margin: 0 auto 0.5rem;
}

.add-block .title {
  font-size: 15px;
  font-weight: 600;
}

.checkins-action-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 22, 23, 0.5);
  z-index: 10000;
  overflow: scroll;
}

.checkins-action-menu .checkins-action-menu-content {
  max-width: 510px;
  margin: 100px auto;
  background: white;
  position: relative;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-close-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-close-button img {
  width: 20px;
  height: auto;
  margin: 14px auto 0;
  display: block;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-header {
  padding: 30px 44px;
  font-family: 'OpenSans-Semibold';
  font-size: 20px;
  line-height: 27px;
  letter-spacing: .14px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-tab-buttons {
  border-bottom: 1px solid #E1E1E5;
  padding: 0 40px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-tab-buttons span {
  display: inline-block;
  padding: 0 20px 15px;
  border-bottom: 5px solid transparent;
  font-family: 'OpenSans-Semibold';
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .1px;
  color: #808080;
  cursor: pointer;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-tab-buttons span.active {
  color: #151617;
  border-bottom: 5px solid #B5121B;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls .action-menu-controls-profile {
  padding: 34px 40px 50px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls .form-footer {
  margin-top: 30px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls .form-footer .btn-secondary {
  background: #E1E1E1;
  color: #151617;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-footer {
  border-top: 1px solid #E1E1E5;
  padding: 17px 40px 18px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-footer span {
  cursor: pointer;
  margin-right: 20px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-footer span i {
  margin-right: 7px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-footer a {
  text-decoration: none;
  color: #151617;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-footer a i {
  margin-right: 7px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys a {
  cursor: pointer;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys > div {
  background: #FFF;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys > div:nth-child(odd) {
  background: #f7f8fa;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys .survey-list-item {
  padding: 16px 40px 18px;
  display: block;
  color: #151617;
  text-decoration: none;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys .survey-list-item i {
  float: right;
  position: relative;
  top: 4px;
}

.checkins-action-menu .checkins-action-menu-content .action-menu-controls-surveys .survey-list-item i.icon-external-link-gray {
  top: 3px;
}

.update-success-message {
  background: #7ED321;
  color: #FFF;
  padding: 6px 8px;
  text-align: center;
}

.update-success-message.shows-by-opacity {
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.update-success-message.shows-by-opacity.active {
  opacity: 1;
}

.fade-enter-active, .fade-leave-active {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

/*Headings*/
.heading-secondary {
  display: block;
  font-size: 20px;
  letter-spacing: .1px;
  line-height: 1.25;
  font-family: 'OpenSans-Semibold';
}

/*Admin Block*/
.admin-block {
  /*Admin Body*/
  /*Admin Row*/
  /*Item Row*/
  /*Upload Column*/
  /*Form Group*/
  /*Form Elements*/
  /*Placeholders*/
  /*Upload Thumb*/
}

.admin-block .admin-tabs {
  border-bottom: 1px solid #E1E1E5;
  padding: 30px 40px 0;
  text-align: center;
}

.admin-block .admin-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-block .admin-tabs ul li {
  display: inline-block;
}

.admin-block .admin-tabs ul li span, .admin-block .admin-tabs ul li a {
  display: inline-block;
  padding: 0 20px 15px;
  border-bottom: 5px solid transparent;
  font-family: 'OpenSans-Semibold';
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .1px;
  color: #808080;
  cursor: pointer;
  text-decoration: none;
}

.admin-block .admin-tabs ul li.is-active span, .admin-block .admin-tabs ul li.is-active a {
  color: #151617;
  border-bottom: 5px solid #B5121B;
}

.admin-block .admin-body {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .admin-block .admin-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1500px) {
  .admin-block .admin-body {
    padding-left: 50px;
    padding-right: 5%;
  }
}

.admin-block .admin-body p {
  font-size: 13px;
}

.admin-block .admin-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1500px) {
  .admin-block .admin-body p.has-min {
    max-width: 45%;
  }
}

@media (min-width: 1500px) {
  .admin-block .admin-body.has-pad {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.admin-block .admin-body.col.col-preview {
  padding-left: 0;
  padding-right: 0;
}

.admin-block .admin-row {
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}

.admin-block .admin-row.admin-row-dropdown {
  padding-top: 30px;
  padding-bottom: 20px;
}

.admin-block .admin-row.admin-row-dropdown .form-group {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 50px;
}

.admin-block .admin-row.admin-row-dropdown .form-group select {
  width: 100%;
}

.admin-block .admin-row:after {
  content: '';
  background: #E1E1E1;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.admin-block .admin-row:last-child:after {
  display: none;
}

.admin-block .admin-row.sm-pad {
  padding-bottom: 40px;
  padding-top: 40px;
}

.admin-block .admin-row.no-pad-top {
  padding-top: 0;
}

.admin-block .item-row {
  padding-top: 10px;
}

.admin-block .item-row .form-control {
  width: 100%;
}

.admin-block .upload-col {
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .admin-block .upload-col {
    padding-bottom: 0;
  }
}

.admin-block .upload-col:last-child {
  padding-bottom: 0;
}

.admin-block .form-group {
  margin-bottom: 5px;
  padding: 7px 0;
  /*Sub Group*/
  /*Sortable*/
  /*Buttons*/
}

.admin-block .form-group:last-child {
  margin-bottom: 0;
}

.admin-block .form-group.is-sub {
  width: 100%;
}

@media (min-width: 576px) {
  .admin-block .form-group.is-sub {
    display: table;
    padding-left: 40px;
  }
}

.admin-block .form-group.is-sub .form-label {
  display: table-cell;
  padding-right: 10px;
}

@media (min-width: 576px) {
  .admin-block .form-group.is-sub .form-label {
    width: 80px;
  }
}

.admin-block .form-group.is-sub .form-control {
  display: table-cell;
  width: 100%;
}

.admin-block .form-group .form-control {
  background: #F2F3F5;
  border-color: #F2F3F5;
  height: 40px;
  padding: 5px 15px;
}

.admin-block .form-group.is-sortable {
  position: relative;
}

.admin-block .form-group.is-sortable:before {
  background: url("/assets/img/icons/icon-sort.svg") center center/contain no-repeat;
  content: '';
  display: inline-block;
  height: 12px;
  left: -20px;
  position: absolute;
  top: 9px;
  width: 12px;
}

.admin-block .form-group .btn.is-active {
  position: relative;
}

.admin-block .form-group .btn.is-active:before {
  border: solid 2px #B5121B;
  bottom: -6px;
  content: '';
  display: block;
  left: -6px;
  position: absolute;
  right: -6px;
  top: -6px;
}

.admin-block .form-group .btn.is-active:after {
  background: url("/assets/img/icons/circle-checked-red.svg") center center/contain no-repeat;
  content: '';
  display: block;
  height: 33px;
  position: absolute;
  right: -10px;
  top: -17px;
  width: 33px;
}

@media (min-width: 375px) {
  .admin-block .form-group .btn.is-active:after {
    right: -17px;
    top: -17px;
  }
}

.admin-block .contact-info-block .form-group .btn.is-active:after {
  background: url("/assets/img/icons/circle-checked-grey.svg") center center/contain no-repeat;
}

.admin-block .contact-info-block .form-group .btn.is-required:after {
  background: url("/assets/img/icons/circle-checked-red.svg") center center/contain no-repeat;
}

.admin-block .permissions .input-group .form-control {
  padding: 0;
}

.admin-block .form-label {
  color: #808080;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'OpenSans-Semibold';
}

.admin-block ::-webkit-input-placeholder {
  color: #151617;
  font-size: 15px;
}

.admin-block ::-ms-input-placeholder {
  color: #151617;
  font-size: 15px;
}

.admin-block ::placeholder {
  color: #151617;
  font-size: 15px;
}

.admin-block :-ms-input-placeholder {
  color: #151617;
  font-size: 15px;
}

.admin-block ::-ms-input-placeholder {
  color: #151617;
  font-size: 15px;
}

.admin-block .upload-thumb img {
  height: auto;
  margin-bottom: 15px;
  max-width: 100%;
  background: #E1E1E1;
  padding: 1rem;
}

.admin-block .upload-thumb .file-name {
  color: #808080;
  display: block;
  font-size: 13px;
  margin-bottom: 20px;
}

.admin-leadlist .file-name {
  display: inline-block;
  color: #808080;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 1rem;
  text-transform: uppercase;
  font-family: 'OpenSans-Semibold';
}

.form-group.is-disabled {
  position: relative;
}

.form-group.is-disabled:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
}

/*Sidebar Menu*/
.sidebar-menu .sidebar-header {
  background: #F2F3F5;
  border-bottom: solid 1px #E1E1E1;
  display: block;
  margin: 0 -15px;
}

@media (min-width: 1200px) {
  .sidebar-menu .sidebar-header {
    display: none;
  }
}

.sidebar-menu .btn-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 13px 30px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  font-family: 'OpenSans-Bold';
}

.sidebar-menu .btn-toggle:focus {
  outline: none;
}

.sidebar-menu .btn-toggle:before {
  content: 'Hide';
  display: inline-block;
  margin-right: 5px;
}

.sidebar-menu .btn-toggle:after {
  background: url("/assets/img/icons/caretright.svg") center center/contain no-repeat;
  content: '';
  display: inline-block;
  height: 11px;
  margin: -5px 0 0 6px;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .3s;
  transition: .3s;
  vertical-align: middle;
  width: 8px;
}

.sidebar-menu .btn-toggle.collapsed:before {
  content: 'Show';
}

.sidebar-menu .btn-toggle.collapsed:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (min-width: 1200px) {
  .sidebar-menu .collapse {
    display: block;
    height: 100%;
  }
}

/*Nav Block*/
@media (min-width: 1200px) {
  .nav-block {
    padding-top: 30px;
  }
}

/*Admin Nav*/
.admin-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-nav li {
  border-bottom: solid 1px #E1E1E1;
  position: relative;
}

.admin-nav li .session-date-details {
  font-size: 12px;
  color: #808080;
  margin-right: 20px;
}

.admin-nav li.is-danger a {
  color: #B5121B;
}

.admin-nav li.is-active {
  background-color: #505152;
}

.admin-nav li.is-active a {
  color: #FFF;
}

.admin-nav li.is-active a:hover {
  background: #808080;
}

.admin-nav li.is-active a:after {
  width: 11px;
  background-image: url("/assets/img/icons/caretright-white.svg");
}

.admin-nav li.is-loading a:after {
  width: 11px;
  background-image: url("/assets/admin/img/link-loading.gif");
}

.admin-nav li.is-loading.is-active a:after {
  background-image: url("/assets/admin/img/link-loading-white.gif");
}

.admin-nav li.is-sortable a:before {
  background: url("/assets/img/icons/icon-sort.svg") center center/contain no-repeat;
  content: '';
  display: inline-block;
  height: 12px;
  left: 15px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  width: 12px;
}

.admin-nav li.is-spacer a {
  color: #808080;
}

.admin-nav li.is-reversed a:after {
  left: 14px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.admin-nav a {
  color: #151617;
  display: block;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  text-transform: capitalize;
  font-family: 'OpenSans-Semibold';
}

.admin-nav a.all-dates {
  border-right: 10px solid #7ED321;
}

.admin-nav a.select-date {
  border-right: 10px solid #4A90E2;
}

.admin-nav a:hover {
  background-color: #F2F3F5;
}

.admin-nav a:after {
  background: url("/assets/img/icons/caretright.svg") center center/contain no-repeat;
  content: '';
  display: inline-block;
  height: 11px;
  margin: -5px 0 0 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  vertical-align: middle;
  width: 8px;
}

/*Sidebar Column*/
.sidebar-col {
  /*Nav Title*/
  /*Primary Nav*/
  /*Secondary Nav*/
  /*Nav Header*/
}

@media (min-width: 1200px) {
  .sidebar-col {
    border-right: solid 1px #E1E1E1;
  }
}

.sidebar-col .nav-title {
  background: transparent;
  border: none;
  border-bottom: solid 1px #E1E1E1;
  color: #505152;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.sidebar-col .nav-title.is-xs {
  border-bottom: solid 1px #E1E1E1;
  cursor: pointer;
  display: block;
  padding: 13px 15px;
  position: relative;
}

@media (min-width: 1200px) {
  .sidebar-col .nav-title.is-xs {
    display: none;
  }
}

.sidebar-col .nav-title.is-xs:focus {
  outline: none;
}

.sidebar-col .nav-title.is-xs:after {
  background: url("/assets/img/icons/caretright.svg") center center/contain no-repeat;
  content: '';
  display: inline-block;
  height: 11px;
  margin: -5px 0 0 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .3s;
  transition: .3s;
  vertical-align: middle;
  width: 8px;
}

.sidebar-col .nav-title.is-xs.collapsed:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.sidebar-col .nav-title.is-lg {
  display: none;
}

@media (min-width: 1200px) {
  .sidebar-col .nav-title.is-lg {
    display: block;
  }
}

.sidebar-col.is-primary .nav-title.is-lg {
  padding: 13px 30px 15px 40px;
}

.sidebar-col.is-primary .admin-nav a {
  padding: 13px 30px 15px 15px;
}

@media (min-width: 1200px) {
  .sidebar-col.is-primary .admin-nav a {
    padding: 13px 30px 15px 40px;
  }
}

.sidebar-col.is-primary .admin-nav.is-sortable a {
  padding: 13px 30px 15px 40px;
  background-image: url("/assets/admin/img/icons/sortable.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 40px 50%;
}

@media (min-width: 1200px) {
  .sidebar-col.is-primary .admin-nav.is-sortable a {
    padding: 13px 30px 15px 60px;
  }
}

.sidebar-col.is-secondary .nav-title {
  position: relative;
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .nav-title {
    border: none;
  }
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .nav-title:after {
    background: #E1E1E1;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 40px;
    position: absolute;
    right: 30px;
  }
}

.sidebar-col.is-secondary .nav-title.is-lg {
  padding: 13px 30px 15px 35px;
}

.sidebar-col.is-secondary .admin-nav li {
  border: none;
  position: relative;
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .admin-nav li:after {
    background: #E1E1E1;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 40px;
    position: absolute;
    right: 30px;
  }
}

.sidebar-col.is-secondary .admin-nav li.is-active:after {
  display: none;
}

.sidebar-col.is-secondary .admin-nav li.is-sortable a {
  padding: 13px 30px 15px 35px;
}

.sidebar-col.is-secondary .admin-nav a {
  border-bottom: solid 1px #E1E1E1;
  padding: 13px 30px 15px 15px;
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .admin-nav a {
    border-bottom: none;
    padding: 13px 30px 15px 35px;
  }
}

.sidebar-col.is-secondary .admin-nav a:after {
  right: 20px;
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .admin-nav a:after {
    right: 30px;
  }
}

.sidebar-col.is-secondary .admin-nav.is-sortable a {
  padding: 13px 30px 15px 40px;
  background-image: url("/assets/admin/img/icons/sortable.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 40px 50%;
}

@media (min-width: 1200px) {
  .sidebar-col.is-secondary .admin-nav.is-sortable a {
    padding: 13px 30px 15px 60px;
  }
}

.sidebar-col .nav-header {
  position: relative;
}

.sidebar-col .nav-header .btn {
  position: absolute;
  right: 45px;
  top: 5px;
  z-index: 9;
}

@media (min-width: 1200px) {
  .sidebar-col .nav-header .btn {
    right: 20px;
  }
}

.sidebar-col .nav-header-key {
  padding: 5px 40px;
  border-bottom: 1px solid #E1E1E1;
}

.sidebar-col .nav-header-key::after {
  display: block;
  clear: both;
  content: "";
}

.sidebar-col .nav-header-key .key-item {
  font-size: 13px;
  color: #808080;
  width: 50%;
  float: left;
  text-align: center;
}

.sidebar-col .nav-header-key .key-item span {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 3px;
}

.sidebar-col .nav-header-key .key-item.all-dates-key-item span {
  background: #7ED321;
}

.sidebar-col .nav-header-key .key-item.specific-date-key-item span {
  background: #4A90E2;
}

.sidebar-col .session-notes {
  font-size: 13px;
  color: #808080;
}

.buttons-bottom {
  border-top: 1px solid #E1E1E1;
  padding: 2rem 0 0;
  margin: 2rem 0 0;
}

.waves-reporting {
  border-bottom: 1px solid #E1E1E5;
  position: relative;
}

.waves-reporting .waves-reporting-disabled {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding-top: 100px;
  font-size: 20px;
}

.waves-reporting .refresh-reporting-button {
  margin-right: 10px;
}

.waves-reporting .refresh-reporting-button img {
  position: relative;
  margin-right: 4px;
  top: -2px;
}

.waves-reporting .refresh-reporting-button.is-loading img {
  -webkit-animation: rotating 1s linear infinite;
          animation: rotating 1s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.section-heading .section-heading-inner {
  padding-top: 40px;
  padding-bottom: 25px;
}

.section-heading .section-heading-inner::after {
  display: block;
  clear: both;
  content: "";
}

.section-heading .section-heading-inner .section-heading-label {
  float: left;
  max-width: 30%;
  font-family: 'OpenSans-Semibold';
  font-size: 20px;
  line-height: 27px;
  letter-spacing: .14px;
}

.section-heading .section-heading-inner .controls {
  float: right;
}

.section-heading .section-heading-inner .controls .search-form {
  width: 350px;
  float: left;
  margin-right: 20px;
  position: relative;
}

@media (max-width: 991px) {
  .section-heading .section-heading-inner .controls .search-form {
    width: 290px;
  }
}

.section-heading .section-heading-inner .controls .search-form form {
  display: block;
}

.section-heading .section-heading-inner .controls .search-form form::after {
  display: block;
  clear: both;
  content: "";
}

.section-heading .section-heading-inner .controls .search-form input[type=text] {
  display: block !important;
  width: 100%;
}

.section-heading .section-heading-inner .controls .search-form input[type=checkbox] {
  margin-left: 2px;
}

.section-heading .section-heading-inner .controls .search-form .search-expand-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 7px 15px 0;
  opacity: 1;
}

.section-heading .section-heading-inner .controls .event-wide-venue-search {
  display: block;
  float: right;
  clear: both;
  margin-top: 15px;
}

.section-heading .section-heading-inner .controls .btn {
  float: left;
}

.section-heading .section-heading-inner .controls .loading-indicator {
  height: 20px;
  width: 20px;
  margin-right: 20px;
  float: left;
  position: relative;
  top: 10px;
  opacity: 0;
}

.section-heading .section-heading-inner .controls .loading-indicator img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.section-heading .section-heading-inner .controls .loading-indicator.active {
  opacity: 1;
}

.section-heading .section-heading-inner .controls .loading-indicator.active img {
  -webkit-animation: rotating 1s linear infinite;
          animation: rotating 1s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.email-editor .email-block-container {
  -webkit-box-shadow: 0 3px 15px -7px #000;
          box-shadow: 0 3px 15px -7px #000;
  border-radius: 10px;
  margin-bottom: 30px;
}

.email-editor .email-block-container .block-header {
  border-bottom: 1px solid lightgray;
  padding: 20px;
}

.email-editor .email-block-container .block-header .btn-secondary-outline {
  margin-right: 10px;
}

.email-editor .email-block-container .block-content {
  padding: 20px;
}

.email-editor .email-block-container .block-content label {
  font-weight: bold;
}
