/*! UIkit 2.21.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */

/*
 * Style
 */
.modal-dialog-pro-link {
  color: #0077dd;
  text-decoration: none;
  cursor: pointer;
}

.modal-dialog-pro-link:hover {
  color: #005599;
  text-decoration: underline;
}
/*
 * Preserve original image dimensions
 */
.modal-dialog-pro-img-preserve,
.modal-dialog-pro-img-preserve img {
  max-width: none;
}
/*
 * Sizes
 */
h1,
.modal-dialog-pro-h1 {
  font-size: 36px;
  line-height: 42px;
}
h2,
.modal-dialog-pro-h2 {
  font-size: 24px;
  line-height: 30px;
}
h3,
.modal-dialog-pro-h3 {
  font-size: 18px;
  line-height: 24px;
}
h4,
.modal-dialog-pro-h4 {
  font-size: 16px;
  line-height: 22px;
}
h5,
.modal-dialog-pro-h5 {
  font-size: 14px;
  line-height: 20px;
}
h6,
.modal-dialog-pro-h6 {
  font-size: 12px;
  line-height: 18px;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.modal-dialog-pro-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.modal-dialog-pro-grid:before,
.modal-dialog-pro-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.modal-dialog-pro-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.modal-dialog-pro-grid {
  margin-left: -25px;
}
.modal-dialog-pro-grid > * {
  padding-left: 25px;
}
/* Vertical */
.modal-dialog-pro-grid + .modal-dialog-pro-grid,
.modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .modal-dialog-pro-grid {
    margin-left: -35px;
  }
  .modal-dialog-pro-grid > * {
    padding-left: 35px;
  }
  /* Vertical */
  .modal-dialog-pro-grid + .modal-dialog-pro-grid,
  .modal-dialog-pro-grid-margin,
  .modal-dialog-pro-grid > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
    margin-top: 35px;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-collapse {
  margin-left: 0;
}
.modal-dialog-pro-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.modal-dialog-pro-grid-collapse + .modal-dialog-pro-grid-collapse,
.modal-dialog-pro-grid-collapse > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-collapse > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-small {
  margin-left: -10px;
}
.modal-dialog-pro-grid-small > * {
  padding-left: 10px;
}
/* Vertical */
.modal-dialog-pro-grid-small + .modal-dialog-pro-grid-small,
.modal-dialog-pro-grid-small > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-small > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 10px;
}
/*
 * Medium gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-medium {
  margin-left: -25px;
}
.modal-dialog-pro-grid-medium > * {
  padding-left: 25px;
}
/* Vertical */
.modal-dialog-pro-grid-medium + .modal-dialog-pro-grid-medium,
.modal-dialog-pro-grid-medium > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-medium > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 25px;
}
/* Modifier: `modal-dialog-pro-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `modal-dialog-pro-push-*`, `modal-dialog-pro-pull-*` and not if the columns float into the next row.
 */
.modal-dialog-pro-grid-divider:not(:empty) {
  margin-left: -25px;
  margin-right: -25px;
}
.modal-dialog-pro-grid-divider > * {
  padding-left: 25px;
  padding-right: 25px;
}
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-1-']:not(.modal-dialog-pro-width-1-1):nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-2-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-3-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-4-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-5-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-6-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-7-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-8-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-9-']:nth-child(n+2) {
  border-left: 1px solid #dddddd;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-medium-']:not(.modal-dialog-pro-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-large-']:not(.modal-dialog-pro-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .modal-dialog-pro-grid-divider:not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .modal-dialog-pro-grid-divider > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .modal-dialog-pro-grid-divider:empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/*
 * Vertical divider
 */
.modal-dialog-pro-grid-divider:empty {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #dddddd;
}
/* Match panels in grids
 ========================================================================== */
.modal-dialog-pro-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/*
 * 1. Behave like a block element
 */
.modal-dialog-pro-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='modal-dialog-pro-grid-width'] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.modal-dialog-pro-grid-width-1-2 > * {
  width: 50%;
}
.modal-dialog-pro-grid-width-1-3 > * {
  width: 33.333%;
}
.modal-dialog-pro-grid-width-1-4 > * {
  width: 25%;
}
.modal-dialog-pro-grid-width-1-5 > * {
  width: 20%;
}
.modal-dialog-pro-grid-width-1-6 > * {
  width: 16.666%;
}
.modal-dialog-pro-grid-width-1-10 > * {
  width: 10%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .modal-dialog-pro-grid-width-small-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-small-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-small-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-grid-width-large-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-large-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-large-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `modal-dialog-pro-width-*`
 ========================================================================== */
[class*='modal-dialog-pro-width'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.modal-dialog-pro-width-1-1 {
  width: 100%;
}
/* Halves */
.modal-dialog-pro-width-1-2,
.modal-dialog-pro-width-2-4,
.modal-dialog-pro-width-3-6,
.modal-dialog-pro-width-5-10 {
  width: 50%;
}
/* Thirds */
.modal-dialog-pro-width-1-3,
.modal-dialog-pro-width-2-6 {
  width: 33.333%;
}
.modal-dialog-pro-width-2-3,
.modal-dialog-pro-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.modal-dialog-pro-width-1-4 {
  width: 25%;
}
.modal-dialog-pro-width-3-4 {
  width: 75%;
}
/* Fifths */
.modal-dialog-pro-width-1-5,
.modal-dialog-pro-width-2-10 {
  width: 20%;
}
.modal-dialog-pro-width-2-5,
.modal-dialog-pro-width-4-10 {
  width: 40%;
}
.modal-dialog-pro-width-3-5,
.modal-dialog-pro-width-6-10 {
  width: 60%;
}
.modal-dialog-pro-width-4-5,
.modal-dialog-pro-width-8-10 {
  width: 80%;
}
/* Sixths */
.modal-dialog-pro-width-1-6 {
  width: 16.666%;
}
.modal-dialog-pro-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.modal-dialog-pro-width-1-10 {
  width: 10%;
}
.modal-dialog-pro-width-3-10 {
  width: 30%;
}
.modal-dialog-pro-width-7-10 {
  width: 70%;
}
.modal-dialog-pro-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .modal-dialog-pro-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-small-1-2,
  .modal-dialog-pro-width-small-2-4,
  .modal-dialog-pro-width-small-3-6,
  .modal-dialog-pro-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-small-1-3,
  .modal-dialog-pro-width-small-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-small-2-3,
  .modal-dialog-pro-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-small-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-small-1-5,
  .modal-dialog-pro-width-small-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-small-2-5,
  .modal-dialog-pro-width-small-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-small-3-5,
  .modal-dialog-pro-width-small-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-small-4-5,
  .modal-dialog-pro-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-small-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-small-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-small-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-small-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .modal-dialog-pro-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-medium-1-2,
  .modal-dialog-pro-width-medium-2-4,
  .modal-dialog-pro-width-medium-3-6,
  .modal-dialog-pro-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-medium-1-3,
  .modal-dialog-pro-width-medium-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-medium-2-3,
  .modal-dialog-pro-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-medium-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-medium-1-5,
  .modal-dialog-pro-width-medium-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-medium-2-5,
  .modal-dialog-pro-width-medium-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-medium-3-5,
  .modal-dialog-pro-width-medium-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-medium-4-5,
  .modal-dialog-pro-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-medium-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-medium-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-medium-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-medium-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .modal-dialog-pro-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-large-1-2,
  .modal-dialog-pro-width-large-2-4,
  .modal-dialog-pro-width-large-3-6,
  .modal-dialog-pro-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-large-1-3,
  .modal-dialog-pro-width-large-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-large-2-3,
  .modal-dialog-pro-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-large-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-large-1-5,
  .modal-dialog-pro-width-large-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-large-2-5,
  .modal-dialog-pro-width-large-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-large-3-5,
  .modal-dialog-pro-width-large-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-large-4-5,
  .modal-dialog-pro-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-large-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-large-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-large-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-large-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-large-9-10 {
    width: 90%;
  }
}
/* Sub-object: `modal-dialog-pro-push-*` and `modal-dialog-pro-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `modal-dialog-pro-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*='modal-dialog-pro-push-'],
  [class*='modal-dialog-pro-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .modal-dialog-pro-push-1-2,
  .modal-dialog-pro-push-2-4,
  .modal-dialog-pro-push-3-6,
  .modal-dialog-pro-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-push-1-3,
  .modal-dialog-pro-push-2-6 {
    left: 33.333%;
  }
  .modal-dialog-pro-push-2-3,
  .modal-dialog-pro-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-push-1-4 {
    left: 25%;
  }
  .modal-dialog-pro-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-push-1-5,
  .modal-dialog-pro-push-2-10 {
    left: 20%;
  }
  .modal-dialog-pro-push-2-5,
  .modal-dialog-pro-push-4-10 {
    left: 40%;
  }
  .modal-dialog-pro-push-3-5,
  .modal-dialog-pro-push-6-10 {
    left: 60%;
  }
  .modal-dialog-pro-push-4-5,
  .modal-dialog-pro-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-push-1-6 {
    left: 16.666%;
  }
  .modal-dialog-pro-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-push-1-10 {
    left: 10%;
  }
  .modal-dialog-pro-push-3-10 {
    left: 30%;
  }
  .modal-dialog-pro-push-7-10 {
    left: 70%;
  }
  .modal-dialog-pro-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .modal-dialog-pro-pull-1-2,
  .modal-dialog-pro-pull-2-4,
  .modal-dialog-pro-pull-3-6,
  .modal-dialog-pro-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .modal-dialog-pro-pull-1-3,
  .modal-dialog-pro-pull-2-6 {
    left: -33.333%;
  }
  .modal-dialog-pro-pull-2-3,
  .modal-dialog-pro-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-pull-1-4 {
    left: -25%;
  }
  .modal-dialog-pro-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .modal-dialog-pro-pull-1-5,
  .modal-dialog-pro-pull-2-10 {
    left: -20%;
  }
  .modal-dialog-pro-pull-2-5,
  .modal-dialog-pro-pull-4-10 {
    left: -40%;
  }
  .modal-dialog-pro-pull-3-5,
  .modal-dialog-pro-pull-6-10 {
    left: -60%;
  }
  .modal-dialog-pro-pull-4-5,
  .modal-dialog-pro-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .modal-dialog-pro-pull-1-6 {
    left: -16.666%;
  }
  .modal-dialog-pro-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-pull-1-10 {
    left: -10%;
  }
  .modal-dialog-pro-pull-3-10 {
    left: -30%;
  }
  .modal-dialog-pro-pull-7-10 {
    left: -70%;
  }
  .modal-dialog-pro-pull-9-10 {
    left: -90%;
  }
}
/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.modal-dialog-pro-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}
/*
 * Allow panels to be anchors
 */
.modal-dialog-pro-panel,
.modal-dialog-pro-panel:hover {
  text-decoration: none;
}
/*
 * Micro clearfix to make panels more robust
 */
.modal-dialog-pro-panel:before,
.modal-dialog-pro-panel:after {
  content: "";
  display: table;
}
.modal-dialog-pro-panel:after {
  clear: both;
}
/*
 * Remove margin from the last-child if not `modal-dialog-pro-widget-title`
 */
.modal-dialog-pro-panel > :not(.modal-dialog-pro-panel-title):last-child {
  margin-bottom: 0;
}
/* Sub-object: `modal-dialog-pro-panel-title`
 ========================================================================== */
.modal-dialog-pro-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #444444;
}
/* Sub-object: `modal-dialog-pro-panel-badge`
 ========================================================================== */
.modal-dialog-pro-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
/* Sub-object: `modal-dialog-pro-panel-teaser`
 ========================================================================== */
.modal-dialog-pro-panel-teaser {
  margin-bottom: 15px;
}
/* Modifier: `modal-dialog-pro-panel-box`
 ========================================================================== */
.modal-dialog-pro-panel-box {
  padding: 15px;
  background: #f5f5f5;
  color: #444444;
}
.modal-dialog-pro-panel-box-hover:hover {
  color: #444444;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-title {
  color: #444444;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-badge {
  top: 10px;
  right: 10px;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
/*
 * Nav in panel
 */
.modal-dialog-pro-panel-box > .modal-dialog-pro-nav-side {
  margin: 0 -15px;
}
/*
 * Sub-modifier: `modal-dialog-pro-panel-box-primary`
 */
.modal-dialog-pro-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
}
.modal-dialog-pro-panel-box-primary-hover:hover {
  color: #2d7091;
}
.modal-dialog-pro-panel-box-primary .modal-dialog-pro-panel-title {
  color: #2d7091;
}
/*
 * Sub-modifier: `modal-dialog-pro-panel-box-secondary`
 */
.modal-dialog-pro-panel-box-secondary {
  background-color: #eeeeee;
  color: #444444;
}
.modal-dialog-pro-panel-box-secondary-hover:hover {
  color: #444444;
}
.modal-dialog-pro-panel-box-secondary .modal-dialog-pro-panel-title {
  color: #444444;
}
/* Modifier: `modal-dialog-pro-panel-hover`
 ========================================================================== */
.modal-dialog-pro-panel-hover {
  padding: 15px;
  color: #444444;
}
.modal-dialog-pro-panel-hover:hover {
  background: #f5f5f5;
  color: #444444;
}
.modal-dialog-pro-panel-hover .modal-dialog-pro-panel-badge {
  top: 10px;
  right: 10px;
}
.modal-dialog-pro-panel-hover .modal-dialog-pro-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
/* Modifier: `modal-dialog-pro-panel-header`
 ========================================================================== */
.modal-dialog-pro-panel-header .modal-dialog-pro-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  color: #444444;
}
/* Modifier: `modal-dialog-pro-panel-space`
 ========================================================================== */
.modal-dialog-pro-panel-space {
  padding: 30px;
}
.modal-dialog-pro-panel-space .modal-dialog-pro-panel-badge {
  top: 30px;
  right: 30px;
}
/* Modifier: `modal-dialog-pro-panel-divider`
 ========================================================================== */
.modal-dialog-pro-panel + .modal-dialog-pro-panel-divider {
  margin-top: 50px !important;
}
.modal-dialog-pro-panel + .modal-dialog-pro-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #dddddd;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-panel + .modal-dialog-pro-panel-divider {
    margin-top: 70px !important;
  }
  .modal-dialog-pro-panel + .modal-dialog-pro-panel-divider:before {
    top: -35px;
  }
}
/* ========================================================================
   Component: Block
 ========================================================================== */
.modal-dialog-pro-block {
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Phone landscape and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*
 * Micro clearfix to make blocks more robust
 */
.modal-dialog-pro-block:before,
.modal-dialog-pro-block:after {
  content: "";
  display: table;
}
.modal-dialog-pro-block:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-block > :last-child {
  margin-bottom: 0;
}
/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.modal-dialog-pro-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Tablets and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.modal-dialog-pro-block-default {
  background: #ffffff;
}
/*
 * Muted
 */
.modal-dialog-pro-block-muted {
  background: #f9f9f9;
}
/*
 * Primary
 */
.modal-dialog-pro-block-primary {
  background: #00a8e6;
}
/*
 * Secondary
 */
.modal-dialog-pro-block-secondary {
  background: #222222;
}
/*
 * Adjust padding between equal colored blocks
 */
.modal-dialog-pro-block-default + .modal-dialog-pro-block-default,
.modal-dialog-pro-block-muted + .modal-dialog-pro-block-muted,
.modal-dialog-pro-block-primary + .modal-dialog-pro-block-primary,
.modal-dialog-pro-block-secondary + .modal-dialog-pro-block-secondary {
  padding-top: 0;
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix to make articles more robust
 */
.modal-dialog-pro-article:before,
.modal-dialog-pro-article:after {
  content: "";
  display: table;
}
.modal-dialog-pro-article:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-article > :last-child {
  margin-bottom: 0;
}
/*
 * Vertical gutter for articles
 */
.modal-dialog-pro-article + .modal-dialog-pro-article {
  margin-top: 25px;
}
/* Sub-object `modal-dialog-pro-article-title`
 ========================================================================== */
.modal-dialog-pro-article-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: normal;
  text-transform: none;
}
.modal-dialog-pro-article-title a {
  color: inherit;
  text-decoration: none;
}
/* Sub-object `modal-dialog-pro-article-meta`
 ========================================================================== */
.modal-dialog-pro-article-meta {
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}
/* Sub-object `modal-dialog-pro-article-lead`
 ========================================================================== */
.modal-dialog-pro-article-lead {
  color: #444444;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Sub-object `modal-dialog-pro-article-divider`
 ========================================================================== */
.modal-dialog-pro-article-divider {
  margin-bottom: 25px;
  border-color: #dddddd;
}
* + .modal-dialog-pro-article-divider {
  margin-top: 25px;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sub-object `modal-dialog-pro-comment-header`
 ========================================================================== */
.modal-dialog-pro-comment-header {
  margin-bottom: 15px;
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-comment-header:before,
.modal-dialog-pro-comment-header:after {
  content: "";
  display: table;
}
.modal-dialog-pro-comment-header:after {
  clear: both;
}
/* Sub-object `modal-dialog-pro-comment-avatar`
 ========================================================================== */
.modal-dialog-pro-comment-avatar {
  margin-right: 15px;
  float: left;
}
/* Sub-object `modal-dialog-pro-comment-title`
 ========================================================================== */
.modal-dialog-pro-comment-title {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 22px;
}
/* Sub-object `modal-dialog-pro-comment-meta`
 ========================================================================== */
.modal-dialog-pro-comment-meta {
  margin: 2px 0 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #999999;
}
/* Sub-object `modal-dialog-pro-comment-body`
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-comment-body > :last-child {
  margin-bottom: 0;
}
/* Sub-object `modal-dialog-pro-comment-list`
 ========================================================================== */
.modal-dialog-pro-comment-list {
  padding: 0;
  list-style: none;
}
.modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul {
  margin: 15px 0 0 0;
  list-style: none;
}
.modal-dialog-pro-comment-list > li:nth-child(n+2),
.modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul > li:nth-child(n+2) {
  margin-top: 15px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul {
    padding-left: 100px;
  }
}
/* Modifier `modal-dialog-pro-comment-primary`
 ========================================================================== */
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Background image always covers and centers its element
 */
.modal-dialog-pro-cover-background {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
 * Emulates image cover, works with video and image elements
 * 1. Parent container which clips resized object
 * 2. Resizes the object to always covers its container
 * 3. Reset the responsive image CSS
 * 4. Center object
 */
/* 1 */
.modal-dialog-pro-cover {
  overflow: hidden;
}
.modal-dialog-pro-cover-object {
  /* 2 */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 3 */
  max-width: none;
  /* 4 */
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
 * To center iframes use `data-modal-dialog-pro-cover` JavaScript
 */
[data-modal-dialog-pro-cover] {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
.modal-dialog-pro-nav,
.modal-dialog-pro-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Items
 */
.modal-dialog-pro-nav li > a {
  display: block;
  text-decoration: none;
}
.modal-dialog-pro-nav > li > a {
  padding: 5px 15px;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav ul {
  padding-left: 15px;
}
.modal-dialog-pro-nav ul a {
  padding: 2px 0;
}
/*
 * Item subtitle
 */
.modal-dialog-pro-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}
/* Sub-object: `modal-dialog-pro-nav-header`
 ========================================================================== */
.modal-dialog-pro-nav-header {
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.modal-dialog-pro-nav-header:not(:first-child) {
  margin-top: 15px;
}
/* Sub-object: `modal-dialog-pro-nav-divider`
 ========================================================================== */
.modal-dialog-pro-nav-divider {
  margin: 9px 15px;
}
/* Sub-object: `modal-dialog-pro-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.modal-dialog-pro-nav-sub {
  padding: 5px 0 5px 15px;
}
/* Modifier: `modal-dialog-pro-nav-parent-icon`
 ========================================================================== */
.modal-dialog-pro-nav-parent-icon > .modal-dialog-pro-parent > a:after {
  content: "\f104";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}
.modal-dialog-pro-nav-parent-icon > .modal-dialog-pro-parent.modal-dialog-pro-open > a:after {
  content: "\f107";
}
/* Modifier `modal-dialog-pro-nav-side`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-side > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-side > li > a:hover,
.modal-dialog-pro-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #444444;
  /* 2 */
  outline: none;
}
/* Active */
.modal-dialog-pro-nav-side > li.modal-dialog-pro-active > a {
  background: #00a8e6;
  color: #ffffff;
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-side .modal-dialog-pro-nav-header {
  color: #444444;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-side .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-side ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-side ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-dropdown > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-dropdown > li > a:hover,
.modal-dialog-pro-nav-dropdown > li > a:focus {
  background: #00a8e6;
  color: #ffffff;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-dropdown .modal-dialog-pro-nav-header {
  color: #999999;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-dropdown .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-dropdown ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-dropdown ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-navbar > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-navbar > li > a:hover,
.modal-dialog-pro-nav-navbar > li > a:focus {
  background: #00a8e6;
  color: #ffffff;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-navbar .modal-dialog-pro-nav-header {
  color: #999999;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-navbar .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-navbar ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-navbar ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-offcanvas > li > a {
  color: #cccccc;
  padding: 10px 15px;
}
/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-offcanvas > .modal-dialog-pro-open > a,
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas > li > a:hover,
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas > li > a:focus {
  background: #404040;
  color: #ffffff;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `html .modal-dialog-pro-nav` needed for higher specificity to override hover
 */
html .modal-dialog-pro-nav.modal-dialog-pro-nav-offcanvas > li.modal-dialog-pro-active > a {
  background: #1a1a1a;
  color: #ffffff;
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-offcanvas .modal-dialog-pro-nav-header {
  color: #777777;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-offcanvas .modal-dialog-pro-nav-divider {
  border-top: 1px solid #1a1a1a;
}
/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.modal-dialog-pro-nav-offcanvas ul a {
  color: #cccccc;
}
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas ul a:hover {
  color: #ffffff;
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
.modal-dialog-pro-navbar {
  background: #eeeeee;
  color: #444444;
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-navbar:before,
.modal-dialog-pro-navbar:after {
  content: "";
  display: table;
}
.modal-dialog-pro-navbar:after {
  clear: both;
}
/* Sub-object: `modal-dialog-pro-navbar-nav`
 ========================================================================== */
.modal-dialog-pro-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
/*
 * 1. Create position context for dropdowns
 */
.modal-dialog-pro-navbar-nav > li {
  float: left;
  /* 1 */
  position: relative;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.modal-dialog-pro-navbar-nav > li > a {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444444;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
/* Appear not as link */
.modal-dialog-pro-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.modal-dialog-pro-navbar-nav > li:hover > a,
.modal-dialog-pro-navbar-nav > li > a:focus,
.modal-dialog-pro-navbar-nav > li.modal-dialog-pro-open > a {
  background-color: #f5f5f5;
  color: #444444;
  /* 3 */
  outline: none;
}
/* OnClick */
.modal-dialog-pro-navbar-nav > li > a:active {
  background-color: #dddddd;
  color: #444444;
}
/* Active */
.modal-dialog-pro-navbar-nav > li.modal-dialog-pro-active > a {
  background-color: #f5f5f5;
  color: #444444;
}
/* Sub-objects: `modal-dialog-pro-navbar-nav-subtitle`
 ========================================================================== */
.modal-dialog-pro-navbar-nav .modal-dialog-pro-navbar-nav-subtitle {
  line-height: 28px;
}
.modal-dialog-pro-navbar-nav-subtitle > div {
  margin-top: -6px;
  font-size: 10px;
  line-height: 12px;
}
/* Sub-objects: `modal-dialog-pro-navbar-content`, `modal-dialog-pro-navbar-brand`, `modal-dialog-pro-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.modal-dialog-pro-navbar-content,
.modal-dialog-pro-navbar-brand,
.modal-dialog-pro-navbar-toggle {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 40px;
  padding: 0 15px;
  float: left;
}
/*
 * Helper to center all child elements vertically
 */
.modal-dialog-pro-navbar-content:before,
.modal-dialog-pro-navbar-brand:before,
.modal-dialog-pro-navbar-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* Sub-objects: `modal-dialog-pro-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.modal-dialog-pro-navbar-content + .modal-dialog-pro-navbar-content:not(.modal-dialog-pro-navbar-center) {
  padding-left: 0;
}
/*
 * Link colors
 */
.modal-dialog-pro-navbar-content > a:not([class]) {
  color: #0077dd;
}
.modal-dialog-pro-navbar-content > a:not([class]):hover {
  color: #005599;
}
/* Sub-objects: `modal-dialog-pro-navbar-brand`
 ========================================================================== */
.modal-dialog-pro-navbar-brand {
  font-size: 18px;
  color: #444444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-navbar-brand:hover,
.modal-dialog-pro-navbar-brand:focus {
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/* Sub-object: `modal-dialog-pro-navbar-toggle`
 ========================================================================== */
.modal-dialog-pro-navbar-toggle {
  font-size: 18px;
  color: #444444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-navbar-toggle:hover,
.modal-dialog-pro-navbar-toggle:focus {
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * 1. Center icon vertically
 */
.modal-dialog-pro-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}
.modal-dialog-pro-navbar-toggle-alt:after {
  content: "\f002";
}
/* Sub-object: `modal-dialog-pro-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.modal-dialog-pro-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
/* Sub-object: `modal-dialog-pro-navbar-flip`
 ========================================================================== */
.modal-dialog-pro-navbar-flip {
  float: right;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.modal-dialog-pro-subnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `modal-dialog-pro-width-*` classes can be applied
 * 3. Create position context for dropdowns
 */
.modal-dialog-pro-subnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
  /* 3 */
  position: relative;
}
/*
 * DEPRECATED IE9 Support
 */
.modal-dialog-pro-subnav:before,
.modal-dialog-pro-subnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-subnav:after {
  clear: both;
}
.modal-dialog-pro-subnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.modal-dialog-pro-subnav > * > * {
  display: inline-block;
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.modal-dialog-pro-subnav > * > :hover,
.modal-dialog-pro-subnav > * > :focus {
  color: #0077dd;
  text-decoration: none;
}
/*
 * Active
 */
.modal-dialog-pro-subnav > .modal-dialog-pro-active > * {
  color: #0077dd;
}
/* Modifier: 'subnav-line'
 ========================================================================== */
.modal-dialog-pro-subnav-line > :before {
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
}
.modal-dialog-pro-subnav-line > :nth-child(n+2):before {
  margin-right: 10px;
  border-left: 1px solid #dddddd;
}
/* Modifier: 'subnav-pill'
 ========================================================================== */
.modal-dialog-pro-subnav-pill > * > * {
  padding: 3px 9px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-subnav-pill > * > :hover,
.modal-dialog-pro-subnav-pill > * > :focus {
  background: #eeeeee;
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `li` needed for higher specificity to override hover
 */
.modal-dialog-pro-subnav-pill > .modal-dialog-pro-active > * {
  background: #00a8e6;
  color: #ffffff;
}
/* Disabled state
 ========================================================================== */
.modal-dialog-pro-subnav > .modal-dialog-pro-disabled > * {
  background: none;
  color: #999999;
  text-decoration: none;
  cursor: text;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-breadcrumb {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
}
/* Items
 ========================================================================== */
/*
 * Reset whitespace hack
 */
.modal-dialog-pro-breadcrumb > li {
  font-size: 1rem;
  vertical-align: top;
}
.modal-dialog-pro-breadcrumb > li,
.modal-dialog-pro-breadcrumb > li > a,
.modal-dialog-pro-breadcrumb > li > span {
  display: inline-block;
}
.modal-dialog-pro-breadcrumb > li:nth-child(n+2):before {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}
/*
 * Disabled
 */
.modal-dialog-pro-breadcrumb > li:not(.modal-dialog-pro-active) > span {
  color: #999999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}
/*
 * Micro clearfix
 * Needed if `modal-dialog-pro-pagination-previous` or `modal-dialog-pro-pagination-next` sub-objects are used
 */
.modal-dialog-pro-pagination:before,
.modal-dialog-pro-pagination:after {
  content: "";
  display: table;
}
.modal-dialog-pro-pagination:after {
  clear: both;
}
/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.modal-dialog-pro-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}
.modal-dialog-pro-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}
/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.modal-dialog-pro-pagination > li > a,
.modal-dialog-pro-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
  text-align: center;
}
/*
 * Links
 */
.modal-dialog-pro-pagination > li > a {
  background: #eeeeee;
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-pagination > li > a:hover,
.modal-dialog-pro-pagination > li > a:focus {
  background-color: #f5f5f5;
  color: #444444;
  /* 2 */
  outline: none;
}
/* OnClick */
.modal-dialog-pro-pagination > li > a:active {
  background-color: #dddddd;
  color: #444444;
}
/*
 * Active
 */
.modal-dialog-pro-pagination > .modal-dialog-pro-active > span {
  background: #00a8e6;
  color: #ffffff;
}
/*
 * Disabled
 */
.modal-dialog-pro-pagination > .modal-dialog-pro-disabled > span {
  background-color: #f5f5f5;
  color: #999999;
}
/* Previous and next navigation
 ========================================================================== */
.modal-dialog-pro-pagination-previous {
  float: left;
}
.modal-dialog-pro-pagination-next {
  float: right;
}
/* Alignment modifiers
 ========================================================================== */
.modal-dialog-pro-pagination-left {
  text-align: left;
}
.modal-dialog-pro-pagination-right {
  text-align: right;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
.modal-dialog-pro-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #dddddd;
}
/*
 * Micro clearfix on the deepest container
 */
.modal-dialog-pro-tab:before,
.modal-dialog-pro-tab:after {
  content: "";
  display: table;
}
.modal-dialog-pro-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.modal-dialog-pro-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}
.modal-dialog-pro-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #0077dd;
  text-decoration: none;
}
.modal-dialog-pro-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.modal-dialog-pro-tab > li > a:hover,
.modal-dialog-pro-tab > li > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-open > a {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #005599;
  /* 2 */
  outline: none;
}
.modal-dialog-pro-tab > li:not(.modal-dialog-pro-active) > a:hover,
.modal-dialog-pro-tab > li:not(.modal-dialog-pro-active) > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-open:not(.modal-dialog-pro-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}
/* Active */
.modal-dialog-pro-tab > li.modal-dialog-pro-active > a {
  border-color: #dddddd;
  border-bottom-color: transparent;
  background: #ffffff;
  color: #444444;
}
/* Disabled */
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a {
  color: #999999;
  cursor: text;
}
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a:hover,
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled.modal-dialog-pro-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip'
 ========================================================================== */
.modal-dialog-pro-tab-flip > li {
  float: right;
}
.modal-dialog-pro-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.modal-dialog-pro-tab > li.modal-dialog-pro-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.modal-dialog-pro-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center'
 ========================================================================== */
.modal-dialog-pro-tab-center {
  border-bottom: 1px solid #dddddd;
}
.modal-dialog-pro-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #dddddd;
}
.modal-dialog-pro-tab-center:before,
.modal-dialog-pro-tab-center:after {
  content: "";
  display: table;
}
.modal-dialog-pro-tab-center:after {
  clear: both;
}
/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.modal-dialog-pro-tab-center .modal-dialog-pro-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.modal-dialog-pro-tab-center .modal-dialog-pro-tab > li {
  position: relative;
  right: -50%;
}
.modal-dialog-pro-tab-center .modal-dialog-pro-tab > li > a {
  text-align: center;
}
/* Modifier: 'tab-bottom'
 ========================================================================== */
.modal-dialog-pro-tab-bottom {
  border-top: 1px solid #dddddd;
  border-bottom: none;
}
.modal-dialog-pro-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.modal-dialog-pro-tab-bottom > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  border-top-width: 0;
}
.modal-dialog-pro-tab-bottom > li:not(.modal-dialog-pro-active) > a:hover,
.modal-dialog-pro-tab-bottom > li:not(.modal-dialog-pro-active) > a:focus,
.modal-dialog-pro-tab-bottom > li.modal-dialog-pro-open:not(.modal-dialog-pro-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 8px;
  padding-top: 7px;
}
.modal-dialog-pro-tab-bottom > li.modal-dialog-pro-active > a {
  border-top-color: transparent;
  border-bottom-color: #dddddd;
}
/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.modal-dialog-pro-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}
.modal-dialog-pro-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid #dddddd;
  /* 1 */
  z-index: -1;
}
.modal-dialog-pro-tab-grid > li:first-child > a {
  margin-left: 5px;
}
.modal-dialog-pro-tab-grid > li > a {
  text-align: center;
}
/*
 * If `modal-dialog-pro-tab-bottom`
 */
.modal-dialog-pro-tab-grid.modal-dialog-pro-tab-bottom {
  border-top: none;
}
.modal-dialog-pro-tab-grid.modal-dialog-pro-tab-bottom:before {
  top: -1px;
  bottom: auto;
}
/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-tab-left,
  .modal-dialog-pro-tab-right {
    border-bottom: none;
  }
  .modal-dialog-pro-tab-left > li,
  .modal-dialog-pro-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .modal-dialog-pro-tab-left > li > a,
  .modal-dialog-pro-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .modal-dialog-pro-tab-left > li:nth-child(n+2) > a,
  .modal-dialog-pro-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .modal-dialog-pro-tab-left > li.modal-dialog-pro-active > a,
  .modal-dialog-pro-tab-right > li.modal-dialog-pro-active > a {
    border-color: #dddddd;
  }
  /*
     * Modifier: 'tab-left'
     */
  .modal-dialog-pro-tab-left {
    border-right: 1px solid #dddddd;
  }
  .modal-dialog-pro-tab-left > li {
    margin-right: -1px;
  }
  .modal-dialog-pro-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .modal-dialog-pro-tab-left > li:not(.modal-dialog-pro-active) > a:hover,
  .modal-dialog-pro-tab-left > li:not(.modal-dialog-pro-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 8px;
    padding-right: 11px;
  }
  .modal-dialog-pro-tab-left > li.modal-dialog-pro-active > a {
    border-right-color: transparent;
  }
  /*
     * Modifier: 'tab-right'
     */
  .modal-dialog-pro-tab-right {
    border-left: 1px solid #dddddd;
  }
  .modal-dialog-pro-tab-right > li {
    margin-left: -1px;
  }
  .modal-dialog-pro-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .modal-dialog-pro-tab-right > li:not(.modal-dialog-pro-active) > a:hover,
  .modal-dialog-pro-tab-right > li:not(.modal-dialog-pro-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 8px;
    padding-left: 11px;
  }
  .modal-dialog-pro-tab-right > li.modal-dialog-pro-active > a {
    border-left-color: transparent;
  }
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.modal-dialog-pro-thumbnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `modal-dialog-pro-width-*` classes can be applied
 */
.modal-dialog-pro-thumbnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
}
/*
 * DEPRECATED IE9 Support
 */
.modal-dialog-pro-thumbnav:before,
.modal-dialog-pro-thumbnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-thumbnav:after {
  clear: both;
}
.modal-dialog-pro-thumbnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.modal-dialog-pro-thumbnav > * > * {
  display: block;
  background: #ffffff;
}
.modal-dialog-pro-thumbnav > * > * > img {
  opacity: 0.7;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/*
 * Hover
 */
.modal-dialog-pro-thumbnav > * > :hover > img,
.modal-dialog-pro-thumbnav > * > :focus > img {
  opacity: 1;
}
/*
 * Active
 */
.modal-dialog-pro-thumbnav > .modal-dialog-pro-active > * > img {
  opacity: 1;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.modal-dialog-pro-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.modal-dialog-pro-list > li:before,
.modal-dialog-pro-list > li:after {
  content: "";
  display: table;
}
.modal-dialog-pro-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.modal-dialog-pro-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
/* Modifier: `modal-dialog-pro-list-line`
 ========================================================================== */
.modal-dialog-pro-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
/* Modifier: `modal-dialog-pro-list-striped`
 ========================================================================== */
.modal-dialog-pro-list-striped > li {
  padding: 5px 5px;
}
.modal-dialog-pro-list-striped > li:nth-of-type(odd) {
  background: #f5f5f5;
}
/* Modifier: `modal-dialog-pro-list-space`
 ========================================================================== */
.modal-dialog-pro-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `modal-dialog-pro-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-description-list-horizontal {
    overflow: hidden;
  }
  .modal-dialog-pro-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .modal-dialog-pro-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `modal-dialog-pro-description-list-line`
 ========================================================================== */
.modal-dialog-pro-description-list-line > dt {
  font-weight: normal;
}
.modal-dialog-pro-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
.modal-dialog-pro-description-list-line > dd {
  color: #999999;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.modal-dialog-pro-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}
/*
 * Add margin if adjacent element
 */
* + .modal-dialog-pro-table {
  margin-top: 15px;
}
.modal-dialog-pro-table th,
.modal-dialog-pro-table td {
  padding: 8px 8px;
}
/*
 * Set alignment
 */
.modal-dialog-pro-table th {
  text-align: left;
}
.modal-dialog-pro-table td {
  vertical-align: top;
}
.modal-dialog-pro-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.modal-dialog-pro-table caption,
.modal-dialog-pro-table tfoot {
  font-size: 12px;
  font-style: italic;
}
.modal-dialog-pro-table caption {
  text-align: left;
  color: #999999;
}
/*
 * Active State
 */
.modal-dialog-pro-table tbody tr.modal-dialog-pro-active {
  background: #eeeeee;
}
/* Sub-modifier: `modal-dialog-pro-table-middle`
 ========================================================================== */
.modal-dialog-pro-table-middle,
.modal-dialog-pro-table-middle td {
  vertical-align: middle !important;
}
/* Modifier: `modal-dialog-pro-table-striped`
 ========================================================================== */
.modal-dialog-pro-table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}
/* Modifier: `modal-dialog-pro-table-condensed`
 ========================================================================== */
.modal-dialog-pro-table-condensed td {
  padding: 4px 8px;
}
/* Modifier: `modal-dialog-pro-table-hover`
 ========================================================================== */
.modal-dialog-pro-table-hover tbody tr:hover {
  background: #eeeeee;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.modal-dialog-pro-form input,
.modal-dialog-pro-form select,
.modal-dialog-pro-form textarea {
  /* 1 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}
/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.modal-dialog-pro-form select {
  text-transform: none;
}
/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.modal-dialog-pro-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Removes excess padding in IE 8/9/10.
 */
.modal-dialog-pro-form input[type="checkbox"],
.modal-dialog-pro-form input[type="radio"] {
  padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.modal-dialog-pro-form input[type="checkbox"]:not(:disabled),
.modal-dialog-pro-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove default style in iOS.
 */
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-form input[type="datetime"] {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.modal-dialog-pro-form input[type="search"]::-webkit-search-cancel-button,
.modal-dialog-pro-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.modal-dialog-pro-form input[type="number"]::-webkit-inner-spin-button,
.modal-dialog-pro-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Define consistent border, margin, and padding.
 */
.modal-dialog-pro-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.modal-dialog-pro-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.modal-dialog-pro-form ::-moz-placeholder {
  opacity: 1;
}
/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.modal-dialog-pro-form :invalid {
  box-shadow: none;
}
/*
 * Vertical alignment
 */
.modal-dialog-pro-form input:not([type="radio"]):not([type="checkbox"]),
.modal-dialog-pro-form select {
  vertical-align: middle;
}
/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-form > :last-child {
  margin-bottom: 0;
}
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.modal-dialog-pro-form select,
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-form input[type="datetime"],
.modal-dialog-pro-form input[type="datetime-local"],
.modal-dialog-pro-form input[type="date"],
.modal-dialog-pro-form input[type="month"],
.modal-dialog-pro-form input[type="time"],
.modal-dialog-pro-form input[type="week"],
.modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-form input[type="color"] {
  /* 1 */
  height: 30px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 4px 6px;
  /* 4 */
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #444444;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.modal-dialog-pro-form select:focus,
.modal-dialog-pro-form textarea:focus,
.modal-dialog-pro-form input:not([type]):focus,
.modal-dialog-pro-form input[type="text"]:focus,
.modal-dialog-pro-form input[type="password"]:focus,
.modal-dialog-pro-form input[type="datetime"]:focus,
.modal-dialog-pro-form input[type="datetime-local"]:focus,
.modal-dialog-pro-form input[type="date"]:focus,
.modal-dialog-pro-form input[type="month"]:focus,
.modal-dialog-pro-form input[type="time"]:focus,
.modal-dialog-pro-form input[type="week"]:focus,
.modal-dialog-pro-form input[type="number"]:focus,
.modal-dialog-pro-form input[type="email"]:focus,
.modal-dialog-pro-form input[type="url"]:focus,
.modal-dialog-pro-form input[type="search"]:focus,
.modal-dialog-pro-form input[type="tel"]:focus,
.modal-dialog-pro-form input[type="color"]:focus {
  border-color: #99baca;
  outline: 0;
  background: #f5fbfe;
  color: #444444;
}
.modal-dialog-pro-form select:disabled,
.modal-dialog-pro-form textarea:disabled,
.modal-dialog-pro-form input:not([type]):disabled,
.modal-dialog-pro-form input[type="text"]:disabled,
.modal-dialog-pro-form input[type="password"]:disabled,
.modal-dialog-pro-form input[type="datetime"]:disabled,
.modal-dialog-pro-form input[type="datetime-local"]:disabled,
.modal-dialog-pro-form input[type="date"]:disabled,
.modal-dialog-pro-form input[type="month"]:disabled,
.modal-dialog-pro-form input[type="time"]:disabled,
.modal-dialog-pro-form input[type="week"]:disabled,
.modal-dialog-pro-form input[type="number"]:disabled,
.modal-dialog-pro-form input[type="email"]:disabled,
.modal-dialog-pro-form input[type="url"]:disabled,
.modal-dialog-pro-form input[type="search"]:disabled,
.modal-dialog-pro-form input[type="tel"]:disabled,
.modal-dialog-pro-form input[type="color"]:disabled {
  border-color: #dddddd;
  background-color: #f5f5f5;
  color: #999999;
}
/*
 * Placeholder
 */
.modal-dialog-pro-form :-ms-input-placeholder {
  color: #999999 !important;
}
.modal-dialog-pro-form ::-moz-placeholder {
  color: #999999;
}
.modal-dialog-pro-form ::-webkit-input-placeholder {
  color: #999999;
}
.modal-dialog-pro-form :disabled:-ms-input-placeholder {
  color: #999999 !important;
}
.modal-dialog-pro-form :disabled::-moz-placeholder {
  color: #999999;
}
.modal-dialog-pro-form :disabled::-webkit-input-placeholder {
  color: #999999;
}
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.modal-dialog-pro-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 15px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}
/*
 * 1. Fixes IE9
 */
.modal-dialog-pro-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #dddddd;
  /* 1 */
  width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.modal-dialog-pro-form-small,
textarea.modal-dialog-pro-form-small,
input[type].modal-dialog-pro-form-small,
input:not([type]).modal-dialog-pro-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}
select.modal-dialog-pro-form-large,
textarea.modal-dialog-pro-form-large,
input[type].modal-dialog-pro-form-large,
input:not([type]).modal-dialog-pro-form-large {
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form select[multiple],
.modal-dialog-pro-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.modal-dialog-pro-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}
/*
 * Success state
 */
.modal-dialog-pro-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.modal-dialog-pro-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.modal-dialog-pro-form-blank:focus {
  border-color: #dddddd !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.modal-dialog-pro-form-width-mini {
  width: 40px;
}
select.modal-dialog-pro-form-width-mini {
  width: 65px;
}
.modal-dialog-pro-form-width-small {
  width: 130px;
}
.modal-dialog-pro-form-width-medium {
  width: 200px;
}
.modal-dialog-pro-form-width-large {
  width: 500px;
}
/* Sub-objects: `modal-dialog-pro-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `modal-dialog-pro-form-horizontal` modifier
 */
.modal-dialog-pro-form-row:before,
.modal-dialog-pro-form-row:after {
  content: "";
  display: table;
}
.modal-dialog-pro-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.modal-dialog-pro-form-row + .modal-dialog-pro-form-row {
  margin-top: 15px;
}
/* Help text
 * Sub-object: `modal-dialog-pro-form-help-inline`, `modal-dialog-pro-form-help-block`
 ========================================================================== */
.modal-dialog-pro-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.modal-dialog-pro-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `modal-dialog-pro-form-controls`, `modal-dialog-pro-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.modal-dialog-pro-form-controls > :first-child {
  margin-top: 0;
}
.modal-dialog-pro-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.modal-dialog-pro-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `modal-dialog-pro-form-stacked`
 * Requires sub-object: `modal-dialog-pro-form-label`
 ========================================================================== */
.modal-dialog-pro-form-stacked .modal-dialog-pro-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `modal-dialog-pro-form-horizontal`
 * Requires sub-objects: `modal-dialog-pro-form-label`, `modal-dialog-pro-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `modal-dialog-pro-form-stacked` */
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-controls-text {
    padding-top: 5px;
  }
}
/* Sub-object: `modal-dialog-pro-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.modal-dialog-pro-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.modal-dialog-pro-form-icon > [class*='modal-dialog-pro-icon-'] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999999;
  text-align: center;
  /* 1 */
  pointer-events: none;
}
.modal-dialog-pro-form-icon:not(.modal-dialog-pro-form-icon-flip) > input {
  padding-left: 30px !important;
}
/*
 * Sub-modifier: `modal-dialog-pro-form-icon-flip`
 */
.modal-dialog-pro-form-icon-flip > [class*='modal-dialog-pro-icon-'] {
  right: 0;
}
.modal-dialog-pro-form-icon-flip > input {
  padding-right: 30px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.modal-dialog-pro-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #444444;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #eeeeee;
  vertical-align: middle;
  /* 8 */
  line-height: 30px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
}
.modal-dialog-pro-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.modal-dialog-pro-button:hover,
.modal-dialog-pro-button:focus {
  background-color: #f5f5f5;
  color: #444444;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
}
/* Active */
.modal-dialog-pro-button:active,
.modal-dialog-pro-button.modal-dialog-pro-active {
  background-color: #dddddd;
  color: #444444;
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `modal-dialog-pro-button-primary`
 */
.modal-dialog-pro-button-primary {
  background-color: #00a8e6;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-primary:hover,
.modal-dialog-pro-button-primary:focus {
  background-color: #35b3ee;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-primary:active,
.modal-dialog-pro-button-primary.modal-dialog-pro-active {
  background-color: #0091ca;
  color: #ffffff;
}
/*
 * Modifier: `modal-dialog-pro-button-success`
 */
.modal-dialog-pro-button-success {
  background-color: #8cc14c;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-success:hover,
.modal-dialog-pro-button-success:focus {
  background-color: #8ec73b;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-success:active,
.modal-dialog-pro-button-success.modal-dialog-pro-active {
  background-color: #72ae41;
  color: #ffffff;
}
/*
 * Modifier: `modal-dialog-pro-button-danger`
 */
.modal-dialog-pro-button-danger {
  background-color: #da314b;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-danger:hover,
.modal-dialog-pro-button-danger:focus {
  background-color: #e4354f;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-danger:active,
.modal-dialog-pro-button-danger.modal-dialog-pro-active {
  background-color: #c91032;
  color: #ffffff;
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.modal-dialog-pro-button:disabled {
  background-color: #f5f5f5;
  color: #999999;
}
/* Modifier: `modal-dialog-pro-button-link`
 ========================================================================== */
/* Reset */
.modal-dialog-pro-button-link,
.modal-dialog-pro-button-link:hover,
.modal-dialog-pro-button-link:focus,
.modal-dialog-pro-button-link:active,
.modal-dialog-pro-button-link.modal-dialog-pro-active,
.modal-dialog-pro-button-link:disabled {
  border-color: transparent;
  background: none;
}
/* Color */
.modal-dialog-pro-button-link {
  color: #0077dd;
}
.modal-dialog-pro-button-link:hover,
.modal-dialog-pro-button-link:focus,
.modal-dialog-pro-button-link:active,
.modal-dialog-pro-button-link.modal-dialog-pro-active {
  color: #005599;
  text-decoration: underline;
}
.modal-dialog-pro-button-link:disabled {
  color: #999999;
}
/* Focus */
.modal-dialog-pro-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 11px;
}
.modal-dialog-pro-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 12px;
}
.modal-dialog-pro-button-large {
  min-height: 40px;
  padding: 0 15px;
  line-height: 40px;
  font-size: 16px;
}
/* Sub-object `modal-dialog-pro-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.modal-dialog-pro-button-group > * {
  display: inline-block;
}
/* 5 */
.modal-dialog-pro-button-group .modal-dialog-pro-button {
  vertical-align: top;
}
/* Sub-object: `modal-dialog-pro-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.modal-dialog-pro-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url("../files/fonts/fontawesome-webfont.eot");
  src: url("../files/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../files/fonts/fontawesome-webfont.woff2") format('woff2'), url("../files/fonts/fontawesome-webfont.woff") format("woff"), url("../files/fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
[class*='modal-dialog-pro-icon-'] {
  font-family: FontAwesome;
  /* 1 */
  display: inline-block;
  /* 2 */
  font-weight: normal;
  font-style: normal;
  /* 4 */
  line-height: 1;
  /* 5 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 6 */
[class*='modal-dialog-pro-icon-'],
[class*='modal-dialog-pro-icon-']:hover,
[class*='modal-dialog-pro-icon-']:focus {
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-icon-small {
  font-size: 150%;
  vertical-align: -10%;
}
.modal-dialog-pro-icon-medium {
  font-size: 200%;
  vertical-align: -16%;
}
.modal-dialog-pro-icon-large {
  font-size: 250%;
  vertical-align: -22%;
}
/* Modifier: `modal-dialog-pro-icon-justify`
 ========================================================================== */
.modal-dialog-pro-icon-justify {
  width: 1em;
  text-align: center;
}
/* Modifier: `modal-dialog-pro-icon-spin`
 ========================================================================== */
.modal-dialog-pro-icon-spin {
  display: inline-block;
  -webkit-animation: modal-dialog-pro-rotate 2s infinite linear;
  animation: modal-dialog-pro-rotate 2s infinite linear;
}
/* Modifier: `modal-dialog-pro-icon-hover`
 ========================================================================== */
.modal-dialog-pro-icon-hover {
  color: #999999;
}
/*
 * Hover
 */
.modal-dialog-pro-icon-hover:hover {
  color: #444444;
}
/* Modifier: `modal-dialog-pro-icon-button`
 ========================================================================== */
.modal-dialog-pro-icon-button {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #eeeeee;
  line-height: 35px;
  color: #444444;
  font-size: 18px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-icon-button:hover,
.modal-dialog-pro-icon-button:focus {
  background-color: #f5f5f5;
  color: #444444;
  /* 2 */
  outline: none;
}
/* Active */
.modal-dialog-pro-icon-button:active {
  background-color: #dddddd;
  color: #444444;
}
/* Icon mapping
 ========================================================================== */
.modal-dialog-pro-icon-glass:before {
  content: "\f000";
}
.modal-dialog-pro-icon-music:before {
  content: "\f001";
}
.modal-dialog-pro-icon-search:before {
  content: "\f002";
}
.modal-dialog-pro-icon-envelope-o:before {
  content: "\f003";
}
.modal-dialog-pro-icon-heart:before {
  content: "\f004";
}
.modal-dialog-pro-icon-star:before {
  content: "\f005";
}
.modal-dialog-pro-icon-star-o:before {
  content: "\f006";
}
.modal-dialog-pro-icon-user:before {
  content: "\f007";
}
.modal-dialog-pro-icon-film:before {
  content: "\f008";
}
.modal-dialog-pro-icon-th-large:before {
  content: "\f009";
}
.modal-dialog-pro-icon-th:before {
  content: "\f00a";
}
.modal-dialog-pro-icon-th-list:before {
  content: "\f00b";
}
.modal-dialog-pro-icon-check:before {
  content: "\f00c";
}
.modal-dialog-pro-icon-remove:before,
.modal-dialog-pro-icon-close:before,
.modal-dialog-pro-icon-times:before {
  content: "\f00d";
}
.modal-dialog-pro-icon-search-plus:before {
  content: "\f00e";
}
.modal-dialog-pro-icon-search-minus:before {
  content: "\f010";
}
.modal-dialog-pro-icon-power-off:before {
  content: "\f011";
}
.modal-dialog-pro-icon-signal:before {
  content: "\f012";
}
.modal-dialog-pro-icon-gear:before,
.modal-dialog-pro-icon-cog:before {
  content: "\f013";
}
.modal-dialog-pro-icon-trash-o:before {
  content: "\f014";
}
.modal-dialog-pro-icon-home:before {
  content: "\f015";
}
.modal-dialog-pro-icon-file-o:before {
  content: "\f016";
}
.modal-dialog-pro-icon-clock-o:before {
  content: "\f017";
}
.modal-dialog-pro-icon-road:before {
  content: "\f018";
}
.modal-dialog-pro-icon-download:before {
  content: "\f019";
}
.modal-dialog-pro-icon-arrow-circle-o-down:before {
  content: "\f01a";
}
.modal-dialog-pro-icon-arrow-circle-o-up:before {
  content: "\f01b";
}
.modal-dialog-pro-icon-inbox:before {
  content: "\f01c";
}
.modal-dialog-pro-icon-play-circle-o:before {
  content: "\f01d";
}
.modal-dialog-pro-icon-rotate-right:before,
.modal-dialog-pro-icon-repeat:before {
  content: "\f01e";
}
.modal-dialog-pro-icon-refresh:before {
  content: "\f021";
}
.modal-dialog-pro-icon-list-alt:before {
  content: "\f022";
}
.modal-dialog-pro-icon-lock:before {
  content: "\f023";
}
.modal-dialog-pro-icon-flag:before {
  content: "\f024";
}
.modal-dialog-pro-icon-headphones:before {
  content: "\f025";
}
.modal-dialog-pro-icon-volume-off:before {
  content: "\f026";
}
.modal-dialog-pro-icon-volume-down:before {
  content: "\f027";
}
.modal-dialog-pro-icon-volume-up:before {
  content: "\f028";
}
.modal-dialog-pro-icon-qrcode:before {
  content: "\f029";
}
.modal-dialog-pro-icon-barcode:before {
  content: "\f02a";
}
.modal-dialog-pro-icon-tag:before {
  content: "\f02b";
}
.modal-dialog-pro-icon-tags:before {
  content: "\f02c";
}
.modal-dialog-pro-icon-book:before {
  content: "\f02d";
}
.modal-dialog-pro-icon-bookmark:before {
  content: "\f02e";
}
.modal-dialog-pro-icon-print:before {
  content: "\f02f";
}
.modal-dialog-pro-icon-camera:before {
  content: "\f030";
}
.modal-dialog-pro-icon-font:before {
  content: "\f031";
}
.modal-dialog-pro-icon-bold:before {
  content: "\f032";
}
.modal-dialog-pro-icon-italic:before {
  content: "\f033";
}
.modal-dialog-pro-icon-text-height:before {
  content: "\f034";
}
.modal-dialog-pro-icon-text-width:before {
  content: "\f035";
}
.modal-dialog-pro-icon-align-left:before {
  content: "\f036";
}
.modal-dialog-pro-icon-align-center:before {
  content: "\f037";
}
.modal-dialog-pro-icon-align-right:before {
  content: "\f038";
}
.modal-dialog-pro-icon-align-justify:before {
  content: "\f039";
}
.modal-dialog-pro-icon-list:before {
  content: "\f03a";
}
.modal-dialog-pro-icon-dedent:before,
.modal-dialog-pro-icon-outdent:before {
  content: "\f03b";
}
.modal-dialog-pro-icon-indent:before {
  content: "\f03c";
}
.modal-dialog-pro-icon-video-camera:before {
  content: "\f03d";
}
.modal-dialog-pro-icon-photo:before,
.modal-dialog-pro-icon-image:before,
.modal-dialog-pro-icon-picture-o:before {
  content: "\f03e";
}
.modal-dialog-pro-icon-pencil:before {
  content: "\f040";
}
.modal-dialog-pro-icon-map-marker:before {
  content: "\f041";
}
.modal-dialog-pro-icon-adjust:before {
  content: "\f042";
}
.modal-dialog-pro-icon-tint:before {
  content: "\f043";
}
.modal-dialog-pro-icon-edit:before,
.modal-dialog-pro-icon-pencil-square-o:before {
  content: "\f044";
}
.modal-dialog-pro-icon-share-square-o:before {
  content: "\f045";
}
.modal-dialog-pro-icon-check-square-o:before {
  content: "\f046";
}
.modal-dialog-pro-icon-arrows:before {
  content: "\f047";
}
.modal-dialog-pro-icon-step-backward:before {
  content: "\f048";
}
.modal-dialog-pro-icon-fast-backward:before {
  content: "\f049";
}
.modal-dialog-pro-icon-backward:before {
  content: "\f04a";
}
.modal-dialog-pro-icon-play:before {
  content: "\f04b";
}
.modal-dialog-pro-icon-pause:before {
  content: "\f04c";
}
.modal-dialog-pro-icon-stop:before {
  content: "\f04d";
}
.modal-dialog-pro-icon-forward:before {
  content: "\f04e";
}
.modal-dialog-pro-icon-fast-forward:before {
  content: "\f050";
}
.modal-dialog-pro-icon-step-forward:before {
  content: "\f051";
}
.modal-dialog-pro-icon-eject:before {
  content: "\f052";
}
.modal-dialog-pro-icon-chevron-left:before {
  content: "\f053";
}
.modal-dialog-pro-icon-chevron-right:before {
  content: "\f054";
}
.modal-dialog-pro-icon-plus-circle:before {
  content: "\f055";
}
.modal-dialog-pro-icon-minus-circle:before {
  content: "\f056";
}
.modal-dialog-pro-icon-times-circle:before {
  content: "\f057";
}
.modal-dialog-pro-icon-check-circle:before {
  content: "\f058";
}
.modal-dialog-pro-icon-question-circle:before {
  content: "\f059";
}
.modal-dialog-pro-icon-info-circle:before {
  content: "\f05a";
}
.modal-dialog-pro-icon-crosshairs:before {
  content: "\f05b";
}
.modal-dialog-pro-icon-times-circle-o:before {
  content: "\f05c";
}
.modal-dialog-pro-icon-check-circle-o:before {
  content: "\f05d";
}
.modal-dialog-pro-icon-ban:before {
  content: "\f05e";
}
.modal-dialog-pro-icon-arrow-left:before {
  content: "\f060";
}
.modal-dialog-pro-icon-arrow-right:before {
  content: "\f061";
}
.modal-dialog-pro-icon-arrow-up:before {
  content: "\f062";
}
.modal-dialog-pro-icon-arrow-down:before {
  content: "\f063";
}
.modal-dialog-pro-icon-mail-forward:before,
.modal-dialog-pro-icon-share:before {
  content: "\f064";
}
.modal-dialog-pro-icon-expand:before {
  content: "\f065";
}
.modal-dialog-pro-icon-compress:before {
  content: "\f066";
}
.modal-dialog-pro-icon-plus:before {
  content: "\f067";
}
.modal-dialog-pro-icon-minus:before {
  content: "\f068";
}
.modal-dialog-pro-icon-asterisk:before {
  content: "\f069";
}
.modal-dialog-pro-icon-exclamation-circle:before {
  content: "\f06a";
}
.modal-dialog-pro-icon-gift:before {
  content: "\f06b";
}
.modal-dialog-pro-icon-leaf:before {
  content: "\f06c";
}
.modal-dialog-pro-icon-fire:before {
  content: "\f06d";
}
.modal-dialog-pro-icon-eye:before {
  content: "\f06e";
}
.modal-dialog-pro-icon-eye-slash:before {
  content: "\f070";
}
.modal-dialog-pro-icon-warning:before,
.modal-dialog-pro-icon-exclamation-triangle:before {
  content: "\f071";
}
.modal-dialog-pro-icon-plane:before {
  content: "\f072";
}
.modal-dialog-pro-icon-calendar:before {
  content: "\f073";
}
.modal-dialog-pro-icon-random:before {
  content: "\f074";
}
.modal-dialog-pro-icon-comment:before {
  content: "\f075";
}
.modal-dialog-pro-icon-magnet:before {
  content: "\f076";
}
.modal-dialog-pro-icon-chevron-up:before {
  content: "\f077";
}
.modal-dialog-pro-icon-chevron-down:before {
  content: "\f078";
}
.modal-dialog-pro-icon-retweet:before {
  content: "\f079";
}
.modal-dialog-pro-icon-shopping-cart:before {
  content: "\f07a";
}
.modal-dialog-pro-icon-folder:before {
  content: "\f07b";
}
.modal-dialog-pro-icon-folder-open:before {
  content: "\f07c";
}
.modal-dialog-pro-icon-arrows-v:before {
  content: "\f07d";
}
.modal-dialog-pro-icon-arrows-h:before {
  content: "\f07e";
}
.modal-dialog-pro-icon-bar-chart-o:before,
.modal-dialog-pro-icon-bar-chart:before {
  content: "\f080";
}
.modal-dialog-pro-icon-twitter-square:before {
  content: "\f081";
}
.modal-dialog-pro-icon-facebook-square:before {
  content: "\f082";
}
.modal-dialog-pro-icon-camera-retro:before {
  content: "\f083";
}
.modal-dialog-pro-icon-key:before {
  content: "\f084";
}
.modal-dialog-pro-icon-gears:before,
.modal-dialog-pro-icon-cogs:before {
  content: "\f085";
}
.modal-dialog-pro-icon-comments:before {
  content: "\f086";
}
.modal-dialog-pro-icon-thumbs-o-up:before {
  content: "\f087";
}
.modal-dialog-pro-icon-thumbs-o-down:before {
  content: "\f088";
}
.modal-dialog-pro-icon-star-half:before {
  content: "\f089";
}
.modal-dialog-pro-icon-heart-o:before {
  content: "\f08a";
}
.modal-dialog-pro-icon-sign-out:before {
  content: "\f08b";
}
.modal-dialog-pro-icon-linkedin-square:before {
  content: "\f08c";
}
.modal-dialog-pro-icon-thumb-tack:before {
  content: "\f08d";
}
.modal-dialog-pro-icon-external-link:before {
  content: "\f08e";
}
.modal-dialog-pro-icon-sign-in:before {
  content: "\f090";
}
.modal-dialog-pro-icon-trophy:before {
  content: "\f091";
}
.modal-dialog-pro-icon-github-square:before {
  content: "\f092";
}
.modal-dialog-pro-icon-upload:before {
  content: "\f093";
}
.modal-dialog-pro-icon-lemon-o:before {
  content: "\f094";
}
.modal-dialog-pro-icon-phone:before {
  content: "\f095";
}
.modal-dialog-pro-icon-square-o:before {
  content: "\f096";
}
.modal-dialog-pro-icon-bookmark-o:before {
  content: "\f097";
}
.modal-dialog-pro-icon-phone-square:before {
  content: "\f098";
}
.modal-dialog-pro-icon-twitter:before {
  content: "\f099";
}
.modal-dialog-pro-icon-facebook-f:before,
.modal-dialog-pro-icon-facebook:before {
  content: "\f09a";
}
.modal-dialog-pro-icon-github:before {
  content: "\f09b";
}
.modal-dialog-pro-icon-unlock:before {
  content: "\f09c";
}
.modal-dialog-pro-icon-credit-card:before {
  content: "\f09d";
}
.modal-dialog-pro-icon-rss:before {
  content: "\f09e";
}
.modal-dialog-pro-icon-hdd-o:before {
  content: "\f0a0";
}
.modal-dialog-pro-icon-bullhorn:before {
  content: "\f0a1";
}
.modal-dialog-pro-icon-bell:before {
  content: "\f0f3";
}
.modal-dialog-pro-icon-certificate:before {
  content: "\f0a3";
}
.modal-dialog-pro-icon-hand-o-right:before {
  content: "\f0a4";
}
.modal-dialog-pro-icon-hand-o-left:before {
  content: "\f0a5";
}
.modal-dialog-pro-icon-hand-o-up:before {
  content: "\f0a6";
}
.modal-dialog-pro-icon-hand-o-down:before {
  content: "\f0a7";
}
.modal-dialog-pro-icon-arrow-circle-left:before {
  content: "\f0a8";
}
.modal-dialog-pro-icon-arrow-circle-right:before {
  content: "\f0a9";
}
.modal-dialog-pro-icon-arrow-circle-up:before {
  content: "\f0aa";
}
.modal-dialog-pro-icon-arrow-circle-down:before {
  content: "\f0ab";
}
.modal-dialog-pro-icon-globe:before {
  content: "\f0ac";
}
.modal-dialog-pro-icon-wrench:before {
  content: "\f0ad";
}
.modal-dialog-pro-icon-tasks:before {
  content: "\f0ae";
}
.modal-dialog-pro-icon-filter:before {
  content: "\f0b0";
}
.modal-dialog-pro-icon-briefcase:before {
  content: "\f0b1";
}
.modal-dialog-pro-icon-arrows-alt:before {
  content: "\f0b2";
}
.modal-dialog-pro-icon-group:before,
.modal-dialog-pro-icon-users:before {
  content: "\f0c0";
}
.modal-dialog-pro-icon-chain:before,
.modal-dialog-pro-icon-link:before {
  content: "\f0c1";
}
.modal-dialog-pro-icon-cloud:before {
  content: "\f0c2";
}
.modal-dialog-pro-icon-flask:before {
  content: "\f0c3";
}
.modal-dialog-pro-icon-cut:before,
.modal-dialog-pro-icon-scissors:before {
  content: "\f0c4";
}
.modal-dialog-pro-icon-copy:before,
.modal-dialog-pro-icon-files-o:before {
  content: "\f0c5";
}
.modal-dialog-pro-icon-paperclip:before {
  content: "\f0c6";
}
.modal-dialog-pro-icon-save:before,
.modal-dialog-pro-icon-floppy-o:before {
  content: "\f0c7";
}
.modal-dialog-pro-icon-square:before {
  content: "\f0c8";
}
.modal-dialog-pro-icon-navicon:before,
.modal-dialog-pro-icon-reorder:before,
.modal-dialog-pro-icon-bars:before {
  content: "\f0c9";
}
.modal-dialog-pro-icon-list-ul:before {
  content: "\f0ca";
}
.modal-dialog-pro-icon-list-ol:before {
  content: "\f0cb";
}
.modal-dialog-pro-icon-strikethrough:before {
  content: "\f0cc";
}
.modal-dialog-pro-icon-underline:before {
  content: "\f0cd";
}
.modal-dialog-pro-icon-table:before {
  content: "\f0ce";
}
.modal-dialog-pro-icon-magic:before {
  content: "\f0d0";
}
.modal-dialog-pro-icon-truck:before {
  content: "\f0d1";
}
.modal-dialog-pro-icon-pinterest:before {
  content: "\f0d2";
}
.modal-dialog-pro-icon-pinterest-square:before {
  content: "\f0d3";
}
.modal-dialog-pro-icon-google-plus-square:before {
  content: "\f0d4";
}
.modal-dialog-pro-icon-google-plus:before {
  content: "\f0d5";
}
.modal-dialog-pro-icon-money:before {
  content: "\f0d6";
}
.modal-dialog-pro-icon-caret-down:before {
  content: "\f0d7";
}
.modal-dialog-pro-icon-caret-up:before {
  content: "\f0d8";
}
.modal-dialog-pro-icon-caret-left:before {
  content: "\f0d9";
}
.modal-dialog-pro-icon-caret-right:before {
  content: "\f0da";
}
.modal-dialog-pro-icon-columns:before {
  content: "\f0db";
}
.modal-dialog-pro-icon-unsorted:before,
.modal-dialog-pro-icon-sort:before {
  content: "\f0dc";
}
.modal-dialog-pro-icon-sort-down:before,
.modal-dialog-pro-icon-sort-desc:before {
  content: "\f0dd";
}
.modal-dialog-pro-icon-sort-up:before,
.modal-dialog-pro-icon-sort-asc:before {
  content: "\f0de";
}
.modal-dialog-pro-icon-envelope:before {
  content: "\f0e0";
}
.modal-dialog-pro-icon-linkedin:before {
  content: "\f0e1";
}
.modal-dialog-pro-icon-rotate-left:before,
.modal-dialog-pro-icon-undo:before {
  content: "\f0e2";
}
.modal-dialog-pro-icon-legal:before,
.modal-dialog-pro-icon-gavel:before {
  content: "\f0e3";
}
.modal-dialog-pro-icon-dashboard:before,
.modal-dialog-pro-icon-tachometer:before {
  content: "\f0e4";
}
.modal-dialog-pro-icon-comment-o:before {
  content: "\f0e5";
}
.modal-dialog-pro-icon-comments-o:before {
  content: "\f0e6";
}
.modal-dialog-pro-icon-flash:before,
.modal-dialog-pro-icon-bolt:before {
  content: "\f0e7";
}
.modal-dialog-pro-icon-sitemap:before {
  content: "\f0e8";
}
.modal-dialog-pro-icon-umbrella:before {
  content: "\f0e9";
}
.modal-dialog-pro-icon-paste:before,
.modal-dialog-pro-icon-clipboard:before {
  content: "\f0ea";
}
.modal-dialog-pro-icon-lightbulb-o:before {
  content: "\f0eb";
}
.modal-dialog-pro-icon-exchange:before {
  content: "\f0ec";
}
.modal-dialog-pro-icon-cloud-download:before {
  content: "\f0ed";
}
.modal-dialog-pro-icon-cloud-upload:before {
  content: "\f0ee";
}
.modal-dialog-pro-icon-user-md:before {
  content: "\f0f0";
}
.modal-dialog-pro-icon-stethoscope:before {
  content: "\f0f1";
}
.modal-dialog-pro-icon-suitcase:before {
  content: "\f0f2";
}
.modal-dialog-pro-icon-bell-o:before {
  content: "\f0a2";
}
.modal-dialog-pro-icon-coffee:before {
  content: "\f0f4";
}
.modal-dialog-pro-icon-cutlery:before {
  content: "\f0f5";
}
.modal-dialog-pro-icon-file-text-o:before {
  content: "\f0f6";
}
.modal-dialog-pro-icon-building-o:before {
  content: "\f0f7";
}
.modal-dialog-pro-icon-hospital-o:before {
  content: "\f0f8";
}
.modal-dialog-pro-icon-ambulance:before {
  content: "\f0f9";
}
.modal-dialog-pro-icon-medkit:before {
  content: "\f0fa";
}
.modal-dialog-pro-icon-fighter-jet:before {
  content: "\f0fb";
}
.modal-dialog-pro-icon-beer:before {
  content: "\f0fc";
}
.modal-dialog-pro-icon-h-square:before {
  content: "\f0fd";
}
.modal-dialog-pro-icon-plus-square:before {
  content: "\f0fe";
}
.modal-dialog-pro-icon-angle-double-left:before {
  content: "\f100";
}
.modal-dialog-pro-icon-angle-double-right:before {
  content: "\f101";
}
.modal-dialog-pro-icon-angle-double-up:before {
  content: "\f102";
}
.modal-dialog-pro-icon-angle-double-down:before {
  content: "\f103";
}
.modal-dialog-pro-icon-angle-left:before {
  content: "\f104";
}
.modal-dialog-pro-icon-angle-right:before {
  content: "\f105";
}
.modal-dialog-pro-icon-angle-up:before {
  content: "\f106";
}
.modal-dialog-pro-icon-angle-down:before {
  content: "\f107";
}
.modal-dialog-pro-icon-desktop:before {
  content: "\f108";
}
.modal-dialog-pro-icon-laptop:before {
  content: "\f109";
}
.modal-dialog-pro-icon-tablet:before {
  content: "\f10a";
}
.modal-dialog-pro-icon-mobile-phone:before,
.modal-dialog-pro-icon-mobile:before {
  content: "\f10b";
}
.modal-dialog-pro-icon-circle-o:before {
  content: "\f10c";
}
.modal-dialog-pro-icon-quote-left:before {
  content: "\f10d";
}
.modal-dialog-pro-icon-quote-right:before {
  content: "\f10e";
}
.modal-dialog-pro-icon-spinner:before {
  content: "\f110";
}
.modal-dialog-pro-icon-circle:before {
  content: "\f111";
}
.modal-dialog-pro-icon-mail-reply:before,
.modal-dialog-pro-icon-reply:before {
  content: "\f112";
}
.modal-dialog-pro-icon-github-alt:before {
  content: "\f113";
}
.modal-dialog-pro-icon-folder-o:before {
  content: "\f114";
}
.modal-dialog-pro-icon-folder-open-o:before {
  content: "\f115";
}
.modal-dialog-pro-icon-smile-o:before {
  content: "\f118";
}
.modal-dialog-pro-icon-frown-o:before {
  content: "\f119";
}
.modal-dialog-pro-icon-meh-o:before {
  content: "\f11a";
}
.modal-dialog-pro-icon-gamepad:before {
  content: "\f11b";
}
.modal-dialog-pro-icon-keyboard-o:before {
  content: "\f11c";
}
.modal-dialog-pro-icon-flag-o:before {
  content: "\f11d";
}
.modal-dialog-pro-icon-flag-checkered:before {
  content: "\f11e";
}
.modal-dialog-pro-icon-terminal:before {
  content: "\f120";
}
.modal-dialog-pro-icon-code:before {
  content: "\f121";
}
.modal-dialog-pro-icon-mail-reply-all:before,
.modal-dialog-pro-icon-reply-all:before {
  content: "\f122";
}
.modal-dialog-pro-icon-star-half-empty:before,
.modal-dialog-pro-icon-star-half-full:before,
.modal-dialog-pro-icon-star-half-o:before {
  content: "\f123";
}
.modal-dialog-pro-icon-location-arrow:before {
  content: "\f124";
}
.modal-dialog-pro-icon-crop:before {
  content: "\f125";
}
.modal-dialog-pro-icon-code-fork:before {
  content: "\f126";
}
.modal-dialog-pro-icon-unlink:before,
.modal-dialog-pro-icon-chain-broken:before {
  content: "\f127";
}
.modal-dialog-pro-icon-question:before {
  content: "\f128";
}
.modal-dialog-pro-icon-info:before {
  content: "\f129";
}
.modal-dialog-pro-icon-exclamation:before {
  content: "\f12a";
}
.modal-dialog-pro-icon-superscript:before {
  content: "\f12b";
}
.modal-dialog-pro-icon-subscript:before {
  content: "\f12c";
}
.modal-dialog-pro-icon-eraser:before {
  content: "\f12d";
}
.modal-dialog-pro-icon-puzzle-piece:before {
  content: "\f12e";
}
.modal-dialog-pro-icon-microphone:before {
  content: "\f130";
}
.modal-dialog-pro-icon-microphone-slash:before {
  content: "\f131";
}
.modal-dialog-pro-icon-shield:before {
  content: "\f132";
}
.modal-dialog-pro-icon-calendar-o:before {
  content: "\f133";
}
.modal-dialog-pro-icon-fire-extinguisher:before {
  content: "\f134";
}
.modal-dialog-pro-icon-rocket:before {
  content: "\f135";
}
.modal-dialog-pro-icon-maxcdn:before {
  content: "\f136";
}
.modal-dialog-pro-icon-chevron-circle-left:before {
  content: "\f137";
}
.modal-dialog-pro-icon-chevron-circle-right:before {
  content: "\f138";
}
.modal-dialog-pro-icon-chevron-circle-up:before {
  content: "\f139";
}
.modal-dialog-pro-icon-chevron-circle-down:before {
  content: "\f13a";
}
.modal-dialog-pro-icon-html5:before {
  content: "\f13b";
}
.modal-dialog-pro-icon-css3:before {
  content: "\f13c";
}
.modal-dialog-pro-icon-anchor:before {
  content: "\f13d";
}
.modal-dialog-pro-icon-unlock-alt:before {
  content: "\f13e";
}
.modal-dialog-pro-icon-bullseye:before {
  content: "\f140";
}
.modal-dialog-pro-icon-ellipsis-h:before {
  content: "\f141";
}
.modal-dialog-pro-icon-ellipsis-v:before {
  content: "\f142";
}
.modal-dialog-pro-icon-rss-square:before {
  content: "\f143";
}
.modal-dialog-pro-icon-play-circle:before {
  content: "\f144";
}
.modal-dialog-pro-icon-ticket:before {
  content: "\f145";
}
.modal-dialog-pro-icon-minus-square:before {
  content: "\f146";
}
.modal-dialog-pro-icon-minus-square-o:before {
  content: "\f147";
}
.modal-dialog-pro-icon-level-up:before {
  content: "\f148";
}
.modal-dialog-pro-icon-level-down:before {
  content: "\f149";
}
.modal-dialog-pro-icon-check-square:before {
  content: "\f14a";
}
.modal-dialog-pro-icon-pencil-square:before {
  content: "\f14b";
}
.modal-dialog-pro-icon-external-link-square:before {
  content: "\f14c";
}
.modal-dialog-pro-icon-share-square:before {
  content: "\f14d";
}
.modal-dialog-pro-icon-compass:before {
  content: "\f14e";
}
.modal-dialog-pro-icon-toggle-down:before,
.modal-dialog-pro-icon-caret-square-o-down:before {
  content: "\f150";
}
.modal-dialog-pro-icon-toggle-up:before,
.modal-dialog-pro-icon-caret-square-o-up:before {
  content: "\f151";
}
.modal-dialog-pro-icon-toggle-right:before,
.modal-dialog-pro-icon-caret-square-o-right:before {
  content: "\f152";
}
.modal-dialog-pro-icon-euro:before,
.modal-dialog-pro-icon-eur:before {
  content: "\f153";
}
.modal-dialog-pro-icon-gbp:before {
  content: "\f154";
}
.modal-dialog-pro-icon-dollar:before,
.modal-dialog-pro-icon-usd:before {
  content: "\f155";
}
.modal-dialog-pro-icon-rupee:before,
.modal-dialog-pro-icon-inr:before {
  content: "\f156";
}
.modal-dialog-pro-icon-cny:before,
.modal-dialog-pro-icon-rmb:before,
.modal-dialog-pro-icon-yen:before,
.modal-dialog-pro-icon-jpy:before {
  content: "\f157";
}
.modal-dialog-pro-icon-ruble:before,
.modal-dialog-pro-icon-rouble:before,
.modal-dialog-pro-icon-rub:before {
  content: "\f158";
}
.modal-dialog-pro-icon-won:before,
.modal-dialog-pro-icon-krw:before {
  content: "\f159";
}
.modal-dialog-pro-icon-bitcoin:before,
.modal-dialog-pro-icon-btc:before {
  content: "\f15a";
}
.modal-dialog-pro-icon-file:before {
  content: "\f15b";
}
.modal-dialog-pro-icon-file-text:before {
  content: "\f15c";
}
.modal-dialog-pro-icon-sort-alpha-asc:before {
  content: "\f15d";
}
.modal-dialog-pro-icon-sort-alpha-desc:before {
  content: "\f15e";
}
.modal-dialog-pro-icon-sort-amount-asc:before {
  content: "\f160";
}
.modal-dialog-pro-icon-sort-amount-desc:before {
  content: "\f161";
}
.modal-dialog-pro-icon-sort-numeric-asc:before {
  content: "\f162";
}
.modal-dialog-pro-icon-sort-numeric-desc:before {
  content: "\f163";
}
.modal-dialog-pro-icon-thumbs-up:before {
  content: "\f164";
}
.modal-dialog-pro-icon-thumbs-down:before {
  content: "\f165";
}
.modal-dialog-pro-icon-youtube-square:before {
  content: "\f166";
}
.modal-dialog-pro-icon-youtube:before {
  content: "\f167";
}
.modal-dialog-pro-icon-xing:before {
  content: "\f168";
}
.modal-dialog-pro-icon-xing-square:before {
  content: "\f169";
}
.modal-dialog-pro-icon-youtube-play:before {
  content: "\f16a";
}
.modal-dialog-pro-icon-dropbox:before {
  content: "\f16b";
}
.modal-dialog-pro-icon-stack-overflow:before {
  content: "\f16c";
}
.modal-dialog-pro-icon-instagram:before {
  content: "\f16d";
}
.modal-dialog-pro-icon-flickr:before {
  content: "\f16e";
}
.modal-dialog-pro-icon-adn:before {
  content: "\f170";
}
.modal-dialog-pro-icon-bitbucket:before {
  content: "\f171";
}
.modal-dialog-pro-icon-bitbucket-square:before {
  content: "\f172";
}
.modal-dialog-pro-icon-tumblr:before {
  content: "\f173";
}
.modal-dialog-pro-icon-tumblr-square:before {
  content: "\f174";
}
.modal-dialog-pro-icon-long-arrow-down:before {
  content: "\f175";
}
.modal-dialog-pro-icon-long-arrow-up:before {
  content: "\f176";
}
.modal-dialog-pro-icon-long-arrow-left:before {
  content: "\f177";
}
.modal-dialog-pro-icon-long-arrow-right:before {
  content: "\f178";
}
.modal-dialog-pro-icon-apple:before {
  content: "\f179";
}
.modal-dialog-pro-icon-windows:before {
  content: "\f17a";
}
.modal-dialog-pro-icon-android:before {
  content: "\f17b";
}
.modal-dialog-pro-icon-linux:before {
  content: "\f17c";
}
.modal-dialog-pro-icon-dribbble:before {
  content: "\f17d";
}
.modal-dialog-pro-icon-skype:before {
  content: "\f17e";
}
.modal-dialog-pro-icon-foursquare:before {
  content: "\f180";
}
.modal-dialog-pro-icon-trello:before {
  content: "\f181";
}
.modal-dialog-pro-icon-female:before {
  content: "\f182";
}
.modal-dialog-pro-icon-male:before {
  content: "\f183";
}
.modal-dialog-pro-icon-gittip:before,
.modal-dialog-pro-icon-gratipay:before {
  content: "\f184";
}
.modal-dialog-pro-icon-sun-o:before {
  content: "\f185";
}
.modal-dialog-pro-icon-moon-o:before {
  content: "\f186";
}
.modal-dialog-pro-icon-archive:before {
  content: "\f187";
}
.modal-dialog-pro-icon-bug:before {
  content: "\f188";
}
.modal-dialog-pro-icon-vk:before {
  content: "\f189";
}
.modal-dialog-pro-icon-weibo:before {
  content: "\f18a";
}
.modal-dialog-pro-icon-renren:before {
  content: "\f18b";
}
.modal-dialog-pro-icon-pagelines:before {
  content: "\f18c";
}
.modal-dialog-pro-icon-stack-exchange:before {
  content: "\f18d";
}
.modal-dialog-pro-icon-arrow-circle-o-right:before {
  content: "\f18e";
}
.modal-dialog-pro-icon-arrow-circle-o-left:before {
  content: "\f190";
}
.modal-dialog-pro-icon-toggle-left:before,
.modal-dialog-pro-icon-caret-square-o-left:before {
  content: "\f191";
}
.modal-dialog-pro-icon-dot-circle-o:before {
  content: "\f192";
}
.modal-dialog-pro-icon-wheelchair:before {
  content: "\f193";
}
.modal-dialog-pro-icon-vimeo-square:before {
  content: "\f194";
}
.modal-dialog-pro-icon-turkish-lira:before,
.modal-dialog-pro-icon-try:before {
  content: "\f195";
}
.modal-dialog-pro-icon-plus-square-o:before {
  content: "\f196";
}
.modal-dialog-pro-icon-space-shuttle:before {
  content: "\f197";
}
.modal-dialog-pro-icon-slack:before {
  content: "\f198";
}
.modal-dialog-pro-icon-envelope-square:before {
  content: "\f199";
}
.modal-dialog-pro-icon-wordpress:before {
  content: "\f19a";
}
.modal-dialog-pro-icon-openid:before {
  content: "\f19b";
}
.modal-dialog-pro-icon-institution:before,
.modal-dialog-pro-icon-bank:before,
.modal-dialog-pro-icon-university:before {
  content: "\f19c";
}
.modal-dialog-pro-icon-mortar-board:before,
.modal-dialog-pro-icon-graduation-cap:before {
  content: "\f19d";
}
.modal-dialog-pro-icon-yahoo:before {
  content: "\f19e";
}
.modal-dialog-pro-icon-google:before {
  content: "\f1a0";
}
.modal-dialog-pro-icon-reddit:before {
  content: "\f1a1";
}
.modal-dialog-pro-icon-reddit-square:before {
  content: "\f1a2";
}
.modal-dialog-pro-icon-stumbleupon-circle:before {
  content: "\f1a3";
}
.modal-dialog-pro-icon-stumbleupon:before {
  content: "\f1a4";
}
.modal-dialog-pro-icon-delicious:before {
  content: "\f1a5";
}
.modal-dialog-pro-icon-digg:before {
  content: "\f1a6";
}
.modal-dialog-pro-icon-pied-piper:before {
  content: "\f1a7";
}
.modal-dialog-pro-icon-pied-piper-alt:before {
  content: "\f1a8";
}
.modal-dialog-pro-icon-drupal:before {
  content: "\f1a9";
}
.modal-dialog-pro-icon-joomla:before {
  content: "\f1aa";
}
.modal-dialog-pro-icon-language:before {
  content: "\f1ab";
}
.modal-dialog-pro-icon-fax:before {
  content: "\f1ac";
}
.modal-dialog-pro-icon-building:before {
  content: "\f1ad";
}
.modal-dialog-pro-icon-child:before {
  content: "\f1ae";
}
.modal-dialog-pro-icon-paw:before {
  content: "\f1b0";
}
.modal-dialog-pro-icon-spoon:before {
  content: "\f1b1";
}
.modal-dialog-pro-icon-cube:before {
  content: "\f1b2";
}
.modal-dialog-pro-icon-cubes:before {
  content: "\f1b3";
}
.modal-dialog-pro-icon-behance:before {
  content: "\f1b4";
}
.modal-dialog-pro-icon-behance-square:before {
  content: "\f1b5";
}
.modal-dialog-pro-icon-steam:before {
  content: "\f1b6";
}
.modal-dialog-pro-icon-steam-square:before {
  content: "\f1b7";
}
.modal-dialog-pro-icon-recycle:before {
  content: "\f1b8";
}
.modal-dialog-pro-icon-automobile:before,
.modal-dialog-pro-icon-car:before {
  content: "\f1b9";
}
.modal-dialog-pro-icon-cab:before,
.modal-dialog-pro-icon-taxi:before {
  content: "\f1ba";
}
.modal-dialog-pro-icon-tree:before {
  content: "\f1bb";
}
.modal-dialog-pro-icon-spotify:before {
  content: "\f1bc";
}
.modal-dialog-pro-icon-deviantart:before {
  content: "\f1bd";
}
.modal-dialog-pro-icon-soundcloud:before {
  content: "\f1be";
}
.modal-dialog-pro-icon-database:before {
  content: "\f1c0";
}
.modal-dialog-pro-icon-file-pdf-o:before {
  content: "\f1c1";
}
.modal-dialog-pro-icon-file-word-o:before {
  content: "\f1c2";
}
.modal-dialog-pro-icon-file-excel-o:before {
  content: "\f1c3";
}
.modal-dialog-pro-icon-file-powerpoint-o:before {
  content: "\f1c4";
}
.modal-dialog-pro-icon-file-photo-o:before,
.modal-dialog-pro-icon-file-picture-o:before,
.modal-dialog-pro-icon-file-image-o:before {
  content: "\f1c5";
}
.modal-dialog-pro-icon-file-zip-o:before,
.modal-dialog-pro-icon-file-archive-o:before {
  content: "\f1c6";
}
.modal-dialog-pro-icon-file-sound-o:before,
.modal-dialog-pro-icon-file-audio-o:before {
  content: "\f1c7";
}
.modal-dialog-pro-icon-file-movie-o:before,
.modal-dialog-pro-icon-file-video-o:before {
  content: "\f1c8";
}
.modal-dialog-pro-icon-file-code-o:before {
  content: "\f1c9";
}
.modal-dialog-pro-icon-vine:before {
  content: "\f1ca";
}
.modal-dialog-pro-icon-codepen:before {
  content: "\f1cb";
}
.modal-dialog-pro-icon-jsfiddle:before {
  content: "\f1cc";
}
.modal-dialog-pro-icon-life-bouy:before,
.modal-dialog-pro-icon-life-buoy:before,
.modal-dialog-pro-icon-life-saver:before,
.modal-dialog-pro-icon-support:before,
.modal-dialog-pro-icon-life-ring:before {
  content: "\f1cd";
}
.modal-dialog-pro-icon-circle-o-notch:before {
  content: "\f1ce";
}
.modal-dialog-pro-icon-ra:before,
.modal-dialog-pro-icon-rebel:before {
  content: "\f1d0";
}
.modal-dialog-pro-icon-ge:before,
.modal-dialog-pro-icon-empire:before {
  content: "\f1d1";
}
.modal-dialog-pro-icon-git-square:before {
  content: "\f1d2";
}
.modal-dialog-pro-icon-git:before {
  content: "\f1d3";
}
.modal-dialog-pro-icon-hacker-news:before {
  content: "\f1d4";
}
.modal-dialog-pro-icon-tencent-weibo:before {
  content: "\f1d5";
}
.modal-dialog-pro-icon-qq:before {
  content: "\f1d6";
}
.modal-dialog-pro-icon-wechat:before,
.modal-dialog-pro-icon-weixin:before {
  content: "\f1d7";
}
.modal-dialog-pro-icon-send:before,
.modal-dialog-pro-icon-paper-plane:before {
  content: "\f1d8";
}
.modal-dialog-pro-icon-send-o:before,
.modal-dialog-pro-icon-paper-plane-o:before {
  content: "\f1d9";
}
.modal-dialog-pro-icon-history:before {
  content: "\f1da";
}
.modal-dialog-pro-icon-genderless:before,
.modal-dialog-pro-icon-circle-thin:before {
  content: "\f1db";
}
.modal-dialog-pro-icon-header:before {
  content: "\f1dc";
}
.modal-dialog-pro-icon-paragraph:before {
  content: "\f1dd";
}
.modal-dialog-pro-icon-sliders:before {
  content: "\f1de";
}
.modal-dialog-pro-icon-share-alt:before {
  content: "\f1e0";
}
.modal-dialog-pro-icon-share-alt-square:before {
  content: "\f1e1";
}
.modal-dialog-pro-icon-bomb:before {
  content: "\f1e2";
}
.modal-dialog-pro-icon-soccer-ball-o:before,
.modal-dialog-pro-icon-futbol-o:before {
  content: "\f1e3";
}
.modal-dialog-pro-icon-tty:before {
  content: "\f1e4";
}
.modal-dialog-pro-icon-binoculars:before {
  content: "\f1e5";
}
.modal-dialog-pro-icon-plug:before {
  content: "\f1e6";
}
.modal-dialog-pro-icon-slideshare:before {
  content: "\f1e7";
}
.modal-dialog-pro-icon-twitch:before {
  content: "\f1e8";
}
.modal-dialog-pro-icon-yelp:before {
  content: "\f1e9";
}
.modal-dialog-pro-icon-newspaper-o:before {
  content: "\f1ea";
}
.modal-dialog-pro-icon-wifi:before {
  content: "\f1eb";
}
.modal-dialog-pro-icon-calculator:before {
  content: "\f1ec";
}
.modal-dialog-pro-icon-paypal:before {
  content: "\f1ed";
}
.modal-dialog-pro-icon-google-wallet:before {
  content: "\f1ee";
}
.modal-dialog-pro-icon-cc-visa:before {
  content: "\f1f0";
}
.modal-dialog-pro-icon-cc-mastercard:before {
  content: "\f1f1";
}
.modal-dialog-pro-icon-cc-discover:before {
  content: "\f1f2";
}
.modal-dialog-pro-icon-cc-amex:before {
  content: "\f1f3";
}
.modal-dialog-pro-icon-cc-paypal:before {
  content: "\f1f4";
}
.modal-dialog-pro-icon-cc-stripe:before {
  content: "\f1f5";
}
.modal-dialog-pro-icon-bell-slash:before {
  content: "\f1f6";
}
.modal-dialog-pro-icon-bell-slash-o:before {
  content: "\f1f7";
}
.modal-dialog-pro-icon-trash:before {
  content: "\f1f8";
}
.modal-dialog-pro-icon-copyright:before {
  content: "\f1f9";
}
.modal-dialog-pro-icon-at:before {
  content: "\f1fa";
}
.modal-dialog-pro-icon-eyedropper:before {
  content: "\f1fb";
}
.modal-dialog-pro-icon-paint-brush:before {
  content: "\f1fc";
}
.modal-dialog-pro-icon-birthday-cake:before {
  content: "\f1fd";
}
.modal-dialog-pro-icon-area-chart:before {
  content: "\f1fe";
}
.modal-dialog-pro-icon-pie-chart:before {
  content: "\f200";
}
.modal-dialog-pro-icon-line-chart:before {
  content: "\f201";
}
.modal-dialog-pro-icon-lastfm:before {
  content: "\f202";
}
.modal-dialog-pro-icon-lastfm-square:before {
  content: "\f203";
}
.modal-dialog-pro-icon-toggle-off:before {
  content: "\f204";
}
.modal-dialog-pro-icon-toggle-on:before {
  content: "\f205";
}
.modal-dialog-pro-icon-bicycle:before {
  content: "\f206";
}
.modal-dialog-pro-icon-bus:before {
  content: "\f207";
}
.modal-dialog-pro-icon-ioxhost:before {
  content: "\f208";
}
.modal-dialog-pro-icon-angellist:before {
  content: "\f209";
}
.modal-dialog-pro-icon-cc:before {
  content: "\f20a";
}
.modal-dialog-pro-icon-shekel:before,
.modal-dialog-pro-icon-sheqel:before,
.modal-dialog-pro-icon-ils:before {
  content: "\f20b";
}
.modal-dialog-pro-icon-meanpath:before {
  content: "\f20c";
}
.modal-dialog-pro-icon-buysellads:before {
  content: "\f20d";
}
.modal-dialog-pro-icon-connectdevelop:before {
  content: "\f20e";
}
.modal-dialog-pro-icon-dashcube:before {
  content: "\f210";
}
.modal-dialog-pro-icon-forumbee:before {
  content: "\f211";
}
.modal-dialog-pro-icon-leanpub:before {
  content: "\f212";
}
.modal-dialog-pro-icon-sellsy:before {
  content: "\f213";
}
.modal-dialog-pro-icon-shirtsinbulk:before {
  content: "\f214";
}
.modal-dialog-pro-icon-simplybuilt:before {
  content: "\f215";
}
.modal-dialog-pro-icon-skyatlas:before {
  content: "\f216";
}
.modal-dialog-pro-icon-cart-plus:before {
  content: "\f217";
}
.modal-dialog-pro-icon-cart-arrow-down:before {
  content: "\f218";
}
.modal-dialog-pro-icon-diamond:before {
  content: "\f219";
}
.modal-dialog-pro-icon-ship:before {
  content: "\f21a";
}
.modal-dialog-pro-icon-user-secret:before {
  content: "\f21b";
}
.modal-dialog-pro-icon-motorcycle:before {
  content: "\f21c";
}
.modal-dialog-pro-icon-street-view:before {
  content: "\f21d";
}
.modal-dialog-pro-icon-heartbeat:before {
  content: "\f21e";
}
.modal-dialog-pro-icon-venus:before {
  content: "\f221";
}
.modal-dialog-pro-icon-mars:before {
  content: "\f222";
}
.modal-dialog-pro-icon-mercury:before {
  content: "\f223";
}
.modal-dialog-pro-icon-transgender:before {
  content: "\f224";
}
.modal-dialog-pro-icon-transgender-alt:before {
  content: "\f225";
}
.modal-dialog-pro-icon-venus-double:before {
  content: "\f226";
}
.modal-dialog-pro-icon-mars-double:before {
  content: "\f227";
}
.modal-dialog-pro-icon-venus-mars:before {
  content: "\f228";
}
.modal-dialog-pro-icon-mars-stroke:before {
  content: "\f229";
}
.modal-dialog-pro-icon-mars-stroke-v:before {
  content: "\f22a";
}
.modal-dialog-pro-icon-mars-stroke-h:before {
  content: "\f22b";
}
.modal-dialog-pro-icon-neuter:before {
  content: "\f22c";
}
.modal-dialog-pro-icon-facebook-official:before {
  content: "\f230";
}
.modal-dialog-pro-icon-pinterest-p:before {
  content: "\f231";
}
.modal-dialog-pro-icon-whatsapp:before {
  content: "\f232";
}
.modal-dialog-pro-icon-server:before {
  content: "\f233";
}
.modal-dialog-pro-icon-user-plus:before {
  content: "\f234";
}
.modal-dialog-pro-icon-user-times:before {
  content: "\f235";
}
.modal-dialog-pro-icon-hotel:before,
.modal-dialog-pro-icon-bed:before {
  content: "\f236";
}
.modal-dialog-pro-icon-viacoin:before {
  content: "\f237";
}
.modal-dialog-pro-icon-train:before {
  content: "\f238";
}
.modal-dialog-pro-icon-subway:before {
  content: "\f239";
}
.modal-dialog-pro-icon-medium-logo:before {
  content: "\f23a";
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.modal-dialog-pro-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}
/* Icon */
.modal-dialog-pro-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.modal-dialog-pro-close:hover,
.modal-dialog-pro-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* Modifier
 ========================================================================== */
.modal-dialog-pro-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #eeeeee;
  opacity: 1;
}
/* Hover */
.modal-dialog-pro-close-alt:hover,
.modal-dialog-pro-close-alt:focus {
  opacity: 1;
}
/* Icon */
.modal-dialog-pro-close-alt:after {
  opacity: 0.5;
}
.modal-dialog-pro-close-alt:hover:after,
.modal-dialog-pro-close-alt:focus:after {
  opacity: 0.8;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
.modal-dialog-pro-badge {
  display: inline-block;
  padding: 0 5px;
  background: #00a8e6;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
}
/*
 * Keep color when badge is a link
 */
a.modal-dialog-pro-badge:hover {
  color: #ffffff;
}
/* Modifier: `modal-dialog-pro-badge-notification`;
 ========================================================================== */
.modal-dialog-pro-badge-notification {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 18px;
  border-radius: 500px;
  font-size: 12px;
  line-height: 18px;
}
/* Color modifier
 ========================================================================== */
/*
 * Modifier: `modal-dialog-pro-badge-success`
 */
.modal-dialog-pro-badge-success {
  background-color: #8cc14c;
}
/*
 * Modifier: `modal-dialog-pro-badge-warning`
 */
.modal-dialog-pro-badge-warning {
  background-color: #faa732;
}
/*
 * Modifier: `modal-dialog-pro-badge-danger`
 */
.modal-dialog-pro-badge-danger {
  background-color: #da314b;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.modal-dialog-pro-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
}
/*
 * Add margin if adjacent element
 */
* + .modal-dialog-pro-alert {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.modal-dialog-pro-alert h1,
.modal-dialog-pro-alert h2,
.modal-dialog-pro-alert h3,
.modal-dialog-pro-alert h4,
.modal-dialog-pro-alert h5,
.modal-dialog-pro-alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.modal-dialog-pro-alert > .modal-dialog-pro-close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.modal-dialog-pro-alert > .modal-dialog-pro-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `modal-dialog-pro-alert-success`
 ========================================================================== */
.modal-dialog-pro-alert-success {
  background: #f2fae3;
  color: #659f13;
}
/* Modifier: `modal-dialog-pro-alert-warning`
 ========================================================================== */
.modal-dialog-pro-alert-warning {
  background: #fffceb;
  color: #e28327;
}
/* Modifier: `modal-dialog-pro-alert-danger`
 ========================================================================== */
.modal-dialog-pro-alert-danger {
  background: #fff1f0;
  color: #d85030;
}
/* Modifier: `modal-dialog-pro-alert-large`
 ========================================================================== */
.modal-dialog-pro-alert-large {
  padding: 20px;
}
.modal-dialog-pro-alert-large > .modal-dialog-pro-close:first-child {
  margin: -10px -10px 0 0;
}
/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.modal-dialog-pro-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.modal-dialog-pro-thumbnail:hover,
a.modal-dialog-pro-thumbnail:focus {
  border-color: #aaaaaa;
  background-color: #ffffff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}
/* Caption
 ========================================================================== */
.modal-dialog-pro-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #444444;
}
/* Sizes
 ========================================================================== */
.modal-dialog-pro-thumbnail-mini {
  width: 150px;
}
.modal-dialog-pro-thumbnail-small {
  width: 200px;
}
.modal-dialog-pro-thumbnail-medium {
  width: 300px;
}
.modal-dialog-pro-thumbnail-large {
  width: 400px;
}
.modal-dialog-pro-thumbnail-expand,
.modal-dialog-pro-thumbnail-expand > img {
  width: 100%;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.modal-dialog-pro-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}
/* 6 for Safari */
.modal-dialog-pro-overlay.modal-dialog-pro-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
/*
 * Remove margin from content
 */
.modal-dialog-pro-overlay > :first-child {
  margin-bottom: 0;
}
/* Sub-object `modal-dialog-pro-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.modal-dialog-pro-overlay-panel {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 20px;
  color: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-overlay-panel > :last-child,
.modal-dialog-pro-overlay-panel.modal-dialog-pro-flex > * > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.modal-dialog-pro-overlay-panel h1,
.modal-dialog-pro-overlay-panel h2,
.modal-dialog-pro-overlay-panel h3,
.modal-dialog-pro-overlay-panel h4,
.modal-dialog-pro-overlay-panel h5,
.modal-dialog-pro-overlay-panel h6 {
  color: inherit;
}
.modal-dialog-pro-overlay-panel a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
.modal-dialog-pro-overlay-panel a[class*='modal-dialog-pro-icon-']:not(.modal-dialog-pro-icon-button) {
  color: inherit;
}
/* Sub-object `modal-dialog-pro-overlay-hover` and `modal-dialog-pro-overlay-active`
 ========================================================================== */
.modal-dialog-pro-overlay-hover:not(:hover):not(.modal-dialog-pro-hover) .modal-dialog-pro-overlay-panel:not(.modal-dialog-pro-ignore) {
  opacity: 0;
}
.modal-dialog-pro-overlay-active :not(.modal-dialog-pro-active) > .modal-dialog-pro-overlay-panel:not(.modal-dialog-pro-ignore) {
  opacity: 0;
}
/* Modifier `modal-dialog-pro-overlay-background`
 ========================================================================== */
.modal-dialog-pro-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}
/* Modifier `modal-dialog-pro-overlay-image`
 ========================================================================== */
/*
 * Reset panel
 */
.modal-dialog-pro-overlay-image {
  padding: 0;
}
/* Position modifiers
 ========================================================================== */
.modal-dialog-pro-overlay-top {
  bottom: auto;
}
.modal-dialog-pro-overlay-bottom {
  top: auto;
}
.modal-dialog-pro-overlay-left {
  right: auto;
}
.modal-dialog-pro-overlay-right {
  left: auto;
}
/* Sub-object `modal-dialog-pro-overlay-icon`
 ========================================================================== */
.modal-dialog-pro-overlay-icon:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff;
}
/* Transitions
 ========================================================================== */
.modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-grayscale,
.modal-dialog-pro-overlay-blur,
[class*='modal-dialog-pro-overlay-slide'] {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: opacity transform filter;
}
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-active [class*='modal-dialog-pro-overlay-slide'] {
  transition-duration: 0.8s;
}
/*
 * Fade
 */
.modal-dialog-pro-overlay-fade {
  opacity: 0.7;
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-fade {
  opacity: 1;
}
/*
 * Scale
 */
.modal-dialog-pro-overlay-scale {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*
 * Spin
 */
.modal-dialog-pro-overlay-spin {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-spin {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
/*
 * Grayscale
 */
.modal-dialog-pro-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-grayscale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/*
 * Slide
 */
[class*='modal-dialog-pro-overlay-slide'] {
  opacity: 0;
}
/* Top */
.modal-dialog-pro-overlay-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
/* Bottom */
.modal-dialog-pro-overlay-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
/* Left */
.modal-dialog-pro-overlay-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/* Right */
.modal-dialog-pro-overlay-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Hover */
.modal-dialog-pro-overlay-hover:hover [class*='modal-dialog-pro-overlay-slide'],
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > [class*='modal-dialog-pro-overlay-slide'] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.modal-dialog-pro-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `modal-dialog-pro-hover` to support touch devices
 * 2. Use optional `modal-dialog-pro-overlay-toggle` to trigger the overlay earlier
 */
.modal-dialog-pro-overlay:hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay.modal-dialog-pro-hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay-toggle:hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay-toggle.modal-dialog-pro-hover .modal-dialog-pro-overlay-area {
  opacity: 1;
}
/*
 * Icon
 */
.modal-dialog-pro-overlay-area:empty:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff;
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.modal-dialog-pro-overlay-area:not(:empty) {
  font-size: 0.001px;
}
/*
 * 1. Needed for vertical alignment
 */
.modal-dialog-pro-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.modal-dialog-pro-overlay-area-content {
  /* 1 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-overlay-area-content > :last-child {
  margin-bottom: 0;
}
/*
 * Links in overlay area
 */
.modal-dialog-pro-overlay-area-content a:not([class]),
.modal-dialog-pro-overlay-area-content a:not([class]):hover {
  color: inherit;
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.modal-dialog-pro-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `modal-dialog-pro-hover` to support touch devices
 * 2. Use optional `modal-dialog-pro-overlay-toggle` to trigger the overlay earlier
 */
.modal-dialog-pro-overlay:hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay.modal-dialog-pro-hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay-toggle:hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay-toggle.modal-dialog-pro-hover .modal-dialog-pro-overlay-caption {
  opacity: 1;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='modal-dialog-pro-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* Hide animated element if scrollspy is used */
@media screen {
  [data-modal-dialog-pro-scrollspy*='modal-dialog-pro-animation-']:not([data-modal-dialog-pro-scrollspy*='target']) {
    opacity: 0;
  }
}
/*
 * Fade
 * Higher specificity (!important) needed because of reverse modifier
 */
.modal-dialog-pro-animation-fade {
  -webkit-animation-name: modal-dialog-pro-fade;
  animation-name: modal-dialog-pro-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
/*
 * Fade with scale
 */
.modal-dialog-pro-animation-scale-up {
  -webkit-animation-name: modal-dialog-pro-fade-scale-02;
  animation-name: modal-dialog-pro-fade-scale-02;
}
.modal-dialog-pro-animation-scale-down {
  -webkit-animation-name: modal-dialog-pro-fade-scale-18;
  animation-name: modal-dialog-pro-fade-scale-18;
}
/*
 * Fade with slide
 */
.modal-dialog-pro-animation-slide-top {
  -webkit-animation-name: modal-dialog-pro-fade-top;
  animation-name: modal-dialog-pro-fade-top;
}
.modal-dialog-pro-animation-slide-bottom {
  -webkit-animation-name: modal-dialog-pro-fade-bottom;
  animation-name: modal-dialog-pro-fade-bottom;
}
.modal-dialog-pro-animation-slide-left {
  -webkit-animation-name: modal-dialog-pro-fade-left;
  animation-name: modal-dialog-pro-fade-left;
}
.modal-dialog-pro-animation-slide-right {
  -webkit-animation-name: modal-dialog-pro-fade-right;
  animation-name: modal-dialog-pro-fade-right;
}
/*
 * Scale
 */
.modal-dialog-pro-animation-scale {
  -webkit-animation-name: modal-dialog-pro-scale-12;
  animation-name: modal-dialog-pro-scale-12;
}
/*
 * Shake
 */
.modal-dialog-pro-animation-shake {
  -webkit-animation-name: modal-dialog-pro-shake;
  animation-name: modal-dialog-pro-shake;
}
/* Direction modifiers
 ========================================================================== */
.modal-dialog-pro-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Duration modifiers
========================================================================== */
.modal-dialog-pro-animation-15 {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
/* Origin modifiers
========================================================================== */
.modal-dialog-pro-animation-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.modal-dialog-pro-animation-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.modal-dialog-pro-animation-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.modal-dialog-pro-animation-middle-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.modal-dialog-pro-animation-middle-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.modal-dialog-pro-animation-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.modal-dialog-pro-animation-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.modal-dialog-pro-animation-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
/* Sub-object: `modal-dialog-pro-animation-hover`
========================================================================== */
/*
 * Enable animation only on hover
 * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
 */
.modal-dialog-pro-animation-hover:not(:hover),
.modal-dialog-pro-animation-hover:not(:hover) [class*='modal-dialog-pro-animation-'],
.modal-dialog-pro-touch .modal-dialog-pro-animation-hover:not(.modal-dialog-pro-hover),
.modal-dialog-pro-touch .modal-dialog-pro-animation-hover:not(.modal-dialog-pro-hover) [class*='modal-dialog-pro-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-dialog-pro-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Keyframes: Fade with slide
 ========================================================================== */
/*
 * Top
 */
@-webkit-keyframes modal-dialog-pro-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom
 */
@-webkit-keyframes modal-dialog-pro-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Left
 */
@-webkit-keyframes modal-dialog-pro-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes modal-dialog-pro-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.5
 * Used by slideshow component
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-15 {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.8
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */
@-webkit-keyframes modal-dialog-pro-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes modal-dialog-pro-slide-right {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Left third
 */
@-webkit-keyframes modal-dialog-pro-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-left-33 {
  0% {
    transform: translateX(33%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right third
 */
@-webkit-keyframes modal-dialog-pro-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-right-33 {
  0% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Keyframes: Scale
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-scale-12 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes modal-dialog-pro-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Keyframes: Shake
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes modal-dialog-pro-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */
@-webkit-keyframes modal-dialog-pro-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-slide-top-fixed {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom fixed
 */
@-webkit-keyframes modal-dialog-pro-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-slide-bottom-fixed {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `modal-dialog-pro-dropdown-justify`
 * 4. Set style
 * 5. Reset button group whitespace hack
 */
.modal-dialog-pro-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1020;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 4 */
  width: 200px;
  margin-top: 5px;
  padding: 15px;
  background: #f5f5f5;
  color: #444444;
  /* 5 */
  font-size: 1rem;
  vertical-align: top;
}
/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.modal-dialog-pro-open > .modal-dialog-pro-dropdown {
  /* 1 */
  display: block;
  /* 2 */
  -webkit-animation: modal-dialog-pro-fade 0.2s ease-in-out;
  animation: modal-dialog-pro-fade 0.2s ease-in-out;
  /* 3 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Alignment modifiers
 ========================================================================== */
/*
 * Modifier `modal-dialog-pro-dropdown-flip`
 */
.modal-dialog-pro-dropdown-flip {
  left: auto;
  right: 0;
}
/*
 * Modifier `modal-dialog-pro-dropdown-up`
 */
.modal-dialog-pro-dropdown-up {
  top: auto;
  bottom: 100%;
  margin-top: auto;
  margin-bottom: 5px;
}
/* Nav in dropdown
 ========================================================================== */
.modal-dialog-pro-dropdown .modal-dialog-pro-nav {
  margin: 0 -15px;
}
/* Grid and panel in dropdown
 ========================================================================== */
/*
* Vertical gutter
*/
/*
 * Grid
 * Higher specificity to override large gutter
 */
.modal-dialog-pro-grid .modal-dialog-pro-dropdown-grid + .modal-dialog-pro-dropdown-grid {
  margin-top: 15px;
}
/* Panels */
.modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 15px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /*
     * Horizontal gutter
     */
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*
     * Column divider
     */
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
  /*
     * Width multiplier for dropdown columns
     */
  .modal-dialog-pro-dropdown-width-2:not(.modal-dialog-pro-dropdown-stack) {
    width: 400px;
  }
  .modal-dialog-pro-dropdown-width-3:not(.modal-dialog-pro-dropdown-stack) {
    width: 600px;
  }
  .modal-dialog-pro-dropdown-width-4:not(.modal-dialog-pro-dropdown-stack) {
    width: 800px;
  }
  .modal-dialog-pro-dropdown-width-5:not(.modal-dialog-pro-dropdown-stack) {
    width: 1000px;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Stack columns and take full width
     */
  .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
    width: 100%;
  }
  /*
     * Vertical gutter
     */
  .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
    margin-top: 15px;
  }
}
/*
* Stack grid columns
*/
.modal-dialog-pro-dropdown-stack > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
  width: 100%;
}
.modal-dialog-pro-dropdown-stack > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
  margin-top: 15px;
}
/* Modifier `modal-dialog-pro-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.modal-dialog-pro-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}
/*
 * Nav in dropdown
 */
.modal-dialog-pro-dropdown-small .modal-dialog-pro-nav {
  margin: 0 -5px;
}
/* Modifier: `modal-dialog-pro-dropdown-navbar`
 ========================================================================== */
.modal-dialog-pro-dropdown-navbar {
  margin-top: 0;
  background: #f5f5f5;
  color: #444444;
}
.modal-dialog-pro-open > .modal-dialog-pro-dropdown-navbar {
  -webkit-animation: modal-dialog-pro-slide-top-fixed 0.2s ease-in-out;
  animation: modal-dialog-pro-slide-top-fixed 0.2s ease-in-out;
}
/* Modifier `modal-dialog-pro-dropdown-scrollable`
 ========================================================================== */
/*
 * Usefull for long lists
 */
.modal-dialog-pro-dropdown-scrollable {
  overflow-y: auto;
  max-height: 200px;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.modal-dialog-pro-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.6);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/*
 * Open state
 */
.modal-dialog-pro-modal.modal-dialog-pro-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.modal-dialog-pro-modal-page,
.modal-dialog-pro-modal-page body {
  /*overflow: hidden;*/
}
/* Sub-object: `modal-dialog-pro-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.modal-dialog-pro-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #ffffff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .modal-dialog-pro-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.modal-dialog-pro-open .modal-dialog-pro-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-modal-dialog > :not([class*='modal-dialog-pro-modal-']):last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.modal-dialog-pro-modal-dialog > .modal-dialog-pro-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.modal-dialog-pro-modal-dialog > .modal-dialog-pro-close:first-child + :not([class*='modal-dialog-pro-modal-']) {
  margin-top: 0;
}
/* Modifier: `modal-dialog-pro-modal-dialog-lightbox`
 ========================================================================== */
.modal-dialog-pro-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
}
/*
 * Close button
 */
.modal-dialog-pro-modal-dialog-lightbox > .modal-dialog-pro-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .modal-dialog-pro-modal-dialog-lightbox > .modal-dialog-pro-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `modal-dialog-pro-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `modal-dialog-pro-modal-header` and `modal-dialog-pro-modal-footer`
 ========================================================================== */
.modal-dialog-pro-modal-header {
  margin-bottom: 15px;
}
.modal-dialog-pro-modal-footer {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-modal-header > :last-child,
.modal-dialog-pro-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Sub-Object: `modal-dialog-pro-modal-caption`
 ========================================================================== */
.modal-dialog-pro-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Sub-Object: `modal-dialog-pro-modal-spinner`
 ========================================================================== */
.modal-dialog-pro-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.modal-dialog-pro-modal-spinner:after {
  content: "\f110";
  font-family: FontAwesome;
  -webkit-animation: modal-dialog-pro-rotate 2s infinite linear;
  animation: modal-dialog-pro-rotate 2s infinite linear;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.modal-dialog-pro-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* 3 */
  touch-action: none;
  /* 4 */
  background: rgba(0, 0, 0, 0.1);
}
.modal-dialog-pro-offcanvas.modal-dialog-pro-active {
  display: block;
}
/* Sub-object `modal-dialog-pro-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 */
.modal-dialog-pro-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
}
/* Sub-object `modal-dialog-pro-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deavtivate scroll chaining in IE11
 */
.modal-dialog-pro-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 270px;
  max-width: 100%;
  background: #333333;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}
.modal-dialog-pro-offcanvas.modal-dialog-pro-active .modal-dialog-pro-offcanvas-bar.modal-dialog-pro-offcanvas-bar-show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* Modifier `modal-dialog-pro-offcanvas-bar-flip`
 ========================================================================== */
.modal-dialog-pro-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Panel in offcanvas
 ========================================================================== */
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel {
  margin: 20px 15px;
  color: #777777;
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel-title {
  color: #cccccc;
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel a:not([class]) {
  color: #cccccc;
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel a:not([class]):hover {
  color: #ffffff;
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.modal-dialog-pro-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}
/*
 * Items
 */
.modal-dialog-pro-switcher > :not(.modal-dialog-pro-active) {
  display: none;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-text-small {
  font-size: 11px;
  line-height: 16px;
}
.modal-dialog-pro-text-large {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Weight modifiers
 ========================================================================== */
.modal-dialog-pro-text-bold {
  font-weight: bold;
}
/* Color modifiers
 ========================================================================== */
.modal-dialog-pro-text-muted {
  color: #999999 !important;
}
.modal-dialog-pro-text-primary {
  color: #2d7091 !important;
}
.modal-dialog-pro-text-success {
  color: #659f13 !important;
}
.modal-dialog-pro-text-warning {
  color: #e28327 !important;
}
.modal-dialog-pro-text-danger {
  color: #d85030 !important;
}
.modal-dialog-pro-text-contrast {
  color: #ffffff !important;
}
/* Alignment modifiers
 ========================================================================== */
.modal-dialog-pro-text-left {
  text-align: left !important;
}
.modal-dialog-pro-text-right {
  text-align: right !important;
}
.modal-dialog-pro-text-center {
  text-align: center !important;
}
.modal-dialog-pro-text-justify {
  text-align: justify !important;
}
.modal-dialog-pro-text-top {
  vertical-align: top !important;
}
.modal-dialog-pro-text-middle {
  vertical-align: middle !important;
}
.modal-dialog-pro-text-bottom {
  vertical-align: bottom !important;
}
/* Only tablets portrait and smaller */
@media (max-width: 959px) {
  .modal-dialog-pro-text-center-medium {
    text-align: center !important;
  }
  .modal-dialog-pro-text-left-medium {
    text-align: left !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .modal-dialog-pro-text-center-small {
    text-align: center !important;
  }
  .modal-dialog-pro-text-left-small {
    text-align: left !important;
  }
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.modal-dialog-pro-text-nowrap {
  white-space: nowrap;
}
/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.modal-dialog-pro-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*
 * Break strings if their length exceeds the width of their container
 */
.modal-dialog-pro-text-break {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.modal-dialog-pro-container {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 980px;
  padding: 0 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-container {
    max-width: 1200px;
    padding: 0 35px;
  }
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-container:before,
.modal-dialog-pro-container:after {
  content: "";
  display: table;
}
.modal-dialog-pro-container:after {
  clear: both;
}
/*
 * Center container
 */
.modal-dialog-pro-container-center {
  margin-left: auto;
  margin-right: auto;
}
/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.modal-dialog-pro-clearfix:before {
  content: "";
  display: table-cell;
}
.modal-dialog-pro-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*
 *  Create a new block formatting context
 */
.modal-dialog-pro-nbfc {
  overflow: hidden;
}
.modal-dialog-pro-nbfc-alt {
  display: table-cell;
  width: 10000px;
}
/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.modal-dialog-pro-float-left {
  float: left;
}
.modal-dialog-pro-float-right {
  float: right;
}
/* 1 */
[class*='modal-dialog-pro-float-'] {
  max-width: 100%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='modal-dialog-pro-align-'] {
  display: block;
  margin-bottom: 15px;
}
.modal-dialog-pro-align-left {
  margin-right: 15px;
  float: left;
}
.modal-dialog-pro-align-right {
  margin-left: 15px;
  float: right;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-align-medium-left {
    margin-right: 15px;
    margin-bottom: 15px;
    float: left;
  }
  .modal-dialog-pro-align-medium-right {
    margin-left: 15px;
    margin-bottom: 15px;
    float: right;
  }
}
.modal-dialog-pro-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-vertical-align {
  font-size: 0.001px;
}
/*
 *  The `modal-dialog-pro-vertical-align` container needs a specific height
 */
.modal-dialog-pro-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.modal-dialog-pro-vertical-align-middle,
.modal-dialog-pro-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}
.modal-dialog-pro-vertical-align-middle {
  vertical-align: middle;
}
.modal-dialog-pro-vertical-align-bottom {
  vertical-align: bottom;
}
/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*='modal-dialog-pro-height'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.modal-dialog-pro-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.modal-dialog-pro-height-viewport {
  height: 100vh;
  min-height: 600px;
}
/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.modal-dialog-pro-responsive-width,
.modal-dialog-pro-responsive-height {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `modal-dialog-pro-img-preserve img`
 */
.modal-dialog-pro-responsive-width {
  max-width: 100% !important;
  height: auto;
}
/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.modal-dialog-pro-responsive-height {
  max-height: 100%;
  width: auto;
}
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.modal-dialog-pro-margin {
  margin-bottom: 15px;
}
* + .modal-dialog-pro-margin {
  margin-top: 15px;
}
.modal-dialog-pro-margin-top {
  margin-top: 15px !important;
}
.modal-dialog-pro-margin-bottom {
  margin-bottom: 15px !important;
}
.modal-dialog-pro-margin-left {
  margin-left: 15px !important;
}
.modal-dialog-pro-margin-right {
  margin-right: 15px !important;
}
/*
 * Larger margins
 */
.modal-dialog-pro-margin-large {
  margin-bottom: 50px;
}
* + .modal-dialog-pro-margin-large {
  margin-top: 50px;
}
.modal-dialog-pro-margin-large-top {
  margin-top: 50px !important;
}
.modal-dialog-pro-margin-large-bottom {
  margin-bottom: 50px !important;
}
.modal-dialog-pro-margin-large-left {
  margin-left: 50px !important;
}
.modal-dialog-pro-margin-large-right {
  margin-right: 50px !important;
}
/*
 * Smaller margins
 */
.modal-dialog-pro-margin-small {
  margin-bottom: 5px;
}
* + .modal-dialog-pro-margin-small {
  margin-top: 5px;
}
.modal-dialog-pro-margin-small-top {
  margin-top: 5px !important;
}
.modal-dialog-pro-margin-small-bottom {
  margin-bottom: 5px !important;
}
.modal-dialog-pro-margin-small-left {
  margin-left: 5px !important;
}
.modal-dialog-pro-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.modal-dialog-pro-margin-remove {
  margin: 0 !important;
}
.modal-dialog-pro-margin-top-remove {
  margin-top: 0 !important;
}
.modal-dialog-pro-margin-bottom-remove {
  margin-bottom: 0 !important;
}
/* Padding
 ========================================================================== */
.modal-dialog-pro-padding-remove {
  padding: 0 !important;
}
.modal-dialog-pro-padding-top-remove {
  padding-top: 0 !important;
}
.modal-dialog-pro-padding-bottom-remove {
  padding-bottom: 0 !important;
}
.modal-dialog-pro-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Border
 ========================================================================== */
.modal-dialog-pro-border-circle {
  border-radius: 50%;
}
.modal-dialog-pro-border-rounded {
  border-radius: 5px;
}
/* Headings
 ========================================================================== */
.modal-dialog-pro-heading-large {
  font-size: 36px;
  line-height: 42px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}
/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.modal-dialog-pro-link-muted,
.modal-dialog-pro-link-muted a {
  color: #444444;
}
.modal-dialog-pro-link-muted:hover,
.modal-dialog-pro-link-muted a:hover {
  color: #444444;
}
/*
 * Reset link style
 */
.modal-dialog-pro-link-reset,
.modal-dialog-pro-link-reset a,
.modal-dialog-pro-link-reset:hover,
.modal-dialog-pro-link-reset a:hover,
.modal-dialog-pro-link-reset:focus,
.modal-dialog-pro-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}
/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.modal-dialog-pro-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/*
 * Box with scrolling enabled
 */
.modal-dialog-pro-scrollable-box {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #dddddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
.modal-dialog-pro-scrollable-box > :last-child {
  margin-bottom: 0;
}
/* Overflow
 ========================================================================== */
.modal-dialog-pro-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.modal-dialog-pro-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-dialog-pro-overflow-container > :last-child {
  margin-bottom: 0;
}
/* Position
 ========================================================================== */
.modal-dialog-pro-position-absolute,
[class*='modal-dialog-pro-position-top'],
[class*='modal-dialog-pro-position-bottom'] {
  position: absolute !important;
}
.modal-dialog-pro-position-top {
  top: 0;
  width: 100%;
}
.modal-dialog-pro-position-bottom {
  bottom: 0;
  width: 100%;
}
.modal-dialog-pro-position-top-left {
  top: 0;
  left: 0;
}
.modal-dialog-pro-position-top-right {
  top: 0;
  right: 0;
}
.modal-dialog-pro-position-bottom-left {
  bottom: 0;
  left: 0;
}
.modal-dialog-pro-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Cover
 */
.modal-dialog-pro-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*
 * Relative
 */
.modal-dialog-pro-position-relative {
  position: relative !important;
}
/*
 * Z-index
 */
.modal-dialog-pro-position-z-index {
  z-index: 1;
}
/* Display
 ========================================================================== */
/*
 * Display
 */
.modal-dialog-pro-display-block {
  display: block !important;
}
.modal-dialog-pro-display-inline {
  display: inline !important;
}
.modal-dialog-pro-display-inline-block {
  display: inline-block !important;
}
/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-visible-small {
    display: none !important;
  }
  .modal-dialog-pro-visible-medium {
    display: none !important;
  }
  .modal-dialog-pro-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .modal-dialog-pro-visible-small {
    display: none !important;
  }
  .modal-dialog-pro-visible-large {
    display: none !important ;
  }
  .modal-dialog-pro-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .modal-dialog-pro-visible-medium {
    display: none !important;
  }
  .modal-dialog-pro-visible-large {
    display: none !important;
  }
  .modal-dialog-pro-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.modal-dialog-pro-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.modal-dialog-pro-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.modal-dialog-pro-visible-hover:hover .modal-dialog-pro-hidden,
.modal-dialog-pro-visible-hover:hover .modal-dialog-pro-invisible {
  display: block !important;
  visibility: visible !important;
}
.modal-dialog-pro-visible-hover-inline:hover .modal-dialog-pro-hidden,
.modal-dialog-pro-visible-hover-inline:hover .modal-dialog-pro-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.modal-dialog-pro-touch .modal-dialog-pro-hidden-touch,
.modal-dialog-pro-notouch .modal-dialog-pro-hidden-notouch {
  display: none !important;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.modal-dialog-pro-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.modal-dialog-pro-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
/*
 * Fixes initial flex-shrink value in IE10
 */
.modal-dialog-pro-flex > *,
.modal-dialog-pro-flex-inline > * {
  -ms-flex-negative: 1;
}
/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.modal-dialog-pro-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.modal-dialog-pro-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.modal-dialog-pro-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.modal-dialog-pro-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.modal-dialog-pro-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.modal-dialog-pro-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.modal-dialog-pro-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Direction
 ========================================================================== */
.modal-dialog-pro-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.modal-dialog-pro-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.modal-dialog-pro-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.modal-dialog-pro-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.modal-dialog-pro-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-dialog-pro-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.modal-dialog-pro-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.modal-dialog-pro-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.modal-dialog-pro-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.modal-dialog-pro-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.modal-dialog-pro-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.modal-dialog-pro-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.modal-dialog-pro-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .modal-dialog-pro-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.modal-dialog-pro-flex-item-none {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.modal-dialog-pro-flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.modal-dialog-pro-flex-item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/* ========================================================================
   Component: Contrast
 ========================================================================== */
.modal-dialog-pro-contrast {
  color: #ffffff;
}
.modal-dialog-pro-contrast a:not([class]),
.modal-dialog-pro-contrast .modal-dialog-pro-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.modal-dialog-pro-contrast a:not([class]):hover,
.modal-dialog-pro-contrast .modal-dialog-pro-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.modal-dialog-pro-contrast :not(pre) > code,
.modal-dialog-pro-contrast :not(pre) > kbd,
.modal-dialog-pro-contrast :not(pre) > samp {
  color: #ffffff;
}
.modal-dialog-pro-contrast em {
  color: #ffffff;
}
.modal-dialog-pro-contrast h1,
.modal-dialog-pro-contrast h2,
.modal-dialog-pro-contrast h3,
.modal-dialog-pro-contrast h4,
.modal-dialog-pro-contrast h5,
.modal-dialog-pro-contrast h6 {
  color: #ffffff;
}
.modal-dialog-pro-contrast hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav li > a,
.modal-dialog-pro-contrast .modal-dialog-pro-nav li > a:hover {
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li.modal-dialog-pro-active > a {
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side .modal-dialog-pro-nav-header {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side .modal-dialog-pro-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side ul a {
  color: rgba(255, 255, 255, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side ul a:hover {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a:focus {
  color: #ffffff;
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > .modal-dialog-pro-active > a {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-line > :nth-child(n+2):before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > * > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > * > a:focus {
  background: rgba(255, 255, 255, 0.7);
  color: #444444;
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > .modal-dialog-pro-active > a {
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-list-line > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-form select,
.modal-dialog-pro-contrast .modal-dialog-pro-form textarea,
.modal-dialog-pro-contrast .modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime-local"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="date"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="month"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="time"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="week"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="color"] {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  color: #444444;
  background-clip: padding-box;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form select:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form textarea:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input:not([type]):focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="text"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="password"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime-local"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="date"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="month"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="time"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="week"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="number"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="email"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="url"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="search"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="tel"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="color"]:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form :-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.7) !important;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form ::-moz-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-form ::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-button {
  color: #444444;
  background: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button:active,
.modal-dialog-pro-contrast .modal-dialog-pro-button.modal-dialog-pro-active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary {
  background-color: #00a8e6;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:focus {
  background-color: #35b3ee;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:active,
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary.modal-dialog-pro-active {
  background-color: #0091ca;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-hover {
  color: rgba(255, 255, 255, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-hover:hover {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button {
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}
.modal-dialog-pro-contrast .modal-dialog-pro-text-primary {
  color: #2d7091 !important;
}
/*! UIkit 2.21.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/*
 * Style
 */
.modal-dialog-pro-link {
  color: #0077dd;
  text-decoration: none;
  cursor: pointer;
}

.modal-dialog-pro-link:hover {
  color: #005599;
  text-decoration: underline;
}

/*
 * Preserve original image dimensions
 */
.modal-dialog-pro-img-preserve,
.modal-dialog-pro-img-preserve img {
  max-width: none;
}

/*
 * Sizes
 */
h1,
.modal-dialog-pro-h1 {
  font-size: 36px;
  line-height: 42px;
}
h2,
.modal-dialog-pro-h2 {
  font-size: 24px;
  line-height: 30px;
}
h3,
.modal-dialog-pro-h3 {
  font-size: 18px;
  line-height: 24px;
}
h4,
.modal-dialog-pro-h4 {
  font-size: 16px;
  line-height: 22px;
}
h5,
.modal-dialog-pro-h5 {
  font-size: 14px;
  line-height: 20px;
}
h6,
.modal-dialog-pro-h6 {
  font-size: 12px;
  line-height: 18px;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.modal-dialog-pro-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.modal-dialog-pro-grid:before,
.modal-dialog-pro-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.modal-dialog-pro-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.modal-dialog-pro-grid {
  margin-left: -25px;
}
.modal-dialog-pro-grid > * {
  padding-left: 25px;
}
/* Vertical */
.modal-dialog-pro-grid + .modal-dialog-pro-grid,
.modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .modal-dialog-pro-grid {
    margin-left: -35px;
  }
  .modal-dialog-pro-grid > * {
    padding-left: 35px;
  }
  /* Vertical */
  .modal-dialog-pro-grid + .modal-dialog-pro-grid,
  .modal-dialog-pro-grid-margin,
  .modal-dialog-pro-grid > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
    margin-top: 35px;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-collapse {
  margin-left: 0;
}
.modal-dialog-pro-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.modal-dialog-pro-grid-collapse + .modal-dialog-pro-grid-collapse,
.modal-dialog-pro-grid-collapse > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-collapse > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-small {
  margin-left: -10px;
}
.modal-dialog-pro-grid-small > * {
  padding-left: 10px;
}
/* Vertical */
.modal-dialog-pro-grid-small + .modal-dialog-pro-grid-small,
.modal-dialog-pro-grid-small > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-small > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 10px;
}
/*
 * Medium gutter
 */
/* Horizontal */
.modal-dialog-pro-grid-medium {
  margin-left: -25px;
}
.modal-dialog-pro-grid-medium > * {
  padding-left: 25px;
}
/* Vertical */
.modal-dialog-pro-grid-medium + .modal-dialog-pro-grid-medium,
.modal-dialog-pro-grid-medium > .modal-dialog-pro-grid-margin,
.modal-dialog-pro-grid-medium > * > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 25px;
}
/* Modifier: `modal-dialog-pro-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `modal-dialog-pro-push-*`, `modal-dialog-pro-pull-*` and not if the columns float into the next row.
 */
.modal-dialog-pro-grid-divider:not(:empty) {
  margin-left: -25px;
  margin-right: -25px;
}
.modal-dialog-pro-grid-divider > * {
  padding-left: 25px;
  padding-right: 25px;
}
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-1-']:not(.modal-dialog-pro-width-1-1):nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-2-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-3-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-4-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-5-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-6-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-7-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-8-']:nth-child(n+2),
.modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-9-']:nth-child(n+2) {
  border-left: 1px solid #dddddd;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-medium-']:not(.modal-dialog-pro-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-grid-divider > [class*='modal-dialog-pro-width-large-']:not(.modal-dialog-pro-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .modal-dialog-pro-grid-divider:not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .modal-dialog-pro-grid-divider > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .modal-dialog-pro-grid-divider:empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/*
 * Vertical divider
 */
.modal-dialog-pro-grid-divider:empty {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #dddddd;
}
/* Match panels in grids
 ========================================================================== */
.modal-dialog-pro-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/*
 * 1. Behave like a block element
 */
.modal-dialog-pro-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='modal-dialog-pro-grid-width'] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.modal-dialog-pro-grid-width-1-2 > * {
  width: 50%;
}
.modal-dialog-pro-grid-width-1-3 > * {
  width: 33.333%;
}
.modal-dialog-pro-grid-width-1-4 > * {
  width: 25%;
}
.modal-dialog-pro-grid-width-1-5 > * {
  width: 20%;
}
.modal-dialog-pro-grid-width-1-6 > * {
  width: 16.666%;
}
.modal-dialog-pro-grid-width-1-10 > * {
  width: 10%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .modal-dialog-pro-grid-width-small-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-small-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-small-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-grid-width-large-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-large-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-large-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .modal-dialog-pro-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `modal-dialog-pro-width-*`
 ========================================================================== */
[class*='modal-dialog-pro-width'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.modal-dialog-pro-width-1-1 {
  width: 100%;
}
/* Halves */
.modal-dialog-pro-width-1-2,
.modal-dialog-pro-width-2-4,
.modal-dialog-pro-width-3-6,
.modal-dialog-pro-width-5-10 {
  width: 50%;
}
/* Thirds */
.modal-dialog-pro-width-1-3,
.modal-dialog-pro-width-2-6 {
  width: 33.333%;
}
.modal-dialog-pro-width-2-3,
.modal-dialog-pro-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.modal-dialog-pro-width-1-4 {
  width: 25%;
}
.modal-dialog-pro-width-3-4 {
  width: 75%;
}
/* Fifths */
.modal-dialog-pro-width-1-5,
.modal-dialog-pro-width-2-10 {
  width: 20%;
}
.modal-dialog-pro-width-2-5,
.modal-dialog-pro-width-4-10 {
  width: 40%;
}
.modal-dialog-pro-width-3-5,
.modal-dialog-pro-width-6-10 {
  width: 60%;
}
.modal-dialog-pro-width-4-5,
.modal-dialog-pro-width-8-10 {
  width: 80%;
}
/* Sixths */
.modal-dialog-pro-width-1-6 {
  width: 16.666%;
}
.modal-dialog-pro-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.modal-dialog-pro-width-1-10 {
  width: 10%;
}
.modal-dialog-pro-width-3-10 {
  width: 30%;
}
.modal-dialog-pro-width-7-10 {
  width: 70%;
}
.modal-dialog-pro-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .modal-dialog-pro-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-small-1-2,
  .modal-dialog-pro-width-small-2-4,
  .modal-dialog-pro-width-small-3-6,
  .modal-dialog-pro-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-small-1-3,
  .modal-dialog-pro-width-small-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-small-2-3,
  .modal-dialog-pro-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-small-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-small-1-5,
  .modal-dialog-pro-width-small-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-small-2-5,
  .modal-dialog-pro-width-small-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-small-3-5,
  .modal-dialog-pro-width-small-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-small-4-5,
  .modal-dialog-pro-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-small-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-small-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-small-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-small-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .modal-dialog-pro-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-medium-1-2,
  .modal-dialog-pro-width-medium-2-4,
  .modal-dialog-pro-width-medium-3-6,
  .modal-dialog-pro-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-medium-1-3,
  .modal-dialog-pro-width-medium-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-medium-2-3,
  .modal-dialog-pro-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-medium-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-medium-1-5,
  .modal-dialog-pro-width-medium-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-medium-2-5,
  .modal-dialog-pro-width-medium-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-medium-3-5,
  .modal-dialog-pro-width-medium-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-medium-4-5,
  .modal-dialog-pro-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-medium-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-medium-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-medium-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-medium-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .modal-dialog-pro-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .modal-dialog-pro-width-large-1-2,
  .modal-dialog-pro-width-large-2-4,
  .modal-dialog-pro-width-large-3-6,
  .modal-dialog-pro-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-width-large-1-3,
  .modal-dialog-pro-width-large-2-6 {
    width: 33.333%;
  }
  .modal-dialog-pro-width-large-2-3,
  .modal-dialog-pro-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-width-large-1-4 {
    width: 25%;
  }
  .modal-dialog-pro-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-width-large-1-5,
  .modal-dialog-pro-width-large-2-10 {
    width: 20%;
  }
  .modal-dialog-pro-width-large-2-5,
  .modal-dialog-pro-width-large-4-10 {
    width: 40%;
  }
  .modal-dialog-pro-width-large-3-5,
  .modal-dialog-pro-width-large-6-10 {
    width: 60%;
  }
  .modal-dialog-pro-width-large-4-5,
  .modal-dialog-pro-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-width-large-1-6 {
    width: 16.666%;
  }
  .modal-dialog-pro-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-width-large-1-10 {
    width: 10%;
  }
  .modal-dialog-pro-width-large-3-10 {
    width: 30%;
  }
  .modal-dialog-pro-width-large-7-10 {
    width: 70%;
  }
  .modal-dialog-pro-width-large-9-10 {
    width: 90%;
  }
}
/* Sub-object: `modal-dialog-pro-push-*` and `modal-dialog-pro-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `modal-dialog-pro-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*='modal-dialog-pro-push-'],
  [class*='modal-dialog-pro-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .modal-dialog-pro-push-1-2,
  .modal-dialog-pro-push-2-4,
  .modal-dialog-pro-push-3-6,
  .modal-dialog-pro-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .modal-dialog-pro-push-1-3,
  .modal-dialog-pro-push-2-6 {
    left: 33.333%;
  }
  .modal-dialog-pro-push-2-3,
  .modal-dialog-pro-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-push-1-4 {
    left: 25%;
  }
  .modal-dialog-pro-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .modal-dialog-pro-push-1-5,
  .modal-dialog-pro-push-2-10 {
    left: 20%;
  }
  .modal-dialog-pro-push-2-5,
  .modal-dialog-pro-push-4-10 {
    left: 40%;
  }
  .modal-dialog-pro-push-3-5,
  .modal-dialog-pro-push-6-10 {
    left: 60%;
  }
  .modal-dialog-pro-push-4-5,
  .modal-dialog-pro-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .modal-dialog-pro-push-1-6 {
    left: 16.666%;
  }
  .modal-dialog-pro-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-push-1-10 {
    left: 10%;
  }
  .modal-dialog-pro-push-3-10 {
    left: 30%;
  }
  .modal-dialog-pro-push-7-10 {
    left: 70%;
  }
  .modal-dialog-pro-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .modal-dialog-pro-pull-1-2,
  .modal-dialog-pro-pull-2-4,
  .modal-dialog-pro-pull-3-6,
  .modal-dialog-pro-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .modal-dialog-pro-pull-1-3,
  .modal-dialog-pro-pull-2-6 {
    left: -33.333%;
  }
  .modal-dialog-pro-pull-2-3,
  .modal-dialog-pro-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .modal-dialog-pro-pull-1-4 {
    left: -25%;
  }
  .modal-dialog-pro-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .modal-dialog-pro-pull-1-5,
  .modal-dialog-pro-pull-2-10 {
    left: -20%;
  }
  .modal-dialog-pro-pull-2-5,
  .modal-dialog-pro-pull-4-10 {
    left: -40%;
  }
  .modal-dialog-pro-pull-3-5,
  .modal-dialog-pro-pull-6-10 {
    left: -60%;
  }
  .modal-dialog-pro-pull-4-5,
  .modal-dialog-pro-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .modal-dialog-pro-pull-1-6 {
    left: -16.666%;
  }
  .modal-dialog-pro-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .modal-dialog-pro-pull-1-10 {
    left: -10%;
  }
  .modal-dialog-pro-pull-3-10 {
    left: -30%;
  }
  .modal-dialog-pro-pull-7-10 {
    left: -70%;
  }
  .modal-dialog-pro-pull-9-10 {
    left: -90%;
  }
}
/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.modal-dialog-pro-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}
/*
 * Allow panels to be anchors
 */
.modal-dialog-pro-panel,
.modal-dialog-pro-panel:hover {
  text-decoration: none;
}
/*
 * Micro clearfix to make panels more robust
 */
.modal-dialog-pro-panel:before,
.modal-dialog-pro-panel:after {
  content: "";
  display: table;
}
.modal-dialog-pro-panel:after {
  clear: both;
}
/*
 * Remove margin from the last-child if not `modal-dialog-pro-widget-title`
 */
.modal-dialog-pro-panel > :not(.modal-dialog-pro-panel-title):last-child {
  margin-bottom: 0;
}
/* Sub-object: `modal-dialog-pro-panel-title`
 ========================================================================== */
.modal-dialog-pro-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #444444;
}
/* Sub-object: `modal-dialog-pro-panel-badge`
 ========================================================================== */
.modal-dialog-pro-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
/* Sub-object: `modal-dialog-pro-panel-teaser`
 ========================================================================== */
.modal-dialog-pro-panel-teaser {
  margin-bottom: 15px;
}
/* Modifier: `modal-dialog-pro-panel-box`
 ========================================================================== */
.modal-dialog-pro-panel-box {
  padding: 15px;
  background: #fafafa;
  color: #444444;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.modal-dialog-pro-panel-box-hover:hover {
  color: #444444;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-title {
  color: #444444;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-badge {
  top: 10px;
  right: 10px;
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-teaser {
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
}
/*
 * Nav in panel
 */
.modal-dialog-pro-panel-box > .modal-dialog-pro-nav-side {
  margin: 0 -15px;
}
/*
 * Sub-modifier: `modal-dialog-pro-panel-box-primary`
 */
.modal-dialog-pro-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
.modal-dialog-pro-panel-box-primary-hover:hover {
  color: #2d7091;
}
.modal-dialog-pro-panel-box-primary .modal-dialog-pro-panel-title {
  color: #2d7091;
}
/*
 * Sub-modifier: `modal-dialog-pro-panel-box-secondary`
 */
.modal-dialog-pro-panel-box-secondary {
  background-color: #ffffff;
  color: #444444;
}
.modal-dialog-pro-panel-box-secondary-hover:hover {
  color: #444444;
}
.modal-dialog-pro-panel-box-secondary .modal-dialog-pro-panel-title {
  color: #444444;
}
/* Modifier: `modal-dialog-pro-panel-hover`
 ========================================================================== */
.modal-dialog-pro-panel-hover {
  padding: 15px;
  color: #444444;
  border: 1px solid transparent;
  border-radius: 4px;
}
.modal-dialog-pro-panel-hover:hover {
  background: #fafafa;
  color: #444444;
  border-color: #dddddd;
}
.modal-dialog-pro-panel-hover .modal-dialog-pro-panel-badge {
  top: 10px;
  right: 10px;
}
.modal-dialog-pro-panel-hover .modal-dialog-pro-panel-teaser {
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
}
/* Modifier: `modal-dialog-pro-panel-header`
 ========================================================================== */
.modal-dialog-pro-panel-header .modal-dialog-pro-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  color: #444444;
}
/* Modifier: `modal-dialog-pro-panel-space`
 ========================================================================== */
.modal-dialog-pro-panel-space {
  padding: 30px;
}
.modal-dialog-pro-panel-space .modal-dialog-pro-panel-badge {
  top: 30px;
  right: 30px;
}
/* Modifier: `modal-dialog-pro-panel-divider`
 ========================================================================== */
.modal-dialog-pro-panel + .modal-dialog-pro-panel-divider {
  margin-top: 50px !important;
}
.modal-dialog-pro-panel + .modal-dialog-pro-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #dddddd;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-panel + .modal-dialog-pro-panel-divider {
    margin-top: 70px !important;
  }
  .modal-dialog-pro-panel + .modal-dialog-pro-panel-divider:before {
    top: -35px;
  }
}
.modal-dialog-pro-panel-box .modal-dialog-pro-panel-teaser {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
/* ========================================================================
   Component: Block
 ========================================================================== */
.modal-dialog-pro-block {
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Phone landscape and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*
 * Micro clearfix to make blocks more robust
 */
.modal-dialog-pro-block:before,
.modal-dialog-pro-block:after {
  content: "";
  display: table;
}
.modal-dialog-pro-block:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-block > :last-child {
  margin-bottom: 0;
}
/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.modal-dialog-pro-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Tablets and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.modal-dialog-pro-block-default {
  background: #ffffff;
}
/*
 * Muted
 */
.modal-dialog-pro-block-muted {
  background: #f9f9f9;
}
/*
 * Primary
 */
.modal-dialog-pro-block-primary {
  background: #00a8e6;
}
/*
 * Secondary
 */
.modal-dialog-pro-block-secondary {
  background: #222222;
}
/*
 * Adjust padding between equal colored blocks
 */
.modal-dialog-pro-block-default + .modal-dialog-pro-block-default,
.modal-dialog-pro-block-muted + .modal-dialog-pro-block-muted,
.modal-dialog-pro-block-primary + .modal-dialog-pro-block-primary,
.modal-dialog-pro-block-secondary + .modal-dialog-pro-block-secondary {
  padding-top: 0;
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix to make articles more robust
 */
.modal-dialog-pro-article:before,
.modal-dialog-pro-article:after {
  content: "";
  display: table;
}
.modal-dialog-pro-article:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-article > :last-child {
  margin-bottom: 0;
}
/*
 * Vertical gutter for articles
 */
.modal-dialog-pro-article + .modal-dialog-pro-article {
  margin-top: 25px;
}
/* Sub-object `modal-dialog-pro-article-title`
 ========================================================================== */
.modal-dialog-pro-article-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: normal;
  text-transform: none;
}
.modal-dialog-pro-article-title a {
  color: inherit;
  text-decoration: none;
}
/* Sub-object `modal-dialog-pro-article-meta`
 ========================================================================== */
.modal-dialog-pro-article-meta {
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}
/* Sub-object `modal-dialog-pro-article-lead`
 ========================================================================== */
.modal-dialog-pro-article-lead {
  color: #444444;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Sub-object `modal-dialog-pro-article-divider`
 ========================================================================== */
.modal-dialog-pro-article-divider {
  margin-bottom: 25px;
  border-color: #dddddd;
}
* + .modal-dialog-pro-article-divider {
  margin-top: 25px;
}
.modal-dialog-pro-article + .modal-dialog-pro-article {
  padding-top: 25px;
  border-top: 1px solid #dddddd;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sub-object `modal-dialog-pro-comment-header`
 ========================================================================== */
.modal-dialog-pro-comment-header {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #fafafa;
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-comment-header:before,
.modal-dialog-pro-comment-header:after {
  content: "";
  display: table;
}
.modal-dialog-pro-comment-header:after {
  clear: both;
}
/* Sub-object `modal-dialog-pro-comment-avatar`
 ========================================================================== */
.modal-dialog-pro-comment-avatar {
  margin-right: 15px;
  float: left;
}
/* Sub-object `modal-dialog-pro-comment-title`
 ========================================================================== */
.modal-dialog-pro-comment-title {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 22px;
}
/* Sub-object `modal-dialog-pro-comment-meta`
 ========================================================================== */
.modal-dialog-pro-comment-meta {
  margin: 2px 0 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #999999;
}
/* Sub-object `modal-dialog-pro-comment-body`
 ========================================================================== */
.modal-dialog-pro-comment-body {
  padding-left: 10px;
  padding-right: 10px;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-comment-body > :last-child {
  margin-bottom: 0;
}
/* Sub-object `modal-dialog-pro-comment-list`
 ========================================================================== */
.modal-dialog-pro-comment-list {
  padding: 0;
  list-style: none;
}
.modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul {
  margin: 25px 0 0 0;
  list-style: none;
}
.modal-dialog-pro-comment-list > li:nth-child(n+2),
.modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul > li:nth-child(n+2) {
  margin-top: 25px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-comment-list .modal-dialog-pro-comment + ul {
    padding-left: 100px;
  }
}
/* Modifier `modal-dialog-pro-comment-primary`
 ========================================================================== */
.modal-dialog-pro-comment-primary .modal-dialog-pro-comment-header {
  border-color: rgba(45, 112, 145, 0.3);
  background-color: #ebf7fd;
  color: #2d7091;
  text-shadow: 0 1px 0 #ffffff;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Background image always covers and centers its element
 */
.modal-dialog-pro-cover-background {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
 * Emulates image cover, works with video and image elements
 * 1. Parent container which clips resized object
 * 2. Resizes the object to always covers its container
 * 3. Reset the responsive image CSS
 * 4. Center object
 */
/* 1 */
.modal-dialog-pro-cover {
  overflow: hidden;
}
.modal-dialog-pro-cover-object {
  /* 2 */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 3 */
  max-width: none;
  /* 4 */
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
 * To center iframes use `data-modal-dialog-pro-cover` JavaScript
 */
[data-modal-dialog-pro-cover] {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
.modal-dialog-pro-nav,
.modal-dialog-pro-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Items
 */
.modal-dialog-pro-nav li > a {
  display: block;
  text-decoration: none;
}
.modal-dialog-pro-nav > li > a {
  padding: 5px 15px;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav ul {
  padding-left: 15px;
}
.modal-dialog-pro-nav ul a {
  padding: 2px 0;
}
/*
 * Item subtitle
 */
.modal-dialog-pro-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}
/* Sub-object: `modal-dialog-pro-nav-header`
 ========================================================================== */
.modal-dialog-pro-nav-header {
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.modal-dialog-pro-nav-header:not(:first-child) {
  margin-top: 15px;
}
/* Sub-object: `modal-dialog-pro-nav-divider`
 ========================================================================== */
.modal-dialog-pro-nav-divider {
  margin: 9px 15px;
}
/* Sub-object: `modal-dialog-pro-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.modal-dialog-pro-nav-sub {
  padding: 5px 0 5px 15px;
}
/* Modifier: `modal-dialog-pro-nav-parent-icon`
 ========================================================================== */
.modal-dialog-pro-nav-parent-icon > .modal-dialog-pro-parent > a:after {
  content: "\f104";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}
.modal-dialog-pro-nav-parent-icon > .modal-dialog-pro-parent.modal-dialog-pro-open > a:after {
  content: "\f107";
}
/* Modifier `modal-dialog-pro-nav-side`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-side > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-side > li > a:hover,
.modal-dialog-pro-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0.03);
  color: #444444;
  /* 2 */
  outline: none;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06);
  text-shadow: 0 -1px 0 #ffffff;
}
/* Active */
.modal-dialog-pro-nav-side > li.modal-dialog-pro-active > a {
  background: #00a8e6;
  color: #ffffff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-side .modal-dialog-pro-nav-header {
  color: #444444;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-side .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
  box-shadow: 0 1px 0 #ffffff;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-side ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-side ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-dropdown > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-dropdown > li > a:hover,
.modal-dialog-pro-nav-dropdown > li > a:focus {
  background: #00a8e6;
  color: #ffffff;
  /* 2 */
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-dropdown .modal-dialog-pro-nav-header {
  color: #999999;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-dropdown .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-dropdown ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-dropdown ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-navbar > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-navbar > li > a:hover,
.modal-dialog-pro-nav-navbar > li > a:focus {
  background: #00a8e6;
  color: #ffffff;
  /* 2 */
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-navbar .modal-dialog-pro-nav-header {
  color: #999999;
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-navbar .modal-dialog-pro-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.modal-dialog-pro-nav-navbar ul a {
  color: #0077dd;
}
.modal-dialog-pro-nav-navbar ul a:hover {
  color: #005599;
}
/* Modifier `modal-dialog-pro-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.modal-dialog-pro-nav-offcanvas > li > a {
  color: #cccccc;
  padding: 10px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-nav-offcanvas > .modal-dialog-pro-open > a,
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas > li > a:hover,
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas > li > a:focus {
  background: #404040;
  color: #ffffff;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `html .modal-dialog-pro-nav` needed for higher specificity to override hover
 */
html .modal-dialog-pro-nav.modal-dialog-pro-nav-offcanvas > li.modal-dialog-pro-active > a {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
/*
 * Sub-object: `modal-dialog-pro-nav-header`
 */
.modal-dialog-pro-nav-offcanvas .modal-dialog-pro-nav-header {
  color: #777777;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  background: #404040;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/*
 * Sub-object: `modal-dialog-pro-nav-divider`
 */
.modal-dialog-pro-nav-offcanvas .modal-dialog-pro-nav-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.01);
  margin: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.modal-dialog-pro-nav-offcanvas ul a {
  color: #cccccc;
}
html:not(.modal-dialog-pro-touch) .modal-dialog-pro-nav-offcanvas ul a:hover {
  color: #ffffff;
}
/*
     * Modifier `modal-dialog-pro-nav-offcanvas`
     */
.modal-dialog-pro-nav-offcanvas {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
/*
     * Sub-object: `modal-dialog-pro-nav-sub`
     */
.modal-dialog-pro-nav-offcanvas .modal-dialog-pro-nav-sub {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
.modal-dialog-pro-navbar {
  background: #f5f5f5;
  color: #444444;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-navbar:before,
.modal-dialog-pro-navbar:after {
  content: "";
  display: table;
}
.modal-dialog-pro-navbar:after {
  clear: both;
}
/* Sub-object: `modal-dialog-pro-navbar-nav`
 ========================================================================== */
.modal-dialog-pro-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
/*
 * 1. Create position context for dropdowns
 */
.modal-dialog-pro-navbar-nav > li {
  float: left;
  /* 1 */
  position: relative;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.modal-dialog-pro-navbar-nav > li > a {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444444;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #ffffff;
}
/* Appear not as link */
.modal-dialog-pro-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.modal-dialog-pro-navbar-nav > li:hover > a,
.modal-dialog-pro-navbar-nav > li > a:focus,
.modal-dialog-pro-navbar-nav > li.modal-dialog-pro-open > a {
  background-color: #fafafa;
  color: #444444;
  /* 3 */
  outline: none;
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* OnClick */
.modal-dialog-pro-navbar-nav > li > a:active {
  background-color: #eeeeee;
  color: #444444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.modal-dialog-pro-navbar-nav > li.modal-dialog-pro-active > a {
  background-color: #fafafa;
  color: #444444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* Sub-objects: `modal-dialog-pro-navbar-nav-subtitle`
 ========================================================================== */
.modal-dialog-pro-navbar-nav .modal-dialog-pro-navbar-nav-subtitle {
  line-height: 28px;
}
.modal-dialog-pro-navbar-nav-subtitle > div {
  margin-top: -6px;
  font-size: 10px;
  line-height: 12px;
}
/* Sub-objects: `modal-dialog-pro-navbar-content`, `modal-dialog-pro-navbar-brand`, `modal-dialog-pro-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.modal-dialog-pro-navbar-content,
.modal-dialog-pro-navbar-brand,
.modal-dialog-pro-navbar-toggle {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 41px;
  padding: 0 15px;
  float: left;
  margin-top: -1px;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Helper to center all child elements vertically
 */
.modal-dialog-pro-navbar-content:before,
.modal-dialog-pro-navbar-brand:before,
.modal-dialog-pro-navbar-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* Sub-objects: `modal-dialog-pro-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.modal-dialog-pro-navbar-content + .modal-dialog-pro-navbar-content:not(.modal-dialog-pro-navbar-center) {
  padding-left: 0;
}
/*
 * Link colors
 */
.modal-dialog-pro-navbar-content > a:not([class]) {
  color: #0077dd;
}
.modal-dialog-pro-navbar-content > a:not([class]):hover {
  color: #005599;
}
/* Sub-objects: `modal-dialog-pro-navbar-brand`
 ========================================================================== */
.modal-dialog-pro-navbar-brand {
  font-size: 18px;
  color: #444444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-navbar-brand:hover,
.modal-dialog-pro-navbar-brand:focus {
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/* Sub-object: `modal-dialog-pro-navbar-toggle`
 ========================================================================== */
.modal-dialog-pro-navbar-toggle {
  font-size: 18px;
  color: #444444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-navbar-toggle:hover,
.modal-dialog-pro-navbar-toggle:focus {
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * 1. Center icon vertically
 */
.modal-dialog-pro-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}
.modal-dialog-pro-navbar-toggle-alt:after {
  content: "\f002";
}
/* Sub-object: `modal-dialog-pro-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.modal-dialog-pro-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
/* Sub-object: `modal-dialog-pro-navbar-flip`
 ========================================================================== */
.modal-dialog-pro-navbar-flip {
  float: right;
}
/*
     * Apply same `border-radius` as `modal-dialog-pro-navbar`
     */
.modal-dialog-pro-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/*
     * Sub-modifier `modal-dialog-pro-navbar-flip`
     */
/* Collapse border */
.modal-dialog-pro-navbar-flip .modal-dialog-pro-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `modal-dialog-pro-navbar` */
.modal-dialog-pro-navbar-flip .modal-dialog-pro-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-dialog-pro-navbar-flip .modal-dialog-pro-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
     * Sub-modifier `modal-dialog-pro-navbar-attached`
     */
.modal-dialog-pro-navbar-attached {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0;
}
.modal-dialog-pro-navbar-attached .modal-dialog-pro-navbar-nav > li > a {
  border-radius: 0 !important;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.modal-dialog-pro-subnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `modal-dialog-pro-width-*` classes can be applied
 * 3. Create position context for dropdowns
 */
.modal-dialog-pro-subnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
  /* 3 */
  position: relative;
}
/*
 * DEPRECATED IE9 Support
 */
.modal-dialog-pro-subnav:before,
.modal-dialog-pro-subnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-subnav:after {
  clear: both;
}
.modal-dialog-pro-subnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.modal-dialog-pro-subnav > * > * {
  display: inline-block;
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.modal-dialog-pro-subnav > * > :hover,
.modal-dialog-pro-subnav > * > :focus {
  color: #0077dd;
  text-decoration: none;
}
/*
 * Active
 */
.modal-dialog-pro-subnav > .modal-dialog-pro-active > * {
  color: #0077dd;
}
/* Modifier: 'subnav-line'
 ========================================================================== */
.modal-dialog-pro-subnav-line > :before {
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
}
.modal-dialog-pro-subnav-line > :nth-child(n+2):before {
  margin-right: 10px;
  border-left: 1px solid #dddddd;
}
/* Modifier: 'subnav-pill'
 ========================================================================== */
.modal-dialog-pro-subnav-pill > * > * {
  padding: 3px 9px;
  border-radius: 4px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-subnav-pill > * > :hover,
.modal-dialog-pro-subnav-pill > * > :focus {
  background: #fafafa;
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
/*
 * Active
 * `li` needed for higher specificity to override hover
 */
.modal-dialog-pro-subnav-pill > .modal-dialog-pro-active > * {
  background: #00a8e6;
  color: #ffffff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}
/* Disabled state
 ========================================================================== */
.modal-dialog-pro-subnav > .modal-dialog-pro-disabled > * {
  background: none;
  color: #999999;
  text-decoration: none;
  cursor: text;
  box-shadow: none;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-breadcrumb {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
}
/* Items
 ========================================================================== */
/*
 * Reset whitespace hack
 */
.modal-dialog-pro-breadcrumb > li {
  font-size: 1rem;
  vertical-align: top;
}
.modal-dialog-pro-breadcrumb > li,
.modal-dialog-pro-breadcrumb > li > a,
.modal-dialog-pro-breadcrumb > li > span {
  display: inline-block;
}
.modal-dialog-pro-breadcrumb > li:nth-child(n+2):before {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}
/*
 * Disabled
 */
.modal-dialog-pro-breadcrumb > li:not(.modal-dialog-pro-active) > span {
  color: #999999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}
/*
 * Micro clearfix
 * Needed if `modal-dialog-pro-pagination-previous` or `modal-dialog-pro-pagination-next` sub-objects are used
 */
.modal-dialog-pro-pagination:before,
.modal-dialog-pro-pagination:after {
  content: "";
  display: table;
}
.modal-dialog-pro-pagination:after {
  clear: both;
}
/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.modal-dialog-pro-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}
.modal-dialog-pro-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}
/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.modal-dialog-pro-pagination > li > a,
.modal-dialog-pro-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Links
 */
.modal-dialog-pro-pagination > li > a {
  background: #f5f5f5;
  color: #444444;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-pagination > li > a:hover,
.modal-dialog-pro-pagination > li > a:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  border-color: rgba(0, 0, 0, 0.16);
}
/* OnClick */
.modal-dialog-pro-pagination > li > a:active {
  background-color: #eeeeee;
  color: #444444;
}
/*
 * Active
 */
.modal-dialog-pro-pagination > .modal-dialog-pro-active > span {
  background: #00a8e6;
  color: #ffffff;
  border-color: transparent;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Disabled
 */
.modal-dialog-pro-pagination > .modal-dialog-pro-disabled > span {
  background-color: #fafafa;
  color: #999999;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 #ffffff;
}
/* Previous and next navigation
 ========================================================================== */
.modal-dialog-pro-pagination-previous {
  float: left;
}
.modal-dialog-pro-pagination-next {
  float: right;
}
/* Alignment modifiers
 ========================================================================== */
.modal-dialog-pro-pagination-left {
  text-align: left;
}
.modal-dialog-pro-pagination-right {
  text-align: right;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
.modal-dialog-pro-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #dddddd;
}
/*
 * Micro clearfix on the deepest container
 */
.modal-dialog-pro-tab:before,
.modal-dialog-pro-tab:after {
  content: "";
  display: table;
}
.modal-dialog-pro-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.modal-dialog-pro-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}
.modal-dialog-pro-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #0077dd;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
  text-shadow: 0 1px 0 #ffffff;
}
.modal-dialog-pro-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.modal-dialog-pro-tab > li > a:hover,
.modal-dialog-pro-tab > li > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-open > a {
  border-color: rgba(0, 0, 0, 0.06);
  background: #f5f5f5;
  color: #005599;
  /* 2 */
  outline: none;
}
.modal-dialog-pro-tab > li:not(.modal-dialog-pro-active) > a:hover,
.modal-dialog-pro-tab > li:not(.modal-dialog-pro-active) > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-open:not(.modal-dialog-pro-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}
/* Active */
.modal-dialog-pro-tab > li.modal-dialog-pro-active > a {
  border-color: #dddddd;
  border-bottom-color: transparent;
  background: #ffffff;
  color: #444444;
}
/* Disabled */
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a {
  color: #999999;
  cursor: text;
}
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a:hover,
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled > a:focus,
.modal-dialog-pro-tab > li.modal-dialog-pro-disabled.modal-dialog-pro-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip'
 ========================================================================== */
.modal-dialog-pro-tab-flip > li {
  float: right;
}
.modal-dialog-pro-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.modal-dialog-pro-tab > li.modal-dialog-pro-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.modal-dialog-pro-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center'
 ========================================================================== */
.modal-dialog-pro-tab-center {
  border-bottom: 1px solid #dddddd;
}
.modal-dialog-pro-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #dddddd;
}
.modal-dialog-pro-tab-center:before,
.modal-dialog-pro-tab-center:after {
  content: "";
  display: table;
}
.modal-dialog-pro-tab-center:after {
  clear: both;
}
/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.modal-dialog-pro-tab-center .modal-dialog-pro-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.modal-dialog-pro-tab-center .modal-dialog-pro-tab > li {
  position: relative;
  right: -50%;
}
.modal-dialog-pro-tab-center .modal-dialog-pro-tab > li > a {
  text-align: center;
}
/* Modifier: 'tab-bottom'
 ========================================================================== */
.modal-dialog-pro-tab-bottom {
  border-top: 1px solid #dddddd;
  border-bottom: none;
}
.modal-dialog-pro-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.modal-dialog-pro-tab-bottom > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  border-top-width: 0;
}
.modal-dialog-pro-tab-bottom > li:not(.modal-dialog-pro-active) > a:hover,
.modal-dialog-pro-tab-bottom > li:not(.modal-dialog-pro-active) > a:focus,
.modal-dialog-pro-tab-bottom > li.modal-dialog-pro-open:not(.modal-dialog-pro-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 8px;
  padding-top: 7px;
}
.modal-dialog-pro-tab-bottom > li.modal-dialog-pro-active > a {
  border-top-color: transparent;
  border-bottom-color: #dddddd;
}
/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.modal-dialog-pro-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}
.modal-dialog-pro-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid #dddddd;
  /* 1 */
  z-index: -1;
}
.modal-dialog-pro-tab-grid > li:first-child > a {
  margin-left: 5px;
}
.modal-dialog-pro-tab-grid > li > a {
  text-align: center;
}
/*
 * If `modal-dialog-pro-tab-bottom`
 */
.modal-dialog-pro-tab-grid.modal-dialog-pro-tab-bottom {
  border-top: none;
}
.modal-dialog-pro-tab-grid.modal-dialog-pro-tab-bottom:before {
  top: -1px;
  bottom: auto;
}
/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-tab-left,
  .modal-dialog-pro-tab-right {
    border-bottom: none;
  }
  .modal-dialog-pro-tab-left > li,
  .modal-dialog-pro-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .modal-dialog-pro-tab-left > li > a,
  .modal-dialog-pro-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .modal-dialog-pro-tab-left > li:nth-child(n+2) > a,
  .modal-dialog-pro-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .modal-dialog-pro-tab-left > li.modal-dialog-pro-active > a,
  .modal-dialog-pro-tab-right > li.modal-dialog-pro-active > a {
    border-color: #dddddd;
  }
  /*
     * Modifier: 'tab-left'
     */
  .modal-dialog-pro-tab-left {
    border-right: 1px solid #dddddd;
  }
  .modal-dialog-pro-tab-left > li {
    margin-right: -1px;
  }
  .modal-dialog-pro-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .modal-dialog-pro-tab-left > li:not(.modal-dialog-pro-active) > a:hover,
  .modal-dialog-pro-tab-left > li:not(.modal-dialog-pro-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 8px;
    padding-right: 11px;
  }
  .modal-dialog-pro-tab-left > li.modal-dialog-pro-active > a {
    border-right-color: transparent;
  }
  /*
     * Modifier: 'tab-right'
     */
  .modal-dialog-pro-tab-right {
    border-left: 1px solid #dddddd;
  }
  .modal-dialog-pro-tab-right > li {
    margin-left: -1px;
  }
  .modal-dialog-pro-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .modal-dialog-pro-tab-right > li:not(.modal-dialog-pro-active) > a:hover,
  .modal-dialog-pro-tab-right > li:not(.modal-dialog-pro-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 8px;
    padding-left: 11px;
  }
  .modal-dialog-pro-tab-right > li.modal-dialog-pro-active > a {
    border-left-color: transparent;
  }
}
/* Modifier: `modal-dialog-pro-tab-bottom'
     ========================================================================== */
.modal-dialog-pro-tab-bottom > li > a {
  border-radius: 0 0 4px 4px;
}
/* Modifier: `modal-dialog-pro-tab-left', `modal-dialog-pro-tab-right'
    ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  /*
         * Modifier: `modal-dialog-pro-tab-left'
         */
  .modal-dialog-pro-tab-left > li > a {
    border-radius: 4px 0 0 4px;
  }
  /*
         * Modifier: `modal-dialog-pro-tab-right'
         */
  .modal-dialog-pro-tab-right > li > a {
    border-radius: 0 4px 4px 0;
  }
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.modal-dialog-pro-thumbnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `modal-dialog-pro-width-*` classes can be applied
 */
.modal-dialog-pro-thumbnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
}
/*
 * DEPRECATED IE9 Support
 */
.modal-dialog-pro-thumbnav:before,
.modal-dialog-pro-thumbnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.modal-dialog-pro-thumbnav:after {
  clear: both;
}
.modal-dialog-pro-thumbnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.modal-dialog-pro-thumbnav > * > * {
  display: block;
  background: #ffffff;
}
.modal-dialog-pro-thumbnav > * > * > img {
  opacity: 0.7;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/*
 * Hover
 */
.modal-dialog-pro-thumbnav > * > :hover > img,
.modal-dialog-pro-thumbnav > * > :focus > img {
  opacity: 1;
}
/*
 * Active
 */
.modal-dialog-pro-thumbnav > .modal-dialog-pro-active > * > img {
  opacity: 1;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.modal-dialog-pro-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.modal-dialog-pro-list > li:before,
.modal-dialog-pro-list > li:after {
  content: "";
  display: table;
}
.modal-dialog-pro-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.modal-dialog-pro-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
/* Modifier: `modal-dialog-pro-list-line`
 ========================================================================== */
.modal-dialog-pro-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
/* Modifier: `modal-dialog-pro-list-striped`
 ========================================================================== */
.modal-dialog-pro-list-striped > li {
  padding: 5px 5px;
  border-bottom: 1px solid #dddddd;
}
.modal-dialog-pro-list-striped > li:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `modal-dialog-pro-list-space`
 ========================================================================== */
.modal-dialog-pro-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
.modal-dialog-pro-list-striped > li:first-child {
  border-top: 1px solid #dddddd;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `modal-dialog-pro-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-description-list-horizontal {
    overflow: hidden;
  }
  .modal-dialog-pro-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .modal-dialog-pro-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `modal-dialog-pro-description-list-line`
 ========================================================================== */
.modal-dialog-pro-description-list-line > dt {
  font-weight: normal;
}
.modal-dialog-pro-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
.modal-dialog-pro-description-list-line > dd {
  color: #999999;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.modal-dialog-pro-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}
/*
 * Add margin if adjacent element
 */
* + .modal-dialog-pro-table {
  margin-top: 15px;
}
.modal-dialog-pro-table th,
.modal-dialog-pro-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #dddddd;
}
/*
 * Set alignment
 */
.modal-dialog-pro-table th {
  text-align: left;
}
.modal-dialog-pro-table td {
  vertical-align: top;
}
.modal-dialog-pro-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.modal-dialog-pro-table caption,
.modal-dialog-pro-table tfoot {
  font-size: 12px;
  font-style: italic;
}
.modal-dialog-pro-table caption {
  text-align: left;
  color: #999999;
}
/*
 * Active State
 */
.modal-dialog-pro-table tbody tr.modal-dialog-pro-active {
  background: #f0f0f0;
}
/* Sub-modifier: `modal-dialog-pro-table-middle`
 ========================================================================== */
.modal-dialog-pro-table-middle,
.modal-dialog-pro-table-middle td {
  vertical-align: middle !important;
}
/* Modifier: `modal-dialog-pro-table-striped`
 ========================================================================== */
.modal-dialog-pro-table-striped tbody tr:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `modal-dialog-pro-table-condensed`
 ========================================================================== */
.modal-dialog-pro-table-condensed td {
  padding: 4px 8px;
}
/* Modifier: `modal-dialog-pro-table-hover`
 ========================================================================== */
.modal-dialog-pro-table-hover tbody tr:hover {
  background: #f0f0f0;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.modal-dialog-pro-form input,
.modal-dialog-pro-form select,
.modal-dialog-pro-form textarea {
  /* 1 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}
/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.modal-dialog-pro-form select {
  text-transform: none;
}
/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.modal-dialog-pro-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Removes excess padding in IE 8/9/10.
 */
.modal-dialog-pro-form input[type="checkbox"],
.modal-dialog-pro-form input[type="radio"] {
  padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.modal-dialog-pro-form input[type="checkbox"]:not(:disabled),
.modal-dialog-pro-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove default style in iOS.
 */
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-form input[type="datetime"] {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.modal-dialog-pro-form input[type="search"]::-webkit-search-cancel-button,
.modal-dialog-pro-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.modal-dialog-pro-form input[type="number"]::-webkit-inner-spin-button,
.modal-dialog-pro-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Define consistent border, margin, and padding.
 */
.modal-dialog-pro-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.modal-dialog-pro-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.modal-dialog-pro-form ::-moz-placeholder {
  opacity: 1;
}
/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.modal-dialog-pro-form :invalid {
  box-shadow: none;
}
/*
 * Vertical alignment
 */
.modal-dialog-pro-form input:not([type="radio"]):not([type="checkbox"]),
.modal-dialog-pro-form select {
  vertical-align: middle;
}
/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-form > :last-child {
  margin-bottom: 0;
}
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.modal-dialog-pro-form select,
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-form input[type="datetime"],
.modal-dialog-pro-form input[type="datetime-local"],
.modal-dialog-pro-form input[type="date"],
.modal-dialog-pro-form input[type="month"],
.modal-dialog-pro-form input[type="time"],
.modal-dialog-pro-form input[type="week"],
.modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-form input[type="color"] {
  /* 1 */
  height: 30px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 4px 6px;
  /* 4 */
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #444444;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-radius: 4px;
}
.modal-dialog-pro-form select:focus,
.modal-dialog-pro-form textarea:focus,
.modal-dialog-pro-form input:not([type]):focus,
.modal-dialog-pro-form input[type="text"]:focus,
.modal-dialog-pro-form input[type="password"]:focus,
.modal-dialog-pro-form input[type="datetime"]:focus,
.modal-dialog-pro-form input[type="datetime-local"]:focus,
.modal-dialog-pro-form input[type="date"]:focus,
.modal-dialog-pro-form input[type="month"]:focus,
.modal-dialog-pro-form input[type="time"]:focus,
.modal-dialog-pro-form input[type="week"]:focus,
.modal-dialog-pro-form input[type="number"]:focus,
.modal-dialog-pro-form input[type="email"]:focus,
.modal-dialog-pro-form input[type="url"]:focus,
.modal-dialog-pro-form input[type="search"]:focus,
.modal-dialog-pro-form input[type="tel"]:focus,
.modal-dialog-pro-form input[type="color"]:focus {
  border-color: #99baca;
  outline: 0;
  background: #f5fbfe;
  color: #444444;
}
.modal-dialog-pro-form select:disabled,
.modal-dialog-pro-form textarea:disabled,
.modal-dialog-pro-form input:not([type]):disabled,
.modal-dialog-pro-form input[type="text"]:disabled,
.modal-dialog-pro-form input[type="password"]:disabled,
.modal-dialog-pro-form input[type="datetime"]:disabled,
.modal-dialog-pro-form input[type="datetime-local"]:disabled,
.modal-dialog-pro-form input[type="date"]:disabled,
.modal-dialog-pro-form input[type="month"]:disabled,
.modal-dialog-pro-form input[type="time"]:disabled,
.modal-dialog-pro-form input[type="week"]:disabled,
.modal-dialog-pro-form input[type="number"]:disabled,
.modal-dialog-pro-form input[type="email"]:disabled,
.modal-dialog-pro-form input[type="url"]:disabled,
.modal-dialog-pro-form input[type="search"]:disabled,
.modal-dialog-pro-form input[type="tel"]:disabled,
.modal-dialog-pro-form input[type="color"]:disabled {
  border-color: #dddddd;
  background-color: #fafafa;
  color: #999999;
}
/*
 * Placeholder
 */
.modal-dialog-pro-form :-ms-input-placeholder {
  color: #999999 !important;
}
.modal-dialog-pro-form ::-moz-placeholder {
  color: #999999;
}
.modal-dialog-pro-form ::-webkit-input-placeholder {
  color: #999999;
}
.modal-dialog-pro-form :disabled:-ms-input-placeholder {
  color: #999999 !important;
}
.modal-dialog-pro-form :disabled::-moz-placeholder {
  color: #999999;
}
.modal-dialog-pro-form :disabled::-webkit-input-placeholder {
  color: #999999;
}
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.modal-dialog-pro-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 15px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}
/*
 * 1. Fixes IE9
 */
.modal-dialog-pro-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #dddddd;
  /* 1 */
  width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.modal-dialog-pro-form-small,
textarea.modal-dialog-pro-form-small,
input[type].modal-dialog-pro-form-small,
input:not([type]).modal-dialog-pro-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}
select.modal-dialog-pro-form-large,
textarea.modal-dialog-pro-form-large,
input[type].modal-dialog-pro-form-large,
input:not([type]).modal-dialog-pro-form-large {
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.modal-dialog-pro-form textarea,
.modal-dialog-pro-form select[multiple],
.modal-dialog-pro-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.modal-dialog-pro-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}
/*
 * Success state
 */
.modal-dialog-pro-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.modal-dialog-pro-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.modal-dialog-pro-form-blank:focus {
  border-color: #dddddd !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.modal-dialog-pro-form-width-mini {
  width: 40px;
}
select.modal-dialog-pro-form-width-mini {
  width: 65px;
}
.modal-dialog-pro-form-width-small {
  width: 130px;
}
.modal-dialog-pro-form-width-medium {
  width: 200px;
}
.modal-dialog-pro-form-width-large {
  width: 500px;
}
/* Sub-objects: `modal-dialog-pro-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `modal-dialog-pro-form-horizontal` modifier
 */
.modal-dialog-pro-form-row:before,
.modal-dialog-pro-form-row:after {
  content: "";
  display: table;
}
.modal-dialog-pro-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.modal-dialog-pro-form-row + .modal-dialog-pro-form-row {
  margin-top: 15px;
}
/* Help text
 * Sub-object: `modal-dialog-pro-form-help-inline`, `modal-dialog-pro-form-help-block`
 ========================================================================== */
.modal-dialog-pro-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.modal-dialog-pro-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `modal-dialog-pro-form-controls`, `modal-dialog-pro-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.modal-dialog-pro-form-controls > :first-child {
  margin-top: 0;
}
.modal-dialog-pro-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.modal-dialog-pro-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `modal-dialog-pro-form-stacked`
 * Requires sub-object: `modal-dialog-pro-form-label`
 ========================================================================== */
.modal-dialog-pro-form-stacked .modal-dialog-pro-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `modal-dialog-pro-form-horizontal`
 * Requires sub-objects: `modal-dialog-pro-form-label`, `modal-dialog-pro-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `modal-dialog-pro-form-stacked` */
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .modal-dialog-pro-form-horizontal .modal-dialog-pro-form-controls-text {
    padding-top: 5px;
  }
}
/* Sub-object: `modal-dialog-pro-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.modal-dialog-pro-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.modal-dialog-pro-form-icon > [class*='modal-dialog-pro-icon-'] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999999;
  text-align: center;
  /* 1 */
  pointer-events: none;
}
.modal-dialog-pro-form-icon:not(.modal-dialog-pro-form-icon-flip) > input {
  padding-left: 30px !important;
}
/*
 * Sub-modifier: `modal-dialog-pro-form-icon-flip`
 */
.modal-dialog-pro-form-icon-flip > [class*='modal-dialog-pro-icon-'] {
  right: 0;
}
.modal-dialog-pro-form-icon-flip > input {
  padding-right: 30px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.modal-dialog-pro-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #444444;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #f5f5f5;
  vertical-align: middle;
  /* 8 */
  line-height: 28px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
.modal-dialog-pro-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.modal-dialog-pro-button:hover,
.modal-dialog-pro-button:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  border-color: rgba(0, 0, 0, 0.16);
}
/* Active */
.modal-dialog-pro-button:active,
.modal-dialog-pro-button.modal-dialog-pro-active {
  background-color: #eeeeee;
  color: #444444;
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `modal-dialog-pro-button-primary`
 */
.modal-dialog-pro-button-primary {
  background-color: #00a8e6;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-primary:hover,
.modal-dialog-pro-button-primary:focus {
  background-color: #35b3ee;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-primary:active,
.modal-dialog-pro-button-primary.modal-dialog-pro-active {
  background-color: #0091ca;
  color: #ffffff;
}
/*
 * Modifier: `modal-dialog-pro-button-success`
 */
.modal-dialog-pro-button-success {
  background-color: #8cc14c;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-success:hover,
.modal-dialog-pro-button-success:focus {
  background-color: #8ec73b;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-success:active,
.modal-dialog-pro-button-success.modal-dialog-pro-active {
  background-color: #72ae41;
  color: #ffffff;
}
/*
 * Modifier: `modal-dialog-pro-button-danger`
 */
.modal-dialog-pro-button-danger {
  background-color: #da314b;
  color: #ffffff;
}
/* Hover */
.modal-dialog-pro-button-danger:hover,
.modal-dialog-pro-button-danger:focus {
  background-color: #e4354f;
  color: #ffffff;
}
/* Active */
.modal-dialog-pro-button-danger:active,
.modal-dialog-pro-button-danger.modal-dialog-pro-active {
  background-color: #c91032;
  color: #ffffff;
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.modal-dialog-pro-button:disabled {
  background-color: #fafafa;
  color: #999999;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: none;
  text-shadow: 0 1px 0 #ffffff;
}
/* Modifier: `modal-dialog-pro-button-link`
 ========================================================================== */
/* Reset */
.modal-dialog-pro-button-link,
.modal-dialog-pro-button-link:hover,
.modal-dialog-pro-button-link:focus,
.modal-dialog-pro-button-link:active,
.modal-dialog-pro-button-link.modal-dialog-pro-active,
.modal-dialog-pro-button-link:disabled {
  border-color: transparent;
  background: none;
  box-shadow: none;
  text-shadow: none;
}
/* Color */
.modal-dialog-pro-button-link {
  color: #0077dd;
}
.modal-dialog-pro-button-link:hover,
.modal-dialog-pro-button-link:focus,
.modal-dialog-pro-button-link:active,
.modal-dialog-pro-button-link.modal-dialog-pro-active {
  color: #005599;
  text-decoration: underline;
}
.modal-dialog-pro-button-link:disabled {
  color: #999999;
}
/* Focus */
.modal-dialog-pro-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 18px;
  font-size: 11px;
}
.modal-dialog-pro-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 23px;
  font-size: 12px;
}
.modal-dialog-pro-button-large {
  min-height: 40px;
  padding: 0 15px;
  line-height: 38px;
  font-size: 16px;
  border-radius: 5px;
}
/* Sub-object `modal-dialog-pro-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.modal-dialog-pro-button-group > * {
  display: inline-block;
}
/* 5 */
.modal-dialog-pro-button-group .modal-dialog-pro-button {
  vertical-align: top;
}
/* Sub-object: `modal-dialog-pro-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.modal-dialog-pro-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
/* Color modifiers
     ========================================================================== */
.modal-dialog-pro-button-primary,
.modal-dialog-pro-button-success,
.modal-dialog-pro-button-danger {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.modal-dialog-pro-button-primary:hover,
.modal-dialog-pro-button-primary:focus,
.modal-dialog-pro-button-success:hover,
.modal-dialog-pro-button-success:focus,
.modal-dialog-pro-button-danger:hover,
.modal-dialog-pro-button-danger:focus {
  border-color: rgba(0, 0, 0, 0.21);
}
/* Sub-object `modal-dialog-pro-button-group`
     ========================================================================== */
/*
     * Reset border-radius
     */
.modal-dialog-pro-button-group > .modal-dialog-pro-button:not(:first-child):not(:last-child),
.modal-dialog-pro-button-group > div:not(:first-child):not(:last-child) .modal-dialog-pro-button {
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.modal-dialog-pro-button-group > .modal-dialog-pro-button:first-child,
.modal-dialog-pro-button-group > div:first-child .modal-dialog-pro-button {
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.modal-dialog-pro-button-group > .modal-dialog-pro-button:last-child,
.modal-dialog-pro-button-group > div:last-child .modal-dialog-pro-button {
  border-left-color: rgba(0, 0, 0, 0.1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/*
     * Collapse border
     */
.modal-dialog-pro-button-group > .modal-dialog-pro-button:nth-child(n+2),
.modal-dialog-pro-button-group > div:nth-child(n+2) .modal-dialog-pro-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.modal-dialog-pro-button-group .modal-dialog-pro-button:hover,
.modal-dialog-pro-button-group .modal-dialog-pro-button:active {
  position: relative;
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url("../files/fonts/fontawesome-webfont.eot");
  src: url("../files/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../files/fonts/fontawesome-webfont.woff2") format('woff2'), url("../files/fonts/fontawesome-webfont.woff") format("woff"), url("../files/fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
[class*='modal-dialog-pro-icon-'] {
  font-family: FontAwesome;
  /* 1 */
  display: inline-block;
  /* 2 */
  font-weight: normal;
  font-style: normal;
  /* 4 */
  line-height: 1;
  /* 5 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 6 */
[class*='modal-dialog-pro-icon-'],
[class*='modal-dialog-pro-icon-']:hover,
[class*='modal-dialog-pro-icon-']:focus {
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-icon-small {
  font-size: 150%;
  vertical-align: -10%;
}
.modal-dialog-pro-icon-medium {
  font-size: 200%;
  vertical-align: -16%;
}
.modal-dialog-pro-icon-large {
  font-size: 250%;
  vertical-align: -22%;
}
/* Modifier: `modal-dialog-pro-icon-justify`
 ========================================================================== */
.modal-dialog-pro-icon-justify {
  width: 1em;
  text-align: center;
}
/* Modifier: `modal-dialog-pro-icon-spin`
 ========================================================================== */
.modal-dialog-pro-icon-spin {
  display: inline-block;
  -webkit-animation: modal-dialog-pro-rotate 2s infinite linear;
  animation: modal-dialog-pro-rotate 2s infinite linear;
}
/* Modifier: `modal-dialog-pro-icon-hover`
 ========================================================================== */
.modal-dialog-pro-icon-hover {
  color: #999999;
}
/*
 * Hover
 */
.modal-dialog-pro-icon-hover:hover {
  color: #444444;
}
/* Modifier: `modal-dialog-pro-icon-button`
 ========================================================================== */
.modal-dialog-pro-icon-button {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #f5f5f5;
  line-height: 35px;
  color: #444444;
  font-size: 18px;
  text-align: center;
  border: 1px solid #e7e7e7;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.modal-dialog-pro-icon-button:hover,
.modal-dialog-pro-icon-button:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  border-color: #d3d3d3;
}
/* Active */
.modal-dialog-pro-icon-button:active {
  background-color: #eeeeee;
  color: #444444;
}
/* Icon mapping
 ========================================================================== */
.modal-dialog-pro-icon-glass:before {
  content: "\f000";
}
.modal-dialog-pro-icon-music:before {
  content: "\f001";
}
.modal-dialog-pro-icon-search:before {
  content: "\f002";
}
.modal-dialog-pro-icon-envelope-o:before {
  content: "\f003";
}
.modal-dialog-pro-icon-heart:before {
  content: "\f004";
}
.modal-dialog-pro-icon-star:before {
  content: "\f005";
}
.modal-dialog-pro-icon-star-o:before {
  content: "\f006";
}
.modal-dialog-pro-icon-user:before {
  content: "\f007";
}
.modal-dialog-pro-icon-film:before {
  content: "\f008";
}
.modal-dialog-pro-icon-th-large:before {
  content: "\f009";
}
.modal-dialog-pro-icon-th:before {
  content: "\f00a";
}
.modal-dialog-pro-icon-th-list:before {
  content: "\f00b";
}
.modal-dialog-pro-icon-check:before {
  content: "\f00c";
}
.modal-dialog-pro-icon-remove:before,
.modal-dialog-pro-icon-close:before,
.modal-dialog-pro-icon-times:before {
  content: "\f00d";
}
.modal-dialog-pro-icon-search-plus:before {
  content: "\f00e";
}
.modal-dialog-pro-icon-search-minus:before {
  content: "\f010";
}
.modal-dialog-pro-icon-power-off:before {
  content: "\f011";
}
.modal-dialog-pro-icon-signal:before {
  content: "\f012";
}
.modal-dialog-pro-icon-gear:before,
.modal-dialog-pro-icon-cog:before {
  content: "\f013";
}
.modal-dialog-pro-icon-trash-o:before {
  content: "\f014";
}
.modal-dialog-pro-icon-home:before {
  content: "\f015";
}
.modal-dialog-pro-icon-file-o:before {
  content: "\f016";
}
.modal-dialog-pro-icon-clock-o:before {
  content: "\f017";
}
.modal-dialog-pro-icon-road:before {
  content: "\f018";
}
.modal-dialog-pro-icon-download:before {
  content: "\f019";
}
.modal-dialog-pro-icon-arrow-circle-o-down:before {
  content: "\f01a";
}
.modal-dialog-pro-icon-arrow-circle-o-up:before {
  content: "\f01b";
}
.modal-dialog-pro-icon-inbox:before {
  content: "\f01c";
}
.modal-dialog-pro-icon-play-circle-o:before {
  content: "\f01d";
}
.modal-dialog-pro-icon-rotate-right:before,
.modal-dialog-pro-icon-repeat:before {
  content: "\f01e";
}
.modal-dialog-pro-icon-refresh:before {
  content: "\f021";
}
.modal-dialog-pro-icon-list-alt:before {
  content: "\f022";
}
.modal-dialog-pro-icon-lock:before {
  content: "\f023";
}
.modal-dialog-pro-icon-flag:before {
  content: "\f024";
}
.modal-dialog-pro-icon-headphones:before {
  content: "\f025";
}
.modal-dialog-pro-icon-volume-off:before {
  content: "\f026";
}
.modal-dialog-pro-icon-volume-down:before {
  content: "\f027";
}
.modal-dialog-pro-icon-volume-up:before {
  content: "\f028";
}
.modal-dialog-pro-icon-qrcode:before {
  content: "\f029";
}
.modal-dialog-pro-icon-barcode:before {
  content: "\f02a";
}
.modal-dialog-pro-icon-tag:before {
  content: "\f02b";
}
.modal-dialog-pro-icon-tags:before {
  content: "\f02c";
}
.modal-dialog-pro-icon-book:before {
  content: "\f02d";
}
.modal-dialog-pro-icon-bookmark:before {
  content: "\f02e";
}
.modal-dialog-pro-icon-print:before {
  content: "\f02f";
}
.modal-dialog-pro-icon-camera:before {
  content: "\f030";
}
.modal-dialog-pro-icon-font:before {
  content: "\f031";
}
.modal-dialog-pro-icon-bold:before {
  content: "\f032";
}
.modal-dialog-pro-icon-italic:before {
  content: "\f033";
}
.modal-dialog-pro-icon-text-height:before {
  content: "\f034";
}
.modal-dialog-pro-icon-text-width:before {
  content: "\f035";
}
.modal-dialog-pro-icon-align-left:before {
  content: "\f036";
}
.modal-dialog-pro-icon-align-center:before {
  content: "\f037";
}
.modal-dialog-pro-icon-align-right:before {
  content: "\f038";
}
.modal-dialog-pro-icon-align-justify:before {
  content: "\f039";
}
.modal-dialog-pro-icon-list:before {
  content: "\f03a";
}
.modal-dialog-pro-icon-dedent:before,
.modal-dialog-pro-icon-outdent:before {
  content: "\f03b";
}
.modal-dialog-pro-icon-indent:before {
  content: "\f03c";
}
.modal-dialog-pro-icon-video-camera:before {
  content: "\f03d";
}
.modal-dialog-pro-icon-photo:before,
.modal-dialog-pro-icon-image:before,
.modal-dialog-pro-icon-picture-o:before {
  content: "\f03e";
}
.modal-dialog-pro-icon-pencil:before {
  content: "\f040";
}
.modal-dialog-pro-icon-map-marker:before {
  content: "\f041";
}
.modal-dialog-pro-icon-adjust:before {
  content: "\f042";
}
.modal-dialog-pro-icon-tint:before {
  content: "\f043";
}
.modal-dialog-pro-icon-edit:before,
.modal-dialog-pro-icon-pencil-square-o:before {
  content: "\f044";
}
.modal-dialog-pro-icon-share-square-o:before {
  content: "\f045";
}
.modal-dialog-pro-icon-check-square-o:before {
  content: "\f046";
}
.modal-dialog-pro-icon-arrows:before {
  content: "\f047";
}
.modal-dialog-pro-icon-step-backward:before {
  content: "\f048";
}
.modal-dialog-pro-icon-fast-backward:before {
  content: "\f049";
}
.modal-dialog-pro-icon-backward:before {
  content: "\f04a";
}
.modal-dialog-pro-icon-play:before {
  content: "\f04b";
}
.modal-dialog-pro-icon-pause:before {
  content: "\f04c";
}
.modal-dialog-pro-icon-stop:before {
  content: "\f04d";
}
.modal-dialog-pro-icon-forward:before {
  content: "\f04e";
}
.modal-dialog-pro-icon-fast-forward:before {
  content: "\f050";
}
.modal-dialog-pro-icon-step-forward:before {
  content: "\f051";
}
.modal-dialog-pro-icon-eject:before {
  content: "\f052";
}
.modal-dialog-pro-icon-chevron-left:before {
  content: "\f053";
}
.modal-dialog-pro-icon-chevron-right:before {
  content: "\f054";
}
.modal-dialog-pro-icon-plus-circle:before {
  content: "\f055";
}
.modal-dialog-pro-icon-minus-circle:before {
  content: "\f056";
}
.modal-dialog-pro-icon-times-circle:before {
  content: "\f057";
}
.modal-dialog-pro-icon-check-circle:before {
  content: "\f058";
}
.modal-dialog-pro-icon-question-circle:before {
  content: "\f059";
}
.modal-dialog-pro-icon-info-circle:before {
  content: "\f05a";
}
.modal-dialog-pro-icon-crosshairs:before {
  content: "\f05b";
}
.modal-dialog-pro-icon-times-circle-o:before {
  content: "\f05c";
}
.modal-dialog-pro-icon-check-circle-o:before {
  content: "\f05d";
}
.modal-dialog-pro-icon-ban:before {
  content: "\f05e";
}
.modal-dialog-pro-icon-arrow-left:before {
  content: "\f060";
}
.modal-dialog-pro-icon-arrow-right:before {
  content: "\f061";
}
.modal-dialog-pro-icon-arrow-up:before {
  content: "\f062";
}
.modal-dialog-pro-icon-arrow-down:before {
  content: "\f063";
}
.modal-dialog-pro-icon-mail-forward:before,
.modal-dialog-pro-icon-share:before {
  content: "\f064";
}
.modal-dialog-pro-icon-expand:before {
  content: "\f065";
}
.modal-dialog-pro-icon-compress:before {
  content: "\f066";
}
.modal-dialog-pro-icon-plus:before {
  content: "\f067";
}
.modal-dialog-pro-icon-minus:before {
  content: "\f068";
}
.modal-dialog-pro-icon-asterisk:before {
  content: "\f069";
}
.modal-dialog-pro-icon-exclamation-circle:before {
  content: "\f06a";
}
.modal-dialog-pro-icon-gift:before {
  content: "\f06b";
}
.modal-dialog-pro-icon-leaf:before {
  content: "\f06c";
}
.modal-dialog-pro-icon-fire:before {
  content: "\f06d";
}
.modal-dialog-pro-icon-eye:before {
  content: "\f06e";
}
.modal-dialog-pro-icon-eye-slash:before {
  content: "\f070";
}
.modal-dialog-pro-icon-warning:before,
.modal-dialog-pro-icon-exclamation-triangle:before {
  content: "\f071";
}
.modal-dialog-pro-icon-plane:before {
  content: "\f072";
}
.modal-dialog-pro-icon-calendar:before {
  content: "\f073";
}
.modal-dialog-pro-icon-random:before {
  content: "\f074";
}
.modal-dialog-pro-icon-comment:before {
  content: "\f075";
}
.modal-dialog-pro-icon-magnet:before {
  content: "\f076";
}
.modal-dialog-pro-icon-chevron-up:before {
  content: "\f077";
}
.modal-dialog-pro-icon-chevron-down:before {
  content: "\f078";
}
.modal-dialog-pro-icon-retweet:before {
  content: "\f079";
}
.modal-dialog-pro-icon-shopping-cart:before {
  content: "\f07a";
}
.modal-dialog-pro-icon-folder:before {
  content: "\f07b";
}
.modal-dialog-pro-icon-folder-open:before {
  content: "\f07c";
}
.modal-dialog-pro-icon-arrows-v:before {
  content: "\f07d";
}
.modal-dialog-pro-icon-arrows-h:before {
  content: "\f07e";
}
.modal-dialog-pro-icon-bar-chart-o:before,
.modal-dialog-pro-icon-bar-chart:before {
  content: "\f080";
}
.modal-dialog-pro-icon-twitter-square:before {
  content: "\f081";
}
.modal-dialog-pro-icon-facebook-square:before {
  content: "\f082";
}
.modal-dialog-pro-icon-camera-retro:before {
  content: "\f083";
}
.modal-dialog-pro-icon-key:before {
  content: "\f084";
}
.modal-dialog-pro-icon-gears:before,
.modal-dialog-pro-icon-cogs:before {
  content: "\f085";
}
.modal-dialog-pro-icon-comments:before {
  content: "\f086";
}
.modal-dialog-pro-icon-thumbs-o-up:before {
  content: "\f087";
}
.modal-dialog-pro-icon-thumbs-o-down:before {
  content: "\f088";
}
.modal-dialog-pro-icon-star-half:before {
  content: "\f089";
}
.modal-dialog-pro-icon-heart-o:before {
  content: "\f08a";
}
.modal-dialog-pro-icon-sign-out:before {
  content: "\f08b";
}
.modal-dialog-pro-icon-linkedin-square:before {
  content: "\f08c";
}
.modal-dialog-pro-icon-thumb-tack:before {
  content: "\f08d";
}
.modal-dialog-pro-icon-external-link:before {
  content: "\f08e";
}
.modal-dialog-pro-icon-sign-in:before {
  content: "\f090";
}
.modal-dialog-pro-icon-trophy:before {
  content: "\f091";
}
.modal-dialog-pro-icon-github-square:before {
  content: "\f092";
}
.modal-dialog-pro-icon-upload:before {
  content: "\f093";
}
.modal-dialog-pro-icon-lemon-o:before {
  content: "\f094";
}
.modal-dialog-pro-icon-phone:before {
  content: "\f095";
}
.modal-dialog-pro-icon-square-o:before {
  content: "\f096";
}
.modal-dialog-pro-icon-bookmark-o:before {
  content: "\f097";
}
.modal-dialog-pro-icon-phone-square:before {
  content: "\f098";
}
.modal-dialog-pro-icon-twitter:before {
  content: "\f099";
}
.modal-dialog-pro-icon-facebook-f:before,
.modal-dialog-pro-icon-facebook:before {
  content: "\f09a";
}
.modal-dialog-pro-icon-github:before {
  content: "\f09b";
}
.modal-dialog-pro-icon-unlock:before {
  content: "\f09c";
}
.modal-dialog-pro-icon-credit-card:before {
  content: "\f09d";
}
.modal-dialog-pro-icon-rss:before {
  content: "\f09e";
}
.modal-dialog-pro-icon-hdd-o:before {
  content: "\f0a0";
}
.modal-dialog-pro-icon-bullhorn:before {
  content: "\f0a1";
}
.modal-dialog-pro-icon-bell:before {
  content: "\f0f3";
}
.modal-dialog-pro-icon-certificate:before {
  content: "\f0a3";
}
.modal-dialog-pro-icon-hand-o-right:before {
  content: "\f0a4";
}
.modal-dialog-pro-icon-hand-o-left:before {
  content: "\f0a5";
}
.modal-dialog-pro-icon-hand-o-up:before {
  content: "\f0a6";
}
.modal-dialog-pro-icon-hand-o-down:before {
  content: "\f0a7";
}
.modal-dialog-pro-icon-arrow-circle-left:before {
  content: "\f0a8";
}
.modal-dialog-pro-icon-arrow-circle-right:before {
  content: "\f0a9";
}
.modal-dialog-pro-icon-arrow-circle-up:before {
  content: "\f0aa";
}
.modal-dialog-pro-icon-arrow-circle-down:before {
  content: "\f0ab";
}
.modal-dialog-pro-icon-globe:before {
  content: "\f0ac";
}
.modal-dialog-pro-icon-wrench:before {
  content: "\f0ad";
}
.modal-dialog-pro-icon-tasks:before {
  content: "\f0ae";
}
.modal-dialog-pro-icon-filter:before {
  content: "\f0b0";
}
.modal-dialog-pro-icon-briefcase:before {
  content: "\f0b1";
}
.modal-dialog-pro-icon-arrows-alt:before {
  content: "\f0b2";
}
.modal-dialog-pro-icon-group:before,
.modal-dialog-pro-icon-users:before {
  content: "\f0c0";
}
.modal-dialog-pro-icon-chain:before,
.modal-dialog-pro-icon-link:before {
  content: "\f0c1";
}
.modal-dialog-pro-icon-cloud:before {
  content: "\f0c2";
}
.modal-dialog-pro-icon-flask:before {
  content: "\f0c3";
}
.modal-dialog-pro-icon-cut:before,
.modal-dialog-pro-icon-scissors:before {
  content: "\f0c4";
}
.modal-dialog-pro-icon-copy:before,
.modal-dialog-pro-icon-files-o:before {
  content: "\f0c5";
}
.modal-dialog-pro-icon-paperclip:before {
  content: "\f0c6";
}
.modal-dialog-pro-icon-save:before,
.modal-dialog-pro-icon-floppy-o:before {
  content: "\f0c7";
}
.modal-dialog-pro-icon-square:before {
  content: "\f0c8";
}
.modal-dialog-pro-icon-navicon:before,
.modal-dialog-pro-icon-reorder:before,
.modal-dialog-pro-icon-bars:before {
  content: "\f0c9";
}
.modal-dialog-pro-icon-list-ul:before {
  content: "\f0ca";
}
.modal-dialog-pro-icon-list-ol:before {
  content: "\f0cb";
}
.modal-dialog-pro-icon-strikethrough:before {
  content: "\f0cc";
}
.modal-dialog-pro-icon-underline:before {
  content: "\f0cd";
}
.modal-dialog-pro-icon-table:before {
  content: "\f0ce";
}
.modal-dialog-pro-icon-magic:before {
  content: "\f0d0";
}
.modal-dialog-pro-icon-truck:before {
  content: "\f0d1";
}
.modal-dialog-pro-icon-pinterest:before {
  content: "\f0d2";
}
.modal-dialog-pro-icon-pinterest-square:before {
  content: "\f0d3";
}
.modal-dialog-pro-icon-google-plus-square:before {
  content: "\f0d4";
}
.modal-dialog-pro-icon-google-plus:before {
  content: "\f0d5";
}
.modal-dialog-pro-icon-money:before {
  content: "\f0d6";
}
.modal-dialog-pro-icon-caret-down:before {
  content: "\f0d7";
}
.modal-dialog-pro-icon-caret-up:before {
  content: "\f0d8";
}
.modal-dialog-pro-icon-caret-left:before {
  content: "\f0d9";
}
.modal-dialog-pro-icon-caret-right:before {
  content: "\f0da";
}
.modal-dialog-pro-icon-columns:before {
  content: "\f0db";
}
.modal-dialog-pro-icon-unsorted:before,
.modal-dialog-pro-icon-sort:before {
  content: "\f0dc";
}
.modal-dialog-pro-icon-sort-down:before,
.modal-dialog-pro-icon-sort-desc:before {
  content: "\f0dd";
}
.modal-dialog-pro-icon-sort-up:before,
.modal-dialog-pro-icon-sort-asc:before {
  content: "\f0de";
}
.modal-dialog-pro-icon-envelope:before {
  content: "\f0e0";
}
.modal-dialog-pro-icon-linkedin:before {
  content: "\f0e1";
}
.modal-dialog-pro-icon-rotate-left:before,
.modal-dialog-pro-icon-undo:before {
  content: "\f0e2";
}
.modal-dialog-pro-icon-legal:before,
.modal-dialog-pro-icon-gavel:before {
  content: "\f0e3";
}
.modal-dialog-pro-icon-dashboard:before,
.modal-dialog-pro-icon-tachometer:before {
  content: "\f0e4";
}
.modal-dialog-pro-icon-comment-o:before {
  content: "\f0e5";
}
.modal-dialog-pro-icon-comments-o:before {
  content: "\f0e6";
}
.modal-dialog-pro-icon-flash:before,
.modal-dialog-pro-icon-bolt:before {
  content: "\f0e7";
}
.modal-dialog-pro-icon-sitemap:before {
  content: "\f0e8";
}
.modal-dialog-pro-icon-umbrella:before {
  content: "\f0e9";
}
.modal-dialog-pro-icon-paste:before,
.modal-dialog-pro-icon-clipboard:before {
  content: "\f0ea";
}
.modal-dialog-pro-icon-lightbulb-o:before {
  content: "\f0eb";
}
.modal-dialog-pro-icon-exchange:before {
  content: "\f0ec";
}
.modal-dialog-pro-icon-cloud-download:before {
  content: "\f0ed";
}
.modal-dialog-pro-icon-cloud-upload:before {
  content: "\f0ee";
}
.modal-dialog-pro-icon-user-md:before {
  content: "\f0f0";
}
.modal-dialog-pro-icon-stethoscope:before {
  content: "\f0f1";
}
.modal-dialog-pro-icon-suitcase:before {
  content: "\f0f2";
}
.modal-dialog-pro-icon-bell-o:before {
  content: "\f0a2";
}
.modal-dialog-pro-icon-coffee:before {
  content: "\f0f4";
}
.modal-dialog-pro-icon-cutlery:before {
  content: "\f0f5";
}
.modal-dialog-pro-icon-file-text-o:before {
  content: "\f0f6";
}
.modal-dialog-pro-icon-building-o:before {
  content: "\f0f7";
}
.modal-dialog-pro-icon-hospital-o:before {
  content: "\f0f8";
}
.modal-dialog-pro-icon-ambulance:before {
  content: "\f0f9";
}
.modal-dialog-pro-icon-medkit:before {
  content: "\f0fa";
}
.modal-dialog-pro-icon-fighter-jet:before {
  content: "\f0fb";
}
.modal-dialog-pro-icon-beer:before {
  content: "\f0fc";
}
.modal-dialog-pro-icon-h-square:before {
  content: "\f0fd";
}
.modal-dialog-pro-icon-plus-square:before {
  content: "\f0fe";
}
.modal-dialog-pro-icon-angle-double-left:before {
  content: "\f100";
}
.modal-dialog-pro-icon-angle-double-right:before {
  content: "\f101";
}
.modal-dialog-pro-icon-angle-double-up:before {
  content: "\f102";
}
.modal-dialog-pro-icon-angle-double-down:before {
  content: "\f103";
}
.modal-dialog-pro-icon-angle-left:before {
  content: "\f104";
}
.modal-dialog-pro-icon-angle-right:before {
  content: "\f105";
}
.modal-dialog-pro-icon-angle-up:before {
  content: "\f106";
}
.modal-dialog-pro-icon-angle-down:before {
  content: "\f107";
}
.modal-dialog-pro-icon-desktop:before {
  content: "\f108";
}
.modal-dialog-pro-icon-laptop:before {
  content: "\f109";
}
.modal-dialog-pro-icon-tablet:before {
  content: "\f10a";
}
.modal-dialog-pro-icon-mobile-phone:before,
.modal-dialog-pro-icon-mobile:before {
  content: "\f10b";
}
.modal-dialog-pro-icon-circle-o:before {
  content: "\f10c";
}
.modal-dialog-pro-icon-quote-left:before {
  content: "\f10d";
}
.modal-dialog-pro-icon-quote-right:before {
  content: "\f10e";
}
.modal-dialog-pro-icon-spinner:before {
  content: "\f110";
}
.modal-dialog-pro-icon-circle:before {
  content: "\f111";
}
.modal-dialog-pro-icon-mail-reply:before,
.modal-dialog-pro-icon-reply:before {
  content: "\f112";
}
.modal-dialog-pro-icon-github-alt:before {
  content: "\f113";
}
.modal-dialog-pro-icon-folder-o:before {
  content: "\f114";
}
.modal-dialog-pro-icon-folder-open-o:before {
  content: "\f115";
}
.modal-dialog-pro-icon-smile-o:before {
  content: "\f118";
}
.modal-dialog-pro-icon-frown-o:before {
  content: "\f119";
}
.modal-dialog-pro-icon-meh-o:before {
  content: "\f11a";
}
.modal-dialog-pro-icon-gamepad:before {
  content: "\f11b";
}
.modal-dialog-pro-icon-keyboard-o:before {
  content: "\f11c";
}
.modal-dialog-pro-icon-flag-o:before {
  content: "\f11d";
}
.modal-dialog-pro-icon-flag-checkered:before {
  content: "\f11e";
}
.modal-dialog-pro-icon-terminal:before {
  content: "\f120";
}
.modal-dialog-pro-icon-code:before {
  content: "\f121";
}
.modal-dialog-pro-icon-mail-reply-all:before,
.modal-dialog-pro-icon-reply-all:before {
  content: "\f122";
}
.modal-dialog-pro-icon-star-half-empty:before,
.modal-dialog-pro-icon-star-half-full:before,
.modal-dialog-pro-icon-star-half-o:before {
  content: "\f123";
}
.modal-dialog-pro-icon-location-arrow:before {
  content: "\f124";
}
.modal-dialog-pro-icon-crop:before {
  content: "\f125";
}
.modal-dialog-pro-icon-code-fork:before {
  content: "\f126";
}
.modal-dialog-pro-icon-unlink:before,
.modal-dialog-pro-icon-chain-broken:before {
  content: "\f127";
}
.modal-dialog-pro-icon-question:before {
  content: "\f128";
}
.modal-dialog-pro-icon-info:before {
  content: "\f129";
}
.modal-dialog-pro-icon-exclamation:before {
  content: "\f12a";
}
.modal-dialog-pro-icon-superscript:before {
  content: "\f12b";
}
.modal-dialog-pro-icon-subscript:before {
  content: "\f12c";
}
.modal-dialog-pro-icon-eraser:before {
  content: "\f12d";
}
.modal-dialog-pro-icon-puzzle-piece:before {
  content: "\f12e";
}
.modal-dialog-pro-icon-microphone:before {
  content: "\f130";
}
.modal-dialog-pro-icon-microphone-slash:before {
  content: "\f131";
}
.modal-dialog-pro-icon-shield:before {
  content: "\f132";
}
.modal-dialog-pro-icon-calendar-o:before {
  content: "\f133";
}
.modal-dialog-pro-icon-fire-extinguisher:before {
  content: "\f134";
}
.modal-dialog-pro-icon-rocket:before {
  content: "\f135";
}
.modal-dialog-pro-icon-maxcdn:before {
  content: "\f136";
}
.modal-dialog-pro-icon-chevron-circle-left:before {
  content: "\f137";
}
.modal-dialog-pro-icon-chevron-circle-right:before {
  content: "\f138";
}
.modal-dialog-pro-icon-chevron-circle-up:before {
  content: "\f139";
}
.modal-dialog-pro-icon-chevron-circle-down:before {
  content: "\f13a";
}
.modal-dialog-pro-icon-html5:before {
  content: "\f13b";
}
.modal-dialog-pro-icon-css3:before {
  content: "\f13c";
}
.modal-dialog-pro-icon-anchor:before {
  content: "\f13d";
}
.modal-dialog-pro-icon-unlock-alt:before {
  content: "\f13e";
}
.modal-dialog-pro-icon-bullseye:before {
  content: "\f140";
}
.modal-dialog-pro-icon-ellipsis-h:before {
  content: "\f141";
}
.modal-dialog-pro-icon-ellipsis-v:before {
  content: "\f142";
}
.modal-dialog-pro-icon-rss-square:before {
  content: "\f143";
}
.modal-dialog-pro-icon-play-circle:before {
  content: "\f144";
}
.modal-dialog-pro-icon-ticket:before {
  content: "\f145";
}
.modal-dialog-pro-icon-minus-square:before {
  content: "\f146";
}
.modal-dialog-pro-icon-minus-square-o:before {
  content: "\f147";
}
.modal-dialog-pro-icon-level-up:before {
  content: "\f148";
}
.modal-dialog-pro-icon-level-down:before {
  content: "\f149";
}
.modal-dialog-pro-icon-check-square:before {
  content: "\f14a";
}
.modal-dialog-pro-icon-pencil-square:before {
  content: "\f14b";
}
.modal-dialog-pro-icon-external-link-square:before {
  content: "\f14c";
}
.modal-dialog-pro-icon-share-square:before {
  content: "\f14d";
}
.modal-dialog-pro-icon-compass:before {
  content: "\f14e";
}
.modal-dialog-pro-icon-toggle-down:before,
.modal-dialog-pro-icon-caret-square-o-down:before {
  content: "\f150";
}
.modal-dialog-pro-icon-toggle-up:before,
.modal-dialog-pro-icon-caret-square-o-up:before {
  content: "\f151";
}
.modal-dialog-pro-icon-toggle-right:before,
.modal-dialog-pro-icon-caret-square-o-right:before {
  content: "\f152";
}
.modal-dialog-pro-icon-euro:before,
.modal-dialog-pro-icon-eur:before {
  content: "\f153";
}
.modal-dialog-pro-icon-gbp:before {
  content: "\f154";
}
.modal-dialog-pro-icon-dollar:before,
.modal-dialog-pro-icon-usd:before {
  content: "\f155";
}
.modal-dialog-pro-icon-rupee:before,
.modal-dialog-pro-icon-inr:before {
  content: "\f156";
}
.modal-dialog-pro-icon-cny:before,
.modal-dialog-pro-icon-rmb:before,
.modal-dialog-pro-icon-yen:before,
.modal-dialog-pro-icon-jpy:before {
  content: "\f157";
}
.modal-dialog-pro-icon-ruble:before,
.modal-dialog-pro-icon-rouble:before,
.modal-dialog-pro-icon-rub:before {
  content: "\f158";
}
.modal-dialog-pro-icon-won:before,
.modal-dialog-pro-icon-krw:before {
  content: "\f159";
}
.modal-dialog-pro-icon-bitcoin:before,
.modal-dialog-pro-icon-btc:before {
  content: "\f15a";
}
.modal-dialog-pro-icon-file:before {
  content: "\f15b";
}
.modal-dialog-pro-icon-file-text:before {
  content: "\f15c";
}
.modal-dialog-pro-icon-sort-alpha-asc:before {
  content: "\f15d";
}
.modal-dialog-pro-icon-sort-alpha-desc:before {
  content: "\f15e";
}
.modal-dialog-pro-icon-sort-amount-asc:before {
  content: "\f160";
}
.modal-dialog-pro-icon-sort-amount-desc:before {
  content: "\f161";
}
.modal-dialog-pro-icon-sort-numeric-asc:before {
  content: "\f162";
}
.modal-dialog-pro-icon-sort-numeric-desc:before {
  content: "\f163";
}
.modal-dialog-pro-icon-thumbs-up:before {
  content: "\f164";
}
.modal-dialog-pro-icon-thumbs-down:before {
  content: "\f165";
}
.modal-dialog-pro-icon-youtube-square:before {
  content: "\f166";
}
.modal-dialog-pro-icon-youtube:before {
  content: "\f167";
}
.modal-dialog-pro-icon-xing:before {
  content: "\f168";
}
.modal-dialog-pro-icon-xing-square:before {
  content: "\f169";
}
.modal-dialog-pro-icon-youtube-play:before {
  content: "\f16a";
}
.modal-dialog-pro-icon-dropbox:before {
  content: "\f16b";
}
.modal-dialog-pro-icon-stack-overflow:before {
  content: "\f16c";
}
.modal-dialog-pro-icon-instagram:before {
  content: "\f16d";
}
.modal-dialog-pro-icon-flickr:before {
  content: "\f16e";
}
.modal-dialog-pro-icon-adn:before {
  content: "\f170";
}
.modal-dialog-pro-icon-bitbucket:before {
  content: "\f171";
}
.modal-dialog-pro-icon-bitbucket-square:before {
  content: "\f172";
}
.modal-dialog-pro-icon-tumblr:before {
  content: "\f173";
}
.modal-dialog-pro-icon-tumblr-square:before {
  content: "\f174";
}
.modal-dialog-pro-icon-long-arrow-down:before {
  content: "\f175";
}
.modal-dialog-pro-icon-long-arrow-up:before {
  content: "\f176";
}
.modal-dialog-pro-icon-long-arrow-left:before {
  content: "\f177";
}
.modal-dialog-pro-icon-long-arrow-right:before {
  content: "\f178";
}
.modal-dialog-pro-icon-apple:before {
  content: "\f179";
}
.modal-dialog-pro-icon-windows:before {
  content: "\f17a";
}
.modal-dialog-pro-icon-android:before {
  content: "\f17b";
}
.modal-dialog-pro-icon-linux:before {
  content: "\f17c";
}
.modal-dialog-pro-icon-dribbble:before {
  content: "\f17d";
}
.modal-dialog-pro-icon-skype:before {
  content: "\f17e";
}
.modal-dialog-pro-icon-foursquare:before {
  content: "\f180";
}
.modal-dialog-pro-icon-trello:before {
  content: "\f181";
}
.modal-dialog-pro-icon-female:before {
  content: "\f182";
}
.modal-dialog-pro-icon-male:before {
  content: "\f183";
}
.modal-dialog-pro-icon-gittip:before,
.modal-dialog-pro-icon-gratipay:before {
  content: "\f184";
}
.modal-dialog-pro-icon-sun-o:before {
  content: "\f185";
}
.modal-dialog-pro-icon-moon-o:before {
  content: "\f186";
}
.modal-dialog-pro-icon-archive:before {
  content: "\f187";
}
.modal-dialog-pro-icon-bug:before {
  content: "\f188";
}
.modal-dialog-pro-icon-vk:before {
  content: "\f189";
}
.modal-dialog-pro-icon-weibo:before {
  content: "\f18a";
}
.modal-dialog-pro-icon-renren:before {
  content: "\f18b";
}
.modal-dialog-pro-icon-pagelines:before {
  content: "\f18c";
}
.modal-dialog-pro-icon-stack-exchange:before {
  content: "\f18d";
}
.modal-dialog-pro-icon-arrow-circle-o-right:before {
  content: "\f18e";
}
.modal-dialog-pro-icon-arrow-circle-o-left:before {
  content: "\f190";
}
.modal-dialog-pro-icon-toggle-left:before,
.modal-dialog-pro-icon-caret-square-o-left:before {
  content: "\f191";
}
.modal-dialog-pro-icon-dot-circle-o:before {
  content: "\f192";
}
.modal-dialog-pro-icon-wheelchair:before {
  content: "\f193";
}
.modal-dialog-pro-icon-vimeo-square:before {
  content: "\f194";
}
.modal-dialog-pro-icon-turkish-lira:before,
.modal-dialog-pro-icon-try:before {
  content: "\f195";
}
.modal-dialog-pro-icon-plus-square-o:before {
  content: "\f196";
}
.modal-dialog-pro-icon-space-shuttle:before {
  content: "\f197";
}
.modal-dialog-pro-icon-slack:before {
  content: "\f198";
}
.modal-dialog-pro-icon-envelope-square:before {
  content: "\f199";
}
.modal-dialog-pro-icon-wordpress:before {
  content: "\f19a";
}
.modal-dialog-pro-icon-openid:before {
  content: "\f19b";
}
.modal-dialog-pro-icon-institution:before,
.modal-dialog-pro-icon-bank:before,
.modal-dialog-pro-icon-university:before {
  content: "\f19c";
}
.modal-dialog-pro-icon-mortar-board:before,
.modal-dialog-pro-icon-graduation-cap:before {
  content: "\f19d";
}
.modal-dialog-pro-icon-yahoo:before {
  content: "\f19e";
}
.modal-dialog-pro-icon-google:before {
  content: "\f1a0";
}
.modal-dialog-pro-icon-reddit:before {
  content: "\f1a1";
}
.modal-dialog-pro-icon-reddit-square:before {
  content: "\f1a2";
}
.modal-dialog-pro-icon-stumbleupon-circle:before {
  content: "\f1a3";
}
.modal-dialog-pro-icon-stumbleupon:before {
  content: "\f1a4";
}
.modal-dialog-pro-icon-delicious:before {
  content: "\f1a5";
}
.modal-dialog-pro-icon-digg:before {
  content: "\f1a6";
}
.modal-dialog-pro-icon-pied-piper:before {
  content: "\f1a7";
}
.modal-dialog-pro-icon-pied-piper-alt:before {
  content: "\f1a8";
}
.modal-dialog-pro-icon-drupal:before {
  content: "\f1a9";
}
.modal-dialog-pro-icon-joomla:before {
  content: "\f1aa";
}
.modal-dialog-pro-icon-language:before {
  content: "\f1ab";
}
.modal-dialog-pro-icon-fax:before {
  content: "\f1ac";
}
.modal-dialog-pro-icon-building:before {
  content: "\f1ad";
}
.modal-dialog-pro-icon-child:before {
  content: "\f1ae";
}
.modal-dialog-pro-icon-paw:before {
  content: "\f1b0";
}
.modal-dialog-pro-icon-spoon:before {
  content: "\f1b1";
}
.modal-dialog-pro-icon-cube:before {
  content: "\f1b2";
}
.modal-dialog-pro-icon-cubes:before {
  content: "\f1b3";
}
.modal-dialog-pro-icon-behance:before {
  content: "\f1b4";
}
.modal-dialog-pro-icon-behance-square:before {
  content: "\f1b5";
}
.modal-dialog-pro-icon-steam:before {
  content: "\f1b6";
}
.modal-dialog-pro-icon-steam-square:before {
  content: "\f1b7";
}
.modal-dialog-pro-icon-recycle:before {
  content: "\f1b8";
}
.modal-dialog-pro-icon-automobile:before,
.modal-dialog-pro-icon-car:before {
  content: "\f1b9";
}
.modal-dialog-pro-icon-cab:before,
.modal-dialog-pro-icon-taxi:before {
  content: "\f1ba";
}
.modal-dialog-pro-icon-tree:before {
  content: "\f1bb";
}
.modal-dialog-pro-icon-spotify:before {
  content: "\f1bc";
}
.modal-dialog-pro-icon-deviantart:before {
  content: "\f1bd";
}
.modal-dialog-pro-icon-soundcloud:before {
  content: "\f1be";
}
.modal-dialog-pro-icon-database:before {
  content: "\f1c0";
}
.modal-dialog-pro-icon-file-pdf-o:before {
  content: "\f1c1";
}
.modal-dialog-pro-icon-file-word-o:before {
  content: "\f1c2";
}
.modal-dialog-pro-icon-file-excel-o:before {
  content: "\f1c3";
}
.modal-dialog-pro-icon-file-powerpoint-o:before {
  content: "\f1c4";
}
.modal-dialog-pro-icon-file-photo-o:before,
.modal-dialog-pro-icon-file-picture-o:before,
.modal-dialog-pro-icon-file-image-o:before {
  content: "\f1c5";
}
.modal-dialog-pro-icon-file-zip-o:before,
.modal-dialog-pro-icon-file-archive-o:before {
  content: "\f1c6";
}
.modal-dialog-pro-icon-file-sound-o:before,
.modal-dialog-pro-icon-file-audio-o:before {
  content: "\f1c7";
}
.modal-dialog-pro-icon-file-movie-o:before,
.modal-dialog-pro-icon-file-video-o:before {
  content: "\f1c8";
}
.modal-dialog-pro-icon-file-code-o:before {
  content: "\f1c9";
}
.modal-dialog-pro-icon-vine:before {
  content: "\f1ca";
}
.modal-dialog-pro-icon-codepen:before {
  content: "\f1cb";
}
.modal-dialog-pro-icon-jsfiddle:before {
  content: "\f1cc";
}
.modal-dialog-pro-icon-life-bouy:before,
.modal-dialog-pro-icon-life-buoy:before,
.modal-dialog-pro-icon-life-saver:before,
.modal-dialog-pro-icon-support:before,
.modal-dialog-pro-icon-life-ring:before {
  content: "\f1cd";
}
.modal-dialog-pro-icon-circle-o-notch:before {
  content: "\f1ce";
}
.modal-dialog-pro-icon-ra:before,
.modal-dialog-pro-icon-rebel:before {
  content: "\f1d0";
}
.modal-dialog-pro-icon-ge:before,
.modal-dialog-pro-icon-empire:before {
  content: "\f1d1";
}
.modal-dialog-pro-icon-git-square:before {
  content: "\f1d2";
}
.modal-dialog-pro-icon-git:before {
  content: "\f1d3";
}
.modal-dialog-pro-icon-hacker-news:before {
  content: "\f1d4";
}
.modal-dialog-pro-icon-tencent-weibo:before {
  content: "\f1d5";
}
.modal-dialog-pro-icon-qq:before {
  content: "\f1d6";
}
.modal-dialog-pro-icon-wechat:before,
.modal-dialog-pro-icon-weixin:before {
  content: "\f1d7";
}
.modal-dialog-pro-icon-send:before,
.modal-dialog-pro-icon-paper-plane:before {
  content: "\f1d8";
}
.modal-dialog-pro-icon-send-o:before,
.modal-dialog-pro-icon-paper-plane-o:before {
  content: "\f1d9";
}
.modal-dialog-pro-icon-history:before {
  content: "\f1da";
}
.modal-dialog-pro-icon-genderless:before,
.modal-dialog-pro-icon-circle-thin:before {
  content: "\f1db";
}
.modal-dialog-pro-icon-header:before {
  content: "\f1dc";
}
.modal-dialog-pro-icon-paragraph:before {
  content: "\f1dd";
}
.modal-dialog-pro-icon-sliders:before {
  content: "\f1de";
}
.modal-dialog-pro-icon-share-alt:before {
  content: "\f1e0";
}
.modal-dialog-pro-icon-share-alt-square:before {
  content: "\f1e1";
}
.modal-dialog-pro-icon-bomb:before {
  content: "\f1e2";
}
.modal-dialog-pro-icon-soccer-ball-o:before,
.modal-dialog-pro-icon-futbol-o:before {
  content: "\f1e3";
}
.modal-dialog-pro-icon-tty:before {
  content: "\f1e4";
}
.modal-dialog-pro-icon-binoculars:before {
  content: "\f1e5";
}
.modal-dialog-pro-icon-plug:before {
  content: "\f1e6";
}
.modal-dialog-pro-icon-slideshare:before {
  content: "\f1e7";
}
.modal-dialog-pro-icon-twitch:before {
  content: "\f1e8";
}
.modal-dialog-pro-icon-yelp:before {
  content: "\f1e9";
}
.modal-dialog-pro-icon-newspaper-o:before {
  content: "\f1ea";
}
.modal-dialog-pro-icon-wifi:before {
  content: "\f1eb";
}
.modal-dialog-pro-icon-calculator:before {
  content: "\f1ec";
}
.modal-dialog-pro-icon-paypal:before {
  content: "\f1ed";
}
.modal-dialog-pro-icon-google-wallet:before {
  content: "\f1ee";
}
.modal-dialog-pro-icon-cc-visa:before {
  content: "\f1f0";
}
.modal-dialog-pro-icon-cc-mastercard:before {
  content: "\f1f1";
}
.modal-dialog-pro-icon-cc-discover:before {
  content: "\f1f2";
}
.modal-dialog-pro-icon-cc-amex:before {
  content: "\f1f3";
}
.modal-dialog-pro-icon-cc-paypal:before {
  content: "\f1f4";
}
.modal-dialog-pro-icon-cc-stripe:before {
  content: "\f1f5";
}
.modal-dialog-pro-icon-bell-slash:before {
  content: "\f1f6";
}
.modal-dialog-pro-icon-bell-slash-o:before {
  content: "\f1f7";
}
.modal-dialog-pro-icon-trash:before {
  content: "\f1f8";
}
.modal-dialog-pro-icon-copyright:before {
  content: "\f1f9";
}
.modal-dialog-pro-icon-at:before {
  content: "\f1fa";
}
.modal-dialog-pro-icon-eyedropper:before {
  content: "\f1fb";
}
.modal-dialog-pro-icon-paint-brush:before {
  content: "\f1fc";
}
.modal-dialog-pro-icon-birthday-cake:before {
  content: "\f1fd";
}
.modal-dialog-pro-icon-area-chart:before {
  content: "\f1fe";
}
.modal-dialog-pro-icon-pie-chart:before {
  content: "\f200";
}
.modal-dialog-pro-icon-line-chart:before {
  content: "\f201";
}
.modal-dialog-pro-icon-lastfm:before {
  content: "\f202";
}
.modal-dialog-pro-icon-lastfm-square:before {
  content: "\f203";
}
.modal-dialog-pro-icon-toggle-off:before {
  content: "\f204";
}
.modal-dialog-pro-icon-toggle-on:before {
  content: "\f205";
}
.modal-dialog-pro-icon-bicycle:before {
  content: "\f206";
}
.modal-dialog-pro-icon-bus:before {
  content: "\f207";
}
.modal-dialog-pro-icon-ioxhost:before {
  content: "\f208";
}
.modal-dialog-pro-icon-angellist:before {
  content: "\f209";
}
.modal-dialog-pro-icon-cc:before {
  content: "\f20a";
}
.modal-dialog-pro-icon-shekel:before,
.modal-dialog-pro-icon-sheqel:before,
.modal-dialog-pro-icon-ils:before {
  content: "\f20b";
}
.modal-dialog-pro-icon-meanpath:before {
  content: "\f20c";
}
.modal-dialog-pro-icon-buysellads:before {
  content: "\f20d";
}
.modal-dialog-pro-icon-connectdevelop:before {
  content: "\f20e";
}
.modal-dialog-pro-icon-dashcube:before {
  content: "\f210";
}
.modal-dialog-pro-icon-forumbee:before {
  content: "\f211";
}
.modal-dialog-pro-icon-leanpub:before {
  content: "\f212";
}
.modal-dialog-pro-icon-sellsy:before {
  content: "\f213";
}
.modal-dialog-pro-icon-shirtsinbulk:before {
  content: "\f214";
}
.modal-dialog-pro-icon-simplybuilt:before {
  content: "\f215";
}
.modal-dialog-pro-icon-skyatlas:before {
  content: "\f216";
}
.modal-dialog-pro-icon-cart-plus:before {
  content: "\f217";
}
.modal-dialog-pro-icon-cart-arrow-down:before {
  content: "\f218";
}
.modal-dialog-pro-icon-diamond:before {
  content: "\f219";
}
.modal-dialog-pro-icon-ship:before {
  content: "\f21a";
}
.modal-dialog-pro-icon-user-secret:before {
  content: "\f21b";
}
.modal-dialog-pro-icon-motorcycle:before {
  content: "\f21c";
}
.modal-dialog-pro-icon-street-view:before {
  content: "\f21d";
}
.modal-dialog-pro-icon-heartbeat:before {
  content: "\f21e";
}
.modal-dialog-pro-icon-venus:before {
  content: "\f221";
}
.modal-dialog-pro-icon-mars:before {
  content: "\f222";
}
.modal-dialog-pro-icon-mercury:before {
  content: "\f223";
}
.modal-dialog-pro-icon-transgender:before {
  content: "\f224";
}
.modal-dialog-pro-icon-transgender-alt:before {
  content: "\f225";
}
.modal-dialog-pro-icon-venus-double:before {
  content: "\f226";
}
.modal-dialog-pro-icon-mars-double:before {
  content: "\f227";
}
.modal-dialog-pro-icon-venus-mars:before {
  content: "\f228";
}
.modal-dialog-pro-icon-mars-stroke:before {
  content: "\f229";
}
.modal-dialog-pro-icon-mars-stroke-v:before {
  content: "\f22a";
}
.modal-dialog-pro-icon-mars-stroke-h:before {
  content: "\f22b";
}
.modal-dialog-pro-icon-neuter:before {
  content: "\f22c";
}
.modal-dialog-pro-icon-facebook-official:before {
  content: "\f230";
}
.modal-dialog-pro-icon-pinterest-p:before {
  content: "\f231";
}
.modal-dialog-pro-icon-whatsapp:before {
  content: "\f232";
}
.modal-dialog-pro-icon-server:before {
  content: "\f233";
}
.modal-dialog-pro-icon-user-plus:before {
  content: "\f234";
}
.modal-dialog-pro-icon-user-times:before {
  content: "\f235";
}
.modal-dialog-pro-icon-hotel:before,
.modal-dialog-pro-icon-bed:before {
  content: "\f236";
}
.modal-dialog-pro-icon-viacoin:before {
  content: "\f237";
}
.modal-dialog-pro-icon-train:before {
  content: "\f238";
}
.modal-dialog-pro-icon-subway:before {
  content: "\f239";
}
.modal-dialog-pro-icon-medium-logo:before {
  content: "\f23a";
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.modal-dialog-pro-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.modal-dialog-pro-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}
/* Icon */
.modal-dialog-pro-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.modal-dialog-pro-close:hover,
.modal-dialog-pro-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* Modifier
 ========================================================================== */
.modal-dialog-pro-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
}
/* Hover */
.modal-dialog-pro-close-alt:hover,
.modal-dialog-pro-close-alt:focus {
  opacity: 1;
}
/* Icon */
.modal-dialog-pro-close-alt:after {
  opacity: 0.5;
}
.modal-dialog-pro-close-alt:hover:after,
.modal-dialog-pro-close-alt:focus:after {
  opacity: 0.8;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
.modal-dialog-pro-badge {
  display: inline-block;
  padding: 0 5px;
  background: #00a8e6;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Keep color when badge is a link
 */
a.modal-dialog-pro-badge:hover {
  color: #ffffff;
}
/* Modifier: `modal-dialog-pro-badge-notification`;
 ========================================================================== */
.modal-dialog-pro-badge-notification {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 18px;
  border-radius: 500px;
  font-size: 12px;
  line-height: 18px;
}
/* Color modifier
 ========================================================================== */
/*
 * Modifier: `modal-dialog-pro-badge-success`
 */
.modal-dialog-pro-badge-success {
  background-color: #8cc14c;
}
/*
 * Modifier: `modal-dialog-pro-badge-warning`
 */
.modal-dialog-pro-badge-warning {
  background-color: #faa732;
}
/*
 * Modifier: `modal-dialog-pro-badge-danger`
 */
.modal-dialog-pro-badge-danger {
  background-color: #da314b;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.modal-dialog-pro-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
  border: 1px solid rgba(45, 112, 145, 0.3);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Add margin if adjacent element
 */
* + .modal-dialog-pro-alert {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.modal-dialog-pro-alert h1,
.modal-dialog-pro-alert h2,
.modal-dialog-pro-alert h3,
.modal-dialog-pro-alert h4,
.modal-dialog-pro-alert h5,
.modal-dialog-pro-alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.modal-dialog-pro-alert > .modal-dialog-pro-close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.modal-dialog-pro-alert > .modal-dialog-pro-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `modal-dialog-pro-alert-success`
 ========================================================================== */
.modal-dialog-pro-alert-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `modal-dialog-pro-alert-warning`
 ========================================================================== */
.modal-dialog-pro-alert-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `modal-dialog-pro-alert-danger`
 ========================================================================== */
.modal-dialog-pro-alert-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
/* Modifier: `modal-dialog-pro-alert-large`
 ========================================================================== */
.modal-dialog-pro-alert-large {
  padding: 20px;
}
.modal-dialog-pro-alert-large > .modal-dialog-pro-close:first-child {
  margin: -10px -10px 0 0;
}
/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.modal-dialog-pro-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #dddddd;
  background: #ffffff;
  border-radius: 4px;
}
/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.modal-dialog-pro-thumbnail:hover,
a.modal-dialog-pro-thumbnail:focus {
  border-color: #aaaaaa;
  background-color: #ffffff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}
/* Caption
 ========================================================================== */
.modal-dialog-pro-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #444444;
}
/* Sizes
 ========================================================================== */
.modal-dialog-pro-thumbnail-mini {
  width: 150px;
}
.modal-dialog-pro-thumbnail-small {
  width: 200px;
}
.modal-dialog-pro-thumbnail-medium {
  width: 300px;
}
.modal-dialog-pro-thumbnail-large {
  width: 400px;
}
.modal-dialog-pro-thumbnail-expand,
.modal-dialog-pro-thumbnail-expand > img {
  width: 100%;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.modal-dialog-pro-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}
/* 6 for Safari */
.modal-dialog-pro-overlay.modal-dialog-pro-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
/*
 * Remove margin from content
 */
.modal-dialog-pro-overlay > :first-child {
  margin-bottom: 0;
}
/* Sub-object `modal-dialog-pro-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.modal-dialog-pro-overlay-panel {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 20px;
  color: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-overlay-panel > :last-child,
.modal-dialog-pro-overlay-panel.modal-dialog-pro-flex > * > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.modal-dialog-pro-overlay-panel h1,
.modal-dialog-pro-overlay-panel h2,
.modal-dialog-pro-overlay-panel h3,
.modal-dialog-pro-overlay-panel h4,
.modal-dialog-pro-overlay-panel h5,
.modal-dialog-pro-overlay-panel h6 {
  color: inherit;
}
.modal-dialog-pro-overlay-panel a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
.modal-dialog-pro-overlay-panel a[class*='modal-dialog-pro-icon-']:not(.modal-dialog-pro-icon-button) {
  color: inherit;
}
/* Sub-object `modal-dialog-pro-overlay-hover` and `modal-dialog-pro-overlay-active`
 ========================================================================== */
.modal-dialog-pro-overlay-hover:not(:hover):not(.modal-dialog-pro-hover) .modal-dialog-pro-overlay-panel:not(.modal-dialog-pro-ignore) {
  opacity: 0;
}
.modal-dialog-pro-overlay-active :not(.modal-dialog-pro-active) > .modal-dialog-pro-overlay-panel:not(.modal-dialog-pro-ignore) {
  opacity: 0;
}
/* Modifier `modal-dialog-pro-overlay-background`
 ========================================================================== */
.modal-dialog-pro-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}
/* Modifier `modal-dialog-pro-overlay-image`
 ========================================================================== */
/*
 * Reset panel
 */
.modal-dialog-pro-overlay-image {
  padding: 0;
}
/* Position modifiers
 ========================================================================== */
.modal-dialog-pro-overlay-top {
  bottom: auto;
}
.modal-dialog-pro-overlay-bottom {
  top: auto;
}
.modal-dialog-pro-overlay-left {
  right: auto;
}
.modal-dialog-pro-overlay-right {
  left: auto;
}
/* Sub-object `modal-dialog-pro-overlay-icon`
 ========================================================================== */
.modal-dialog-pro-overlay-icon:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff;
}
/* Transitions
 ========================================================================== */
.modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-grayscale,
.modal-dialog-pro-overlay-blur,
[class*='modal-dialog-pro-overlay-slide'] {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: opacity transform filter;
}
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-active [class*='modal-dialog-pro-overlay-slide'] {
  transition-duration: 0.8s;
}
/*
 * Fade
 */
.modal-dialog-pro-overlay-fade {
  opacity: 0.7;
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-fade,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-fade {
  opacity: 1;
}
/*
 * Scale
 */
.modal-dialog-pro-overlay-scale {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-scale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*
 * Spin
 */
.modal-dialog-pro-overlay-spin {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-spin,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-spin {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
/*
 * Grayscale
 */
.modal-dialog-pro-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.modal-dialog-pro-overlay-hover:hover .modal-dialog-pro-overlay-grayscale,
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > .modal-dialog-pro-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/*
 * Slide
 */
[class*='modal-dialog-pro-overlay-slide'] {
  opacity: 0;
}
/* Top */
.modal-dialog-pro-overlay-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
/* Bottom */
.modal-dialog-pro-overlay-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
/* Left */
.modal-dialog-pro-overlay-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/* Right */
.modal-dialog-pro-overlay-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Hover */
.modal-dialog-pro-overlay-hover:hover [class*='modal-dialog-pro-overlay-slide'],
.modal-dialog-pro-overlay-active .modal-dialog-pro-active > [class*='modal-dialog-pro-overlay-slide'] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.modal-dialog-pro-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `modal-dialog-pro-hover` to support touch devices
 * 2. Use optional `modal-dialog-pro-overlay-toggle` to trigger the overlay earlier
 */
.modal-dialog-pro-overlay:hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay.modal-dialog-pro-hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay-toggle:hover .modal-dialog-pro-overlay-area,
.modal-dialog-pro-overlay-toggle.modal-dialog-pro-hover .modal-dialog-pro-overlay-area {
  opacity: 1;
}
/*
 * Icon
 */
.modal-dialog-pro-overlay-area:empty:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff;
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.modal-dialog-pro-overlay-area:not(:empty) {
  font-size: 0.001px;
}
/*
 * 1. Needed for vertical alignment
 */
.modal-dialog-pro-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.modal-dialog-pro-overlay-area-content {
  /* 1 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-overlay-area-content > :last-child {
  margin-bottom: 0;
}
/*
 * Links in overlay area
 */
.modal-dialog-pro-overlay-area-content a:not([class]),
.modal-dialog-pro-overlay-area-content a:not([class]):hover {
  color: inherit;
}
/* DEPRECATED
 * Sub-object `modal-dialog-pro-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.modal-dialog-pro-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `modal-dialog-pro-hover` to support touch devices
 * 2. Use optional `modal-dialog-pro-overlay-toggle` to trigger the overlay earlier
 */
.modal-dialog-pro-overlay:hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay.modal-dialog-pro-hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay-toggle:hover .modal-dialog-pro-overlay-caption,
.modal-dialog-pro-overlay-toggle.modal-dialog-pro-hover .modal-dialog-pro-overlay-caption {
  opacity: 1;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='modal-dialog-pro-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* Hide animated element if scrollspy is used */
@media screen {
  [data-modal-dialog-pro-scrollspy*='modal-dialog-pro-animation-']:not([data-modal-dialog-pro-scrollspy*='target']) {
    opacity: 0;
  }
}
/*
 * Fade
 * Higher specificity (!important) needed because of reverse modifier
 */
.modal-dialog-pro-animation-fade {
  -webkit-animation-name: modal-dialog-pro-fade;
  animation-name: modal-dialog-pro-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
/*
 * Fade with scale
 */
.modal-dialog-pro-animation-scale-up {
  -webkit-animation-name: modal-dialog-pro-fade-scale-02;
  animation-name: modal-dialog-pro-fade-scale-02;
}
.modal-dialog-pro-animation-scale-down {
  -webkit-animation-name: modal-dialog-pro-fade-scale-18;
  animation-name: modal-dialog-pro-fade-scale-18;
}
/*
 * Fade with slide
 */
.modal-dialog-pro-animation-slide-top {
  -webkit-animation-name: modal-dialog-pro-fade-top;
  animation-name: modal-dialog-pro-fade-top;
}
.modal-dialog-pro-animation-slide-bottom {
  -webkit-animation-name: modal-dialog-pro-fade-bottom;
  animation-name: modal-dialog-pro-fade-bottom;
}
.modal-dialog-pro-animation-slide-left {
  -webkit-animation-name: modal-dialog-pro-fade-left;
  animation-name: modal-dialog-pro-fade-left;
}
.modal-dialog-pro-animation-slide-right {
  -webkit-animation-name: modal-dialog-pro-fade-right;
  animation-name: modal-dialog-pro-fade-right;
}
/*
 * Scale
 */
.modal-dialog-pro-animation-scale {
  -webkit-animation-name: modal-dialog-pro-scale-12;
  animation-name: modal-dialog-pro-scale-12;
}
/*
 * Shake
 */
.modal-dialog-pro-animation-shake {
  -webkit-animation-name: modal-dialog-pro-shake;
  animation-name: modal-dialog-pro-shake;
}
/* Direction modifiers
 ========================================================================== */
.modal-dialog-pro-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Duration modifiers
========================================================================== */
.modal-dialog-pro-animation-15 {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
/* Origin modifiers
========================================================================== */
.modal-dialog-pro-animation-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.modal-dialog-pro-animation-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.modal-dialog-pro-animation-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.modal-dialog-pro-animation-middle-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.modal-dialog-pro-animation-middle-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.modal-dialog-pro-animation-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.modal-dialog-pro-animation-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.modal-dialog-pro-animation-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
/* Sub-object: `modal-dialog-pro-animation-hover`
========================================================================== */
/*
 * Enable animation only on hover
 * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
 */
.modal-dialog-pro-animation-hover:not(:hover),
.modal-dialog-pro-animation-hover:not(:hover) [class*='modal-dialog-pro-animation-'],
.modal-dialog-pro-touch .modal-dialog-pro-animation-hover:not(.modal-dialog-pro-hover),
.modal-dialog-pro-touch .modal-dialog-pro-animation-hover:not(.modal-dialog-pro-hover) [class*='modal-dialog-pro-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-dialog-pro-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Keyframes: Fade with slide
 ========================================================================== */
/*
 * Top
 */
@-webkit-keyframes modal-dialog-pro-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom
 */
@-webkit-keyframes modal-dialog-pro-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Left
 */
@-webkit-keyframes modal-dialog-pro-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes modal-dialog-pro-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.5
 * Used by slideshow component
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-15 {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.8
 */
@-webkit-keyframes modal-dialog-pro-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */
@-webkit-keyframes modal-dialog-pro-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes modal-dialog-pro-slide-right {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Left third
 */
@-webkit-keyframes modal-dialog-pro-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-left-33 {
  0% {
    transform: translateX(33%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right third
 */
@-webkit-keyframes modal-dialog-pro-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes modal-dialog-pro-slide-right-33 {
  0% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Keyframes: Scale
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes modal-dialog-pro-scale-12 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes modal-dialog-pro-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Keyframes: Shake
 ========================================================================== */
@-webkit-keyframes modal-dialog-pro-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes modal-dialog-pro-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */
@-webkit-keyframes modal-dialog-pro-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-slide-top-fixed {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom fixed
 */
@-webkit-keyframes modal-dialog-pro-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes modal-dialog-pro-slide-bottom-fixed {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `modal-dialog-pro-dropdown-justify`
 * 4. Set style
 * 5. Reset button group whitespace hack
 */
.modal-dialog-pro-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1020;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 4 */
  width: 200px;
  margin-top: 5px;
  padding: 15px;
  background: #ffffff;
  color: #444444;
  /* 5 */
  font-size: 1rem;
  vertical-align: top;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.modal-dialog-pro-open > .modal-dialog-pro-dropdown {
  /* 1 */
  display: block;
  /* 2 */
  -webkit-animation: modal-dialog-pro-fade 0.2s ease-in-out;
  animation: modal-dialog-pro-fade 0.2s ease-in-out;
  /* 3 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Alignment modifiers
 ========================================================================== */
/*
 * Modifier `modal-dialog-pro-dropdown-flip`
 */
.modal-dialog-pro-dropdown-flip {
  left: auto;
  right: 0;
}
/*
 * Modifier `modal-dialog-pro-dropdown-up`
 */
.modal-dialog-pro-dropdown-up {
  top: auto;
  bottom: 100%;
  margin-top: auto;
  margin-bottom: 5px;
}
/* Nav in dropdown
 ========================================================================== */
.modal-dialog-pro-dropdown .modal-dialog-pro-nav {
  margin: 0 -15px;
}
/* Grid and panel in dropdown
 ========================================================================== */
/*
* Vertical gutter
*/
/*
 * Grid
 * Higher specificity to override large gutter
 */
.modal-dialog-pro-grid .modal-dialog-pro-dropdown-grid + .modal-dialog-pro-dropdown-grid {
  margin-top: 15px;
}
/* Panels */
.modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] > .modal-dialog-pro-panel + .modal-dialog-pro-panel {
  margin-top: 15px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /*
     * Horizontal gutter
     */
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*
     * Column divider
     */
  .modal-dialog-pro-dropdown:not(.modal-dialog-pro-dropdown-stack) > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
  /*
     * Width multiplier for dropdown columns
     */
  .modal-dialog-pro-dropdown-width-2:not(.modal-dialog-pro-dropdown-stack) {
    width: 400px;
  }
  .modal-dialog-pro-dropdown-width-3:not(.modal-dialog-pro-dropdown-stack) {
    width: 600px;
  }
  .modal-dialog-pro-dropdown-width-4:not(.modal-dialog-pro-dropdown-stack) {
    width: 800px;
  }
  .modal-dialog-pro-dropdown-width-5:not(.modal-dialog-pro-dropdown-stack) {
    width: 1000px;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Stack columns and take full width
     */
  .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
    width: 100%;
  }
  /*
     * Vertical gutter
     */
  .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
    margin-top: 15px;
  }
}
/*
* Stack grid columns
*/
.modal-dialog-pro-dropdown-stack > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-'] {
  width: 100%;
}
.modal-dialog-pro-dropdown-stack > .modal-dialog-pro-dropdown-grid > [class*='modal-dialog-pro-width-']:nth-child(n+2) {
  margin-top: 15px;
}
/* Modifier `modal-dialog-pro-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.modal-dialog-pro-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}
/*
 * Nav in dropdown
 */
.modal-dialog-pro-dropdown-small .modal-dialog-pro-nav {
  margin: 0 -5px;
}
/* Modifier: `modal-dialog-pro-dropdown-navbar`
 ========================================================================== */
.modal-dialog-pro-dropdown-navbar {
  margin-top: 6px;
  background: #ffffff;
  color: #444444;
  left: -1px;
}
.modal-dialog-pro-open > .modal-dialog-pro-dropdown-navbar {
  -webkit-animation: modal-dialog-pro-slide-top-fixed 0.2s ease-in-out;
  animation: modal-dialog-pro-slide-top-fixed 0.2s ease-in-out;
}
/* Modifier `modal-dialog-pro-dropdown-scrollable`
 ========================================================================== */
/*
 * Usefull for long lists
 */
.modal-dialog-pro-dropdown-scrollable {
  overflow-y: auto;
  max-height: 200px;
}
.modal-dialog-pro-dropdown-navbar.modal-dialog-pro-dropdown-flip {
  left: auto;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.modal-dialog-pro-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.6);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/*
 * Open state
 */
.modal-dialog-pro-modal.modal-dialog-pro-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.modal-dialog-pro-modal-page,
.modal-dialog-pro-modal-page body {
  /*overflow: hidden;*/
}
/* Sub-object: `modal-dialog-pro-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.modal-dialog-pro-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #ffffff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .modal-dialog-pro-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.modal-dialog-pro-open .modal-dialog-pro-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-modal-dialog > :not([class*='modal-dialog-pro-modal-']):last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.modal-dialog-pro-modal-dialog > .modal-dialog-pro-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.modal-dialog-pro-modal-dialog > .modal-dialog-pro-close:first-child + :not([class*='modal-dialog-pro-modal-']) {
  margin-top: 0;
}
/* Modifier: `modal-dialog-pro-modal-dialog-lightbox`
 ========================================================================== */
.modal-dialog-pro-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  border-radius: 0;
}
/*
 * Close button
 */
.modal-dialog-pro-modal-dialog-lightbox > .modal-dialog-pro-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .modal-dialog-pro-modal-dialog-lightbox > .modal-dialog-pro-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `modal-dialog-pro-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `modal-dialog-pro-modal-header` and `modal-dialog-pro-modal-footer`
 ========================================================================== */
.modal-dialog-pro-modal-header {
  margin-bottom: 15px;
  margin: -20px -20px 15px -20px;
  padding: 20px;
  border-bottom: 1px solid #dddddd;
  border-radius: 4px 4px 0 0;
  background: #fafafa;
}
.modal-dialog-pro-modal-footer {
  margin-top: 15px;
  margin: 15px -20px -20px -20px;
  padding: 20px;
  border-top: 1px solid #dddddd;
  border-radius: 0 0 4px 4px;
  background: #fafafa;
}
/*
 * Remove margin from the last-child
 */
.modal-dialog-pro-modal-header > :last-child,
.modal-dialog-pro-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Sub-Object: `modal-dialog-pro-modal-caption`
 ========================================================================== */
.modal-dialog-pro-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Sub-Object: `modal-dialog-pro-modal-spinner`
 ========================================================================== */
.modal-dialog-pro-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.modal-dialog-pro-modal-spinner:after {
  content: "\f110";
  font-family: FontAwesome;
  -webkit-animation: modal-dialog-pro-rotate 2s infinite linear;
  animation: modal-dialog-pro-rotate 2s infinite linear;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.modal-dialog-pro-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* 3 */
  touch-action: none;
  /* 4 */
  background: rgba(0, 0, 0, 0.1);
}
.modal-dialog-pro-offcanvas.modal-dialog-pro-active {
  display: block;
}
/* Sub-object `modal-dialog-pro-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 */
.modal-dialog-pro-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
}
/* Sub-object `modal-dialog-pro-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deavtivate scroll chaining in IE11
 */
.modal-dialog-pro-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 270px;
  max-width: 100%;
  background: #333333;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}
.modal-dialog-pro-offcanvas.modal-dialog-pro-active .modal-dialog-pro-offcanvas-bar.modal-dialog-pro-offcanvas-bar-show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* Modifier `modal-dialog-pro-offcanvas-bar-flip`
 ========================================================================== */
.modal-dialog-pro-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Panel in offcanvas
 ========================================================================== */
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel {
  margin: 20px 15px;
  color: #777777;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel-title {
  color: #cccccc;
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel a:not([class]) {
  color: #cccccc;
}
.modal-dialog-pro-offcanvas .modal-dialog-pro-panel a:not([class]):hover {
  color: #ffffff;
}
.modal-dialog-pro-offcanvas-bar:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
}
.modal-dialog-pro-offcanvas-bar-flip:after {
  right: auto;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.modal-dialog-pro-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}
/*
 * Items
 */
.modal-dialog-pro-switcher > :not(.modal-dialog-pro-active) {
  display: none;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.modal-dialog-pro-text-small {
  font-size: 11px;
  line-height: 16px;
}
.modal-dialog-pro-text-large {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Weight modifiers
 ========================================================================== */
.modal-dialog-pro-text-bold {
  font-weight: bold;
}
/* Color modifiers
 ========================================================================== */
.modal-dialog-pro-text-muted {
  color: #999999 !important;
}
.modal-dialog-pro-text-primary {
  color: #2d7091 !important;
}
.modal-dialog-pro-text-success {
  color: #659f13 !important;
}
.modal-dialog-pro-text-warning {
  color: #e28327 !important;
}
.modal-dialog-pro-text-danger {
  color: #d85030 !important;
}
.modal-dialog-pro-text-contrast {
  color: #ffffff !important;
}
/* Alignment modifiers
 ========================================================================== */
.modal-dialog-pro-text-left {
  text-align: left !important;
}
.modal-dialog-pro-text-right {
  text-align: right !important;
}
.modal-dialog-pro-text-center {
  text-align: center !important;
}
.modal-dialog-pro-text-justify {
  text-align: justify !important;
}
.modal-dialog-pro-text-top {
  vertical-align: top !important;
}
.modal-dialog-pro-text-middle {
  vertical-align: middle !important;
}
.modal-dialog-pro-text-bottom {
  vertical-align: bottom !important;
}
/* Only tablets portrait and smaller */
@media (max-width: 959px) {
  .modal-dialog-pro-text-center-medium {
    text-align: center !important;
  }
  .modal-dialog-pro-text-left-medium {
    text-align: left !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .modal-dialog-pro-text-center-small {
    text-align: center !important;
  }
  .modal-dialog-pro-text-left-small {
    text-align: left !important;
  }
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.modal-dialog-pro-text-nowrap {
  white-space: nowrap;
}
/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.modal-dialog-pro-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*
 * Break strings if their length exceeds the width of their container
 */
.modal-dialog-pro-text-break {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.modal-dialog-pro-container {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 980px;
  padding: 0 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-container {
    max-width: 1200px;
    padding: 0 35px;
  }
}
/*
 * Micro clearfix
 */
.modal-dialog-pro-container:before,
.modal-dialog-pro-container:after {
  content: "";
  display: table;
}
.modal-dialog-pro-container:after {
  clear: both;
}
/*
 * Center container
 */
.modal-dialog-pro-container-center {
  margin-left: auto;
  margin-right: auto;
}
/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.modal-dialog-pro-clearfix:before {
  content: "";
  display: table-cell;
}
.modal-dialog-pro-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*
 *  Create a new block formatting context
 */
.modal-dialog-pro-nbfc {
  overflow: hidden;
}
.modal-dialog-pro-nbfc-alt {
  display: table-cell;
  width: 10000px;
}
/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.modal-dialog-pro-float-left {
  float: left;
}
.modal-dialog-pro-float-right {
  float: right;
}
/* 1 */
[class*='modal-dialog-pro-float-'] {
  max-width: 100%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='modal-dialog-pro-align-'] {
  display: block;
  margin-bottom: 15px;
}
.modal-dialog-pro-align-left {
  margin-right: 15px;
  float: left;
}
.modal-dialog-pro-align-right {
  margin-left: 15px;
  float: right;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-align-medium-left {
    margin-right: 15px;
    margin-bottom: 15px;
    float: left;
  }
  .modal-dialog-pro-align-medium-right {
    margin-left: 15px;
    margin-bottom: 15px;
    float: right;
  }
}
.modal-dialog-pro-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.modal-dialog-pro-vertical-align {
  font-size: 0.001px;
}
/*
 *  The `modal-dialog-pro-vertical-align` container needs a specific height
 */
.modal-dialog-pro-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.modal-dialog-pro-vertical-align-middle,
.modal-dialog-pro-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}
.modal-dialog-pro-vertical-align-middle {
  vertical-align: middle;
}
.modal-dialog-pro-vertical-align-bottom {
  vertical-align: bottom;
}
/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*='modal-dialog-pro-height'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.modal-dialog-pro-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.modal-dialog-pro-height-viewport {
  height: 100vh;
  min-height: 600px;
}
/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.modal-dialog-pro-responsive-width,
.modal-dialog-pro-responsive-height {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `modal-dialog-pro-img-preserve img`
 */
.modal-dialog-pro-responsive-width {
  max-width: 100% !important;
  height: auto;
}
/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.modal-dialog-pro-responsive-height {
  max-height: 100%;
  width: auto;
}
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.modal-dialog-pro-margin {
  margin-bottom: 15px;
}
* + .modal-dialog-pro-margin {
  margin-top: 15px;
}
.modal-dialog-pro-margin-top {
  margin-top: 15px !important;
}
.modal-dialog-pro-margin-bottom {
  margin-bottom: 15px !important;
}
.modal-dialog-pro-margin-left {
  margin-left: 15px !important;
}
.modal-dialog-pro-margin-right {
  margin-right: 15px !important;
}
/*
 * Larger margins
 */
.modal-dialog-pro-margin-large {
  margin-bottom: 50px;
}
* + .modal-dialog-pro-margin-large {
  margin-top: 50px;
}
.modal-dialog-pro-margin-large-top {
  margin-top: 50px !important;
}
.modal-dialog-pro-margin-large-bottom {
  margin-bottom: 50px !important;
}
.modal-dialog-pro-margin-large-left {
  margin-left: 50px !important;
}
.modal-dialog-pro-margin-large-right {
  margin-right: 50px !important;
}
/*
 * Smaller margins
 */
.modal-dialog-pro-margin-small {
  margin-bottom: 5px;
}
* + .modal-dialog-pro-margin-small {
  margin-top: 5px;
}
.modal-dialog-pro-margin-small-top {
  margin-top: 5px !important;
}
.modal-dialog-pro-margin-small-bottom {
  margin-bottom: 5px !important;
}
.modal-dialog-pro-margin-small-left {
  margin-left: 5px !important;
}
.modal-dialog-pro-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.modal-dialog-pro-margin-remove {
  margin: 0 !important;
}
.modal-dialog-pro-margin-top-remove {
  margin-top: 0 !important;
}
.modal-dialog-pro-margin-bottom-remove {
  margin-bottom: 0 !important;
}
/* Padding
 ========================================================================== */
.modal-dialog-pro-padding-remove {
  padding: 0 !important;
}
.modal-dialog-pro-padding-top-remove {
  padding-top: 0 !important;
}
.modal-dialog-pro-padding-bottom-remove {
  padding-bottom: 0 !important;
}
.modal-dialog-pro-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Border
 ========================================================================== */
.modal-dialog-pro-border-circle {
  border-radius: 50%;
}
.modal-dialog-pro-border-rounded {
  border-radius: 5px;
}
/* Headings
 ========================================================================== */
.modal-dialog-pro-heading-large {
  font-size: 36px;
  line-height: 42px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}
/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.modal-dialog-pro-link-muted,
.modal-dialog-pro-link-muted a {
  color: #444444;
}
.modal-dialog-pro-link-muted:hover,
.modal-dialog-pro-link-muted a:hover {
  color: #444444;
}
/*
 * Reset link style
 */
.modal-dialog-pro-link-reset,
.modal-dialog-pro-link-reset a,
.modal-dialog-pro-link-reset:hover,
.modal-dialog-pro-link-reset a:hover,
.modal-dialog-pro-link-reset:focus,
.modal-dialog-pro-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}
/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.modal-dialog-pro-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/*
 * Box with scrolling enabled
 */
.modal-dialog-pro-scrollable-box {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #dddddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  border-radius: 3px;
}
.modal-dialog-pro-scrollable-box > :last-child {
  margin-bottom: 0;
}
/* Overflow
 ========================================================================== */
.modal-dialog-pro-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.modal-dialog-pro-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-dialog-pro-overflow-container > :last-child {
  margin-bottom: 0;
}
/* Position
 ========================================================================== */
.modal-dialog-pro-position-absolute,
[class*='modal-dialog-pro-position-top'],
[class*='modal-dialog-pro-position-bottom'] {
  position: absolute !important;
}
.modal-dialog-pro-position-top {
  top: 0;
  width: 100%;
}
.modal-dialog-pro-position-bottom {
  bottom: 0;
  width: 100%;
}
.modal-dialog-pro-position-top-left {
  top: 0;
  left: 0;
}
.modal-dialog-pro-position-top-right {
  top: 0;
  right: 0;
}
.modal-dialog-pro-position-bottom-left {
  bottom: 0;
  left: 0;
}
.modal-dialog-pro-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Cover
 */
.modal-dialog-pro-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*
 * Relative
 */
.modal-dialog-pro-position-relative {
  position: relative !important;
}
/*
 * Z-index
 */
.modal-dialog-pro-position-z-index {
  z-index: 1;
}
/* Display
 ========================================================================== */
/*
 * Display
 */
.modal-dialog-pro-display-block {
  display: block !important;
}
.modal-dialog-pro-display-inline {
  display: inline !important;
}
.modal-dialog-pro-display-inline-block {
  display: inline-block !important;
}
/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-visible-small {
    display: none !important;
  }
  .modal-dialog-pro-visible-medium {
    display: none !important;
  }
  .modal-dialog-pro-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .modal-dialog-pro-visible-small {
    display: none !important;
  }
  .modal-dialog-pro-visible-large {
    display: none !important ;
  }
  .modal-dialog-pro-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .modal-dialog-pro-visible-medium {
    display: none !important;
  }
  .modal-dialog-pro-visible-large {
    display: none !important;
  }
  .modal-dialog-pro-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.modal-dialog-pro-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.modal-dialog-pro-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.modal-dialog-pro-visible-hover:hover .modal-dialog-pro-hidden,
.modal-dialog-pro-visible-hover:hover .modal-dialog-pro-invisible {
  display: block !important;
  visibility: visible !important;
}
.modal-dialog-pro-visible-hover-inline:hover .modal-dialog-pro-hidden,
.modal-dialog-pro-visible-hover-inline:hover .modal-dialog-pro-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.modal-dialog-pro-touch .modal-dialog-pro-hidden-touch,
.modal-dialog-pro-notouch .modal-dialog-pro-hidden-notouch {
  display: none !important;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.modal-dialog-pro-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.modal-dialog-pro-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
/*
 * Fixes initial flex-shrink value in IE10
 */
.modal-dialog-pro-flex > *,
.modal-dialog-pro-flex-inline > * {
  -ms-flex-negative: 1;
}
/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.modal-dialog-pro-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.modal-dialog-pro-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.modal-dialog-pro-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.modal-dialog-pro-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.modal-dialog-pro-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.modal-dialog-pro-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.modal-dialog-pro-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Direction
 ========================================================================== */
.modal-dialog-pro-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.modal-dialog-pro-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.modal-dialog-pro-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.modal-dialog-pro-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.modal-dialog-pro-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-dialog-pro-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.modal-dialog-pro-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.modal-dialog-pro-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.modal-dialog-pro-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.modal-dialog-pro-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.modal-dialog-pro-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.modal-dialog-pro-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.modal-dialog-pro-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .modal-dialog-pro-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .modal-dialog-pro-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .modal-dialog-pro-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .modal-dialog-pro-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .modal-dialog-pro-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.modal-dialog-pro-flex-item-none {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.modal-dialog-pro-flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.modal-dialog-pro-flex-item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/* ========================================================================
   Component: Contrast
 ========================================================================== */
.modal-dialog-pro-contrast {
  color: #ffffff;
}
.modal-dialog-pro-contrast a:not([class]),
.modal-dialog-pro-contrast .modal-dialog-pro-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.modal-dialog-pro-contrast a:not([class]):hover,
.modal-dialog-pro-contrast .modal-dialog-pro-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.modal-dialog-pro-contrast :not(pre) > code,
.modal-dialog-pro-contrast :not(pre) > kbd,
.modal-dialog-pro-contrast :not(pre) > samp {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.modal-dialog-pro-contrast em {
  color: #ffffff;
}
.modal-dialog-pro-contrast h1,
.modal-dialog-pro-contrast h2,
.modal-dialog-pro-contrast h3,
.modal-dialog-pro-contrast h4,
.modal-dialog-pro-contrast h5,
.modal-dialog-pro-contrast h6 {
  color: #ffffff;
}
.modal-dialog-pro-contrast hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav li > a,
.modal-dialog-pro-contrast .modal-dialog-pro-nav li > a:hover {
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li > a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-shadow: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side > li.modal-dialog-pro-active > a {
  background: #ffffff;
  color: #444444;
  text-shadow: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side .modal-dialog-pro-nav-header {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side .modal-dialog-pro-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side ul a {
  color: rgba(255, 255, 255, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-nav-side ul a:hover {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > * > a:focus {
  color: #ffffff;
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav > .modal-dialog-pro-active > a {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-line > :nth-child(n+2):before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > * > a:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > * > a:focus {
  background: rgba(255, 255, 255, 0.7);
  color: #444444;
  text-decoration: none;
}
.modal-dialog-pro-contrast .modal-dialog-pro-subnav-pill > .modal-dialog-pro-active > a {
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-list-line > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.modal-dialog-pro-contrast .modal-dialog-pro-form select,
.modal-dialog-pro-contrast .modal-dialog-pro-form textarea,
.modal-dialog-pro-contrast .modal-dialog-pro-form input:not([type]),
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="text"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="password"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime-local"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="date"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="month"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="time"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="week"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="number"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="email"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="url"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="search"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="tel"],
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="color"] {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  color: #444444;
  background-clip: padding-box;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form select:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form textarea:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input:not([type]):focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="text"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="password"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="datetime-local"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="date"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="month"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="time"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="week"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="number"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="email"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="url"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="search"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="tel"]:focus,
.modal-dialog-pro-contrast .modal-dialog-pro-form input[type="color"]:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form :-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.7) !important;
}
.modal-dialog-pro-contrast .modal-dialog-pro-form ::-moz-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-form ::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-button {
  color: #444444;
  background: #ffffff;
  border-color: transparent;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444444;
  border-color: transparent;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button:active,
.modal-dialog-pro-contrast .modal-dialog-pro-button.modal-dialog-pro-active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary {
  background-color: #00a8e6;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:focus {
  background-color: #35b3ee;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary:active,
.modal-dialog-pro-contrast .modal-dialog-pro-button-primary.modal-dialog-pro-active {
  background-color: #0091ca;
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-hover {
  color: rgba(255, 255, 255, 0.7);
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-hover:hover {
  color: #ffffff;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button {
  background: #ffffff;
  color: #444444;
  border-color: transparent;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:hover,
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444444;
  border-color: transparent;
}
.modal-dialog-pro-contrast .modal-dialog-pro-icon-button:active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444444;
}
.modal-dialog-pro-contrast .modal-dialog-pro-text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}
.modal-dialog-pro-contrast .modal-dialog-pro-text-primary {
  color: #2d7091 !important;
}
html{position:relative;height:auto;min-height:100%;}body,.stacks_top{position:static;}/*!
 * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active {
  outline: 0; }

a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    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 #ddd !important; } }

html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

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

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

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

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

@viewport {
  width: device-width; }

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #373a3c;
  background-color: #fff; }

.paragraph {
  color: #373a3c; }

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

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

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

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91; }

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: bold; }

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

blockquote {
  margin: 0 0 1rem; }

a {
  color: #0275d8;
  text-decoration: none; }
  a:focus, a:hover {
    color: #014c8c;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

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

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation; }

table {
  background-color: transparent; }

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

th {
  text-align: left; }

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

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

input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }

textarea {
  resize: vertical; }

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

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

input[type="search"] {
  box-sizing: inherit;
  -webkit-appearance: none; }

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

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

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.75rem; }

h4 {
  font-size: 1.5rem; }

h5 {
  font-size: 1.25rem; }

h6 {
  font-size: 1rem; }

.h1 {
  font-size: 2.5rem; }

.h2 {
  font-size: 2rem; }

.h3 {
  font-size: 1.75rem; }

.h4 {
  font-size: 1.5rem; }

.h5 {
  font-size: 1.25rem; }

.h6 {
  font-size: 1rem; }

.lead {
  font-size: 20px;
  font-weight: 300; }

.display-1 {
  font-size: 96px;
  font-weight: 600; }

.display-2 {
  font-size: 88px;
  font-weight: 600; }

.display-3 {
  font-size: 72px;
  font-weight: 600; }

.display-4 {
  font-size: 56px;
  font-weight: 600; }

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: normal; }

mark,
.mark {
  padding: .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: 5px; }

.dl-horizontal {
  margin-right: -1.875rem;
  margin-left: -1.875rem; }
  .dl-horizontal::after {
    content: "";
    display: table;
    clear: both; }

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

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #818a91; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

.img-fluid, .carousel-inner > .carousel-item > img,
.carousel-inner > .carousel-item > a > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 4px; }

.img-thumbnail {
  padding: 0.25rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

.figure {
  display: inline-block; }

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

.figure-caption {
  font-size: 90%;
  color: #818a91; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 4px; }

kbd {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 4px; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  line-height: 1.5;
  color: #373a3c; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .container {
      max-width: 576px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 940px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px; } }
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  position: relative;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left; }

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

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

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

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

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

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

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 544px) {
  .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 768px) {
  .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1 {
    float: left; }
  .col-xl-1 {
    width: 8.3333333333%; }
  .col-xl-2 {
    width: 16.6666666667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.3333333333%; }
  .col-xl-5 {
    width: 41.6666666667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.3333333333%; }
  .col-xl-8 {
    width: 66.6666666667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.3333333333%; }
  .col-xl-11 {
    width: 91.6666666667%; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-pull-1 {
    right: 8.3333333333%; }
  .col-xl-pull-2 {
    right: 16.6666666667%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-4 {
    right: 33.3333333333%; }
  .col-xl-pull-5 {
    right: 41.6666666667%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-7 {
    right: 58.3333333333%; }
  .col-xl-pull-8 {
    right: 66.6666666667%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-10 {
    right: 83.3333333333%; }
  .col-xl-pull-11 {
    right: 91.6666666667%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-push-1 {
    left: 8.3333333333%; }
  .col-xl-push-2 {
    left: 16.6666666667%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-4 {
    left: 33.3333333333%; }
  .col-xl-push-5 {
    left: 41.6666666667%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-7 {
    left: 58.3333333333%; }
  .col-xl-push-8 {
    left: 66.6666666667%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-10 {
    left: 83.3333333333%; }
  .col-xl-push-11 {
    left: 91.6666666667%; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-offset-0 {
    margin-left: 0%; }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%; }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%; }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%; }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%; }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%; }
  .col-xl-offset-12 {
    margin-left: 100%; } }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem; }
  .table th,
  .table td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .table tbody + tbody {
    border-top: 2px solid #eceeef; }
  .table .table {
    background-color: #fff; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #eceeef; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #eceeef; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover tbody tr:hover {
  background-color: #f5f5f5; }

.table-active,
.table-active > th,
.table-active > td {
  background-color: #f5f5f5; }

.table-hover .table-active:hover {
  background-color: #e8e8e8; }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: #e8e8e8; }

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8; }

.table-hover .table-success:hover {
  background-color: #d0e9c6; }
  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #d0e9c6; }

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7; }

.table-hover .table-info:hover {
  background-color: #c4e3f3; }
  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #c4e3f3; }

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3; }

.table-hover .table-warning:hover {
  background-color: #faf2cc; }
  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #faf2cc; }

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede; }

.table-hover .table-danger:hover {
  background-color: #ebcccc; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #ebcccc; }

.table-responsive {
  display: block;
  width: 100%;
  min-height: 0.01%;
  overflow-x: auto; }

.thead-inverse th {
  color: #fff;
  background-color: #373a3c; }

.thead-default th {
  color: #55595c;
  background-color: #eceeef; }

.table-inverse {
  color: #eceeef;
  background-color: #373a3c; }
  .table-inverse.table-bordered {
    border: 0; }
  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #55595c; }

.table-reflow thead {
  float: left; }

.table-reflow tbody {
  display: block;
  white-space: nowrap; }

.table-reflow th,
.table-reflow td {
  border-top: 1px solid #eceeef;
  border-left: 1px solid #eceeef; }
  .table-reflow th:last-child,
  .table-reflow td:last-child {
    border-right: 1px solid #eceeef; }

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
  border-bottom: 1px solid #eceeef; }

.table-reflow tr {
  float: left; }
  .table-reflow tr th,
  .table-reflow tr td {
    display: block !important;
    border: 1px solid #eceeef; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    border-color: #66afe9;
    outline: none; }
  .form-control::placeholder {
    color: #999;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #eceeef;
    opacity: 1; }
  .form-control:disabled {
    cursor: not-allowed; }

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px); }

select.form-control:focus::-ms-value {
  color: #55595c;
  background-color: #fff; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > select.input-group-addon:not([size]):not([multiple]),
.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: 1.8625rem; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > select.input-group-addon:not([size]):not([multiple]),
.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: 3.1666666667rem; }

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

.form-control-label {
  padding: 0.375rem 1em;
  margin-bottom: 0; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input.form-control[type="date"],
  input.form-control[type="time"],
  input.form-control[type="datetime-local"],
  input.form-control[type="month"] {
    line-height: 2.25rem; }
  input.input-sm[type="date"], .input-group-sm input.form-control[type="date"],
  input.input-sm[type="time"], .input-group-sm input.form-control[type="time"],
  input.input-sm[type="datetime-local"], .input-group-sm input.form-control[type="datetime-local"],
  input.input-sm[type="month"], .input-group-sm input.form-control[type="month"] {
    line-height: 1.8625rem; }
  input.input-lg[type="date"], .input-group-lg input.form-control[type="date"],
  input.input-lg[type="time"], .input-group-lg input.form-control[type="time"],
  input.input-lg[type="datetime-local"], .input-group-lg input.form-control[type="datetime-local"],
  input.input-lg[type="month"], .input-group-lg input.form-control[type="month"] {
    line-height: 3.1666666667rem; } }

.form-control-static {
  min-height: 2.25rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0; }
  .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn, .form-control-static.form-control-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 4px; }

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 4px; }

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

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-bottom: 0.75rem; }
  .radio label,
  .checkbox label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }
    .radio label input:only-child,
    .checkbox label input:only-child {
      position: static; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: .25rem;
  margin-top: 4px \9;
  margin-left: -1.25rem; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -.25rem; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 20px; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: .75rem; }

input[type="radio"]:disabled, input.disabled[type="radio"],
input[type="checkbox"]:disabled,
input.disabled[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label {
  cursor: not-allowed; }

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.4625rem 1.4625rem; }

.has-success .text-help,
.has-success .form-control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #5cb85c; }

.has-success .form-control {
  border-color: #5cb85c; }

.has-success .input-group-addon {
  color: #5cb85c !important;
  border-color: #5cb85c;
  background-color: #eaf6ea; }

.has-success .form-control-feedback {
  color: #5cb85c; }

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg=="); }

.has-warning .text-help,
.has-warning .form-control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #f0ad4e; }

.has-warning .form-control {
  border-color: #f0ad4e; }

.has-warning .input-group-addon {
  color: #f0ad4e !important;
  border-color: #f0ad4e;
  background-color: white; }

.has-warning .form-control-feedback {
  color: #f0ad4e; }

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+"); }

.has-danger .text-help,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline, .has-danger.radio label, .has-danger.checkbox label, .has-danger.radio-inline label, .has-danger.checkbox-inline label {
  color: #d9534f; }

.has-danger .form-control {
  border-color: #d9534f; }

.has-danger .input-group-addon {
  color: #d9534f !important;
  border-color: #d9534f;
  background-color: #fdf7f7; }

.has-danger .form-control-feedback {
  color: #d9534f; }

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4="); }

@media (min-width: 544px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.btn {
  margin-bottom: 0.5px;
  display: inline-block;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:focus, .btn:hover {
    text-decoration: none; }
  .btn.focus {
    text-decoration: none; }
  .btn:active, .btn.active {
    background-image: none;
    outline: 0; }
  .btn.disabled, .btn:disabled {
    cursor: not-allowed;
    opacity: .65; }

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

.btn-primary {
  color: #fff;
  background-color: #003366;
  border-color: #003366; }
  .btn-primary:hover {
    color: #fff;
    background-color: #001a33;
    border-color: #001429; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #001a33;
    border-color: #001429; }
  .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #001a33;
    border-color: #001429;
    background-image: none; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #00080f;
      border-color: black; }
  .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary:disabled:focus, .btn-primary.focus:disabled {
    background-color: #003366;
    border-color: #003366; }
  .btn-primary.disabled:hover, .btn-primary:disabled:hover {
    background-color: #003366;
    border-color: #003366; }

.btn-secondary {
  color: #373a3c;
  background-color: #fff;
  border-color: #ccc; }
  .btn-secondary:hover {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:active, .btn-secondary.active, .open > .btn-secondary.dropdown-toggle {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
    background-image: none; }
    .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary.focus:active, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus, .open > .btn-secondary.dropdown-toggle:hover, .open > .btn-secondary.dropdown-toggle:focus, .open > .btn-secondary.dropdown-toggle.focus {
      color: #373a3c;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary.focus:disabled {
    background-color: #fff;
    border-color: #ccc; }
  .btn-secondary.disabled:hover, .btn-secondary:disabled:hover {
    background-color: #fff;
    border-color: #ccc; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
    background-image: none; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1f7e9a; }
  .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info.focus:disabled {
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info.disabled:hover, .btn-info:disabled:hover {
    background-color: #5bc0de;
    border-color: #5bc0de; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #419641;
    background-image: none; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #2d672d; }
  .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success.focus:disabled {
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success.disabled:hover, .btn-success:disabled:hover {
    background-color: #5cb85c;
    border-color: #5cb85c; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
    background-image: none; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #b06d0f; }
  .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning.focus:disabled {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning.disabled:hover, .btn-warning:disabled:hover {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
    background-image: none; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #8b211e; }
  .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger.focus:disabled {
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger.disabled:hover, .btn-danger:disabled:hover {
    background-color: #d9534f;
    border-color: #d9534f; }

.btn-primary-outline {
  color: #003366;
  background-image: none;
  background-color: transparent;
  border-color: #003366; }
  .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline:active, .btn-primary-outline.active, .open > .btn-primary-outline.dropdown-toggle {
    color: #fff;
    background-color: #003366;
    border-color: #003366; }
  .btn-primary-outline:hover {
    color: #fff;
    background-color: #003366;
    border-color: #003366; }
  .btn-primary-outline.disabled:focus, .btn-primary-outline.disabled.focus, .btn-primary-outline:disabled:focus, .btn-primary-outline.focus:disabled {
    border-color: #0066cc; }
  .btn-primary-outline.disabled:hover, .btn-primary-outline:disabled:hover {
    border-color: #0066cc; }

.btn-secondary-outline {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc; }
  .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline:active, .btn-secondary-outline.active, .open > .btn-secondary-outline.dropdown-toggle {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-secondary-outline:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-secondary-outline.disabled:focus, .btn-secondary-outline.disabled.focus, .btn-secondary-outline:disabled:focus, .btn-secondary-outline.focus:disabled {
    border-color: white; }
  .btn-secondary-outline.disabled:hover, .btn-secondary-outline:disabled:hover {
    border-color: white; }

.btn-info-outline {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de; }
  .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline:active, .btn-info-outline.active, .open > .btn-info-outline.dropdown-toggle {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline:hover {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline.disabled:focus, .btn-info-outline.disabled.focus, .btn-info-outline:disabled:focus, .btn-info-outline.focus:disabled {
    border-color: #b0e1ef; }
  .btn-info-outline.disabled:hover, .btn-info-outline:disabled:hover {
    border-color: #b0e1ef; }

.btn-success-outline {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c; }
  .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline:active, .btn-success-outline.active, .open > .btn-success-outline.dropdown-toggle {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline:hover {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline.disabled:focus, .btn-success-outline.disabled.focus, .btn-success-outline:disabled:focus, .btn-success-outline.focus:disabled {
    border-color: #a3d7a3; }
  .btn-success-outline.disabled:hover, .btn-success-outline:disabled:hover {
    border-color: #a3d7a3; }

.btn-warning-outline {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e; }
  .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline:active, .btn-warning-outline.active, .open > .btn-warning-outline.dropdown-toggle {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline.disabled:focus, .btn-warning-outline.disabled.focus, .btn-warning-outline:disabled:focus, .btn-warning-outline.focus:disabled {
    border-color: #f8d9ac; }
  .btn-warning-outline.disabled:hover, .btn-warning-outline:disabled:hover {
    border-color: #f8d9ac; }

.btn-danger-outline {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f; }
  .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline:active, .btn-danger-outline.active, .open > .btn-danger-outline.dropdown-toggle {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline.disabled:focus, .btn-danger-outline.disabled.focus, .btn-danger-outline:disabled:focus, .btn-danger-outline.focus:disabled {
    border-color: #eba5a3; }
  .btn-danger-outline.disabled:hover, .btn-danger-outline:disabled:hover {
    border-color: #eba5a3; }

.btn-link {
  font-weight: normal;
  color: #0275d8;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
    background-color: transparent; }
  .btn-link, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover {
    border-color: transparent; }
  .btn-link:focus, .btn-link:hover {
    color: #014c8c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled:focus, .btn-link:disabled:hover {
    color: #818a91;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 4px; }

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

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

.btn-block + .btn-block {
  margin-top: 5px; }

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

.fade {
  opacity: 0;
  transition: opacity .15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: .35s;
  transition-property: height; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .25rem;
  margin-left: .25rem;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent; }

.dropdown-toggle:focus {
  outline: 0; }

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 1rem;
  color: #373a3c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px; }

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0; }
  .dropdown-item:focus, .dropdown-item:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5; }
  .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #003366;
    outline: 0; }
  .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    color: #818a91; }
  .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #818a91;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .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: 2; }
    .btn-group > .btn:hover,
    .btn-group-vertical > .btn:hover {
      z-index: 2; }

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

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar::after {
    content: "";
    display: table;
    clear: both; }
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

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

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

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

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

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

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 0.3em 0.3em 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 0.3em 0.3em; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group::after {
  content: "";
  display: table;
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.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(:first-child):not(:last-child) {
  border-radius: 0; }

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

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

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

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

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

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

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  color: #55595c;
  text-align: center;
  background-color: #eceeef;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.form-control-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 0.275rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 4px; }
  .input-group-addon.form-control-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 0.75rem 1.25rem;
    font-size: 1.25rem;
    border-radius: 4px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

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

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:focus, .input-group-btn > .btn:active, .input-group-btn > .btn:hover {
      z-index: 3; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:last-child > .btn:focus, .input-group-btn:last-child > .btn:active, .input-group-btn:last-child > .btn:hover,
    .input-group-btn:last-child > .btn-group:focus,
    .input-group-btn:last-child > .btn-group:active,
    .input-group-btn:last-child > .btn-group:hover {
      z-index: 3; }

.c-input {
  position: relative;
  display: inline;
  padding-left: 1.5rem;
  color: #555;
  cursor: pointer; }
  .c-input > input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .c-input > input:checked ~ .c-indicator {
      color: #fff;
      background-color: #0074d9; }
    .c-input > input:focus ~ .c-indicator {
      box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; }
    .c-input > input:active ~ .c-indicator {
      color: #fff;
      background-color: #84c6ff; }
  .c-input + .c-input {
    margin-left: 1rem; }

.c-indicator {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  font-size: 65%;
  line-height: 1rem;
  color: #eee;
  text-align: center;
  user-select: none;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

.c-checkbox .c-indicator {
  border-radius: .25rem; }

.c-checkbox input:checked ~ .c-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=); }

.c-checkbox input:indeterminate ~ .c-indicator {
  background-color: #0074d9;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K); }

.c-radio .c-indicator {
  border-radius: 50%; }

.c-radio input:checked ~ .c-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==); }

.c-inputs-stacked .c-input {
  display: inline; }
  .c-inputs-stacked .c-input::after {
    display: block;
    margin-bottom: .25rem;
    content: ""; }
  .c-inputs-stacked .c-input + .c-input {
    margin-left: 0; }

.c-select {
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid #ccc;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .c-select:focus {
    border-color: #51a7e8;
    outline: none; }
  .c-select::-ms-expand {
    opacity: 0; }

.c-select-sm {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 12px; }
  .c-select-sm:not([multiple]) {
    height: 26px;
    min-height: 26px; }

.file {
  position: relative;
  display: inline-block;
  height: 2.5rem;
  cursor: pointer; }

.file input {
  min-width: 14rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0; }

.file-custom {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  user-select: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: .25rem; }

.file-custom::after {
  content: "Choose file..."; }

.file-custom::before {
  position: absolute;
  top: -.075rem;
  right: -.075rem;
  bottom: -.075rem;
  z-index: 6;
  display: block;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  content: "Browse";
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 0 .25rem .25rem 0; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: inline-block; }
  .nav-link:focus, .nav-link:hover {
    text-decoration: underline; }
  .nav-link.disabled {
    color: #818a91; }
    .nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover {
      color: #818a91;
      cursor: not-allowed;
      background-color: transparent; }

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

.nav-inline .nav-item + .nav-item,
.nav-inline .nav-link + .nav-link {
  margin-left: 1rem; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs::after {
    content: "";
    display: table;
    clear: both; }
  .nav-tabs .nav-item {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs .nav-item + .nav-item {
      margin-left: .2rem; }
  .nav-tabs .nav-link {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0; }
    .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
      border-color: #eceeef #eceeef #ddd; }
    .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover {
      color: #818a91;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
  .nav-tabs .nav-item.open .nav-link,
  .nav-tabs .nav-item.open .nav-link:focus,
  .nav-tabs .nav-item.open .nav-link:hover {
    color: #55595c;
    background-color: #fff;
    border-color: #ddd #ddd transparent; }

.nav-pills::after {
  content: "";
  display: table;
  clear: both; }

.nav-pills .nav-item {
  float: left; }
  .nav-pills .nav-item + .nav-item {
    margin-left: .2rem; }

.nav-pills .nav-link {
  display: block;
  padding: 0.5em 1em;
  border-radius: 4px; }

.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover {
  color: #fff;
  cursor: default;
  background-color: #003366; }

.nav-stacked .nav-item {
  display: block;
  float: none; }
  .nav-stacked .nav-item + .nav-item {
    margin-top: .2rem;
    margin-left: 0; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  padding: 0.5rem 1rem; }
  .navbar::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .navbar {
      border-radius: 4px; } }
.navbar-full {
  z-index: 1000; }
  @media (min-width: 544px) {
    .navbar-full {
      border-radius: 0; } }
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 544px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }
.navbar-fixed-top {
  top: 0; }

.navbar-fixed-bottom {
  bottom: 0; }

.navbar-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%; }
  @media (min-width: 544px) {
    .navbar-sticky-top {
      border-radius: 0; } }
.navbar-brand {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem; }
  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }

.navbar-divider {
  float: left;
  width: 1px;
  padding-top: .425rem;
  padding-bottom: .425rem;
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden; }
  .navbar-divider::before {
    content: "\00a0"; }

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none; }

@media (min-width: 544px) {
  .navbar-toggleable-xs {
    display: block !important; } }

@media (min-width: 768px) {
  .navbar-toggleable-sm {
    display: block !important; } }

@media (min-width: 992px) {
  .navbar-toggleable-md {
    display: block !important; } }

.navbar-nav .nav-item {
  float: left; }

.navbar-nav .nav-link {
  display: block;
  padding-top: .425rem;
  padding-bottom: .425rem; }
  .navbar-nav .nav-link + .nav-link {
    margin-left: 1rem; }

.navbar-nav .nav-item + .nav-item {
  margin-left: 1rem; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.8); }
  .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.3); }
  .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.6); }

.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .active > .nav-link:focus,
.navbar-light .navbar-nav .active > .nav-link:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover {
  color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-divider {
  background-color: rgba(0, 0, 0, 0.075); }

.navbar-dark .navbar-brand {
  color: white; }
  .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: white; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.open,
.navbar-dark .navbar-nav .nav-link.open:focus,
.navbar-dark .navbar-nav .nav-link.open:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus,
.navbar-dark .navbar-nav .nav-link.active:hover {
  color: white; }

.navbar-dark .navbar-divider {
  background-color: rgba(255, 255, 255, 0.075); }

.card {
  position: relative;
  display: block;
  margin-bottom: 0.75rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px; }

.card-block {
  padding: 1.25rem; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: underline; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card > .list-group:first-child .list-group-item:first-child {
  border-radius: 4px 4px 0 0; }

.card > .list-group:last-child .list-group-item:last-child {
  border-radius: 0 0 4px 4px; }

.card-header {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e5e5e5; }
  .card-header:first-child {
    border-radius: 4px 4px 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5; }
  .card-footer:last-child {
    border-radius: 0 0 4px 4px; }

.card-primary {
  background-color: #003366;
  border-color: #003366; }

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c; }

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de; }

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f; }

.card-primary-outline {
  background-color: transparent;
  border-color: #003366; }

.card-secondary-outline {
  background-color: transparent;
  border-color: #ccc; }

.card-info-outline {
  background-color: transparent;
  border-color: #5bc0de; }

.card-success-outline {
  background-color: transparent;
  border-color: #5cb85c; }

.card-warning-outline {
  background-color: transparent;
  border-color: #f0ad4e; }

.card-danger-outline {
  background-color: transparent;
  border-color: #d9534f; }

.card-inverse .card-header,
.card-inverse .card-footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
  color: #fff; }

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-blockquote > footer {
  color: rgba(255, 255, 255, 0.65); }

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
  color: #fff; }

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0; }

.card-img {
  border-radius: 0.25rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem; }

.card-img-top {
  border-radius: 4px 4px 0 0; }

.card-img-bottom {
  border-radius: 0 0 4px 4px; }

@media (min-width: 544px) {
  .card-deck {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 1.25rem 0; }
    .card-deck .card {
      display: table-cell;
      vertical-align: top; }
  .card-deck-wrapper {
    margin-right: -1.25rem;
    margin-left: -1.25rem; } }

@media (min-width: 544px) {
  .card-group {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .card-group .card {
      display: table-cell;
      vertical-align: top; }
      .card-group .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group .card:first-child {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-top {
          border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-bottom {
          border-bottom-right-radius: 0; }
      .card-group .card:last-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-top {
          border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-bottom {
          border-bottom-left-radius: 0; }
      .card-group .card:not(:first-child):not(:last-child) {
        border-radius: 0; }
        .card-group .card:not(:first-child):not(:last-child) .card-img-top,
        .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
          border-radius: 0; } }

@media (min-width: 544px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -o-column-count: 3;
    -ms-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    -o-column-gap: 1.25rem;
    -ms-column-gap: 1.25rem;
    column-gap: 1.25rem; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }

.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eceeef;
  border-radius: 4px; }
  .breadcrumb::after {
    content: "";
    display: table;
    clear: both; }
  .breadcrumb > li {
    float: left; }
    .breadcrumb > li + li::before {
      padding-right: .5rem;
      padding-left: .5rem;
      color: #818a91;
      content: "/"; }
  .breadcrumb > .active {
    color: #818a91; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px; }

.page-item {
  display: inline; }
  .page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
  .page-item:last-child .page-link {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
  .page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover {
    z-index: 2;
    color: white;
    cursor: default;
    background-color: #003366;
    border-color: #003366; }
  .page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: white;
    border-color: #dddddd; }

.page-link {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.5;
  color: #0375d8;
  text-decoration: none;
  background-color: white;
  border: 1px solid #dddddd; }
  .page-link:focus, .page-link:hover {
    color: #003366;
    background-color: #eceeef;
    border-color: #dddddd; }

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

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

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

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

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

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

.pager {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  list-style: none; }
  .pager::after {
    content: "";
    display: table;
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: white;
      border: 1px solid #dddddd;
      border-radius: 15px; }
    .pager li > a:focus, .pager li > a:hover {
      text-decoration: none;
      background-color: #eceeef; }
  .pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: white; }
  .pager .disabled > span {
    color: #818a91;
    cursor: not-allowed;
    background-color: white; }

.pager-next > a,
.pager-next > span {
  float: right; }

.pager-prev > a,
.pager-prev > span {
  float: left; }

.label {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px; }
  .label:empty {
    display: none; }

.btn .label {
  position: relative;
  top: -1px; }

a.label:focus, a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem; }

.label-default {
  background-color: #818a91; }
  .label-default[href]:focus, .label-default[href]:hover {
    background-color: #687077; }

.label-primary {
  background-color: #003366; }
  .label-primary[href]:focus, .label-primary[href]:hover {
    background-color: #001a33; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:focus, .label-success[href]:hover {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:focus, .label-info[href]:hover {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:focus, .label-warning[href]:hover {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:focus, .label-danger[href]:hover {
    background-color: #c9302c; }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eceeef;
  border-radius: 4px; }
  @media (min-width: 544px) {
    .jumbotron {
      padding: 4rem 2rem; } }
.jumbotron-hr {
  border-top-color: #d0d5d8; }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  padding: 15px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bold; }

.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c1e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6d5ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7ecb5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9b9; }
  .alert-danger .alert-link {
    color: #843534; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: flex;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 4px; }

.progress-bar {
  height: 1rem;
  line-height: 1rem; }

.progress-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-animated {
  animation: progress-bar-stripes 1s linear infinite; }

.progress-primary {
  background-color: #003366; }

@media screen and (min-width: 0\0) {
  .progress-primary .progress-bar {
    background-color: #003366; } }

.progress-success {
  background-color: #5cb85c; }

@media screen and (min-width: 0\0) {
  .progress-success .progress-bar {
    background-color: #5cb85c; } }

.progress-info {
  background-color: #5bc0de; }

@media screen and (min-width: 0\0) {
  .progress-info .progress-bar {
    background-color: #5bc0de; } }

.progress-warning {
  background-color: #f0ad4e; }

@media screen and (min-width: 0\0) {
  .progress-warning .progress-bar {
    background-color: #f0ad4e; } }

.progress-danger {
  background-color: #d9534f; }

@media screen and (min-width: 0\0) {
  .progress-danger .progress-bar {
    background-color: #d9534f; } }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media-body {
  width: 10000px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right {
  padding-left: 10px; }

.media-left {
  padding-right: 10px; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

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

.list-group {
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

.list-group-flush .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0; }

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0; }

a.list-group-item,
button.list-group-item {
  width: 100%;
  color: #555;
  text-align: inherit; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:focus, a.list-group-item:hover,
  button.list-group-item:focus,
  button.list-group-item:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5; }

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: #eceeef; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
    color: #818a91; }

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #003366;
  border-color: #003366; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
    color: #3399ff; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:focus, a.list-group-item-success:hover,
  button.list-group-item-success:focus,
  button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover,
  button.list-group-item-success.active,
  button.list-group-item-success.active:focus,
  button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:focus, a.list-group-item-info:hover,
  button.list-group-item-info:focus,
  button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover,
  button.list-group-item-info.active,
  button.list-group-item-info.active:focus,
  button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:focus, a.list-group-item-warning:hover,
  button.list-group-item-warning:focus,
  button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:focus,
  button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:focus, a.list-group-item-danger:hover,
  button.list-group-item-danger:focus,
  button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:focus,
  button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .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 {
  padding-bottom: 42.8571428571%; }

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

.embed-responsive-9by16 {
  padding-bottom: 177.7777777778%; }

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

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

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2051;
  display: none;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch; }
  .modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%); }
  .modal.in .modal-dialog {
    transform: translate(0, 0); }

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2001;
  background-color: rgba(0, 0, 0, 0.8); }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.in {
    opacity: 1; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header::after {
    content: "";
    display: table;
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

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

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer::after {
    content: "";
    display: table;
    clear: both; }
  .modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

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

@media (min-width: 544px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-sm {
    width: 300px; } }

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

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  opacity: 0; }
  .tooltip.in {
    opacity: 0.9; }
  .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px; }
    .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 5px 5px 0;
      border-top-color: #000; }
  .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px; }
    .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
      top: 50%;
      left: 0;
      margin-top: -5px;
      border-width: 5px 5px 5px 0;
      border-right-color: #000; }
  .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px; }
    .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
      top: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 0 5px 5px;
      border-bottom-color: #000; }
  .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px; }
    .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
      top: 50%;
      right: 0;
      margin-top: -5px;
      border-width: 5px 0 5px 5px;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px; }
  .popover.popover-top, .popover.bs-tether-element-attached-bottom {
    margin-top: -10px; }
    .popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow {
      bottom: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-color: rgba(0, 0, 0, 0.25);
      border-bottom-width: 0; }
      .popover.popover-top .popover-arrow::after, .popover.bs-tether-element-attached-bottom .popover-arrow::after {
        bottom: 1px;
        margin-left: -10px;
        content: "";
        border-top-color: #fff;
        border-bottom-width: 0; }
  .popover.popover-right, .popover.bs-tether-element-attached-left {
    margin-left: 10px; }
    .popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow {
      top: 50%;
      left: -11px;
      margin-top: -11px;
      border-right-color: rgba(0, 0, 0, 0.25);
      border-left-width: 0; }
      .popover.popover-right .popover-arrow::after, .popover.bs-tether-element-attached-left .popover-arrow::after {
        bottom: -10px;
        left: 1px;
        content: "";
        border-right-color: #fff;
        border-left-width: 0; }
  .popover.popover-bottom, .popover.bs-tether-element-attached-top {
    margin-top: 10px; }
    .popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow {
      top: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-width: 0;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after {
        top: 1px;
        margin-left: -10px;
        content: "";
        border-top-width: 0;
        border-bottom-color: #fff; }
  .popover.popover-left, .popover.bs-tether-element-attached-right {
    margin-left: -10px; }
    .popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow {
      top: 50%;
      right: -11px;
      margin-top: -11px;
      border-right-width: 0;
      border-left-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after {
        right: 1px;
        bottom: -10px;
        content: "";
        border-right-width: 0;
        border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 3px 3px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover-arrow, .popover-arrow::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover-arrow {
  border-width: 11px; }

.popover-arrow::after {
  content: "";
  border-width: 10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .carousel-item {
    position: relative;
    display: none;
    transition: .6s ease-in-out left; }
    .carousel-inner > .carousel-item > img,
    .carousel-inner > .carousel-item > a > img {
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .carousel-item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px; }
        .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right {
          left: 0;
          transform: translate3d(100%, 0, 0); }
        .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left {
          left: 0;
          transform: translate3d(-100%, 0, 0); }
        .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active {
          left: 0;
          transform: translate3d(0, 0, 0); } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5; }
  .carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:focus, .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1; }
  .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev::before {
    content: "\2039"; }
  .carousel-control .icon-next::before {
    content: "\203a"; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media (min-width: 544px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

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

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

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

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

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

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

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

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

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

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

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

.invisible {
  visibility: hidden !important; }

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

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

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

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

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

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

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

@media (min-width: 544px) {
  .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; } }

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

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

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

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

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

.text-muted {
  color: #818a91; }

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

a.text-primary:focus, a.text-primary:hover {
  color: #001a33; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5; }

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

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f; }

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

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c; }

.bg-inverse {
  color: #eceeef;
  background-color: #373a3c; }

.bg-faded {
  background-color: #f7f7f9; }

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

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #001a33; }

.bg-success {
  color: #fff !important;
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44; }

.bg-info {
  color: #fff !important;
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5; }

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

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f; }

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

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

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

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

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

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

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

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

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

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

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

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

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

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

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

.m-t-2 {
  margin-top: 1.5rem !important; }

.m-r-2 {
  margin-right: 1.5rem !important; }

.m-b-2 {
  margin-bottom: 1.5rem !important; }

.m-l-2 {
  margin-left: 1.5rem !important; }

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

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

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

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

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

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

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

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

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

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

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

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

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

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

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

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

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

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

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

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

.p-t-2 {
  padding-top: 1.5rem !important; }

.p-r-2 {
  padding-right: 1.5rem !important; }

.p-b-2 {
  padding-bottom: 1.5rem !important; }

.p-l-2 {
  padding-left: 1.5rem !important; }

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

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

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

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

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

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

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

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

.hidden-xs-up {
  display: none !important; }

@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }
.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }
.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }
@media print {
  .hidden-print {
    display: none !important; } }

.featured_image {
  margin-bottom: 2rem;
  border-radius: 4px; }

.gallery_image {
  margin-bottom: 1rem;
  border-radius: 4px; }

p.featured_image_caption {
  margin-bottom: 2rem; }

.accordion_item {
  border-radius: 4px; }

.foundry-label > h3:before,
.foundry-label > h3:after {
  background: rgba(0, 0, 0, 0.1); }

ul.social_badges_container li a {
  border-radius: 4px; }

.foundry_icon i {
  border-radius: 4px; }

.icon_bar_wrapper {
  border-radius: 4px; }

ul.bulleted_list li i {
  line-height: 1.5; }

.label {
  margin-bottom: 0.5rem;
  /* Foundry addition */ }

.positioner_wrapper,
.foundry-base-margin {
  margin-bottom: 1rem; }

.foundry-footer {
  color: #373a3c; }

.foundry-footer a,
.foundry-footer a:visited {
  color: #0275d8; }

.foundry-footer a:hover,
.foundry-footer a:active {
  color: #014c8c; }

.foundry-accordion-title-bar-bg-primary a.accordion_toggle {
  background: #003366; }

.foundry-accordion-title-bar-bg-success a.accordion_toggle {
  background: #5cb85c; }

.foundry-accordion-title-bar-bg-info a.accordion_toggle {
  background: #5bc0de; }

.foundry-accordion-title-bar-bg-warning a.accordion_toggle {
  background: #f0ad4e; }

.foundry-accordion-title-bar-bg-danger a.accordion_toggle {
  background: #d9534f; }

pre.prettyprint {
  border-radius: 4px; }

.hi-content-wrap {
  line-height: 1.5; }

ul.lz-menu {
  border-radius: 4px; }

/*****************************************/
/*  Foundry Specific CSS                 */
/*****************************************/
/* End Edit Mode */
/* Site Background Styling Options - Background Image, Color Picker, or determined by theme. */
body {
  font-weight: 400; }

/* Header Font Sizing Options */
@media (max-width: 33.9em) {
  /* Mobile */
  h1 {
    font-size: 40px; }
  h2 {
    font-size: 32px; }
  h3 {
    font-size: 28px; }
  h4 {
    font-size: 26px; }
  h5 {
    font-size: 22px; }
  h6 {
    font-size: 18px; } }

@media (min-width: 34em) and (max-width: 47.9em) {
  /* Tablet */
  h1 {
    font-size: 40px; }
  h2 {
    font-size: 32px; }
  h3 {
    font-size: 28px; }
  h4 {
    font-size: 26px; }
  h5 {
    font-size: 22px; }
  h6 {
    font-size: 18px; } }

@media (min-width: 48em) and (max-width: 61.9em) {
  /* Desktop */
  h1 {
    font-size: 64px; }
  h2 {
    font-size: 40px; }
  h3 {
    font-size: 32px; }
  h4 {
    font-size: 28px; }
  h5 {
    font-size: 24px; }
  h6 {
    font-size: 20px; } }

@media (min-width: 62em) {
  /* Widescreen */
  h1 {
    font-size: 64px; }
  h2 {
    font-size: 40px; }
  h3 {
    font-size: 32px; }
  h4 {
    font-size: 28px; }
  h5 {
    font-size: 24px; }
  h6 {
    font-size: 20px; } }

#stacks_in_218_6 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_146 {
	background-color: rgba(51, 102, 153, 1.00);
}



/* Sets background for custom color picker. Allows use of translucent backgrounds. */


/* Shadow Option */

	#stacks_in_146_1 .sticky_content {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
	}





#stacks_in_146_1 .sticky_inner_container {
	padding: 0;
}



	#stacks_in_146_1 .sticky_content {
		z-index: 99;
	}

	




#stacks_in_146_1 .sticky_content {
	
	padding: 0px !important;
	
}


#stacks_in_146_2_1 .mm_site_title h1,
#stacks_in_146_2_1 .mm_site_title h1 a,
#stacks_in_146_2_1 .mobile_mm_site_title h1,
#stacks_in_146_2_1 .mobile_mm_site_title h1 a {
	color: rgba(98, 98, 99, 1.00);
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
}

/*#stacks_in_146_2_1 {
	-webkit-font-smoothing: antialiased;
}*/

#stacks_in_146_2_1 .foundry-mega-menu-toggle {
	display: none;
	font-size: 24px;
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden;
}

#stacks_in_146_2_1 .mobile-toggle-site-title a,
#stacks_in_146_2_1 .mobile-toggle-site-title a:visited,
#stacks_in_146_2_1 .mobile-toggle-site-title a:hover,
#stacks_in_146_2_1 .mobile-toggle-site-title a:active {
	text-decoration: none;
} 

#stacks_in_146_2_1 .nav a.mm-plain-link,
#stacks_in_146_2_1 a.link-group-item {
	text-decoration: none;
	font-weight: 400;
}

#stacks_in_146_2_1 .foundry-mega-menu-button {
	margin-top: -1px;
}




	#stacks_in_146_2_1 .nav-sticky-container {
		transition-duration: 300ms;
		transition-property: background-color;
		/* Possible fix for FF & Chrome Bug in Win10 when using Drop Downs. */
		position: absolute;
		width: 100%;
		/* End Fix */
		background: rgba(51, 102, 153, 1.00);
		z-index: 100;
		
		
	}

	

	#stacks_in_146_2_1 .nav li.top-level-item {
		list-style: none;
	}

	#stacks_in_146_2_1 .nav > li.top-level-item {
		padding: 0;
		display: inline-block;
		margin-left: -4px;
		position: relative;
	}

	#stacks_in_146_2_1 .nav > li.top-level-item:first-child {
		margin-left: 0;
	}

	#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
		display: inline-block;
		color: rgba(255, 255, 255, 1.00);
		text-decoration: none;
		padding: 0 20px;
	}

	#stacks_in_146_2_1 .nav > li:hover > a.mm-plain-link,
	#stacks_in_146_2_1 .nav > li.selected > a.mm-plain-link {
		background-color: rgba(0, 51, 102, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}

	#stacks_in_146_2_1 .nav > li.selected > a.mm-plain-link,
	#stacks_in_146_2_1 .nav .drop_down_plain li:hover > a.mm-plain-link,
	#stacks_in_146_2_1 .nav .drop_down_plain li.selected > a.mm-plain-link {
		font-weight: 400;
	}

	#stacks_in_146_2_1 .nav > li > a.mm-button,
	#stacks_in_146_2_1 .nav > li {
		margin-top: 0px;
	}

	#stacks_in_146_2_1 .nav > li.parent {
		top: 0px;
	}


	#stacks_in_146_2_1 .nav > li.button_height_adjust {
		margin-top: -1px;
		
			margin-left: 6px;
		
	}

	/* MEGA DROP DOWN */
	#stacks_in_146_2_1 .nav > li.top-level-item > .drop-down-container {
		position: absolute;
		display: none;
		overflow: hidden;
		
		border-radius: 0px;
		
		z-index: 500;
	}

	#stacks_in_146_2_1 .nav > li.top-level-item > .drop-down-container.animated {
		animation-duration: 250ms;
		animation-fill-mode: both;

	}

	#stacks_in_146_2_1 .nav > li.top-level-item > .drop-down-container.show-drop-down {
		display: block !important;
	}

	#stacks_in_146_2_1 .nav > li > .drop-down-container.right {
		right: 0;
		left: auto;
	}

	#stacks_in_146_2_1 .clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}

	#stacks_in_146_2_1 a,
	#stacks_in_146_2_1 li {
		cursor: pointer;
	}

	#stacks_in_146_2_1 li.parent > a {
		cursor: pointer;
	}

	#stacks_in_146_2_1 li.parent > a:after {
		font-family: "FontAwesome";
		content: '\f105';
		padding-left: 5px;
	}

	#stacks_in_146_2_1 .foundry-mega-menu-toggle {
		background-color: rgba(247, 247, 249, 1.00);
		color: rgba(80, 80, 81, 1.00);
		width: 100%;
		cursor: pointer;
	}

	#stacks_in_146_2_1 .foundry-mega-menu-toggle:hover {
		background-color: rgba(219, 219, 221, 1.00);
		color: rgba(80, 80, 81, 1.00);
	}

	#stacks_in_146_2_1 .mobile_mm_site_title h1.mobile-toggle-site-title,
	#stacks_in_146_2_1 .mobile_mm_site_title h1.mobile-toggle-site-title a {
		color: rgba(118, 118, 118, 1.00);
	}

	@media (max-width: 47.9375em) {
		/*Mobile*/

		#stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .mm_site_title h1 a,
		#stacks_in_146_2_1 .mobile_mm_site_title h1,
		#stacks_in_146_2_1 .mobile_mm_site_title h1 a {
			font-size: 20px;
			text-decoration: none;
		}

		#stacks_in_146_2_1 .mobile_adjust {
			height: 0;
		}

		#stacks_in_146_2_1 .nav-sticky-container {
			background: transparent;
		}

		#stacks_in_146_2_1 .logo_container,
		#stacks_in_146_2_1 .mm_site_title {
			/*Hide logo at mobile breakpoint*/
			display: none !important;
		}

		#stacks_in_146_2_1 .foundry-mega-menu-toggle {
			display: block;	
		}

		#stacks_in_146_2_1 .foundry-mega-menu {
			display: none;
			top: 0;
		}

		#stacks_in_146_2_1 .nav {
			height: auto;
		}

		#stacks_in_146_2_1 ul.foundry-mega-menu {
			background: rgba(255, 255, 255, 1.00);
		}

		#stacks_in_146_2_1 .nav > li.top-level-item {
			margin-left: 0;
			text-align: left;
		}

		#stacks_in_146_2_1 .nav > li.top-level-item > a.mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container .mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav li.top-level-item a.mm-plain-link:not(.link-group-item) {
			line-height: 48px;
		}

		#stacks_in_146_2_1 .nav > li.top-level-item,
		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			float: none;
			display: block;
		}

		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			color: rgba(98, 98, 99, 1.00);
		}

		#stacks_in_146_2_1 .nav > li:hover > a.mm-plain-link,
		#stacks_in_146_2_1 .nav > li.selected > a.mm-plain-link {
			background: rgba(219, 219, 221, 1.00);
			color: rgba(98, 98, 99, 1.00)
		}

		#stacks_in_146_2_1 .nav > li > .drop-down-container {
			position: relative;
			display: none;
			top: 0;
			box-shadow: none;
			width: 100%;
			max-width: 100%;
			/* background-color: ; */
			border-radius: 0px;
		}

		#stacks_in_146_2_1 .nav > li.top-level-item > .drop-down-container {
			position: relative;
			display: none;
		}

		/* Removes unneeded font sizing for branding at mobile breakpoint. */
		/* #stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .mm_site_title h1 a {
			font-size: 20px;
			text-decoration: none;
		} */

		#stacks_in_146_2_1 .button_height_adjust {
			padding-left: 20px;
			padding-right: 20px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container {
			margin-top: 0px;
		}

		#stacks_in_146_2_1 .botton-column {
			margin-top: -6px;
		}

	}

	@media (min-width: 48em) and (max-width: 61.9375em) {
		/*Tablet*/
		#stacks_in_146_2_1 .foundry-mega-menu {
			display: block !important;
		}

		#stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .mm_site_title h1 a {
			font-size: 20px;
			text-decoration: none;
		}

		#stacks_in_146_2_1 .nav > li.top-level-item > a.mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container .mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container {
			margin-top: 0px;
		}

		@keyframes potion_slide_up {
		from {
				margin-top: 50px;
		}

		to {
				margin-top: 0px;
		}
		}

		@keyframes potion_slide_down {
		from {
				margin-top: -50px;
		}

		to {
				margin-top: 0px;
		}
		}


	}

	@media (min-width: 62em) {
		/*Desktop*/
		#stacks_in_146_2_1 .foundry-mega-menu {
			display: block !important;
		}

		#stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .mm_site_title h1 a {
			font-size: 24px;
			text-decoration: none;
		}

		#stacks_in_146_2_1 .nav > li.top-level-item > a.mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container .mm-plain-link {
			font-size: 16px;
		}

		#stacks_in_146_2_1 .nav .drop-down-container {
			margin-top: 0px;
		}

		@keyframes potion_slide_up {
		from {
				margin-top: 50px;
		}

		to {
				margin-top: 0px;
		}
		}

		@keyframes potion_slide_down {
			from {
				margin-top: -50px;
			}

			to {
				margin-top: 0px;
			}
		}

	}


	@media (max-width: 47.9375em) {
		/*Mobile*/
		#stacks_in_146_2_1 .foundry-mega-menu-toggle,
		#stacks_in_146_2_1 .nav_bar_placeholder {
			height: 48px;
			line-height: 48px;
		}

		#stacks_in_146_2_1 .nav-sticky-container > .container,
		#stacks_in_146_2_1 .nav-sticky-container > .container-fluid {
			width: 100%;
			padding-left: 0 !important;
			padding-right: 0 !important;
		}

		
		#stacks_in_146_2_1 .nav li.top-level-item:not(.link-group-list-item),
		#stacks_in_146_2_1 .nav li.top-level-item > a.mm-plain-link:not(.link-group-item),
		#stacks_in_146_2_1 .nav > li > a.mm-plain-link:not(.link-group-item) {
			line-height: 48px;
		}

		#stacks_in_146_2_1 .button_height_adjust {
			line-height: 48px;
		}

		#stacks_in_146_2_1 .nav-sticky-container > .container > ul > li > a.mm-plain-link {
			height: 48px;
			line-height: 48px;
		}
		

		#stacks_in_146_2_1 .nav-sticky-container {
			border-radius: 0px;
		}

		#stacks_in_146_2_1 .foundry-mega-menu-button {
			margin-top: 6px;
		}
	}

	@media (min-width: 48em) and (max-width: 61.9375em) {
		/*Tablet*/
		#stacks_in_146_2_1 .nav,
		#stacks_in_146_2_1 .nav_bar_placeholder {
			height: 48px;
		}

		#stacks_in_146_2_1 .button_height_adjust {
			line-height: 48px;
		}

		#stacks_in_146_2_1 .logo_container {
			height: 48px;
		}

		
		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			line-height: 48px;
			height: 48px;
		}
		

		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			border-radius: 0px;
		}

		#stacks_in_146_2_1 .foundry-mega-menu-toggle {
			height: 48px;
			line-height: 48px;
		}

		#stacks_in_146_2_1 .nav > li > .drop-down-container {
			top: 48px;
		}

		#stacks_in_146_2_1 .mm_site_title,
		#stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .site_logo {
			height: 48px;
			line-height: 48px;
		}
	}

	@media (min-width: 62em) {
		/*Desktop*/
		#stacks_in_146_2_1 > .nav,
		#stacks_in_146_2_1 .nav_bar_placeholder {
			height: 48px;
		}

		#stacks_in_146_2_1 .button_height_adjust {
			line-height: 48px;
		}


		#stacks_in_146_2_1 .logo_container {
			height: 48px;
		}

		
		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			line-height: 48px;
			height: 48px;
		}

		

		#stacks_in_146_2_1 .nav > li > a.mm-plain-link {
			border-radius: 0px;
		}

		#stacks_in_146_2_1 .foundry-mega-menu-toggle {
			height: 48px;
			line-height: 48px;
		}

		#stacks_in_146_2_1 .nav > li > .drop-down-container {
			top: 48px;
		}

		#stacks_in_146_2_1 .mm_site_title,
		#stacks_in_146_2_1 .mm_site_title h1,
		#stacks_in_146_2_1 .site_logo {
			height: 48px;
			line-height: 48px;
		}

	}

	#stacks_in_146_2_1 .nav > li li {
		line-height: 1.5;
	}

	#stacks_in_146_2_1 .mm_site_title {
		float: left;
		display: inline-block;
		color: #626263;
		margin-left: 10px !important;
		margin-right: 10px !important;
	}




#stacks_in_146_2_1 .nav_bar_placeholder {
	z-index: 998;
	position: relative;
	width: 100%;
}


	#stacks_in_146_2_1 .nav-sticky-container > .container {
			max-width: 1140px;
	}



#stacks_in_146_2_1 .mm_site_title h1 {
	margin: 0;
}

#stacks_out_146_2_1,
#stacks_in_146_2_1,
#stacks_in_146_2_1 .nav_bar_placeholder,
#stacks_in_146_2_1 .nav-sticky-container {
	
	border-radius: 0px;
	
}

#stacks_in_146_2_1 #sticky-wrapper.is-sticky .nav-sticky-container {
	border-radius: 0;
}

#stacks_in_146_2_1 .nav-sticky-container.sticky {
	width: 100% !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 3000;
}

#stacks_in_146_2_1 .nav-sticky-container.simple-sticky {
	top: 0;
	position: fixed;
}


#stacks_in_146_2_1 #sticky-wrapper,
#stacks_in_146_2_1 #sticky-wrapper .nav-sticky-container {
	width: 100% !important;
}

/* Banner Pairing Feature */

	

	




	#stacks_in_146_2_1 .mm_site_title {
		display: none !important;
	}


#stacks_in_146_2_1 .mm_site_title {
		white-space: nowrap;
}

#stacks_in_146_2_1 .site_logo {
	width: auto;
}

#stacks_in_146_2_1 .logo_container {
	float: left;
	display: block;
}

#stacks_in_146_2_1 .logo_container img {
	max-width: auto;
	max-height: 100%;
	
		margin-right: 12px;
	
	/*margin-top: -3px !important;*/
}




	#stacks_in_146_2_1 .mm-button.btn {
		width: 100%;
	}


.potion_slide_up {
  animation-name: potion_slide_up;
	transition-timing-function: ease-in-out;
}

.potion_slide_down {
  animation-name: potion_slide_down;
	transition-timing-function: ease-in-out;
}












@media (max-width: 47.9375em) {

	#stacks_in_146_2_1 .foundry-mega-menu {
		
	}

	#stacks_in_146_2_1 .mobile_nav_wrapper {
		list-style: none;
		padding: 0;
		margin: 0;
		height: 48px;
		line-height: 48px;
		float: left;
	}

	#stacks_in_146_2_1 .mobile_logo_container {
		margin-right: 12px;
	}


	#stacks_in_146_2_1 .mobile_logo_container,
	#stacks_in_146_2_1 .mobile_mm_site_title {
		display: inline-block;
		height: 48px;
		line-height: 48px;
		margin: 0;
	}

	#stacks_in_146_2_1 .mobile_logo_container img {
		height: 48px;
		line-height: 48px;
		width: auto;
		position: relative;
		margin-top: -5px;
	}

	/* BLORP */
	

}



	

@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_2-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_34-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_5-plain > a > i {
  margin-right: 4px;
}



.stacks_in_146_2_40-parent-id .drop-down-container {
	background: rgba(255, 255, 255, 1.00);
   left: 0;
}


.stacks_in_146_2_40-parent-id > a.mm-plain-link > i {
  margin-right: 4px;
}

.stacks_in_146_2_40-drop-down > .row {
  
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  
}

.stacks_in_146_2_40-drop-down .drop_down_plain > li > a {
  display: block;
}

.stacks_in_146_2_40-drop-down ul.drop_down_plain {
	padding: 0;
	margin: 0;
}


  .stacks_in_146_2_40-drop-down {
    
  	border: 1px solid #0060A9;
    border-top: none;
    

    
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.33);
    
  }


@media (max-width: 47.9375em) {
  
}

@media (min-width: 48em) and (max-width: 61.9375em) {
	/*Tablet*/
  .stacks_in_146_2_40-drop-down {
		min-width: 150px;
	}
}

@media (min-width: 62em) {
	/*Desktop*/
	.stacks_in_146_2_40-drop-down {
		min-width: 150px;
	}
}





  






  .stacks_in_146_2_42-drop-down-plain-links a,
  .stacks_in_146_2_42-drop-down-plain-links a:visited {
    color: #626263 !important;
    /*transition-duration: 250ms;
    transition-property: background-color;*/
    
    border-radius: 4px;
    
  }

  .stacks_in_146_2_42-drop-down-plain-links a:hover,
  .stacks_in_146_2_42-drop-down-plain-links a:active,
  .stacks_in_146_2_42-drop-down-plain-links li.selected a {
    color: #494A4A !important;
    background-color: #DBDBDD;
  }

  
    .stacks_in_146_2_42-drop-down-plain-links a {
      padding-top: 3px;
      padding-bottom: 3px;
      padding-left: 10px;
      padding-right: 10px;
    }

    
        }

        .stacks_in_146_2_42-drop-down-plain-links a:hover,
        .stacks_in_146_2_42-drop-down-plain-links a:active,
        .stacks_in_146_2_42-drop-down-plain-links li.selected a {
          color: #494A4A !important;
          background-color: #DBDBDD;
        }
      }

    
  %[endif]%



@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_45-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_47-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_35-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_37-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_33-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_38-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_32-plain > a > i {
  margin-right: 4px;
}
@media (max-width: 47.9375em) {
  
}

.stacks_in_146_2_21-plain > a > i {
  margin-right: 4px;
}






	#stacks_in_148 > .container {
		max-width: 800px;
	}










	#stacks_in_148 > .container {
		border-radius: 0px;
	}

	


#stacks_in_148 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_203 {
	margin: 15px 0px 15px 0px;
}






	#stacks_in_154 > .container {
		max-width: 1024px;
	}










	#stacks_in_154 > .container {
		border-radius: 0px;
	}

	


#stacks_in_154 {
	padding: 20px 0px 0px 0px;
}
#stacks_in_225>.s3_row {
	margin: 0 -5px;
}

#stacks_in_225>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_225>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_225>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_225>.s3_row>.s3_column {
	padding: 0 5px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_225>.s3_row  {
		margin: -5px 0;
	}
	#stacks_in_225>.s3_row>.s3_column {
		padding: 5px 0;
		width:100%;
	}


}




#stacks_in_158 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_162 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_231>.s3_row {
	margin: 0 -10px;
}

#stacks_in_231>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_231>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_231>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_231>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_231>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_231>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_231 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_235>.s3_row {
	margin: 0 -10px;
}

#stacks_in_235>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_235>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_235>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_235>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_235>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_235>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_235 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_193 {
	margin: 30px 0px 0px 0px;
}

#stacks_in_221 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_223 {
	margin: 30px 0px 0px 0px;
}
#stacks_in_246>.s3_row {
	margin: 0 -10px;
}

#stacks_in_246>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_246>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_246>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_246>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_246>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_246>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_246 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_256 {
	margin: 12px 0px 0px 0px;
}
#stacks_in_239>.s3_row {
	margin: 0 -10px;
}

#stacks_in_239>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_239>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_239>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_239>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_239>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_239 {
	margin: 20px 40px 0px 40px;
}

.modal-dialog-pro-modal-stacks_in_205_1 .modal-dialog-pro-modal-header {
 	background-color: #FAFAFA;
}
.modal-dialog-pro-modal-stacks_in_205_1 .modal-dialog-pro-modal-dialog {
	background-color: #FFFFFF;
}
.modal-dialog-pro-modal-stacks_in_205_1 .modal-dialog-pro-modal-footer {
	background-color: #FAFAFA;
}
.modal-dialog-pro-close-stacks_in_205_1 {
	color: #D5D5D5;
}
.modal-dialog-pro-close-stacks_in_205_1:hover {
	color: #A9A9A9;;
}




/* Generic modal dialog customizations */
.modal-dialog-pro-modal {
	z-index: 9999 !important;
}
.modal-dialog-pro-modal-dialog    {
	top: 0px !important;
}

#stacks_in_205_1 {
	margin: 0px 0px 40px 0px;
}
 #stacks_in_205_3{ overflow:hidden;height:600px; } 











#embedIframestacks_in_205_12 {
	width: 100%;
	height: 610px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}









 
/* StickyFooter */
#stacks_in_260 {
	position: relative;
    display:block;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}
#stacks_out_260.stacks_out {
	position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: visible;
} 
/* StickyFooter */
#stacks_in_259_2 {
	position: relative;
    display:block;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}
#stacks_out_259_2.stacks_out {
	position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: visible;
}
#stacks_in_259_2 {
	background-color: rgba(12, 81, 136, 0.89);
}






	#stacks_in_259_4 > .container {
		max-width: 1100px;
	}










	#stacks_in_259_4 > .container {
		border-radius: 0px;
	}

	


#stacks_in_259_4 {
	padding: 16px 0px 10px 0px;
}
#stacks_in_259_6>.s3_row {
	margin: 0 -10px;
}

#stacks_in_259_6>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_259_6>.s3_row>.s3_column_center {
	width: 50.000000%;
}

#stacks_in_259_6>.s3_row>.s3_column_right {
	width: 25.00%;
}

#stacks_in_259_6>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_259_6>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_259_6>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_259_6 {
	margin: 0px 0px 20px 0px;
}
/* -- Start Svg Each css Template -- */


#stacks_in_259_8 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_259_8svgwrapper{
	position: relative;
}


		#stacks_in_259_8 img  {
			max-width: 125px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_259_8 img {
				max-width: 125px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_259_8 img {
				max-width: 12575px;
			}
		}
	


#stacks_in_259_8 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_259_8 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_259_8 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */


/* Color picker style settings */



/* Option for removing base margin on paragraphs */
#stacks_in_259_10 p,
#stacks_in_259_10 {
	
	
}
/* -- Start Svg Each css Template -- */


#stacks_in_259_13 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_259_13svgwrapper{
	position: relative;
}


		#stacks_in_259_13 img  {
			max-width: 125px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_259_13 img {
				max-width: 125px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_259_13 img {
				max-width: 125px;
			}
		}
	


#stacks_in_259_13 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_259_13 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_259_13 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */