/* CSS Library for Simplode */

/* CSS Reset */
* {
    outline: 0;
    font-size: 100%;
    box-sizing: border-box;
}

/*Import Google Fonts: EB Garamond, Open Sans, Raleway*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Global */
body {
    background-color: #fff;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(16px, 2vw, 24px); 
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/*Typography Specifications*/
.txt-serif {
    font-family: 'EB Garamond', serif;
}
.txt-sans-serif {
    font-family: 'Open Sans', sans-serif;
}
.txt-display {
    font-family: 'Raleway', sans-serif;
}

/* Font Weights */
.txt-light {
    font-weight: 300;
}
.txt-regular {
    font-weight: 400;
}
.txt-medium {
    font-weight: 500;
}
.txt-semibold {
    font-weight: 600;
}
.txt-bold {
    font-weight: 700;
}
.txt-extrabold {
    font-weight: 800;
}

/* Font Size */
body {
  font-family: sans-serif;
  font-size: clamp(16px, 2vw, 24px);
}
.txt-xs {
  font-size: clamp(0.6rem, 1vw, 1rem);
}
.txt-sm {
  font-size: clamp(0.8rem, 1.25vw, 1.25rem);
}
.txt-lg {
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.txt-xl {
  font-size: clamp(2rem, 3vw, 3rem);
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

h5 {
  font-size: clamp(0.8rem, 1.25vw, 1rem);
}

h6 {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
}

h1.txt-xs{
  font-size: clamp(1rem, 2vw, 2rem);
}
h1.txt-sm{
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}
h1.txt-lg{
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}
h1.txt-xl{
  font-size: clamp(3.5rem, 4.5vw, 4rem);
}
h2.txt-xs{
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
}
h2.txt-sm{
  font-size: clamp(1.25rem, 2vw, 2rem);
}
h2.txt-lg{
  font-size: clamp(2rem, 3vw, 3rem);
}
h2.txt-xl{
  font-size: clamp(3rem, 4vw, 4rem);
}
h3.txt-xs{
  font-size: clamp(0.7rem, 1.25vw, 1.25rem);
}
h3.txt-sm{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
h3.txt-lg{
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}
h3.txt-xl{
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}
h4.txt-xs{
  font-size: clamp(0.6rem, 1vw, 1rem);
}
h4.txt-sm{
  font-size: clamp(0.8rem, 1.25vw, 1.25rem);
}
h4.txt-lg{
  font-size: clamp(1.25rem, 2vw, 2rem);
}
h4.txt-xl{
  font-size: clamp(2rem, 3vw, 3rem);
}
h5.txt-xs{
  font-size: clamp(0.5rem, 1vw, 1rem);
}
h5.txt-sm{
  font-size: clamp(0.7rem, 1.25vw, 1.25rem);
}
h5.txt-lg{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
h5.txt-xl{
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}
h6.txt-xs{
  font-size: clamp(0.4rem, 1vw, 1rem);
}
h6.txt-sm{
  font-size: clamp(0.6rem, 1vw, 1vw);
}
h6.txt-lg{
  font-size: clamp(0.8rem, 1.25vw, 1.25rem);
}
h6.txt-xl{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 0.8em;
  opacity: 0.8;
}
/*Lead Paragraph*/
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}
/* Text utilities */
.txt-center {
    text-align: center;
}
.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-justify {
    text-align: justify;
}
.txt-underline {
  text-decoration: underline;
}
.txt-through {
  text-decoration: line-through;
}
.txt-overline {
  text-decoration: overline;
}
.txt-none {
  text-decoration: none;
}
.txt-capitalize {
  text-transform: capitalize;
}
.txt-uppercase {
  text-transform: uppercase;
}
.txt-lowercase {
  text-transform: lowercase;
}
.txt-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.txt-italic {
  font-style: italic;
}
hr{
  margin-left: 7px;
  margin-right: 7px;
}
/* End of Typography Specifications */

/* Button Specifications*/

/* Normal Button */
.btn {
    background-color: #000;
    border: 1.5px solid #000;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out;
    user-select: none;
    white-space: nowrap;
}
.btn:hover {
    background-color: transparent;
    border-color: #000;
    color: #000;
}
.btn:focus,
.btn:active {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.btn:disabled,
.btn.btn-disabled {
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed;
}
/* Full Width Button */
.btn-full {
    display: flex;
    width: 100%;
}
/* Button Sizes */
.btn-xs {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}
.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}
.btn-lg {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}
.btn-xl {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}
/* Button Groups */
.btn-group {
    display: inline-flex;
    flex-wrap: wrap;
    position: relative;
    vertical-align: middle;
}
.btn-group .btn:not(:last-child, :first-child) {
    border-radius: 0;
}
.btn-group .btn:first-child:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.btn-group .btn:last-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
/* TODO: Add dropdown button */

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: #000;
}
.btn-outline:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.btn-outline:focus,
.btn-outline:active {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.btn-group .btn-outline:not(:last-child, :first-child) {
  border-left: none;
  border-right: none;
}
.btn-group .btn-outline:first-child:not(:last-child) {
  border-right: none;
}
.btn-group .btn-outline:last-child {
  border-left: none;
}
/* Pill Button */
.btn-pill,
div.btn-pill,
a.btn-pill {
    border-radius: 50px;
}
/* Ghost Button */
.btn-ghost {
    background-color: transparent;
    border: 1.5px solid transparent !important;
    color: #000;
}
.btn-ghost:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.btn-ghost:focus,
.btn-ghost:active {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
/* Fab Button */
.btn-fab,
div.btn-fab,
a.btn-fab {
    border-radius: 50%;
    height: 56px;
    width: 56px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-fab .icon,
div.btn-fab .icon,
a.btn-fab .icon {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}
.btn-fab.btn-xs,
div.btn-fab.btn-xs,
a.btn-fab.btn-xs {
    height: 24px;
    width: 24px;
}
.btn-fab.btn-sm,
div.btn-fab.btn-sm,
a.btn-fab.btn-sm {
    height: 32px;
    width: 32px;
    border-radius: 46px;
}
.btn-fab.btn-lg,
div.btn-fab.btn-lg,
a.btn-fab.btn-lg {
    height: 64px;
    width: 64px;
}
.btn-fab.btn-xl,
div.btn-fab.btn-xl,
a.btn-fab.btn-xl {
    height: 72px;
    width: 72px;
}
/* End of Button Specifications */
/* Table Specifications */
.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
}
.table thead th {
    border-bottom: 1px solid #000;
}
.table tbody + tbody {
    border-top: 1px solid #000;
}
.table tr {
    border-top: 1px solid #000;
}
/* Striped Table */
.table.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
/* Bordered Table */
.table.table-border td,
.table.table-border th {
    border: 1px solid #000;
}
/* Hover Table */
.table.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}
/* Responsive Table */
.table-responsive {
    display: block;
    overflow-x: auto;
    width: 100%;
}
/* Condensed Table */
.table.table-condensed td,
.table.table-condensed th {
  padding: 0.1rem;
}
/* End of Table Specifications */
/* Labels and Badges Specifications */
/* Labels */
.label {
    background-color: #000;
    border-radius: 0.25rem;
    color: #fff;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.25rem 0.4rem;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
/* Badges */
.badge {
    background-color: #000;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.25rem 0.4rem;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
.btn .badge {
    position: relative;
    top: -1px;
}
/* End of Labels and Badges Specifications */
/* Links Specifications */
a {
    text-decoration: none;
    background-color: transparent;
}
a:hover:not(.btn, .pill) {
    text-decoration: underline;
}
a:focus:not(.btn, .pill),
a:active:not(.btn, .pill) {
    outline: 0;
}
a:visited:not(.btn, .pill) {
    color: inherit;
}
/* End of Links Specifications */
/* List Specifications */
ul.circle {
  list-style-type: circle;
  color: black;
}
ul.square {
  list-style-type: square;
}
ul.disc {
  list-style-type: disc;
}
ul.block-list, ol.block-list{
  list-style-type: none;
  list-style-position: inside;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid;
  padding-left: 0;
  margin: 0;
}
ul.block-list li, ol.block-list li{
  padding: 10px 10px;
  border-bottom: 1px solid;
  list-style-position: outside;
  border-color: currentColor;
}
ul.block-list li:last-child, ol.block-list li:last-child{
  border-bottom: none;
}
/* Definition List */
dl {
    margin-bottom: 1rem;
}
dt,
dd {
    padding: 0.5rem 0;
}
dt {
    font-weight: 700;
}
/* End of List Specifications */
/* Grid Specifications */
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
      padding-left: 15px;
      padding-right: 15px;
  }
}
@media (min-width: 768px) {
.container {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (min-width: 992px) {
.container {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (min-width: 1200px) {
.container {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (max-width: 575px) {
.container{
    width: 540px;
    max-width: 100%;
}
}
@media (min-width: 576px) {
.container{
    width: 540px;
    max-width: 100%;
}
}
@media (min-width: 768px) {
.container{
    width: 720px;
    max-width: 100%;
}
}
@media (min-width: 992px) {
.container{
    width: 960px;
    max-width: 100%;
}
}
@media (min-width: 1200px) {
.container{
    width: 1140px;
    max-width: 100%;
}
}
.container-flex {
position: relative;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 576px) {
.container-flex {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (min-width: 768px) {
.container-flex {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (min-width: 992px) {
.container-flex {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (min-width: 1200px) {
.container-flex {
    padding-left: 15px;
    padding-right: 15px;
}
}
.row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
}

@media (min-width: 576px) {
.row {
    margin-left: -15px;
    margin-right: -15px;
}
}

@media (min-width: 768px) {
.row {
    margin-left: -15px;
    margin-right: -15px;
}
}

@media (min-width: 992px) {
.row {
    margin-left: -15px;
    margin-right: -15px;
}
}

@media (min-width: 1200px) {
.row {
    margin-left: -15px;
    margin-right: -15px;
}
}
.no-gutters {
margin-right: 0;
margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col"] {
padding-right: 0;
padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
.col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 576px) {
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
.col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
}
}
@media (min-width: 768px) {
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
.col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
}
}
@media (min-width: 992px) {
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
.col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
}
}
@media (min-width: 1200px) {
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
.col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
}
}
.col {
-webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
max-width: 100%;
}
.col-auto {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
width: auto;
}

.col-1 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
max-width: 8.333333%;
}

.col-2 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
max-width: 16.666667%;
}

.col-3 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
max-width: 25%;
}

.col-4 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
max-width: 33.333333%;
}

.col-5 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
max-width: 41.666667%;
}

.col-6 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
max-width: 50%;
}

.col-7 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
max-width: 58.333333%;
}

.col-8 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
max-width: 66.666667%;
}

.col-9 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
max-width: 75%;
}

.col-10 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
max-width: 83.333333%;
}

.col-11 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
max-width: 91.666667%;
}

.col-12 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
max-width: 100%;
}

.pull-0 {
right: auto;
}

.pull-1 {
right: 8.333333%;
}

.pull-2 {
right: 16.666667%;
}

.pull-3 {
right: 25%;
}

.pull-4 {
right: 33.333333%;
}

.pull-5 {
right: 41.666667%;
}

.pull-6 {
right: 50%;
}

.pull-7 {
right: 58.333333%;
}

.pull-8 {
right: 66.666667%;
}

.pull-9 {
right: 75%;
}

.pull-10 {
right: 83.333333%;
}

.pull-11 {
right: 91.666667%;
}

.pull-12 {
right: 100%;
}

.push-0 {
left: auto;
}

.push-1 {
left: 8.333333%;
}

.push-2 {
left: 16.666667%;
}

.push-3 {
left: 25%;
}

.push-4 {
left: 33.333333%;
}

.push-5 {
left: 41.666667%;
}

.push-6 {
left: 50%;
}

.push-7 {
left: 58.333333%;
}

.push-8 {
left: 66.666667%;
}

.push-9 {
left: 75%;
}

.push-10 {
left: 83.333333%;
}

.push-11 {
left: 91.666667%;
}

.push-12 {
left: 100%;
}

.offset-1 {
margin-left: 8.333333%;
}

.offset-2 {
margin-left: 16.666667%;
}

.offset-3 {
margin-left: 25%;
}

.offset-4 {
margin-left: 33.333333%;
}

.offset-5 {
margin-left: 41.666667%;
}

.offset-6 {
margin-left: 50%;
}

.offset-7 {
margin-left: 58.333333%;
}

.offset-8 {
margin-left: 66.666667%;
}

.offset-9 {
margin-left: 75%;
}

.offset-10 {
margin-left: 83.333333%;
}

.offset-11 {
margin-left: 91.666667%;
}
@media (min-width: 576px) {
.col-sm {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}
.col-sm-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.col-sm-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
      -ms-flex: 0 0 8.333333%;
          flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-sm-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
      -ms-flex: 0 0 16.666667%;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-sm-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
.col-sm-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-sm-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
      -ms-flex: 0 0 41.666667%;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-sm-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.col-sm-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
      -ms-flex: 0 0 58.333333%;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-sm-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-sm-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}
.col-sm-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
      -ms-flex: 0 0 83.333333%;
          flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-sm-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
      -ms-flex: 0 0 91.666667%;
          flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-sm-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.pull-sm-0 {
  right: auto;
}
.pull-sm-1 {
  right: 8.333333%;
}
.pull-sm-2 {
  right: 16.666667%;
}
.pull-sm-3 {
  right: 25%;
}
.pull-sm-4 {
  right: 33.333333%;
}
.pull-sm-5 {
  right: 41.666667%;
}
.pull-sm-6 {
  right: 50%;
}
.pull-sm-7 {
  right: 58.333333%;
}
.pull-sm-8 {
  right: 66.666667%;
}
.pull-sm-9 {
  right: 75%;
}
.pull-sm-10 {
  right: 83.333333%;
}
.pull-sm-11 {
  right: 91.666667%;
}
.pull-sm-12 {
  right: 100%;
}
.push-sm-0 {
  left: auto;
}
.push-sm-1 {
  left: 8.333333%;
}
.push-sm-2 {
  left: 16.666667%;
}
.push-sm-3 {
  left: 25%;
}
.push-sm-4 {
  left: 33.333333%;
}
.push-sm-5 {
  left: 41.666667%;
}
.push-sm-6 {
  left: 50%;
}
.push-sm-7 {
  left: 58.333333%;
}
.push-sm-8 {
  left: 66.666667%;
}
.push-sm-9 {
  left: 75%;
}
.push-sm-10 {
  left: 83.333333%;
}
.push-sm-11 {
  left: 91.666667%;
}
.push-sm-12 {
  left: 100%;
}
.offset-sm-0 {
  margin-left: 0%;
}
.offset-sm-1 {
  margin-left: 8.333333%;
}
.offset-sm-2 {
  margin-left: 16.666667%;
}
.offset-sm-3 {
  margin-left: 25%;
}
.offset-sm-4 {
  margin-left: 33.333333%;
}
.offset-sm-5 {
  margin-left: 41.666667%;
}
.offset-sm-6 {
  margin-left: 50%;
}
.offset-sm-7 {
  margin-left: 58.333333%;
}
.offset-sm-8 {
  margin-left: 66.666667%;
}
.offset-sm-9 {
  margin-left: 75%;
}
.offset-sm-10 {
  margin-left: 83.333333%;
}
.offset-sm-11 {
  margin-left: 91.666667%;
}
}
@media (min-width: 768px) {
.col-md {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}
.col-md-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.col-md-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
      -ms-flex: 0 0 8.333333%;
          flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-md-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
      -ms-flex: 0 0 16.666667%;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-md-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
.col-md-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-md-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
      -ms-flex: 0 0 41.666667%;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-md-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.col-md-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
      -ms-flex: 0 0 58.333333%;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-md-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-md-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}
.col-md-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
      -ms-flex: 0 0 83.333333%;
          flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-md-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
      -ms-flex: 0 0 91.666667%;
          flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-md-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.pull-md-0 {
  right: auto;
}
.pull-md-1 {
  right: 8.333333%;
}
.pull-md-2 {
  right: 16.666667%;
}
.pull-md-3 {
  right: 25%;
}
.pull-md-4 {
  right: 33.333333%;
}
.pull-md-5 {
  right: 41.666667%;
}
.pull-md-6 {
  right: 50%;
}
.pull-md-7 {
  right: 58.333333%;
}
.pull-md-8 {
  right: 66.666667%;
}
.pull-md-9 {
  right: 75%;
}
.pull-md-10 {
  right: 83.333333%;
}
.pull-md-11 {
  right: 91.666667%;
}
.pull-md-12 {
  right: 100%;
}
.push-md-0 {
  left: auto;
}
.push-md-1 {
  left: 8.333333%;
}
.push-md-2 {
  left: 16.666667%;
}
.push-md-3 {
  left: 25%;
}
.push-md-4 {
  left: 33.333333%;
}
.push-md-5 {
  left: 41.666667%;
}
.push-md-6 {
  left: 50%;
}
.push-md-7 {
  left: 58.333333%;
}
.push-md-8 {
  left: 66.666667%;
}
.push-md-9 {
  left: 75%;
}
.push-md-10 {
  left: 83.333333%;
}
.push-md-11 {
  left: 91.666667%;
}
.push-md-12 {
  left: 100%;
}
.offset-md-0 {
  margin-left: 0%;
}
.offset-md-1 {
  margin-left: 8.333333%;
}
.offset-md-2 {
  margin-left: 16.666667%;
}
.offset-md-3 {
  margin-left: 25%;
}
.offset-md-4 {
  margin-left: 33.333333%;
}
.offset-md-5 {
  margin-left: 41.666667%;
}
.offset-md-6 {
  margin-left: 50%;
}
.offset-md-7 {
  margin-left: 58.333333%;
}
.offset-md-8 {
  margin-left: 66.666667%;
}
.offset-md-9 {
  margin-left: 75%;
}
.offset-md-10 {
  margin-left: 83.333333%;
}
.offset-md-11 {
  margin-left: 91.666667%;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
max-width: 100%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
max-width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
max-width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
max-width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
max-width: 100%;
}
.pull-lg-0 {
right: auto;
}
.pull-lg-1 {
right: 8.333333%;
}
.pull-lg-2 {
right: 16.666667%;
}
.pull-lg-3 {
right: 25%;
}
.pull-lg-4 {
right: 33.333333%;
}
.pull-lg-5 {
right: 41.666667%;
}
.pull-lg-6 {
right: 50%;
}
.pull-lg-7 {
right: 58.333333%;
}
.pull-lg-8 {
right: 66.666667%;
}
.pull-lg-9 {
right: 75%;
}
.pull-lg-10 {
right: 83.333333%;
}
.pull-lg-11 {
right: 91.666667%;
}
.pull-lg-12 {
right: 100%;
}
.push-lg-0 {
left: auto;
}
.push-lg-1 {
left: 8.333333%;
}
.push-lg-2 {
left: 16.666667%;
}
.push-lg-3 {
left: 25%;
}
.push-lg-4 {
left: 33.333333%;
}
.push-lg-5 {
left: 41.666667%;
}
.push-lg-6 {
left: 50%;
}
.push-lg-7 {
left: 58.333333%;
}
.push-lg-8 {
left: 66.666667%;
}
.push-lg-9 {
left: 75%;
}
.push-lg-10 {
left: 83.333333%;
}
.push-lg-11 {
left: 91.666667%;
}
.push-lg-12 {
left: 100%;
}
.offset-lg-0 {
margin-left: 0%;
}
.offset-lg-1 {
margin-left: 8.333333%;
}
.offset-lg-2 {
margin-left: 16.666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.333333%;
}
.offset-lg-5 {
margin-left: 41.666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.333333%;
}
.offset-lg-8 {
margin-left: 66.666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.333333%;
}
.offset-lg-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
max-width: 100%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
max-width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
max-width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
max-width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
max-width: 100%;
}
.pull-xl-0 {
right: auto;
}
.pull-xl-1 {
right: 8.333333%;
}
.pull-xl-2 {
right: 16.666667%;
}
.pull-xl-3 {
right: 25%;
}
.pull-xl-4 {
right: 33.333333%;
}
.pull-xl-5 {
right: 41.666667%;
}
.pull-xl-6 {
right: 50%;
}
.pull-xl-7 {
right: 58.333333%;
}
.pull-xl-8 {
right: 66.666667%;
}
.pull-xl-9 {
right: 75%;
}
.pull-xl-10 {
right: 83.333333%;
}
.pull-xl-11 {
right: 91.666667%;
}
.pull-xl-12 {
right: 100%;
}
.push-xl-0 {
left: auto;
}
.push-xl-1 {
left: 8.333333%;
}
.push-xl-2 {
left: 16.666667%;
}
.push-xl-3 {
left: 25%;
}
.push-xl-4 {
left: 33.333333%;
}
.push-xl-5 {
left: 41.666667%;
}
.push-xl-6 {
left: 50%;
}
.push-xl-7 {
left: 58.333333%;
}
.push-xl-8 {
left: 66.666667%;
}
.push-xl-9 {
left: 75%;
}
.push-xl-10 {
left: 83.333333%;
}
.push-xl-11 {
left: 91.666667%;
}
.push-xl-12 {
left: 100%;
}
.offset-xl-0 {
margin-left: 0%;
}
.offset-xl-1 {
margin-left: 8.333333%;
}
.offset-xl-2 {
margin-left: 16.666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.333333%;
}
.offset-xl-5 {
margin-left: 41.666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.333333%;
}
.offset-xl-8 {
margin-left: 66.666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.333333%;
}
.offset-xl-11 {
margin-left: 91.666667%;
}
}
/*End of Grid Specifications*/
/*Image Specifications*/
img,
  .img {
    width: 100%;
    height: auto;
  }
  .img.reverse {
    height: 100%;
    width: auto;
  }
  img.rounded,
  .img.rounded {
    border-radius: 50%;
  }
  img.squared,
  .img.squared {
    border-radius: 10px;
  }
/*End of Image Specifications*/
/*Pagination Specifications*/
.pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.pagination li{
  display: inline-flex;
}
.pagination li a {
  color: inherit;
  float: left;
  padding: 7px 14px;
  text-decoration: none;
  border: none;
  outline: none;
}
.pagination li:first-child a{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination li:last-child a {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination li a:link  {
  text-decoration: none;
  color: inherit;
}
.pagination li a:visited  {
  text-decoration: none;
  color: inherit;
}
.pagination li a:hover  {
  text-decoration: none;
  color: inherit;
}
.pagination li a:active  {
  text-decoration: none;
  color: inherit;
}
.pagination.spaced li a{
  margin: 0 4px;
  border: none;
}
.pagination.bordered li a{
  border: 1px solid #676767;
  border-collapse: collapse;
}
.pagination li a.active, .pagination li a:focus:not(.active){
  background-color: #6767674d;
}
.pagination li a:hover:not(.active){
  background-color: #67676717;
}
/*End of Pagination Specifications*/
/*Breadcrumb Specifications*/
.breadcrumb{
  padding: 8px 16px;
  list-style: none;
}
.breadcrumb li{
  display: inline;
}
.breadcrumb li:last-child{
  cursor: default;
}
.breadcrumb a{
  color: inherit;
  outline: none;
}
.breadcrumb li+li:before{
  padding: 8px;
  content: "/\00a0";
}
/*End of Breadcrumb Specifications*/
/* Collapsible Divs Specifications */
/* Collapsible Divs Specifications */
.collapse-div {
  display: block;
  border-radius: 5px;
  background-color: #ffffff;
  border: 2px solid #bebebe36;
}
.collapse-div .list-item:first-child .list-item-heading {
  border-radius: 5px 5px 0 0;
}
.collapse-div .list-item:last-child .list-item-heading {
  border-radius: 0 0 5px 5px;
}
.collapse-div .list-item-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  padding: 15px;
  font-size: 1.5em;
  border-bottom: 2px solid #bebebe36;
}
.collapse-div .list-item-heading::after {
  content: "\002B";
}
.collapse-div .list-item-heading.active::after {
  content: "\2212";
}
.collapse-div .list-item-heading:hover {
  background-color: #bebebe36;
}
.collapse-div .list-item:last-child .list-item-heading{
  border-bottom: none;
}
.collapse-div .list-item-content {
  display: none;
  padding: 12px;
  overflow: auto;
  overflow-x: hidden;
  transition: max-height 0.3s ease-out;
}
.collapse-div .list-item-heading.active + .list-item-content{
  display: block;
  border-bottom: 2px solid #bebebe36;
}
.collapse-div .list-item:last-child .list-item-content{
  border-bottom: 0;
  border-radius: 0 0 3px 3px;
}
/* End of Collapsible Divs Specifications */
/* Card Specifications */
.card {
  -moz-box-shadow: 2px 2px 5px #c8c8c8;
  -webkit-box-shadow: 2px 2px 5px #c8c8c8;
  box-shadow: 2px 2px 5px #c8c8c8;
  border-radius: 5px;
}
.card .card-header {
  padding: 15px;
  border-radius: 5px 5px 0 0;
  border-bottom: 2px solid #bebebe36;
}
.card .card-header .card-title {
  font-size: 1.5em;
}
.card .card-body {
  padding: 15px;
}
.card .card-footer {
  padding: 15px;
  border-radius: 0 0 5px 5px;
  border-top: 2px solid #bebebe36;
}
.info .card-header,
.info .card-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.info .card-header *,
.info .card-footer * {
  align-self: center;
  display: inline-flex;
}
/* End of Card Specifications */
/* Tooltip Specifications */
.tool-tip {
  position: relative;
  display: inline-block;
  border-bottom: 1.5px dotted black;
}
.tool-tip.btn {
  border-bottom-style: solid;
}
.tool-tip .tool-tip-text {
  font-size: small;
  visibility: hidden;
  min-width: 200%;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  -moz-box-shadow: 2px 2px 5px #c8c8c8;
  -webkit-box-shadow: 2px 2px 5px #c8c8c8;
  box-shadow: 2px 2px 5px #c8c8c8;
}
/* Tooltip positions */
.tool-tip .tool-tip-text:not(.bottom),
.tool-tip .tool-tip-text.top {
  bottom: 125%;
  left: 0;
  margin-left: -60px;
}
.tool-tip .tool-tip-text.bottom {
  top: 125%;
  left: 0;
  margin-left: -60px;
}
/*tooltip arrows depending on position*/
.tool-tip .tool-tip-text::after,
.tool-tip .tool-tip-text.top::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #676767 transparent transparent transparent;
}
.tool-tip .tool-tip-text.bottom::after {
  content: " ";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #676767 transparent;
}
.tool-tip:hover .tool-tip-text {
  visibility: visible;
  opacity: 1;
}
/* End of Tooltip Specifications */
/* Tabs Specifications */
.tab{
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  border-radius: 5px;
  margin-right: 5px;
  padding: 0;
}
.tab .tab-list{
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  padding: 0;
  margin: 0;
}
.tab-item{
  flex: auto;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #67676733;
  cursor: pointer;
}
.tab-item *{
  text-decoration: none;
}
.tab-item.active{
  border-top: 1px solid #67676733;
  border-left: 1px solid #67676733;
  border-right: 1px solid #67676733;
  padding: 12px 18px 14px;
  border-bottom: 0;
}
.tab-view{
  display: block;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px 10px;
  margin: 0;
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #67676733;
  border-left: 1px solid #67676733;
  border-right: 1px solid #67676733;
}
.tab-view-content{
  display: none;
  border-radius: 0 0 5px 5px;
}
/*End of Tab Specifications */
/* Forms Specifications */
/* Three types of forms: default, inline and horizontal */
.form {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
}
.form .form-group {
  margin: 0;
  padding: 0 5px 12px;
  position: relative;
}
.form .form-group label {
  margin-bottom: 5px;
  display: block;
}
.form .form-group label.required::after {
  content: "*";
  color: red;
}
.form .form-group input:not(input[type="checkbox"]):not(input[type="radio"]),
.form select,
.form textarea {
  border-radius: 5px;
  border: 1.5px solid #67676733;
  background-color: transparent;
  outline: none;
}
.form .form-group input:not(input[type="checkbox"]):not(input[type="radio"]):not(input[type="color"]),
.form .form-group select,
.form textarea {
  padding: 5px;
  width: 100%;
}
.form .form-group input:focus,
.form select:focus,
.form textarea:focus {
  border: 1.5px solid #676767;
}
.form .form-group input:disabled,
.form select:disabled,
.form textarea:disabled {
  background-color: #67676733;
}
.form .form-group input:disabled:hover {
  background-color: #67676733;
}
.form .form-group input:disabled:focus {
  background-color: #67676733;
}
.form .form-group input:disabled:active {
  background-color: #67676733;
}
.form .form-group input:disabled:visited {
  background-color: #67676733;
}
.form .form-group input:disabled:link {
  background-color: #67676733;
}
.form .form-group input:disabled:hover {
  background-color: #67676733;
}
.form .form-group input:disabled:active {
  background-color: #67676733;
}
.form .form-group label.sr-only{
  display: none;
}
@media only speech{
  .form .form-group label.sr-only{
    display: inline-flex;
  }
}
.form .form-group.hor,
.form.horizontal .form-group.hor,
.form.horizontal .form-group.radio
{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.form .form-group.hor input:not(:first-child){
  margin-left: 10px;
}
/* Horizontal forms */
.form.horizontal .form-group {
  display: grid;
  grid-template-columns: 1fr 2fr; /* label takes 1/3, input field takes 2/3 */
  align-items: center;
}

.form.horizontal .form-group label {
  margin-bottom: 5px;
  display: block;
  grid-column: 1; /* label takes the first column */
}

.form.horizontal .form-group input {
  grid-column: 2; /* input field takes the second column */
}
.form.horizontal .form-group input[type="checkbox"],
.form.horizontal .form-group input[type="radio"],
.form.horizontal .form-group textarea,
.form.horizontal .form-group select[multiple],
.form.horizontal .form-group button.btn-full {
  /* checkboxes and radio buttons take the whole width */
  grid-column: 1 / 3;
}
/*Inline forms*/
.form.inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.form.inline .form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
/*Line forms*/
.form.line .form-group input:not(input[type="checkbox"]):not(input[type="radio"]),
.form.line select,
.form.line textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1.5px solid #67676733;
  outline: none;
}
.form.line .form-group input:not(input[type="checkbox"]):not(input[type="radio"]):not(input[type="color"]),
.form.line select,
.form.line textarea {
  padding: 5px;
  width: 100%;
}
.form.line .form-group input:focus,
.form.line select:focus,
.form.line textarea:focus {
  border: 1.5px solid #676767;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: inherit;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: inherit;
}
/*End of Forms Specifications */
/*Navigation Specifications */
.nav{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center stretch;
  position: relative;
  background-color: #f7f5f5;
  -moz-box-shadow: 0 0 5px rgb(200, 200, 200);
  -webkit-box-shadow:  0 0 5px rgb(200, 200, 200);
  box-shadow:  0 0 5px rgb(200, 200, 200);
  padding: 0;
  margin: 0;
}
.nav a:link:not(.nav-text a),
.nav a:visited:not(.nav-text a),
.nav a:hover:not(.nav-text a),
.nav a:active:not(.nav-text a) {
  text-decoration: none;
  color: inherit;
  border: none;
}
.nav a:link,
.nav a:visited,
.nav a:hover,
.nav a:active{
  color: inherit;
}
.nav .nav-brand{
  display: inline-flex;
  justify-content: space-between;
  align-items: center stretch;
  padding: 0;
  margin: 0;
  flex-direction: row;
}
.nav .nav-brand .brand-name{
  display: inline-flex;
  position: relative;
  padding: 14px 20px;
  flex-direction: row;
  align-items: center;
}
.nav .nav-brand .brand-img{
  display: inline-flex;
  padding: 0;
  margin: 0;
  flex-direction: row;
  align-items: center;
}
.nav .nav-brand .brand-img img{
  height: 50px;
  width: auto;
  padding: 2px;
}
.nav button.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 2;
  flex-direction: column;
  padding: 14px 20px;
  margin: 0;
  outline: none;
  border: none;
  background-color: inherit;
  cursor: pointer;
}
.nav button.nav-toggle::before{
  content: "\002630";
  font-weight: 500;
  align-self: center;
  position: relative;
  top: -1px;
  left: 0;
}
.nav button.nav-toggle.active::before{
  content: "\2715";
  font-size: larger;
}
.nav button.nav-toggle:active, .nav button.nav-toggle:focus{
  filter: brightness(80%);
} 
.nav button.nav-toggle:hover{
  filter: brightness(110%);
}
.nav.responsive button.nav-toggle{
  display: none;
}
.nav .nav-list{
  display: inline-flex;
  align-items: center stretch;
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav .nav-list a{
  display: inline-block;
  height: 100%;
}
.nav .nav-list li{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center stretch;
  top: 0;
  bottom: 0;
}
.nav-list a:hover:not(.nav-text a){
  background-color: #67676733;
}
.nav-list a:active:not(.nav-text a), .nav-list a:focus:not(.nav-text a), .nav-list a.active:not(.nav-text a){
  background-color: #c8c8c8b3;
}
.nav .nav-text,
.nav .nav-form .form-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.nav .nav-text a::before{
  content: '\00A0';
}
.nav .nav-text,
.nav .nav-list a:not(.nav-text a){
  padding: 14px 20px;
}
.nav .nav-form {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.nav .nav-form .form-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.nav .nav-dropdown{
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow-y: visible;
  height: 100%;
}
.nav .nav-dropdown .dropdown-item::after {
  content: "\2304";
  font-weight: 900;
  position: relative;
  top: -5px;
}
.nav .nav-dropdown .dropdown-content{
  position: absolute;
  top: 100%;
  left: auto;
  height: auto;
  display: none;
  opacity: 1;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  min-width: 100%;
  width: fit-content;
  white-space: nowrap;
  transition: opacity .3s, height 1s, display .1s;
  -moz-box-shadow: 0 0 5px rgb(200, 200, 200);
  -webkit-box-shadow:  0 0 5px rgb(200, 200, 200);
  box-shadow:  0 0 5px rgb(200, 200, 200);
}
.nav .nav-dropdown .dropdown-content.active {
  opacity: 1;
  display: flex;
  height: auto;
}
.nav .nav-dropdown .dropdown-content li,
.nav .nav-dropdown .dropdown-content a{
  position: relative;
  width: 100%;
}
.dropdown-content .list-separator{
  border: 1px solid #c8c8c8b3;
  border-radius: 5px;
  height: .5px;
  width: 98%;
  margin: auto;
}
.nav.fixed-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 50px;
  position: fixed;
  top: 0;
  width: 100%;
}
.nav.fixed-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.nav-list.align-right,
  .nav-brand.align-right{
    position: absolute;
    right: 0;
  }
  .nav-list.align-left,
  .nav-brand.align-left{
    position: absolute;
    left: 0;
  }
.nav.fixed-bottom .dropdown-item .caret::before{
  border: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  content: ""; /*\2304*/
}
.nav.fixed-bottom .nav-dropdown .dropdown-content{
  position: absolute;
  bottom: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  min-width: 50px;
  max-width: 100%;
  background-color: inherit;
  -moz-box-shadow: 0 0 5px rgb(200, 200, 200);
  -webkit-box-shadow:  0 0 5px rgb(200, 200, 200);
  box-shadow:  0 0 5px rgb(200, 200, 200);
}
@media (max-width: 991px) {
  .nav.responsive {
    display: flex;
    flex-direction: column;
  }
  .nav.responsive .nav-brand{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
  }
  .nav.responsive button.nav-toggle{
    display: inline-flex;
  }
  
  .nav.responsive .nav-list{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .nav.responsive .nav-list a{
    display: flex;
    width: 100%;
  }
  .nav.responsive .nav-dropdown .dropdown-item{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
  }
  .nav.responsive .nav-dropdown .dropdown-item .caret{
    position: absolute;
    right: 25px;
    bottom: 18px;
  }
  .nav.responsive .nav-dropdown .dropdown-content{
    width: 100%;
    top: 100%;
  }
}
/*End of Navigation Specifications*/
/* Carousel Specifications */
@media (max-width: 575px) {
  .carousel{
    min-height: 432px;
    height: auto;
  }
}
@media (min-width: 576px) {
  .carousel{
    min-height: 432px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .carousel{
    min-height: 384px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .carousel{
    min-height: 496px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .carousel{
    min-height: 600px;
    height: auto;
  }
}
.carousel{
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}
.carousel .content-view{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.content-view .carousel-item{
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  padding: 10px;
  position: absolute;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}
.content-view .carousel-item.show,
.content-view .carousel-item.img-background.show {
  display: flex;
  opacity: 1;
}
.content-view .carousel-item.align-left{
  align-items: flex-start;
}
.content-view .carousel-item.align-right{
  align-items: flex-end;
}
.content-view .carousel-item.img-background{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-origin: content-box;
  background-origin: border-box;
  background-image: url("../assets/MojaveDay-1366x768.jpg");
}
.carousel .buttons{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.carousel .buttons .next,
.carousel .buttons .prev,
.carousel .buttons div{
  width: 15%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.carousel .buttons .arrow-next::before{
  content: "\276F";
  font-size: 3em;
  font-weight: 400;
  color: #6767679a;
  filter: opacity(0.4);
}
.carousel .buttons .arrow-prev::before{
  content: "\276E";
  font-size: 3em;
  font-weight: 400;
  color: #6767679a;
  filter: opacity(0.4);
}
.carousel .buttons .next:hover .arrow-next::before,
.carousel .buttons .prev:hover .arrow-prev::before{
  filter: opacity(1);
}
/*End of Carousel Specifications*/
/*Modal Specifications */
.modal.modal-basic{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1b1b;
  display: none;
  flex-direction: column;
  justify-content: stretch;
}
.modal.modal-adv{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1b1b49;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 5px;
  padding-right: 5px;
  overflow-y: auto;
}
.modal.modal-adv.scrollable{
  overflow-y: hidden;
}
.modal.modal-adv.valign-bottom{
  align-items: center;
  justify-content: flex-end;
}
.modal.modal-adv.valign-center{
  align-items: center;
  justify-content: center;
}
.modal.modal-adv .modal-window{
  background-color: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: 40px;
  opacity: 0;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  -moz-box-shadow: 2px 2px 5px #838383;
  -webkit-box-shadow: 2px 2px 5px #838383;
  box-shadow: 2px 2px 5px #838383;
}
@keyframes revealModal {
  0% {
    top: 10px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: auto;
    opacity: 1;
  }
}
@keyframes hideModal {
  0% {

  }
  50% {
    top: 45px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}
.modal.modal-basic .modal-header{
  z-index: 10;
}
.modal.modal-basic .modal-header,
.modal.modal-adv .modal-window .modal-header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: small;
}
.modal.modal-adv .modal-window .modal-header .header-text{
  font-weight: 500;
}
.modal.modal-adv .modal-window .modal-header{
  border-bottom: .5px solid #c8c8c833;
}
.modal.modal-basic .modal-header .close,
.modal.modal-adv .modal-header .close {
  position: relative;
  right: 15px;
  top: 0;
  cursor: pointer;
  opacity: 0.5;
}
.close{
  filter: brightness(60%);
  font-size: larger;
  transition: transform 1s;
}
.close:hover {
  filter: brightness(150%);
  transform: rotate(90deg);
}
.close:before{
  content: '\2715';
}
.modal.modal-basic .modal-header{
  color: white;
}
.modal.modal-adv.scrollable .modal-content{
  overflow-y: auto;
  height: 540px;
}
.modal.modal-basic .modal-caption{
  z-index: 1;
}
.modal.modal-basic .modal-caption,
.modal.modal-adv .modal-footer{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: small;
  justify-content: space-around;
  padding: 5px;
}
.modal.modal-adv .modal-footer{
  justify-content: space-between;
  padding: 10px;
  border-top: .5px solid #c8c8c833;
}
.modal.modal-basic .modal-caption .modal-caption-text{
  color: #ffffff;
}
.modal.modal-basic .modal-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 8;
}
.modal.modal-basic .modal-content .image-space{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  width: auto;
}
.modal.modal-basic .modal-content .image-space img{
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .modal.modal-basic .modal-content .image-space{
    width: 540px;
    max-width: 100%;
  }
  .modal.modal-adv .modal-window.xl{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.lg{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.md{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.sm{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xs{
    width: 420px;
    max-width: 95%;
  }
  .modal.modal-adv.scrollable .modal-content{
    overflow-y: auto;
    height: 300px;
  }
}
@media (min-width: 576px) {
  .modal.modal-basic .modal-content .image-space{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xl{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.lg{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.md{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.sm{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xs{
    width: 420px;
    max-width: 95%;
  }
  .modal.modal-adv.scrollable .modal-content{
    overflow-y: auto;
    height: 300px;
  }
}
@media (min-width: 768px) {
  .modal.modal-basic .modal-content .image-space{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xl{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.lg{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.md{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.sm{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xs{
    width: 420px;
    max-width: 95%;
  }
  .modal.modal-adv.scrollable .modal-content{
    overflow-y: auto;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .modal.modal-basic .modal-content .image-space{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xl{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.lg{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.md{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.sm{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xs{
    width: 420px;
    max-width: 95%;
  }
  .modal.modal-adv.scrollable .modal-content{
    overflow-y: auto;
    height: 440px;
  }
}
@media (min-width: 1200px) {
  .modal.modal-basic .modal-content .image-space{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xl{
    width: 1140px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.lg{
    width: 960px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.md{
    width: 720px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.sm{
    width: 540px;
    max-width: 95%;
  }
  .modal.modal-adv .modal-window.xs{
    width: 420px;
    max-width: 95%;
  }
  .modal.modal-adv.scrollable .modal-content{
    overflow-y: auto;
    height: 440px;
  }
}
/*End of Modal Specifications */
/* Notifications Specifications */
/*Notifications*/
.notification {
  display: none;
  position: fixed;
  opacity: 0;
  transition: opacity 2s;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  -moz-box-shadow: 2px 2px 5px #c8c8c8;
  -webkit-box-shadow: 2px 2px 5px #c8c8c8;
  box-shadow: 2px 2px 5px #c8c8c8;
}
.notification.top-right {
  top: 50px;
  right: 50px;
}
.notification.bottom-right {
  bottom: 50px;
  right: 50px;
}
.notification.bottom-left {
  bottom: 50px;
  left: 50px;
}
.notification.top-left {
  top: 50px;
  left: 50px;
}
.notification .content {
  display: block;
  padding-right: 20px;
  font-size: small;
}

.notification .close {
  font-size: smaller;
  display: inline-block;
  border-radius: 50%;
  padding: 5px 0;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 2px;
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 575px) {
  .notification {
    width: 300px;
    max-width: 100%;
  }
  .notification.bottom-right {
    bottom: 50px;
    right: 10px;
  }
  .notification.top-left {
    top: 50px;
    left: 10px;
  }
  .notification.bottom-left {
    bottom: 50px;
    left: 10px;
  }
  .notification.top-right {
    top: 50px;
    right: 10px;
  }
}
@media (min-width: 576px) {
  .notification {
    width: 191px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .notification {
    width: 256px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .notification {
    width: 330px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .notification {
    width: 400px;
    max-width: 100%;
  }
}
/* End of Notification Specifications */
/* Helper Classes Specification */
/*Helper classes*/
.no-padding{
  padding-left: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding: 0 !important;
}
.no-margin{
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  margin: 0 !important;
}
*.no-border{
  border-top: 0px solid #ffffff00 !important;
  border-left: 0px solid #ffffff00 !important;
  border-right: 0px solid #ffffff00 !important;
  border-bottom: 0px solid #ffffff00 !important;
  border: 0px solid #ffffff00 !important;
  border-color: #ffffff00 !important;
}
*.no-border-cascade,
.no-border-cascade *{
  border-top: 0px solid #ffffff00 !important;
  border-left: 0px solid #ffffff00 !important;
  border-right: 0px solid #ffffff00 !important;
  border-bottom: 0px solid #ffffff00 !important;
  border: 0px solid #ffffff00 !important;
  border-color: #ffffff00 !important;
}
.no-border-child *{
  border-top: 0px solid #ffffff00 !important;
  border-left: 0px solid #ffffff00 !important;
  border-right: 0px solid #ffffff00 !important;
  border-bottom: 0px solid #ffffff00 !important;
  border: 0px solid #ffffff00 !important;
  border-color: #ffffff00 !important;
}
.no-shadow{
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: 2px 2px 5px transparent !important;
}
.no-background{
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}
.no-txt-shadow{
  -moz-text-shadow: 2px 2px 5px transparent !important;
  -webkit-text-shadow: 2px 2px 5px transparent !important;
  text-shadow: 2px 2px 5px transparent !important;
}
@media (min-width: 1200px) {
  .visible-lg-down{
    display: none !important;
  }
  .visible-md-down{
    display: none !important;
  }
  .visible-sm-down{
    display: none !important;
  }
  .visible-xs-down{
    display: none !important;
  }
  .no-visible-xl-up{
    display: none !important;
  }
  .no-visible-xl-down{
    display: none !important;
  }
  .no-visible-lg-up{
    display: none !important;
  }
  .no-visible-md-up{
    display: none !important;
  }
  .no-visible-sm-up{
    display: none !important;
  }
  .no-visible-xs-up{
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xl-up{
    display: none !important;
  }
  .visible-md-down{
    display: none !important;
  }
  .visible-sm-down{
    display: none !important;
  }
  .visible-xs-down{
    display: none !important;
  }
  .no-visible-xl-down{
    display: none !important;
  }
  .no-visible-lg-up{
    display: none !important;
  }
  .no-visible-lg-down{
    display: none !important;
  }
  .no-visible-md-up{
    display: none !important;
  }
  .no-visible-sm-up{
    display: none !important;
  }
  .no-visible-xs-up{
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xl-up{
    display: none !important;
  }
  .visible-lg-up{
    display: none !important;
  }
  .visible-sm-down{
    display: none !important;
  }
  .visible-xs-down{
    display: none !important;
  }
  .no-visible-xl-down{
    display: none !important;
  }
  .no-visible-lg-down{
    display: none !important;
  }
  .no-visible-md-up{
    display: none !important;
  }
  .no-visible-md-down{
    display: none !important;
  }
  .no-visible-sm-up{
    display: none !important;
  }
  .no-visible-xs-up{
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .visible-xl-up{
    display: none !important;
  }
  .visible-lg-up{
    display: none !important;
  }
  .visible-md-up{
    display: none !important;
  }
  .visible-xs-down{
    display: none !important;
  }
  .no-visible-xl-down{
    display: none !important;
  }
  .no-visible-lg-down{
    display: none !important;
  }
  .no-visible-md-down{
    display: none !important;
  }
  .no-visible-sm-up{
    display: none !important;
  }
  .no-visible-sm-down{
    display: none !important;
  }
  .no-visible-xs-up{
    display: none !important;
  }
}
@media (max-width: 575px) {
  .visible-xl-up{
    display: none !important;
  }
  .visible-lg-up{
    display: none !important;
  }
  .visible-md-up{
    display: none !important;
  }
  .visible-sm-up{
    display: none !important;
  }
  .no-visible-xl-down{
    display: none !important;
  }
  .no-visible-lg-down{
    display: none !important;
  }
  .no-visible-md-down{
    display: none !important;
  }
  .no-visible-sm-down{
    display: none !important;
  }
  .no-visible-xs-up{
    display: none !important;
  }
  .no-visible-xs-down{
    display: none !important;
  }
}
/* End of Helper Classes Specifications */