@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 480px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1600px;
  --font-family-sans-serif: "Open Sans", Helvetica, Arial, sans-serif;
  --font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-bottom: 0.5rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 1.1;
	color: inherit;
}

h1, .h1 {
  font-size: 45px;
}

h2, .h2 {
  font-size: 38px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 22px;
}

h6, .h6 {
  font-size: 17px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #f2f2f2;
}
.blockquote-footer::before {
  content: "— ";
}

.container {
  width: 100%;
/*   padding-right: 15px;
  padding-left: 15px; */
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 480px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.container-fluid {
  width: calc( 100% - 30px);
  /* padding-right: 15px;
  padding-left: 15px; */
  margin-right: 15px;
  margin-left: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
/*   margin-right: -15px;
  margin-left: -15px; */
}

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

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

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 480px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 15px;
  line-height: 1.5;
  color: #212121;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #212121;
  background-color: transparent;
  border-color: #ced4da;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: 50px;
}
select.form-control:focus::-ms-value {
  color: #212121;
  background-color: transparent;
}

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

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

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

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

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: 40px;
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: 70px;
}

.form-group {
  margin-bottom: 10px;
}

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

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

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

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #cbcbcb;
}

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

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

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

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

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

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

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

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #191919, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

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

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

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

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

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #191919, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 480px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: inherit;
  background-color: transparent;
}
.btn-link:hover {
  color: #3598db;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
/*   width: 100%; */
}
.btn-buy {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

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

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

.fade {
  transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
  z-index: 3;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

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

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

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #212121;
  border: 1px solid #212121;
  border-radius: 5px;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

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

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

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

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}
.custom-select:focus::-ms-value {
  color: #212121;
  background-color: transparent;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}

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

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

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

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

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  appearance: none;
}
.custom-range::-webkit-slider-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  appearance: none;
}
.custom-range::-moz-range-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  appearance: none;
}
.custom-range::-ms-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded {
  border-radius: 5px !important;
}

.rounded-top {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.rounded-right {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-left {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 480px) {
  .d-sm-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

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

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

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

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

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

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

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

.align-items-stretch {
  align-items: stretch !important;
}

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

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

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

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

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 480px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

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

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

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .float-xxl-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 480px) {
  .m-sm-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  	font-family: 'Roboto', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.row-spacer {
  flex-basis: 100%;
}

* + .row {
  margin-top: 50px;
}

* + [class*=col-xs-] {
  margin-top: 0;
}

@media (min-width: 480px) {
  * + [class*=col-sm-] {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  * + [class*=col-md-] {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  * + [class*=col-lg-] {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  * + [class*=col-xl-] {
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  * + [class*=col-xxl-] {
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1800px;
  }
}
.row-condensed {
  margin-left: 0;
  margin-right: 0;
}
.row-condensed > [class*=col] {
  padding-left: 0;
  padding-right: 0;
}

.page-header {
  padding-bottom: 14px;
}

.font-default {
  	font-family: 'Roboto', sans-serif;
}

.font-accent {
  	font-family: 'Roboto', sans-serif;
}

h1,
.h1 {
  margin-top: 26px;
  margin-bottom: 21px;
  font-size: 36px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  h1,
.h1 {
    line-height: 1.2;
    font-size: 40.5px;
  }
}

h2,
.h2 {
  margin-top: 42px;
  margin-bottom: 17px;
  font-size: 32px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  h2,
.h2 {
    line-height: 1.1842105263;
    font-size: 38px;
  }
}

h3,
.h3 {
  margin-top: 27px;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  h3,
.h3 {
    line-height: 1.2;
    font-size: 30px;
  }
}

h4,
.h4 {
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.5;
}
h4 * + .icon,
h4 .icon + *,
.h4 * + .icon,
.h4 .icon + * {
  padding-left: 8px;
}
@media (min-width: 768px) {
  h4,
.h4 {
    line-height: 1.25;
    font-size: 24px;
  }
}

h5,
.h5 {
  margin-top: 29px;
  margin-bottom: 19px;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  h5,
.h5 {
    line-height: 1.2272727273;
    font-size: 22px;
  }
}

h6,
.h6 {
  margin-top: 29px;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
h6 * + .icon,
h6 .icon + *,
.h6 * + .icon,
.h6 .icon + * {
  padding-left: 8px;
}
@media (min-width: 768px) {
  h6,
.h6 {
    line-height: 1.4705882353;
    font-size: 17px;
  }
}

h1 a, .h1 a,
h2 a, .h2 a,
h3 a, .h3 a,
h4 a, .h4 a,
h5 a, .h5 a,
h6 a, .h6 a {
  transition: 0.3s all ease;
}
h1 a:hover, .h1 a:hover,
h2 a:hover, .h2 a:hover,
h3 a:hover, .h3 a:hover,
h4 a:hover, .h4 a:hover,
h5 a:hover, .h5 a:hover,
h6 a:hover, .h6 a:hover {
  color: #3598db;
}
h1 .small, .h1 .small,
h2 .small, .h2 .small,
h3 .small, .h3 .small,
h4 .small, .h4 .small,
h5 .small, .h5 .small,
h6 .small, .h6 .small {
  color: #9b9b9b;
}

p,
.p,
.list {
  margin-top: 18px;
  margin-bottom: 18px;
}
p a:hover,
.p a:hover,
.list a:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .big {
    font-size: 106.25%;
    line-height: 1.4705882353;
  }
  h1 .big, .h1 .big {
    font-size: 142.22%;
    line-height: 1.125;
  }
  h2 .big, .h2 .big {
    font-size: 147.36%;
    line-height: 1.1428571429;
  }
}
blockquote small,
blockquote .small,
small,
.small {
  font-size: 93.75%;
}
blockquote small:before,
blockquote .small:before,
small:before,
.small:before {
  display: none;
}
h1 blockquote small, .h1 blockquote small,
h1 blockquote .small,
.h1 blockquote .small,
h1 small,
.h1 small,
h1 .small,
.h1 .small {
  font-size: 62.2222222222%;
}
h2 blockquote small, .h2 blockquote small,
h2 blockquote .small,
.h2 blockquote .small,
h2 small,
.h2 small,
h2 .small,
.h2 .small {
  font-size: 63.1578947368%;
}
h3 blockquote small, .h3 blockquote small,
h3 blockquote .small,
.h3 blockquote .small,
h3 small,
.h3 small,
h3 .small,
.h3 .small {
  font-size: 73.3333333333%;
}
h4 blockquote small, .h4 blockquote small,
h4 blockquote .small,
.h4 blockquote .small,
h4 small,
.h4 small,
h4 .small,
.h4 .small {
  font-size: 75%;
}
h5 blockquote small, .h5 blockquote small,
h5 blockquote .small,
.h5 blockquote .small,
h5 small,
.h5 small,
h5 .small,
.h5 .small {
  font-size: 72.7272727273%;
}
h6 blockquote small, .h6 blockquote small,
h6 blockquote .small,
.h6 blockquote .small,
h6 small,
.h6 small,
h6 .small,
.h6 .small {
  font-size: 94.1176470588%;
}

sub {
  bottom: -0.5em;
}

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

code, kbd, pre, samp {
  	font-family: 'Roboto', sans-serif;
}

code {
  padding: 5px 7px;
  font-size: 75%;
  color: #E50A0A;
  background-color: #f7f7f7;
  border-radius: 2px;
}

pre {
  padding: 16px 19px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.13;
  overflow-x: auto;
}
pre code {
  font-size: 75%;
  text-align: left;
}

mark, .mark {
  background-color: #ABCC37;
  padding: 0.1em;
}

.text-extra-small {
  font-size: 13px;
}

.text-extra-big {
  font-size: 100px;
  line-height: 0.7;
}
@media (min-width: 768px) {
  .text-extra-big {
    font-size: 140px;
  }
}
@media (min-width: 992px) {
  .text-extra-big {
    font-size: 180px;
  }
}
@media (min-width: 1200px) {
  .text-extra-big {
    font-size: 220px;
  }
}

.list > li + li {
  margin-top: 10px;
}

.list-numbered {
  padding-left: 15px;
}
.list-numbered li {
  padding-left: 10px;
}

.list-inline {
  margin-left: -5px;
  margin-right: -5px;
}
.list-inline > li {
  padding-left: 5px;
  padding-right: 5px;
}
.list-inline .list-inline-item {
  margin: 0;
}

.list-inline-sm {
  margin-left: -10px;
  margin-right: -10px;
}
.list-inline-sm > li {
  padding-left: 10px;
  padding-right: 10px;
}

.list-inline-md {
  margin-left: -15px;
  margin-right: -15px;
}
.list-inline-md > li {
  padding-left: 15px;
  padding-right: 15px;
}

.list-inline-lg {
  margin-left: -30px;
  margin-right: -30px;
}
.list-inline-lg > li {
  padding-left: 30px;
  padding-right: 30px;
}
.list-inline-lg > li:first-child {
  padding-left: 0;
}
.list-inline-lg > li:before {
  color: #cbcbcb;
}
.list-inline-lg > li + li [class*=fa-]:before {
  margin-left: 15px;
}
@media (min-width: 768px) {
  .list-inline-lg li + li [class*=fa-]:before {
    margin-left: 0;
  }
  .list-inline-lg [class*=fa-]:before {
    padding-left: 15px;
    padding-right: 10px;
  }
}

.list-inline-picton-blue > li > a {
  transition: 0.3s;
}
.list-inline-picton-blue > li > a:hover {
  color: #55bbeb;
}

.list-inline-dashed > li {
  padding-right: 0;
}
.list-inline-dashed > li + li:before {
  content: "/";
  padding-right: 5px;
}

.list-inline-dashed-wide > li {
  padding-right: 0;
}
.list-inline-dashed-wide > li + li:before {
  content: "/";
  padding-right: 20px;
}
@media (min-width: 992px) {
  .list-inline-dashed-wide > li + li:before {
    padding-right: 5px;
  }
}

.list-inline-squared > li {
  position: relative;
}
.list-inline-squared > li + li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: -7px;
  height: 6px;
  border-left: 6px solid;
}
.list-inline-squared.list-inline-mg + li:before {
  left: -23px;
}
.list-inline-squared.list-inline-lg + li:before {
  left: -33px;
}

.list-marked {
  text-align: left;
  padding-left: 0;
  list-style: none;
}
.list-marked li {
  padding-left: 15px;
  position: relative;
}
.list-marked li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3598db;
}

.list-index {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
}
.list-index li .list-index-counter:before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
}

.list-separated li + li {
  border-top: 1px solid #f5f5f5;
  margin-top: 8px;
  padding-top: 7px;
}

.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.bg-gray-base {
  background: #191919;
  fill: #191919;
}

.bg-gray-darkest {
  background: #212121;
  fill: #212121;
}

.bg-gray-darker {
  background: #434345;
  fill: #434345;
}

.bg-gray {
  background: #cbcbcb;
  fill: #cbcbcb;
}

.bg-gray-light {
  background: #f2f2f2;
  fill: #f2f2f2;
}

.bg-lighter {
  background: #f5f5f5;
  fill: #f5f5f5;
}

.bg-lightest {
  background: #f7f7f7;
  fill: #f7f7f7;
}

.bg-deluge {
  background: #8668ad;
  fill: #8668ad;
}

.bg-picton-blue {
  background: #55bbeb;
  fill: #55bbeb;
}

.bg-white {
  background: #fff;
  fill: #fff;
}

.bg-polar {
  background: #ecf4fb;
  fill: #ecf4fb;
}

.bg-black-haze {
  background: -moz-linear-gradient(0deg, #f7f7f7 0%, #fff 100%);
  background: -webkit-linear-gradient(0deg, #f7f7f7 0%, #fff 100%);
  background: -o-linear-gradient(0deg, #f7f7f7 0%, #fff 100%);
  background: -ms-linear-gradient(0deg, #f7f7f7 0%, #fff 100%);
  background: linear-gradient(0deg, #f7f7f7 0%, #fff 100%);
}

.bg-acapulco {
  background: -moz-linear-gradient(90deg, #3598db 0%, #57f1c4 100%);
  background: -webkit-linear-gradient(90deg, #3598db 0%, #57f1c4 100%);
  background: -o-linear-gradient(90deg, #3598db 0%, #57f1c4 100%);
  background: -ms-linear-gradient(90deg, #3598db 0%, #57f1c4 100%);
  background: linear-gradient(90deg, #3598db 0%, #57f1c4 100%);
}

.bg-blue-gray {
  background: -moz-linear-gradient(90deg, #8668ad 0%, #55bbeb 100%);
  background: -webkit-linear-gradient(90deg, #8668ad 0%, #55bbeb 100%);
  background: -o-linear-gradient(90deg, #8668ad 0%, #55bbeb 100%);
  background: -ms-linear-gradient(90deg, #8668ad 0%, #55bbeb 100%);
  background: linear-gradient(90deg, #8668ad 0%, #55bbeb 100%);
}

.bg-red {
  background: -moz-linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  background: -webkit-linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  background: -o-linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  background: -ms-linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  background: linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
}

.bg-mantis {
  background: -moz-linear-gradient(90deg, #2e5181 0%, #3598db 100%);
  background: -webkit-linear-gradient(90deg, #2e5181 0%, #3598db 100%);
  background: -o-linear-gradient(90deg, #2e5181 0%, #3598db 100%);
  background: -ms-linear-gradient(90deg, #2e5181 0%, #3598db 100%);
  background: linear-gradient(90deg, #2e5181 0%, #3598db 100%);
}

.bg-shark {
  background: -moz-linear-gradient(90deg, #191919 0%, #434345 100%);
  background: -webkit-linear-gradient(90deg, #191919 0%, #434345 100%);
  background: -o-linear-gradient(90deg, #191919 0%, #434345 100%);
  background: -ms-linear-gradient(90deg, #191919 0%, #434345 100%);
  background: linear-gradient(90deg, #191919 0%, #434345 100%);
}

.bg-shark-radio {
  background: radial-gradient(ellipse at center, #212121 0%, #191919 100%);
  fill: radial-gradient(ellipse at center, #212121 0%, #191919 100%);
}

.bg-deluge {
  background: -moz-linear-gradient(90deg, #8668ad 0%, #695999 100%);
  background: -webkit-linear-gradient(90deg, #8668ad 0%, #695999 100%);
  background: -o-linear-gradient(90deg, #8668ad 0%, #695999 100%);
  background: -ms-linear-gradient(90deg, #8668ad 0%, #695999 100%);
  background: linear-gradient(90deg, #8668ad 0%, #695999 100%);
}

.bg-malibu {
  background: -moz-linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  background: -webkit-linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  background: -o-linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  background: -ms-linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  background: linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
}

.bg-saffron {
  background: -moz-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -webkit-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -o-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -ms-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
}

.bg-blue-gray-tilt {
  background: -moz-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -webkit-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -o-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -ms-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
}

.bg-red-tilt {
  background: -moz-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -webkit-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -o-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -ms-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
}

.bg-mantis-tilt {
  background: -moz-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -webkit-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -o-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -ms-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: linear-gradient(45deg, #3598db 0%, #84c450 100%);
}

.bg-shark-tilt {
  background: -moz-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -webkit-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -o-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -ms-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: linear-gradient(45deg, #191919 0%, #434345 100%);
}

.bg-deluge-tilt {
  background: -moz-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -webkit-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -o-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -ms-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: linear-gradient(45deg, #8668ad 0%, #695999 100%);
}

.bg-malibu-tilt {
  background: -moz-linear-gradient(45deg, #64aae1 0%, #2e5181 100%);
  background: -webkit-linear-gradient(45deg, #64aae1 0%, #2e5181 100%);
  background: -o-linear-gradient(45deg, #64aae1 0%, #2e5181 100%);
  background: -ms-linear-gradient(45deg, #64aae1 0%, #2e5181 100%);
  background: linear-gradient(45deg, #64aae1 0%, #2e5181 100%);
}

.bg-saffron-tilt {
  background: -moz-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -webkit-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -o-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: -ms-linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
  background: linear-gradient(90deg, #f5bf2f 0%, #F3A43D 100%);
}

.bg-overlay-white {
  background: rgba(255, 255, 255, 0.8);
}

.bg-overlay-gray-darkest {
  background: rgba(33, 33, 33, 0.65);
}

.bg-overlay-info {
  background: rgba(46, 81, 129, 0.8);
}

.page .text-primary {
  color: #3598db !important;
}
.page a.text-primary:hover, .page a.text-primary:focus {
  color: #217dbc !important;
}
.page .text-gray {
  color: #cbcbcb !important;
}
.page a.text-gray:hover, .page a.text-gray:focus {
  color: #b2b2b2 !important;
}
.page .text-jungle-green {
  color: #212121 !important;
}
.page a.text-jungle-green:hover, .page a.text-jungle-green:focus {
  color: #080808 !important;
}
.page .text-deluge {
  color: #8668ad !important;
}
.page a.text-deluge:hover, .page a.text-deluge:focus {
  color: #6d5092 !important;
}
.page .text-picton-blue {
  color: #55bbeb !important;
}
.page a.text-picton-blue:hover, .page a.text-picton-blue:focus {
  color: #27a9e6 !important;
}
.index .text-dollar-bill {
  color: #84c450 !important;
}
.page a.text-dollar-bill:hover, .page a.text-dollar-bill:focus {
  color: #6ba839 !important;
}
.page .text-iceberg {
  color: #64aae1 !important;
}
.page a.text-iceberg:hover, .page a.text-iceberg:focus {
  color: #3993d9 !important;
}
.page .text-ku-crimson {
  color: #e50a0a !important;
}
.page a.text-ku-crimson:hover, .page a.text-ku-crimson:focus {
  color: #b40808 !important;
}
.page .text-neon-carrot {
  color: #F3A43D !important;
}
.page a.text-neon-carrot:hover, .page a.text-neon-carrot:focus {
  color: #ee8d0f !important;
}
.page .text-darker {
  color: #434345 !important;
}
.page a.text-darker:hover, .page a.text-darker:focus {
  color: #2a2a2b !important;
}
.page .text-white {
  color: #fff !important;
}
.page a.text-white:hover, .page a.text-white:focus {
  color: #e6e6e6 !important;
}
.page .text-dark {
  color: #9b9b9b !important;
}
.page a.text-dark:hover, .page a.text-dark:focus {
  color: #828282 !important;
}
.page .text-info {
  color: #2e5181 !important;
}
.page a.text-info:hover, .page a.text-info:focus {
  color: #21395b !important;
}
.page .text-pink, .page .text-red, .page .text-carrot, .page .text-malibu, .page .text-blue-gray, .page .text-acapulco, .page .text-mantis {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page .text-mantis, .page .text-mantis:before {
  color: #42B574;
  background-image: -webkit-linear-gradient(0deg, #3598db 0%, #84c450 100%);
}
.page .text-acapulco, .page .text-acapulco:before {
  color: #55bbeb;
  background-image: -webkit-linear-gradient(0deg, #55bbeb 0%, #84c450 100%);
}
.page .text-blue-gray, .page .text-blue-gray:before {
  color: #8668ad;
  background-image: -webkit-linear-gradient(0deg, #8668ad 0%, #55bbeb 100%);
}
.page .text-malibu, .page .text-malibu:before {
  color: #55bbeb;
  background-image: -webkit-linear-gradient(0deg, #55bbeb 0%, #2e5181 100%);
}
.page .text-carrot, .page .text-carrot:before {
  color: #f5bf2f;
  background-image: -webkit-linear-gradient(0deg, #f5bf2f 0%, #F3A43D 100%);
}
.page .text-red, .page .text-red:before {
  color: #e50a0a;
  background-image: -webkit-linear-gradient(0deg, #e50a0a 0%, #e50a0a 100%);
}
.page .text-pink, .page .text-pink:before {
  color: #8668ad;
  background-image: -webkit-linear-gradient(0deg, #8668ad 0%, #695999 100%);
}

.shadow-drop-ambient {
  box-shadow: 0px 0px 1px 0 rgba(0, 0, 0, 0.15);
}

.shadow-drop-xxs {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.shadow-drop-xs {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
}

.shadow-drop-sm {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}

.shadow-drop,
.shadow-drop-md {
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.15);
}

.shadow-drop-lg {
  box-shadow: 0 5px 23px 0 rgba(0, 0, 0, 0.15);
}

.shadow-drop-xl {
  box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.15);
}

.shadow-variant-2 {
  box-shadow: 0 0px 20px 2px rgba(0, 0, 0, 0.1);
}

.border-gray-light {
  border-color: #f2f2f2;
}

.border-gainsboro {
  border-color: #cbcbcb;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 0;
}
.contact-info dl {
  margin-bottom: 0;
}
.contact-info dl dt, .contact-info dl dd {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
}
.contact-info dl dt, .contact-info dl dd a {
  color: #434345;
}
.contact-info dl dd a:hover {
  color: #55bbeb;
}

.btn {
  position: relative;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 28px;
  border-radius: 0px;
  	font-family: 'Roboto', sans-serif;
  white-space: nowrap;
/*   text-transform: uppercase; */
  letter-spacing: 0.06em;
  border-width: 2px;
  transition: 0.3s;
  backface-visibility: hidden;
}
.btn:focus, .btn:active, .btn:active:focus {
  outline: none;
}
.btn:focus {
  box-shadow: none;
}
.btn .caret:last-child {
  margin-left: 5px;
}

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

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

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

.btn-default {
  color: #434345;
  background-color: transparent;
  border-color: #cbcbcb;
}
.btn-default:focus, .btn-default.focus, .btn-default:hover, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #434345;
  border-color: #434345;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #434345;
  border-color: #434345;
}
.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default {
  pointer-events: none;
  opacity: 0.5;
}
.btn-default .badge {
  color: transparent;
  background-color: #434345;
}

.btn-primary {
  color: #fff;
  background-color: #148cde;
  border-color: #148cde;
}
.btn-primary:focus, .btn-primary.focus, .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #2e5181;
  border-color: #2e5181;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .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: #2e5181;
  border-color: #2e5181;
}
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary {
  pointer-events: none;
  opacity: 0.5;
}
.btn-primary .badge {
  color: #3598db;
  background-color: #fff;
}

.btn-deluge {
  color: #fff;
  background-color: #8668ad;
  border-color: #8668ad;
}
.btn-deluge:focus, .btn-deluge.focus, .btn-deluge:hover, .btn-deluge:active, .btn-deluge.active, .open > .btn-deluge.dropdown-toggle {
  color: #fff;
  background-color: #695999;
  border-color: #695999;
}
.btn-deluge:active, .btn-deluge.active, .open > .btn-deluge.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-deluge:active:hover, .btn-deluge:active:focus, .btn-deluge:active.focus, .btn-deluge.active:hover, .btn-deluge.active:focus, .btn-deluge.active.focus, .open > .btn-deluge.dropdown-toggle:hover, .open > .btn-deluge.dropdown-toggle:focus, .open > .btn-deluge.dropdown-toggle.focus {
  color: #fff;
  background-color: #695999;
  border-color: #695999;
}
.btn-deluge.disabled, .btn-deluge[disabled], fieldset[disabled] .btn-deluge {
  pointer-events: none;
  opacity: 0.5;
}
.btn-deluge .badge {
  color: #8668ad;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #abcc37;
  border-color: #abcc37;
}
.btn-success:focus, .btn-success.focus, .btn-success:hover, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #84c450;
  border-color: #84c450;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .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: #84c450;
  border-color: #84c450;
}
.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success {
  pointer-events: none;
  opacity: 0.5;
}
.btn-success .badge {
  color: #abcc37;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #2e5181;
  border-color: #2e5181;
}
.btn-info:focus, .btn-info.focus, .btn-info:hover, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #2e3b5b;
  border-color: #2e3b5b;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .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: #2e3b5b;
  border-color: #2e3b5b;
}
.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info {
  pointer-events: none;
  opacity: 0.5;
}
.btn-info .badge {
  color: #2e5181;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f5bf2f;
  border-color: #f5bf2f;
}
.btn-warning:focus, .btn-warning.focus, .btn-warning:hover, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #f3a43d;
  border-color: #f3a43d;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .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: #f3a43d;
  border-color: #f3a43d;
}
.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning {
  pointer-events: none;
  opacity: 0.5;
}
.btn-warning .badge {
  color: #f5bf2f;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #e50a0a;
  border-color: #e50a0a;
}
.btn-danger:focus, .btn-danger.focus, .btn-danger:hover, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #d00a3d;
  border-color: #d00a3d;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .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: #d00a3d;
  border-color: #d00a3d;
}
.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger {
  pointer-events: none;
  opacity: 0.5;
}
.btn-danger .badge {
  color: #e50a0a;
  background-color: #fff;
}

.btn-picton-blue {
  color: #fff;
  background-color: #55bbeb;
  border-color: #55bbeb;
}
.btn-picton-blue:focus, .btn-picton-blue.focus, .btn-picton-blue:hover, .btn-picton-blue:active, .btn-picton-blue.active, .open > .btn-picton-blue.dropdown-toggle {
  color: #fff;
  background-color: #43dfe8;
  border-color: #43dfe8;
}
.btn-picton-blue:active, .btn-picton-blue.active, .open > .btn-picton-blue.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-picton-blue:active:hover, .btn-picton-blue:active:focus, .btn-picton-blue:active.focus, .btn-picton-blue.active:hover, .btn-picton-blue.active:focus, .btn-picton-blue.active.focus, .open > .btn-picton-blue.dropdown-toggle:hover, .open > .btn-picton-blue.dropdown-toggle:focus, .open > .btn-picton-blue.dropdown-toggle.focus {
  color: #fff;
  background-color: #43dfe8;
  border-color: #43dfe8;
}
.btn-picton-blue.disabled, .btn-picton-blue[disabled], fieldset[disabled] .btn-picton-blue {
  pointer-events: none;
  opacity: 0.5;
}
.btn-picton-blue .badge {
  color: #55bbeb;
  background-color: #fff;
}

.btn-sapphire {
  color: #fff;
  background-color: #0956b5;
  border-color: #0956b5;
}
.btn-sapphire:focus, .btn-sapphire.focus, .btn-sapphire:hover, .btn-sapphire:active, .btn-sapphire.active, .open > .btn-sapphire.dropdown-toggle {
  color: #fff;
  background-color: #084998;
  border-color: #084998;
}
.btn-sapphire:active, .btn-sapphire.active, .open > .btn-sapphire.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-sapphire:active:hover, .btn-sapphire:active:focus, .btn-sapphire:active.focus, .btn-sapphire.active:hover, .btn-sapphire.active:focus, .btn-sapphire.active.focus, .open > .btn-sapphire.dropdown-toggle:hover, .open > .btn-sapphire.dropdown-toggle:focus, .open > .btn-sapphire.dropdown-toggle.focus {
  color: #fff;
  background-color: #084998;
  border-color: #084998;
}
.btn-sapphire.disabled, .btn-sapphire[disabled], fieldset[disabled] .btn-sapphire {
  pointer-events: none;
  opacity: 0.5;
}
.btn-sapphire .badge {
  color: #0956b5;
  background-color: #fff;
}

.btn-darkest {
  color: #9b9b9b;
  background-color: #212121;
  border-color: #212121;
}
.btn-darkest:focus, .btn-darkest.focus, .btn-darkest:hover, .btn-darkest:active, .btn-darkest.active, .open > .btn-darkest.dropdown-toggle {
  color: #9b9b9b;
  background-color: #2e2e2e;
  border-color: #2e2e2e;
}
.btn-darkest:active, .btn-darkest.active, .open > .btn-darkest.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.btn-darkest:active:hover, .btn-darkest:active:focus, .btn-darkest:active.focus, .btn-darkest.active:hover, .btn-darkest.active:focus, .btn-darkest.active.focus, .open > .btn-darkest.dropdown-toggle:hover, .open > .btn-darkest.dropdown-toggle:focus, .open > .btn-darkest.dropdown-toggle.focus {
  color: #9b9b9b;
  background-color: #2e2e2e;
  border-color: #2e2e2e;
}
.btn-darkest.disabled, .btn-darkest[disabled], fieldset[disabled] .btn-darkest {
  pointer-events: none;
  opacity: 0.5;
}
.btn-darkest .badge {
  color: #212121;
  background-color: #9b9b9b;
}

.btn-red {
  background: -webkit-linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  background: linear-gradient(90deg, #e50a0a 0%, #e50a0a 100%);
  color: #fff;
  border: 0;
}
.btn-red .badge {
  color: #e50a0a;
}

.btn-malibu {
  background: -webkit-linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  background: linear-gradient(90deg, #64aae1 0%, #2e5181 100%);
  color: #fff;
}
.btn-malibu .badge {
  color: #2e5181;
}

.btn-xs {
  padding: 6px 16px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  border-width: 1px;
}

.btn-sm {
  padding: 7px 12px;
  font-size: 12px;
  line-height: 24px;
  border-radius: 3px;
  border-width: 1px;
}

@media (min-width: 480px) {
  .btn-lg {
    padding: 17px 24px;
    font-size: 17px;
    line-height: 32px;
    border-radius: 5px;
  }
}

.btn-rect {
  border-radius: 0;
}

.btn-ellipse.btn {
  border-radius: 25px;
}
.btn-ellipse.btn-xs {
  border-radius: 17px;
}
.btn-ellipse.btn-sm {
  border-radius: 20px;
}
.btn-ellipse.btn-lg {
  border-radius: 35px;
}

.btn-link {
  position: relative;
  border: none;
  padding-left: 12px;
  padding-right: 12px;
  text-transform: uppercase;
  font-weight: 900;
  color: #434345;
  line-height: 1.9;
}
.btn-link:after {
  content: "";
  height: 2px;
  position: absolute;
  width: 60px;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  transition: 0.3s;
}
.btn-link:after {
  background: -moz-linear-gradient(90deg, #3598db 0%, #84c450 100%);
  background: -webkit-linear-gradient(90deg, #3598db 0%, #84c450 100%);
  background: -o-linear-gradient(90deg, #3598db 0%, #84c450 100%);
  background: -ms-linear-gradient(90deg, #3598db 0%, #84c450 100%);
  background: linear-gradient(90deg, #3598db 0%, #84c450 100%);
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link:hover, .btn-link:focus {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
.btn-link:hover:after, .btn-link:focus:after {
  width: 70px;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: inherit;
  text-decoration: none;
}

.btn-more {
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
}
.btn-more .icon + *,
.btn-more * + .icon {
  transition: 0.3s;
  display: inline-block;
  margin-left: 8px;
}
.btn-more .icon {
  color: #55bbeb;
}
.btn-more .icon-xxs {
  font-size: 18px;
  line-height: 18px;
}
.btn-more:hover .icon {
  color: #3598db;
}
.btn-more:hover .icon + *,
.btn-more:hover * + .icon {
  transform: translateX(4px);
}

.btn.btn-icon {
  padding-left: 17px;
  padding-right: 17px;
}
.btn.btn-icon .icon {
  font-size: 28px;
  line-height: 28px;
  vertical-align: middle;
  transition: 0s;
}
.btn.btn-icon-left .icon {
  float: left;
  padding-right: 10px;
}
.btn.btn-icon-right .icon {
  float: right;
  padding-left: 10px;
}

.btn-xs.btn-icon .icon {
  font-size: 20px;
  line-height: 20px;
}
.btn-xs.btn-icon-left .icon {
  padding-right: 10px;
}
.btn-xs.btn-icon-right .icon {
  padding-left: 10px;
}

.btn-sm.btn-icon {
  padding-left: 10px;
  padding-right: 10px;
}
.btn-sm.btn-icon .icon {
  font-size: 24px;
  line-height: 24px;
}
.btn-sm.btn-icon-left .icon {
  padding-right: 8px;
}
.btn-sm.btn-icon-right .icon {
  padding-left: 8px;
}

.btn-lg.btn-icon {
  padding-left: 30px;
  padding-right: 30px;
}
.btn-lg.btn-icon .icon {
  font-size: 32px;
  line-height: 32px;
}
.btn-lg.btn-icon-left .icon {
  padding-right: 14px;
}
.btn-lg.btn-icon-right .icon {
  padding-left: 14px;
}

.btn-toolbar {
  margin-left: 0;
  transform: translate(-10px, -10px);
}
.btn-toolbar > .btn, .btn-toolbar > .input-group, .btn-toolbar > .btn-group {
  margin-left: 10px;
  margin-top: 10px;
}

.btn-anis-effect {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
  transition: 0.2s;
  transition-delay: 0.1s;
}
.btn-anis-effect:hover {
  transition-delay: 0.45s;
}
.btn-anis-effect:before, .btn-anis-effect:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background: #434345;
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.btn-anis-effect:before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.btn-anis-effect:after {
  right: -20px;
  transform: translate(50%, -50%);
}
.btn-anis-effect:hover:before {
  -webkit-animation: criss-cross-left 0.8s;
  animation: criss-cross-left 0.8s;
}
.btn-anis-effect:hover:after {
  -webkit-animation: criss-cross-right 0.8s;
  animation: criss-cross-right 0.8s;
}
.btn-anis-effect.btn-primary {
  color: #fff;
  background-color: #3598db;
}
.btn-anis-effect.btn-primary:before, .btn-anis-effect.btn-primary:after {
  background: #2e5181;
}
.btn-anis-effect.btn-primary:hover {
  color: #fff;
  border-color: #2e5181;
  background: #2e5181;
}
.btn-anis-effect.btn-default {
  color: #434345;
  background-color: transparent;
  border-color: #cbcbcb;
}
.btn-anis-effect.btn-default:hover {
  color: #fff;
  border-color: #434345;
  background: #434345;
}
.btn-anis-effect.btn-deluge {
  color: #8668ad;
}
.btn-anis-effect.btn-deluge:before, .btn-anis-effect.btn-deluge:after {
  background: #8668ad;
}
.btn-anis-effect.btn-deluge:hover {
  color: #fff;
  border-color: #8668ad;
  background: #8668ad;
}
.btn-anis-effect.btn-success {
  color: #abcc37;
}
.btn-anis-effect.btn-success:before, .btn-anis-effect.btn-success:after {
  background: #abcc37;
}
.btn-anis-effect.btn-success:hover {
  color: #fff;
  border-color: #abcc37;
  background: #abcc37;
}
.btn-anis-effect.btn-warning {
  color: #f5bf2f;
}
.btn-anis-effect.btn-warning:before, .btn-anis-effect.btn-warning:after {
  background: #f5bf2f;
}
.btn-anis-effect.btn-warning:hover {
  color: #fff;
  border-color: #f5bf2f;
  background: #f5bf2f;
}
.btn-anis-effect.btn-danger {
  color: #e50a0a;
}
.btn-anis-effect.btn-danger:before, .btn-anis-effect.btn-danger:after {
  background: #e50a0a;
}
.btn-anis-effect.btn-danger:hover {
  color: #fff;
  border-color: #e50a0a;
  background: #e50a0a;
}
.btn-anis-effect.btn-info {
  color: #2e5181;
}
.btn-anis-effect.btn-info:before, .btn-anis-effect.btn-info:after {
  background: #2e5181;
}
.btn-anis-effect.btn-info:hover {
  color: #fff;
  border-color: #2e5181;
  background: #2e5181;
}

.btn.btn-aqil-effect {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-color: #434345;
  color: #434345;
  background-color: transparent;
}
.btn.btn-aqil-effect:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: inset 1px 0 0 0 #434345;
}
.btn.btn-aqil-effect:before, .btn.btn-aqil-effect:after,
.btn.btn-aqil-effect span:before,
.btn.btn-aqil-effect span:after {
  content: "";
  background: rgba(68, 68, 68, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}
.btn.btn-aqil-effect span:before,
.btn.btn-aqil-effect span:after {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect-mod-1:before, .btn.btn-aqil-effect-mod-1:after,
.btn.btn-aqil-effect-mod-1 span:before,
.btn.btn-aqil-effect-mod-1 span:after {
  width: 100%;
  height: 0;
}
.btn.btn-aqil-effect-mod-1:after,
.btn.btn-aqil-effect-mod-1 span:before {
  top: auto;
  bottom: 0;
}
.btn.btn-aqil-effect-mod-1:hover span:before,
.btn.btn-aqil-effect-mod-1:hover span:after, .btn.btn-aqil-effect-mod-1:hover:before, .btn.btn-aqil-effect-mod-1:hover:after {
  height: 100%;
}
.btn.btn-aqil-effect-mod-2:before, .btn.btn-aqil-effect-mod-2:after,
.btn.btn-aqil-effect-mod-2 span:before,
.btn.btn-aqil-effect-mod-2 span:after {
  width: 0;
  height: 100%;
}
.btn.btn-aqil-effect-mod-2:after, .btn.btn-aqil-effect-mod-2 span:before {
  left: auto;
  right: 0;
}
.btn.btn-aqil-effect-mod-2:hover:before, .btn.btn-aqil-effect-mod-2:hover:after,
.btn.btn-aqil-effect-mod-2:hover span:before,
.btn.btn-aqil-effect-mod-2:hover span:after {
  width: 100%;
}
.btn.btn-aqil-effect.btn-primary {
  color: #3598db;
  border-color: #3598db;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-primary:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #3598db;
}
.btn.btn-aqil-effect.btn-primary:before, .btn.btn-aqil-effect.btn-primary:after,
.btn.btn-aqil-effect.btn-primary span:before,
.btn.btn-aqil-effect.btn-primary span:after {
  background: rgba(53, 152, 219, 0.5);
}
.btn.btn-aqil-effect.btn-deluge {
  color: #8668ad;
  border-color: #8668ad;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-deluge:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #8668ad;
}
.btn.btn-aqil-effect.btn-deluge:before, .btn.btn-aqil-effect.btn-deluge:after,
.btn.btn-aqil-effect.btn-deluge span:before,
.btn.btn-aqil-effect.btn-deluge span:after {
  background: rgba(134, 104, 173, 0.5);
}
.btn.btn-aqil-effect.btn-success {
  color: #abcc37;
  border-color: #abcc37;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-success:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #abcc37;
}
.btn.btn-aqil-effect.btn-success:before, .btn.btn-aqil-effect.btn-success:after,
.btn.btn-aqil-effect.btn-success span:before,
.btn.btn-aqil-effect.btn-success span:after {
  background: rgba(171, 204, 55, 0.5);
}
.btn.btn-aqil-effect.btn-warning {
  color: #f5bf2f;
  border-color: #f5bf2f;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-warning:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #f5bf2f;
}
.btn.btn-aqil-effect.btn-warning:before, .btn.btn-aqil-effect.btn-warning:after,
.btn.btn-aqil-effect.btn-warning span:before,
.btn.btn-aqil-effect.btn-warning span:after {
  background: rgba(245, 191, 47, 0.5);
}
.btn.btn-aqil-effect.btn-info {
  color: #2e5181;
  border-color: #2e5181;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-info:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #2e5181;
}
.btn.btn-aqil-effect.btn-info:before, .btn.btn-aqil-effect.btn-info:after,
.btn.btn-aqil-effect.btn-info span:before,
.btn.btn-aqil-effect.btn-info span:after {
  background: rgba(46, 81, 129, 0.5);
}
.btn.btn-aqil-effect.btn-danger {
  color: #e50a0a;
  border-color: #e50a0a;
  transition-delay: 0.4s;
}
.btn.btn-aqil-effect.btn-danger:hover {
  color: #fff;
  transition-delay: 0.1s;
  box-shadow: inset 1px 0 0 0 #e50a0a;
}
.btn.btn-aqil-effect.btn-danger:before, .btn.btn-aqil-effect.btn-danger:after,
.btn.btn-aqil-effect.btn-danger span:before,
.btn.btn-aqil-effect.btn-danger span:after {
  background: rgba(229, 10, 10, 0.5);
}

.btn.btn-rayen-effect {
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
}
.btn.btn-rayen-effect:before {
  content: attr(data-text);
  position: absolute;
  top: -2px;
  left: 0;
  bottom: -2px;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
}
.btn.btn-rayen-effect > span {
  display: block;
  z-index: -1;
}
.btn.btn-rayen-effect:hover {
  background-color: transparent;
  color: #fff;
}
.btn.btn-rayen-effect:before, .btn.btn-rayen-effect > span {
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn.btn-rayen-effect:hover:before {
  transform: translateY(0);
}
.btn.btn-rayen-effect:hover > span {
  transform: translateY(100%);
}
.btn.btn-rayen-effect.btn-default {
  color: #434345;
  border-color: #434345;
}
.btn.btn-rayen-effect.btn-default:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #434345;
}
.btn.btn-rayen-effect.btn-default:before {
  background-color: #434345;
  color: #fff;
}
.btn.btn-rayen-effect.btn-primary {
  color: #3598db;
  border-color: #3598db;
}
.btn.btn-rayen-effect.btn-primary:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #3598db;
}
.btn.btn-rayen-effect.btn-primary:before {
  background-color: #3598db;
}
.btn.btn-rayen-effect.btn-deluge {
  color: #8668ad;
  border-color: #8668ad;
}
.btn.btn-rayen-effect.btn-deluge:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #8668ad;
}
.btn.btn-rayen-effect.btn-deluge:before {
  background-color: #8668ad;
}
.btn.btn-rayen-effect.btn-success {
  color: #abcc37;
  border-color: #abcc37;
}
.btn.btn-rayen-effect.btn-success:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #abcc37;
}
.btn.btn-rayen-effect.btn-success:before {
  background-color: #abcc37;
}
.btn.btn-rayen-effect.btn-warning {
  color: #f5bf2f;
  border-color: #f5bf2f;
}
.btn.btn-rayen-effect.btn-warning:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #f5bf2f;
}
.btn.btn-rayen-effect.btn-warning:before {
  background-color: #f5bf2f;
}
.btn.btn-rayen-effect.btn-info {
  color: #2e5181;
  border-color: #2e5181;
}
.btn.btn-rayen-effect.btn-info:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #2e5181;
}
.btn.btn-rayen-effect.btn-info:before {
  background-color: #2e5181;
}
.btn.btn-rayen-effect.btn-danger {
  color: #e50a0a;
  border-color: #e50a0a;
}
.btn.btn-rayen-effect.btn-danger:hover {
  color: #fff;
  box-shadow: inset 1px 0 0 0 #e50a0a;
}
.btn.btn-rayen-effect.btn-danger:before {
  background-color: #e50a0a;
}

.lt-ie10 .btn-rayen-effect::before {
  display: none;
}
.lt-ie10 .btn-rayen-effect:hover {
  color: #20325d;
  background-color: #fff;
}
.lt-ie10 .btn-rayen-effect:hover > span {
  transform: translateY(0%);
}

.btn.btn-nuka-effect {
  transition: color 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  border: none;
  color: #fff;
  background-color: transparent;
}
.btn.btn-nuka-effect::before, .btn.btn-nuka-effect::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: #453866;
  z-index: -1;
}
.btn.btn-nuka-effect::before {
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  opacity: 0.2;
  transform: scale3d(0.7, 1, 1);
  transition: transform 0.3s, opacity 0.3s;
}
.btn.btn-nuka-effect::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale3d(1.1, 1, 1);
  transition: transform 0.3s, background-color 0.3s;
}
.btn.btn-nuka-effect::before, .btn.btn-nuka-effect::after {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn.btn-nuka-effect:hover {
  background-color: transparent;
  color: #453866;
}
.btn.btn-nuka-effect:hover::before {
  opacity: 1;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
}
.btn.btn-nuka-effect:hover::after {
  background-color: #fff;
}
.btn.btn-nuka-effect:hover::after, .btn.btn-nuka-effect:hover::before {
  transform: scale3d(1, 1, 1);
}
.btn.btn-nuka-effect.btn-default::before, .btn.btn-nuka-effect.btn-default::after {
  background-color: #434345;
}
.btn.btn-nuka-effect.btn-default:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-primary::before, .btn.btn-nuka-effect.btn-primary::after {
  background-color: #3598db;
}
.btn.btn-nuka-effect.btn-primary:hover {
  color: #217dbc;
}
.btn.btn-nuka-effect.btn-primary:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-deluge::before, .btn.btn-nuka-effect.btn-deluge::after {
  background-color: #8668ad;
}
.btn.btn-nuka-effect.btn-deluge:hover {
  color: #6d5092;
}
.btn.btn-nuka-effect.btn-deluge:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-success::before, .btn.btn-nuka-effect.btn-success::after {
  background-color: #abcc37;
}
.btn.btn-nuka-effect.btn-success:hover {
  color: #8aa62a;
}
.btn.btn-nuka-effect.btn-success:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-warning::before, .btn.btn-nuka-effect.btn-warning::after {
  background-color: #f5bf2f;
}
.btn.btn-nuka-effect.btn-warning:hover {
  color: #e6aa0b;
}
.btn.btn-nuka-effect.btn-warning:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-info::before, .btn.btn-nuka-effect.btn-info::after {
  background-color: #2e5181;
}
.btn.btn-nuka-effect.btn-info:hover {
  color: #21395b;
}
.btn.btn-nuka-effect.btn-info:hover:after {
  background-color: #fff;
}
.btn.btn-nuka-effect.btn-danger::before, .btn.btn-nuka-effect.btn-danger::after {
  background-color: #e50a0a;
}
.btn.btn-nuka-effect.btn-danger:hover {
  color: #b40808;
}
.btn.btn-nuka-effect.btn-danger:hover:after {
  background-color: #fff;
}

.btn.btn-naira-effect {
  overflow: hidden;
  transition: background-color 0.3s, box-shadow 0.2s;
}
.btn.btn-naira-effect::before {
  content: "";
  position: absolute;
  left: -50%;
  width: 200%;
  height: 200%;
  top: -50%;
  transform: translateY(-100%) rotate3d(0, 0, 1, -10deg);
  background: #fff;
  transition: 0.3s;
}
.btn.btn-naira-effect.btn-naira-effect-up::before {
  transform: translateY(100%) rotate3d(0, 0, 1, 10deg);
}
.btn.btn-naira-effect .btn-text {
  display: block;
  margin: 0;
}
.btn.btn-naira-effect .btn-text,
.btn.btn-naira-effect .icon {
  transition: 0.3s;
}
.btn.btn-naira-effect .icon {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, -200%);
  pointer-events: none;
  color: #444;
}
.btn.btn-naira-effect .icon-xs {
  font-size: 24px;
}
.btn.btn-naira-effect.btn-naira-effect-up .icon {
  transform: translate(-50%, 300%);
}
.btn.btn-naira-effect:hover {
  box-shadow: inset 0 0 0 2px #fff;
}
.btn.btn-naira-effect:hover .icon {
  transform: translate(-50%, 50%);
}
.btn.btn-naira-effect:hover .btn-text {
  opacity: 0;
  transform: translateY(200%);
}
.btn.btn-naira-effect:hover::before {
  animation: anim-naira-1 0.3s forwards ease-in;
}
.btn.btn-naira-effect.btn-naira-effect-up:hover::before {
  animation: anim-naira-2 0.3s forwards ease-in;
}
.btn.btn-naira-effect.btn-naira-effect-up:hover .btn-text {
  transform: translateY(-200%);
}
.btn.btn-naira-effect.btn-primary:hover {
  background-color: transparent;
  border-color: #3598db;
}
.btn.btn-naira-effect.btn-primary .icon {
  color: #2486c9;
}
.btn.btn-naira-effect.btn-deluge:hover {
  background-color: transparent;
  border-color: #8668ad;
}
.btn.btn-naira-effect.btn-deluge .icon {
  color: #74559c;
}
.btn.btn-naira-effect.btn-success:hover {
  background-color: transparent;
  border-color: #abcc37;
}
.btn.btn-naira-effect.btn-success .icon {
  color: #95b22d;
}
.btn.btn-naira-effect.btn-warning:hover {
  background-color: transparent;
  border-color: #f5bf2f;
}
.btn.btn-naira-effect.btn-warning .icon {
  color: #f3b50d;
}
.btn.btn-naira-effect.btn-info:hover {
  background-color: transparent;
  border-color: #2e5181;
}
.btn.btn-naira-effect.btn-info .icon {
  color: #254067;
}
.btn.btn-naira-effect.btn-danger:hover {
  background-color: transparent;
  border-color: #e50a0a;
}
.btn.btn-naira-effect.btn-danger .icon {
  color: #c30909;
}

.tablet .btn-naira-effect:hover {
  background-color: #fff;
}

.lt-ie10 .btn-naira-effect:before {
  display: none;
}
.lt-ie10 .btn-naira-effect:hover {
  background-color: #fff;
}

.btn.btn-polat-effect {
  overflow: hidden;
  backface-visibility: hidden;
}
.btn.btn-polat-effect .btn-text {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: all 0.3s;
  backface-visibility: hidden;
  margin-top: 0;
}
.btn.btn-polat-effect .icon {
  position: absolute;
  height: 100%;
  width: 100%;
  font-size: 180%;
  transition: all 0.3s;
}
.btn.btn-polat-effect .icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn.btn-polat-effect-up .icon {
  left: 0;
  top: -100%;
}
.btn.btn-polat-effect-up:hover .icon {
  top: 0;
}
.btn.btn-polat-effect-up:hover .btn-text {
  -webkit-transform: translateY(300%);
  transform: translateY(300%);
}
.btn.btn-polat-effect-left .icon {
  left: -100%;
  top: 0;
}
.btn.btn-polat-effect-left:hover .icon {
  left: 0;
}
.btn.btn-polat-effect-left:hover .btn-text {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}
.btn.btn-polat-effect.btn-default .btn-text {
  color: #434345;
}

.btn.btn-santos-svg-effect {
  border: none;
  position: relative;
  transition: color 0.9s;
  background-color: transparent;
}
.btn.btn-santos-svg-effect svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn.btn-santos-svg-effect svg:active, .btn.btn-santos-svg-effect svg:focus {
  outline: none;
}
.btn.btn-santos-svg-effect .shape {
  stroke-width: 6px;
  fill: transparent;
  stroke: #434345;
  stroke-dasharray: 50 400;
  stroke-dashoffset: -233;
  transition: 1s all ease;
  width: 100%;
  height: 100%;
}
.btn.btn-santos-svg-effect:active, .btn.btn-santos-svg-effect:focus {
  background-color: transparent;
}
.btn.btn-santos-svg-effect:hover {
  background-color: transparent;
}
.btn.btn-santos-svg-effect:hover .shape {
  stroke-dasharray: 50 0;
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke: #009FFD;
}
.btn.btn-santos-svg-effect.btn-delault {
  color: #434345;
}
.btn.btn-santos-svg-effect.btn-delault .shape {
  stroke: #181819;
}
.btn.btn-santos-svg-effect.btn-delault:hover {
  color: #434345;
}
.btn.btn-santos-svg-effect.btn-delault:hover .shape {
  stroke: #434345;
}
.btn.btn-santos-svg-effect.btn-primary {
  color: #3598db;
}
.btn.btn-santos-svg-effect.btn-primary .shape {
  stroke: #1c699d;
}
.btn.btn-santos-svg-effect.btn-primary:hover {
  color: #3598db;
}
.btn.btn-santos-svg-effect.btn-primary:hover .shape {
  stroke: #3598db;
}
.btn.btn-santos-svg-effect.btn-deluge {
  color: #8668ad;
}
.btn.btn-santos-svg-effect.btn-deluge .shape {
  stroke: #5b437b;
}
.btn.btn-santos-svg-effect.btn-deluge:hover {
  color: #8668ad;
}
.btn.btn-santos-svg-effect.btn-deluge:hover .shape {
  stroke: #8668ad;
}
.btn.btn-santos-svg-effect.btn-success {
  color: #abcc37;
}
.btn.btn-santos-svg-effect.btn-success .shape {
  stroke: #738923;
}
.btn.btn-santos-svg-effect.btn-success:hover {
  color: #abcc37;
}
.btn.btn-santos-svg-effect.btn-success:hover .shape {
  stroke: #abcc37;
}
.btn.btn-santos-svg-effect.btn-warning {
  color: #f5bf2f;
}
.btn.btn-santos-svg-effect.btn-warning .shape {
  stroke: #c49109;
}
.btn.btn-santos-svg-effect.btn-warning:hover {
  color: #f5bf2f;
}
.btn.btn-santos-svg-effect.btn-warning:hover .shape {
  stroke: #f5bf2f;
}
.btn.btn-santos-svg-effect.btn-info {
  color: #2e5181;
}
.btn.btn-santos-svg-effect.btn-info .shape {
  stroke: #172941;
}
.btn.btn-santos-svg-effect.btn-info:hover {
  color: #2e5181;
}
.btn.btn-santos-svg-effect.btn-info:hover .shape {
  stroke: #2e5181;
}
.btn.btn-santos-svg-effect.btn-danger {
  color: #e50a0a;
}
.btn.btn-santos-svg-effect.btn-danger .shape {
  stroke: #920606;
}
.btn.btn-santos-svg-effect.btn-danger:hover {
  color: #e50a0a;
}
.btn.btn-santos-svg-effect.btn-danger:hover .shape {
  stroke: #e50a0a;
}

html.ie-edge .btn-santos-svg,
html.ie-11 .btn-santos-svg,
html.lt-ie11 .btn-santos-svg {
  transition: 0.4s;
  padding: 10px 15px;
  border: 2px solid transparent;
}
html.ie-edge .btn-santos-svg:hover,
html.ie-11 .btn-santos-svg:hover,
html.lt-ie11 .btn-santos-svg:hover {
  border-color: #009FFD;
}

@font-face {
  font-family: "Material Design Icons";
  src: url("../fonts/materialdesignicons-webfont.eot?v=1.4.57");
  src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=1.4.57") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=1.4.57") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=1.4.57") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=1.4.57") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=1.4.57#materialdesigniconsregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.mdi {
  display: inline-block;
  font-weight: 400;
  font-style: normal;
  font-family: "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.mdi-access-point:before {
  content: "";
}

.mdi-access-point-network:before {
  content: "";
}

.mdi-account:before {
  content: "";
}

.mdi-account-alert:before {
  content: "";
}

.mdi-account-box:before {
  content: "";
}

.mdi-account-box-outline:before {
  content: "";
}

.mdi-account-check:before {
  content: "";
}

.mdi-account-circle:before {
  content: "";
}

.mdi-account-convert:before {
  content: "";
}

.mdi-account-key:before {
  content: "";
}

.mdi-account-location:before {
  content: "";
}

.mdi-account-minus:before {
  content: "";
}

.mdi-account-multiple:before {
  content: "";
}

.mdi-account-multiple-outline:before {
  content: "";
}

.mdi-account-multiple-plus:before {
  content: "";
}

.mdi-account-network:before {
  content: "";
}

.mdi-account-off:before {
  content: "";
}

.mdi-account-outline:before {
  content: "";
}

.mdi-account-plus:before {
  content: "";
}

.mdi-account-remove:before {
  content: "";
}

.mdi-account-search:before {
  content: "";
}

.mdi-account-star:before {
  content: "";
}

.mdi-account-star-variant:before {
  content: "";
}

.mdi-account-switch:before {
  content: "";
}

.mdi-adjust:before {
  content: "";
}

.mdi-air-conditioner:before {
  content: "";
}

.mdi-airballoon:before {
  content: "";
}

.mdi-airplane:before {
  content: "";
}

.mdi-airplane-off:before {
  content: "";
}

.mdi-airplay:before {
  content: "";
}

.mdi-alarm:before {
  content: "";
}

.mdi-alarm-check:before {
  content: "";
}

.mdi-alarm-multiple:before {
  content: "";
}

.mdi-alarm-off:before {
  content: "";
}

.mdi-alarm-plus:before {
  content: "";
}

.mdi-album:before {
  content: "";
}

.mdi-alert:before {
  content: "";
}

.mdi-alert-box:before {
  content: "";
}

.mdi-alert-circle:before {
  content: "";
}

.mdi-alert-octagon:before {
  content: "";
}

.mdi-alert-outline:before {
  content: "";
}

.mdi-alpha:before {
  content: "";
}

.mdi-alphabetical:before {
  content: "";
}

.mdi-amazon:before {
  content: "";
}

.mdi-amazon-clouddrive:before {
  content: "";
}

.mdi-ambulance:before {
  content: "";
}

.mdi-anchor:before {
  content: "";
}

.mdi-android:before {
  content: "";
}

.mdi-android-debug-bridge:before {
  content: "";
}

.mdi-android-studio:before {
  content: "";
}

.mdi-apple:before {
  content: "";
}

.mdi-apple-finder:before {
  content: "";
}

.mdi-apple-ios:before {
  content: "";
}

.mdi-apple-mobileme:before {
  content: "";
}

.mdi-apple-safari:before {
  content: "";
}

.mdi-appnet:before {
  content: "";
}

.mdi-apps:before {
  content: "";
}

.mdi-archive:before {
  content: "";
}

.mdi-arrange-bring-forward:before {
  content: "";
}

.mdi-arrange-bring-to-front:before {
  content: "";
}

.mdi-arrange-send-backward:before {
  content: "";
}

.mdi-arrange-send-to-back:before {
  content: "";
}

.mdi-arrow-all:before {
  content: "";
}

.mdi-arrow-bottom-drop-circle:before {
  content: "";
}

.mdi-arrow-bottom-left:before {
  content: "";
}

.mdi-arrow-bottom-right:before {
  content: "";
}

.mdi-arrow-collapse:before {
  content: "";
}

.mdi-arrow-down:before {
  content: "";
}

.mdi-arrow-down-bold:before {
  content: "";
}

.mdi-arrow-down-bold-circle:before {
  content: "";
}

.mdi-arrow-down-bold-circle-outline:before {
  content: "";
}

.mdi-arrow-down-bold-hexagon-outline:before {
  content: "";
}

.mdi-arrow-expand:before {
  content: "";
}

.mdi-arrow-left:before {
  content: "";
}

.mdi-arrow-left-bold:before {
  content: "";
}

.mdi-arrow-left-bold-circle:before {
  content: "";
}

.mdi-arrow-left-bold-circle-outline:before {
  content: "";
}

.mdi-arrow-left-bold-hexagon-outline:before {
  content: "";
}

.mdi-arrow-right:before {
  content: "";
}

.mdi-arrow-right-bold:before {
  content: "";
}

.mdi-arrow-right-bold-circle:before {
  content: "";
}

.mdi-arrow-right-bold-circle-outline:before {
  content: "";
}

.mdi-arrow-right-bold-hexagon-outline:before {
  content: "";
}

.mdi-arrow-top-left:before {
  content: "";
}

.mdi-arrow-top-right:before {
  content: "";
}

.mdi-arrow-up:before {
  content: "";
}

.mdi-arrow-up-bold:before {
  content: "";
}

.mdi-arrow-up-bold-circle:before {
  content: "";
}

.mdi-arrow-up-bold-circle-outline:before {
  content: "";
}

.mdi-arrow-up-bold-hexagon-outline:before {
  content: "";
}

.mdi-assistant:before {
  content: "";
}

.mdi-at:before {
  content: "";
}

.mdi-attachment:before {
  content: "";
}

.mdi-audiobook:before {
  content: "";
}

.mdi-auto-fix:before {
  content: "";
}

.mdi-auto-upload:before {
  content: "";
}

.mdi-autorenew:before {
  content: "";
}

.mdi-av-timer:before {
  content: "";
}

.mdi-baby:before {
  content: "";
}

.mdi-backburger:before {
  content: "";
}

.mdi-backspace:before {
  content: "";
}

.mdi-backup-restore:before {
  content: "";
}

.mdi-bank:before {
  content: "";
}

.mdi-barcode:before {
  content: "";
}

.mdi-barcode-scan:before {
  content: "";
}

.mdi-barley:before {
  content: "";
}

.mdi-barrel:before {
  content: "";
}

.mdi-basecamp:before {
  content: "";
}

.mdi-basket:before {
  content: "";
}

.mdi-basket-fill:before {
  content: "";
}

.mdi-basket-unfill:before {
  content: "";
}

.mdi-battery:before {
  content: "";
}

.mdi-battery-10:before {
  content: "";
}

.mdi-battery-20:before {
  content: "";
}

.mdi-battery-30:before {
  content: "";
}

.mdi-battery-40:before {
  content: "";
}

.mdi-battery-50:before {
  content: "";
}

.mdi-battery-60:before {
  content: "";
}

.mdi-battery-70:before {
  content: "";
}

.mdi-battery-80:before {
  content: "";
}

.mdi-battery-90:before {
  content: "";
}

.mdi-battery-alert:before {
  content: "";
}

.mdi-battery-charging:before {
  content: "";
}

.mdi-battery-charging-100:before {
  content: "";
}

.mdi-battery-charging-20:before {
  content: "";
}

.mdi-battery-charging-30:before {
  content: "";
}

.mdi-battery-charging-40:before {
  content: "";
}

.mdi-battery-charging-60:before {
  content: "";
}

.mdi-battery-charging-80:before {
  content: "";
}

.mdi-battery-charging-90:before {
  content: "";
}

.mdi-battery-minus:before {
  content: "";
}

.mdi-battery-negative:before {
  content: "";
}

.mdi-battery-outline:before {
  content: "";
}

.mdi-battery-plus:before {
  content: "";
}

.mdi-battery-positive:before {
  content: "";
}

.mdi-battery-unknown:before {
  content: "";
}

.mdi-beach:before {
  content: "";
}

.mdi-beaker:before {
  content: "";
}

.mdi-beaker-empty:before {
  content: "";
}

.mdi-beaker-empty-outline:before {
  content: "";
}

.mdi-beaker-outline:before {
  content: "";
}

.mdi-beats:before {
  content: "";
}

.mdi-beer:before {
  content: "";
}

.mdi-behance:before {
  content: "";
}

.mdi-bell:before {
  content: "";
}

.mdi-bell-off:before {
  content: "";
}

.mdi-bell-outline:before {
  content: "";
}

.mdi-bell-plus:before {
  content: "";
}

.mdi-bell-ring:before {
  content: "";
}

.mdi-bell-ring-outline:before {
  content: "";
}

.mdi-bell-sleep:before {
  content: "";
}

.mdi-beta:before {
  content: "";
}

.mdi-bike:before {
  content: "";
}

.mdi-bing:before {
  content: "";
}

.mdi-binoculars:before {
  content: "";
}

.mdi-bio:before {
  content: "";
}

.mdi-biohazard:before {
  content: "";
}

.mdi-bitbucket:before {
  content: "";
}

.mdi-black-mesa:before {
  content: "";
}

.mdi-blackberry:before {
  content: "";
}

.mdi-blender:before {
  content: "";
}

.mdi-blinds:before {
  content: "";
}

.mdi-block-helper:before {
  content: "";
}

.mdi-blogger:before {
  content: "";
}

.mdi-bluetooth:before {
  content: "";
}

.mdi-bluetooth-audio:before {
  content: "";
}

.mdi-bluetooth-connect:before {
  content: "";
}

.mdi-bluetooth-off:before {
  content: "";
}

.mdi-bluetooth-settings:before {
  content: "";
}

.mdi-bluetooth-transfer:before {
  content: "";
}

.mdi-blur:before {
  content: "";
}

.mdi-blur-linear:before {
  content: "";
}

.mdi-blur-off:before {
  content: "";
}

.mdi-blur-radial:before {
  content: "";
}

.mdi-bone:before {
  content: "";
}

.mdi-book:before {
  content: "";
}

.mdi-book-multiple:before {
  content: "";
}

.mdi-book-multiple-variant:before {
  content: "";
}

.mdi-book-open:before {
  content: "";
}

.mdi-book-open-variant:before {
  content: "";
}

.mdi-book-variant:before {
  content: "";
}

.mdi-bookmark:before {
  content: "";
}

.mdi-bookmark-check:before {
  content: "";
}

.mdi-bookmark-music:before {
  content: "";
}

.mdi-bookmark-outline:before {
  content: "";
}

.mdi-bookmark-outline-plus:before {
  content: "";
}

.mdi-bookmark-plus:before {
  content: "";
}

.mdi-bookmark-remove:before {
  content: "";
}

.mdi-border-all:before {
  content: "";
}

.mdi-border-bottom:before {
  content: "";
}

.mdi-border-color:before {
  content: "";
}

.mdi-border-horizontal:before {
  content: "";
}

.mdi-border-inside:before {
  content: "";
}

.mdi-border-left:before {
  content: "";
}

.mdi-border-none:before {
  content: "";
}

.mdi-border-outside:before {
  content: "";
}

.mdi-border-right:before {
  content: "";
}

.mdi-border-style:before {
  content: "";
}

.mdi-border-top:before {
  content: "";
}

.mdi-border-vertical:before {
  content: "";
}

.mdi-bowling:before {
  content: "";
}

.mdi-box:before {
  content: "";
}

.mdi-box-cutter:before {
  content: "";
}

.mdi-briefcase:before {
  content: "";
}

.mdi-briefcase-check:before {
  content: "";
}

.mdi-briefcase-download:before {
  content: "";
}

.mdi-briefcase-upload:before {
  content: "";
}

.mdi-brightness-1:before {
  content: "";
}

.mdi-brightness-2:before {
  content: "";
}

.mdi-brightness-3:before {
  content: "";
}

.mdi-brightness-4:before {
  content: "";
}

.mdi-brightness-5:before {
  content: "";
}

.mdi-brightness-6:before {
  content: "";
}

.mdi-brightness-7:before {
  content: "";
}

.mdi-brightness-auto:before {
  content: "";
}

.mdi-broom:before {
  content: "";
}

.mdi-brush:before {
  content: "";
}

.mdi-bug:before {
  content: "";
}

.mdi-bulletin-board:before {
  content: "";
}

.mdi-bullhorn:before {
  content: "";
}

.mdi-bus:before {
  content: "";
}

.mdi-cached:before {
  content: "";
}

.mdi-cake:before {
  content: "";
}

.mdi-cake-layered:before {
  content: "";
}

.mdi-cake-variant:before {
  content: "";
}

.mdi-calculator:before {
  content: "";
}

.mdi-calendar:before {
  content: "";
}

.mdi-calendar-blank:before {
  content: "";
}

.mdi-calendar-check:before {
  content: "";
}

.mdi-calendar-clock:before {
  content: "";
}

.mdi-calendar-multiple:before {
  content: "";
}

.mdi-calendar-multiple-check:before {
  content: "";
}

.mdi-calendar-plus:before {
  content: "";
}

.mdi-calendar-remove:before {
  content: "";
}

.mdi-calendar-text:before {
  content: "";
}

.mdi-calendar-today:before {
  content: "";
}

.mdi-call-made:before {
  content: "";
}

.mdi-call-merge:before {
  content: "";
}

.mdi-call-missed:before {
  content: "";
}

.mdi-call-received:before {
  content: "";
}

.mdi-call-split:before {
  content: "";
}

.mdi-camcorder:before {
  content: "";
}

.mdi-camcorder-box:before {
  content: "";
}

.mdi-camcorder-box-off:before {
  content: "";
}

.mdi-camcorder-off:before {
  content: "";
}

.mdi-camera:before {
  content: "";
}

.mdi-camera-enhance:before {
  content: "";
}

.mdi-camera-front:before {
  content: "";
}

.mdi-camera-front-variant:before {
  content: "";
}

.mdi-camera-iris:before {
  content: "";
}

.mdi-camera-party-mode:before {
  content: "";
}

.mdi-camera-rear:before {
  content: "";
}

.mdi-camera-rear-variant:before {
  content: "";
}

.mdi-camera-switch:before {
  content: "";
}

.mdi-camera-timer:before {
  content: "";
}

.mdi-candycane:before {
  content: "";
}

.mdi-car:before {
  content: "";
}

.mdi-car-battery:before {
  content: "";
}

.mdi-car-connected:before {
  content: "";
}

.mdi-car-wash:before {
  content: "";
}

.mdi-carrot:before {
  content: "";
}

.mdi-cart:before {
  content: "";
}

.mdi-cart-outline:before {
  content: "";
}

.mdi-cart-plus:before {
  content: "";
}

.mdi-case-sensitive-alt:before {
  content: "";
}

.mdi-cash:before {
  content: "";
}

.mdi-cash-100:before {
  content: "";
}

.mdi-cash-multiple:before {
  content: "";
}

.mdi-cash-usd:before {
  content: "";
}

.mdi-cast:before {
  content: "";
}

.mdi-cast-connected:before {
  content: "";
}

.mdi-castle:before {
  content: "";
}

.mdi-cat:before {
  content: "";
}

.mdi-cellphone:before {
  content: "";
}

.mdi-cellphone-android:before {
  content: "";
}

.mdi-cellphone-basic:before {
  content: "";
}

.mdi-cellphone-dock:before {
  content: "";
}

.mdi-cellphone-iphone:before {
  content: "";
}

.mdi-cellphone-link:before {
  content: "";
}

.mdi-cellphone-link-off:before {
  content: "";
}

.mdi-cellphone-settings:before {
  content: "";
}

.mdi-certificate:before {
  content: "";
}

.mdi-chair-school:before {
  content: "";
}

.mdi-chart-arc:before {
  content: "";
}

.mdi-chart-areaspline:before {
  content: "";
}

.mdi-chart-bar:before {
  content: "";
}

.mdi-chart-histogram:before {
  content: "";
}

.mdi-chart-line:before {
  content: "";
}

.mdi-chart-pie:before {
  content: "";
}

.mdi-check:before {
  content: "";
}

.mdi-check-all:before {
  content: "";
}

.mdi-checkbox-blank:before {
  content: "";
}

.mdi-checkbox-blank-circle:before {
  content: "";
}

.mdi-checkbox-blank-circle-outline:before {
  content: "";
}

.mdi-checkbox-blank-outline:before {
  content: "";
}

.mdi-checkbox-marked:before {
  content: "";
}

.mdi-checkbox-marked-circle:before {
  content: "";
}

.mdi-checkbox-marked-circle-outline:before {
  content: "";
}

.mdi-checkbox-marked-outline:before {
  content: "";
}

.mdi-checkbox-multiple-blank:before {
  content: "";
}

.mdi-checkbox-multiple-blank-outline:before {
  content: "";
}

.mdi-checkbox-multiple-marked:before {
  content: "";
}

.mdi-checkbox-multiple-marked-outline:before {
  content: "";
}

.mdi-checkerboard:before {
  content: "";
}

.mdi-chemical-weapon:before {
  content: "";
}

.mdi-chevron-double-down:before {
  content: "";
}

.mdi-chevron-double-left:before {
  content: "";
}

.mdi-chevron-double-right:before {
  content: "";
}

.mdi-chevron-double-up:before {
  content: "";
}

.mdi-chevron-down:before {
  content: "";
}

.mdi-chevron-left:before {
  content: "";
}

.mdi-chevron-right:before {
  content: "";
}

.mdi-chevron-up:before {
  content: "";
}

.mdi-church:before {
  content: "";
}

.mdi-cisco-webex:before {
  content: "";
}

.mdi-city:before {
  content: "";
}

.mdi-clipboard:before {
  content: "";
}

.mdi-clipboard-account:before {
  content: "";
}

.mdi-clipboard-alert:before {
  content: "";
}

.mdi-clipboard-arrow-down:before {
  content: "";
}

.mdi-clipboard-arrow-left:before {
  content: "";
}

.mdi-clipboard-check:before {
  content: "";
}

.mdi-clipboard-outline:before {
  content: "";
}

.mdi-clipboard-text:before {
  content: "";
}

.mdi-clippy:before {
  content: "";
}

.mdi-clock:before {
  content: "";
}

.mdi-clock-end:before {
  content: "";
}

.mdi-clock-fast:before {
  content: "";
}

.mdi-clock-in:before {
  content: "";
}

.mdi-clock-out:before {
  content: "";
}

.mdi-clock-start:before {
  content: "";
}

.mdi-close:before {
  content: "";
}

.mdi-close-box:before {
  content: "";
}

.mdi-close-box-outline:before {
  content: "";
}

.mdi-close-circle:before {
  content: "";
}

.mdi-close-circle-outline:before {
  content: "";
}

.mdi-close-network:before {
  content: "";
}

.mdi-close-octagon:before {
  content: "";
}

.mdi-close-octagon-outline:before {
  content: "";
}

.mdi-closed-caption:before {
  content: "";
}

.mdi-cloud:before {
  content: "";
}

.mdi-cloud-check:before {
  content: "";
}

.mdi-cloud-circle:before {
  content: "";
}

.mdi-cloud-download:before {
  content: "";
}

.mdi-cloud-outline:before {
  content: "";
}

.mdi-cloud-outline-off:before {
  content: "";
}

.mdi-cloud-print:before {
  content: "";
}

.mdi-cloud-print-outline:before {
  content: "";
}

.mdi-cloud-upload:before {
  content: "";
}

.mdi-code-array:before {
  content: "";
}

.mdi-code-braces:before {
  content: "";
}

.mdi-code-brackets:before {
  content: "";
}

.mdi-code-equal:before {
  content: "";
}

.mdi-code-greater-than:before {
  content: "";
}

.mdi-code-greater-than-or-equal:before {
  content: "";
}

.mdi-code-less-than:before {
  content: "";
}

.mdi-code-less-than-or-equal:before {
  content: "";
}

.mdi-code-not-equal:before {
  content: "";
}

.mdi-code-not-equal-variant:before {
  content: "";
}

.mdi-code-parentheses:before {
  content: "";
}

.mdi-code-string:before {
  content: "";
}

.mdi-code-tags:before {
  content: "";
}

.mdi-codepen:before {
  content: "";
}

.mdi-coffee:before {
  content: "";
}

.mdi-coffee-to-go:before {
  content: "";
}

.mdi-coin:before {
  content: "";
}

.mdi-color-helper:before {
  content: "";
}

.mdi-comment:before {
  content: "";
}

.mdi-comment-account:before {
  content: "";
}

.mdi-comment-account-outline:before {
  content: "";
}

.mdi-comment-alert:before {
  content: "";
}

.mdi-comment-alert-outline:before {
  content: "";
}

.mdi-comment-check:before {
  content: "";
}

.mdi-comment-check-outline:before {
  content: "";
}

.mdi-comment-multiple-outline:before {
  content: "";
}

.mdi-comment-outline:before {
  content: "";
}

.mdi-comment-plus-outline:before {
  content: "";
}

.mdi-comment-processing:before {
  content: "";
}

.mdi-comment-processing-outline:before {
  content: "";
}

.mdi-comment-question-outline:before {
  content: "";
}

.mdi-comment-remove-outline:before {
  content: "";
}

.mdi-comment-text:before {
  content: "";
}

.mdi-comment-text-outline:before {
  content: "";
}

.mdi-compare:before {
  content: "";
}

.mdi-compass:before {
  content: "";
}

.mdi-compass-outline:before {
  content: "";
}

.mdi-console:before {
  content: "";
}

.mdi-contact-mail:before {
  content: "";
}

.mdi-content-copy:before {
  content: "";
}

.mdi-content-cut:before {
  content: "";
}

.mdi-content-duplicate:before {
  content: "";
}

.mdi-content-paste:before {
  content: "";
}

.mdi-content-save:before {
  content: "";
}

.mdi-content-save-all:before {
  content: "";
}

.mdi-contrast:before {
  content: "";
}

.mdi-contrast-box:before {
  content: "";
}

.mdi-contrast-circle:before {
  content: "";
}

.mdi-cookie:before {
  content: "";
}

.mdi-cow:before {
  content: "";
}

.mdi-credit-card:before {
  content: "";
}

.mdi-credit-card-multiple:before {
  content: "";
}

.mdi-credit-card-scan:before {
  content: "";
}

.mdi-crop:before {
  content: "";
}

.mdi-crop-free:before {
  content: "";
}

.mdi-crop-landscape:before {
  content: "";
}

.mdi-crop-portrait:before {
  content: "";
}

.mdi-crop-square:before {
  content: "";
}

.mdi-crosshairs:before {
  content: "";
}

.mdi-crosshairs-gps:before {
  content: "";
}

.mdi-crown:before {
  content: "";
}

.mdi-cube:before {
  content: "";
}

.mdi-cube-outline:before {
  content: "";
}

.mdi-cube-send:before {
  content: "";
}

.mdi-cube-unfolded:before {
  content: "";
}

.mdi-cup:before {
  content: "";
}

.mdi-cup-water:before {
  content: "";
}

.mdi-currency-btc:before {
  content: "";
}

.mdi-currency-eur:before {
  content: "";
}

.mdi-currency-gbp:before {
  content: "";
}

.mdi-currency-inr:before {
  content: "";
}

.mdi-currency-ngn:before {
  content: "";
}

.mdi-currency-rub:before {
  content: "";
}

.mdi-currency-try:before {
  content: "";
}

.mdi-currency-usd:before {
  content: "";
}

.mdi-cursor-default:before {
  content: "";
}

.mdi-cursor-default-outline:before {
  content: "";
}

.mdi-cursor-move:before {
  content: "";
}

.mdi-cursor-pointer:before {
  content: "";
}

.mdi-database:before {
  content: "";
}

.mdi-database-minus:before {
  content: "";
}

.mdi-database-plus:before {
  content: "";
}

.mdi-debug-step-into:before {
  content: "";
}

.mdi-debug-step-out:before {
  content: "";
}

.mdi-debug-step-over:before {
  content: "";
}

.mdi-decimal-decrease:before {
  content: "";
}

.mdi-decimal-increase:before {
  content: "";
}

.mdi-delete:before {
  content: "";
}

.mdi-delete-variant:before {
  content: "";
}

.mdi-delta:before {
  content: "";
}

.mdi-deskphone:before {
  content: "";
}

.mdi-desktop-mac:before {
  content: "";
}

.mdi-desktop-tower:before {
  content: "";
}

.mdi-details:before {
  content: "";
}

.mdi-deviantart:before {
  content: "";
}

.mdi-diamond:before {
  content: "";
}

.mdi-dice:before {
  content: "";
}

.mdi-dice-1:before {
  content: "";
}

.mdi-dice-2:before {
  content: "";
}

.mdi-dice-3:before {
  content: "";
}

.mdi-dice-4:before {
  content: "";
}

.mdi-dice-5:before {
  content: "";
}

.mdi-dice-6:before {
  content: "";
}

.mdi-directions:before {
  content: "";
}

.mdi-disk-alert:before {
  content: "";
}

.mdi-disqus:before {
  content: "";
}

.mdi-disqus-outline:before {
  content: "";
}

.mdi-division:before {
  content: "";
}

.mdi-division-box:before {
  content: "";
}

.mdi-dns:before {
  content: "";
}

.mdi-domain:before {
  content: "";
}

.mdi-dots-horizontal:before {
  content: "";
}

.mdi-dots-vertical:before {
  content: "";
}

.mdi-download:before {
  content: "";
}

.mdi-drag:before {
  content: "";
}

.mdi-drag-horizontal:before {
  content: "";
}

.mdi-drag-vertical:before {
  content: "";
}

.mdi-drawing:before {
  content: "";
}

.mdi-drawing-box:before {
  content: "";
}

.mdi-dribbble:before {
  content: "";
}

.mdi-dribbble-box:before {
  content: "";
}

.mdi-drone:before {
  content: "";
}

.mdi-dropbox:before {
  content: "";
}

.mdi-drupal:before {
  content: "";
}

.mdi-duck:before {
  content: "";
}

.mdi-dumbbell:before {
  content: "";
}

.mdi-earth:before {
  content: "";
}

.mdi-earth-off:before {
  content: "";
}

.mdi-edge:before {
  content: "";
}

.mdi-eject:before {
  content: "";
}

.mdi-elevation-decline:before {
  content: "";
}

.mdi-elevation-rise:before {
  content: "";
}

.mdi-elevator:before {
  content: "";
}

.mdi-email:before {
  content: "";
}

.mdi-email-open:before {
  content: "";
}

.mdi-email-outline:before {
  content: "";
}

.mdi-email-secure:before {
  content: "";
}

.mdi-emoticon:before {
  content: "";
}

.mdi-emoticon-cool:before {
  content: "";
}

.mdi-emoticon-devil:before {
  content: "";
}

.mdi-emoticon-happy:before {
  content: "";
}

.mdi-emoticon-neutral:before {
  content: "";
}

.mdi-emoticon-poop:before {
  content: "";
}

.mdi-emoticon-sad:before {
  content: "";
}

.mdi-emoticon-tongue:before {
  content: "";
}

.mdi-engine:before {
  content: "";
}

.mdi-engine-outline:before {
  content: "";
}

.mdi-equal:before {
  content: "";
}

.mdi-equal-box:before {
  content: "";
}

.mdi-eraser:before {
  content: "";
}

.mdi-escalator:before {
  content: "";
}

.mdi-ethernet:before {
  content: "";
}

.mdi-ethernet-cable:before {
  content: "";
}

.mdi-ethernet-cable-off:before {
  content: "";
}

.mdi-etsy:before {
  content: "";
}

.mdi-evernote:before {
  content: "";
}

.mdi-exclamation:before {
  content: "";
}

.mdi-exit-to-app:before {
  content: "";
}

.mdi-export:before {
  content: "";
}

.mdi-eye:before {
  content: "";
}

.mdi-eye-off:before {
  content: "";
}

.mdi-eyedropper:before {
  content: "";
}

.mdi-eyedropper-variant:before {
  content: "";
}

.mdi-facebook:before {
  content: "";
}

.mdi-facebook-box:before {
  content: "";
}

.mdi-facebook-messenger:before {
  content: "";
}

.mdi-factory:before {
  content: "";
}

.mdi-fan:before {
  content: "";
}

.mdi-fast-forward:before {
  content: "";
}

.mdi-fax:before {
  content: "";
}

.mdi-ferry:before {
  content: "";
}

.mdi-file:before {
  content: "";
}

.mdi-file-chart:before {
  content: "";
}

.mdi-file-check:before {
  content: "";
}

.mdi-file-cloud:before {
  content: "";
}

.mdi-file-delimited:before {
  content: "";
}

.mdi-file-document:before {
  content: "";
}

.mdi-file-document-box:before {
  content: "";
}

.mdi-file-excel:before {
  content: "";
}

.mdi-file-excel-box:before {
  content: "";
}

.mdi-file-export:before {
  content: "";
}

.mdi-file-find:before {
  content: "";
}

.mdi-file-image:before {
  content: "";
}

.mdi-file-import:before {
  content: "";
}

.mdi-file-lock:before {
  content: "";
}

.mdi-file-multiple:before {
  content: "";
}

.mdi-file-music:before {
  content: "";
}

.mdi-file-outline:before {
  content: "";
}

.mdi-file-pdf:before {
  content: "";
}

.mdi-file-pdf-box:before {
  content: "";
}

.mdi-file-powerpoint:before {
  content: "";
}

.mdi-file-powerpoint-box:before {
  content: "";
}

.mdi-file-presentation-box:before {
  content: "";
}

.mdi-file-send:before {
  content: "";
}

.mdi-file-video:before {
  content: "";
}

.mdi-file-word:before {
  content: "";
}

.mdi-file-word-box:before {
  content: "";
}

.mdi-file-xml:before {
  content: "";
}

.mdi-film:before {
  content: "";
}

.mdi-filmstrip:before {
  content: "";
}

.mdi-filmstrip-off:before {
  content: "";
}

.mdi-filter:before {
  content: "";
}

.mdi-filter-outline:before {
  content: "";
}

.mdi-filter-remove:before {
  content: "";
}

.mdi-filter-remove-outline:before {
  content: "";
}

.mdi-filter-variant:before {
  content: "";
}

.mdi-fingerprint:before {
  content: "";
}

.mdi-fire:before {
  content: "";
}

.mdi-firefox:before {
  content: "";
}

.mdi-fish:before {
  content: "";
}

.mdi-flag:before {
  content: "";
}

.mdi-flag-checkered:before {
  content: "";
}

.mdi-flag-outline:before {
  content: "";
}

.mdi-flag-outline-variant:before {
  content: "";
}

.mdi-flag-triangle:before {
  content: "";
}

.mdi-flag-variant:before {
  content: "";
}

.mdi-flash:before {
  content: "";
}

.mdi-flash-auto:before {
  content: "";
}

.mdi-flash-off:before {
  content: "";
}

.mdi-flashlight:before {
  content: "";
}

.mdi-flashlight-off:before {
  content: "";
}

.mdi-flattr:before {
  content: "";
}

.mdi-flip-to-back:before {
  content: "";
}

.mdi-flip-to-front:before {
  content: "";
}

.mdi-floppy:before {
  content: "";
}

.mdi-flower:before {
  content: "";
}

.mdi-folder:before {
  content: "";
}

.mdi-folder-account:before {
  content: "";
}

.mdi-folder-download:before {
  content: "";
}

.mdi-folder-google-drive:before {
  content: "";
}

.mdi-folder-image:before {
  content: "";
}

.mdi-folder-lock:before {
  content: "";
}

.mdi-folder-lock-open:before {
  content: "";
}

.mdi-folder-move:before {
  content: "";
}

.mdi-folder-multiple:before {
  content: "";
}

.mdi-folder-multiple-image:before {
  content: "";
}

.mdi-folder-multiple-outline:before {
  content: "";
}

.mdi-folder-outline:before {
  content: "";
}

.mdi-folder-plus:before {
  content: "";
}

.mdi-folder-remove:before {
  content: "";
}

.mdi-folder-upload:before {
  content: "";
}

.mdi-food:before {
  content: "";
}

.mdi-food-apple:before {
  content: "";
}

.mdi-food-variant:before {
  content: "";
}

.mdi-football:before {
  content: "";
}

.mdi-football-australian:before {
  content: "";
}

.mdi-football-helmet:before {
  content: "";
}

.mdi-format-align-center:before {
  content: "";
}

.mdi-format-align-justify:before {
  content: "";
}

.mdi-format-align-left:before {
  content: "";
}

.mdi-format-align-right:before {
  content: "";
}

.mdi-format-bold:before {
  content: "";
}

.mdi-format-clear:before {
  content: "";
}

.mdi-format-color-fill:before {
  content: "";
}

.mdi-format-float-center:before {
  content: "";
}

.mdi-format-float-left:before {
  content: "";
}

.mdi-format-float-none:before {
  content: "";
}

.mdi-format-float-right:before {
  content: "";
}

.mdi-format-header-1:before {
  content: "";
}

.mdi-format-header-2:before {
  content: "";
}

.mdi-format-header-3:before {
  content: "";
}

.mdi-format-header-4:before {
  content: "";
}

.mdi-format-header-5:before {
  content: "";
}

.mdi-format-header-6:before {
  content: "";
}

.mdi-format-header-decrease:before {
  content: "";
}

.mdi-format-header-equal:before {
  content: "";
}

.mdi-format-header-increase:before {
  content: "";
}

.mdi-format-header-pound:before {
  content: "";
}

.mdi-format-indent-decrease:before {
  content: "";
}

.mdi-format-indent-increase:before {
  content: "";
}

.mdi-format-italic:before {
  content: "";
}

.mdi-format-line-spacing:before {
  content: "";
}

.mdi-format-list-bulleted:before {
  content: "";
}

.mdi-format-list-bulleted-type:before {
  content: "";
}

.mdi-format-list-numbers:before {
  content: "";
}

.mdi-format-paint:before {
  content: "";
}

.mdi-format-paragraph:before {
  content: "";
}

.mdi-format-quote:before {
  content: "";
}

.mdi-format-size:before {
  content: "";
}

.mdi-format-strikethrough:before {
  content: "";
}

.mdi-format-strikethrough-variant:before {
  content: "";
}

.mdi-format-subscript:before {
  content: "";
}

.mdi-format-superscript:before {
  content: "";
}

.mdi-format-text:before {
  content: "";
}

.mdi-format-textdirection-l-to-r:before {
  content: "";
}

.mdi-format-textdirection-r-to-l:before {
  content: "";
}

.mdi-format-underline:before {
  content: "";
}

.mdi-format-wrap-inline:before {
  content: "";
}

.mdi-format-wrap-square:before {
  content: "";
}

.mdi-format-wrap-tight:before {
  content: "";
}

.mdi-format-wrap-top-bottom:before {
  content: "";
}

.mdi-forum:before {
  content: "";
}

.mdi-forward:before {
  content: "";
}

.mdi-foursquare:before {
  content: "";
}

.mdi-fridge:before {
  content: "";
}

.mdi-fridge-filled:before {
  content: "";
}

.mdi-fridge-filled-bottom:before {
  content: "";
}

.mdi-fridge-filled-top:before {
  content: "";
}

.mdi-fullscreen:before {
  content: "";
}

.mdi-fullscreen-exit:before {
  content: "";
}

.mdi-function:before {
  content: "";
}

.mdi-gamepad:before {
  content: "";
}

.mdi-gamepad-variant:before {
  content: "";
}

.mdi-gas-station:before {
  content: "";
}

.mdi-gate:before {
  content: "";
}

.mdi-gauge:before {
  content: "";
}

.mdi-gavel:before {
  content: "";
}

.mdi-gender-female:before {
  content: "";
}

.mdi-gender-male:before {
  content: "";
}

.mdi-gender-male-female:before {
  content: "";
}

.mdi-gender-transgender:before {
  content: "";
}

.mdi-ghost:before {
  content: "";
}

.mdi-gift:before {
  content: "";
}

.mdi-git:before {
  content: "";
}

.mdi-github-box:before {
  content: "";
}

.mdi-github-circle:before {
  content: "";
}

.mdi-glass-flute:before {
  content: "";
}

.mdi-glass-mug:before {
  content: "";
}

.mdi-glass-stange:before {
  content: "";
}

.mdi-glass-tulip:before {
  content: "";
}

.mdi-glasses:before {
  content: "";
}

.mdi-gmail:before {
  content: "";
}

.mdi-google:before {
  content: "";
}

.mdi-google-cardboard:before {
  content: "";
}

.mdi-google-chrome:before {
  content: "";
}

.mdi-google-circles:before {
  content: "";
}

.mdi-google-circles-communities:before {
  content: "";
}

.mdi-google-circles-extended:before {
  content: "";
}

.mdi-google-circles-group:before {
  content: "";
}

.mdi-google-controller:before {
  content: "";
}

.mdi-google-controller-off:before {
  content: "";
}

.mdi-google-drive:before {
  content: "";
}

.mdi-google-earth:before {
  content: "";
}

.mdi-google-glass:before {
  content: "";
}

.mdi-google-nearby:before {
  content: "";
}

.mdi-google-pages:before {
  content: "";
}

.mdi-google-physical-web:before {
  content: "";
}

.mdi-google-play:before {
  content: "";
}

.mdi-google-plus:before {
  content: "";
}

.mdi-google-plus-box:before {
  content: "";
}

.mdi-google-translate:before {
  content: "";
}

.mdi-google-wallet:before {
  content: "";
}

.mdi-grid:before {
  content: "";
}

.mdi-grid-off:before {
  content: "";
}

.mdi-group:before {
  content: "";
}

.mdi-guitar:before {
  content: "";
}

.mdi-guitar-pick:before {
  content: "";
}

.mdi-guitar-pick-outline:before {
  content: "";
}

.mdi-hand-pointing-right:before {
  content: "";
}

.mdi-hanger:before {
  content: "";
}

.mdi-hangouts:before {
  content: "";
}

.mdi-harddisk:before {
  content: "";
}

.mdi-headphones:before {
  content: "";
}

.mdi-headphones-box:before {
  content: "";
}

.mdi-headphones-settings:before {
  content: "";
}

.mdi-headset:before {
  content: "";
}

.mdi-headset-dock:before {
  content: "";
}

.mdi-headset-off:before {
  content: "";
}

.mdi-heart:before {
  content: "";
}

.mdi-heart-box:before {
  content: "";
}

.mdi-heart-box-outline:before {
  content: "";
}

.mdi-heart-broken:before {
  content: "";
}

.mdi-heart-outline:before {
  content: "";
}

.mdi-help:before {
  content: "";
}

.mdi-help-circle:before {
  content: "";
}

.mdi-hexagon:before {
  content: "";
}

.mdi-hexagon-outline:before {
  content: "";
}

.mdi-history:before {
  content: "";
}

.mdi-hololens:before {
  content: "";
}

.mdi-home:before {
  content: "";
}

.mdi-home-modern:before {
  content: "";
}

.mdi-home-variant:before {
  content: "";
}

.mdi-hops:before {
  content: "";
}

.mdi-hospital:before {
  content: "";
}

.mdi-hospital-building:before {
  content: "";
}

.mdi-hospital-marker:before {
  content: "";
}

.mdi-hotel:before {
  content: "";
}

.mdi-houzz:before {
  content: "";
}

.mdi-houzz-box:before {
  content: "";
}

.mdi-human:before {
  content: "";
}

.mdi-human-child:before {
  content: "";
}

.mdi-human-male-female:before {
  content: "";
}

.mdi-image:before {
  content: "";
}

.mdi-image-album:before {
  content: "";
}

.mdi-image-area:before {
  content: "";
}

.mdi-image-area-close:before {
  content: "";
}

.mdi-image-broken:before {
  content: "";
}

.mdi-image-broken-variant:before {
  content: "";
}

.mdi-image-filter:before {
  content: "";
}

.mdi-image-filter-black-white:before {
  content: "";
}

.mdi-image-filter-center-focus:before {
  content: "";
}

.mdi-image-filter-center-focus-weak:before {
  content: "";
}

.mdi-image-filter-drama:before {
  content: "";
}

.mdi-image-filter-frames:before {
  content: "";
}

.mdi-image-filter-hdr:before {
  content: "";
}

.mdi-image-filter-none:before {
  content: "";
}

.mdi-image-filter-tilt-shift:before {
  content: "";
}

.mdi-image-filter-vintage:before {
  content: "";
}

.mdi-image-multiple:before {
  content: "";
}

.mdi-import:before {
  content: "";
}

.mdi-inbox:before {
  content: "";
}

.mdi-information:before {
  content: "";
}

.mdi-information-outline:before {
  content: "";
}

.mdi-instagram:before {
  content: "";
}

.mdi-instapaper:before {
  content: "";
}

.mdi-internet-explorer:before {
  content: "";
}

.mdi-invert-colors:before {
  content: "";
}

.mdi-jeepney:before {
  content: "";
}

.mdi-jira:before {
  content: "";
}

.mdi-jsfiddle:before {
  content: "";
}

.mdi-keg:before {
  content: "";
}

.mdi-key:before {
  content: "";
}

.mdi-key-change:before {
  content: "";
}

.mdi-key-minus:before {
  content: "";
}

.mdi-key-plus:before {
  content: "";
}

.mdi-key-remove:before {
  content: "";
}

.mdi-key-variant:before {
  content: "";
}

.mdi-keyboard:before {
  content: "";
}

.mdi-keyboard-backspace:before {
  content: "";
}

.mdi-keyboard-caps:before {
  content: "";
}

.mdi-keyboard-close:before {
  content: "";
}

.mdi-keyboard-off:before {
  content: "";
}

.mdi-keyboard-return:before {
  content: "";
}

.mdi-keyboard-tab:before {
  content: "";
}

.mdi-keyboard-variant:before {
  content: "";
}

.mdi-label:before {
  content: "";
}

.mdi-label-outline:before {
  content: "";
}

.mdi-lan:before {
  content: "";
}

.mdi-lan-connect:before {
  content: "";
}

.mdi-lan-disconnect:before {
  content: "";
}

.mdi-lan-pending:before {
  content: "";
}

.mdi-language-csharp:before {
  content: "";
}

.mdi-language-css3:before {
  content: "";
}

.mdi-language-html5:before {
  content: "";
}

.mdi-language-javascript:before {
  content: "";
}

.mdi-language-php:before {
  content: "";
}

.mdi-language-python:before {
  content: "";
}

.mdi-language-python-text:before {
  content: "";
}

.mdi-laptop:before {
  content: "";
}

.mdi-laptop-chromebook:before {
  content: "";
}

.mdi-laptop-mac:before {
  content: "";
}

.mdi-laptop-windows:before {
  content: "";
}

.mdi-lastfm:before {
  content: "";
}

.mdi-launch:before {
  content: "";
}

.mdi-layers:before {
  content: "";
}

.mdi-layers-off:before {
  content: "";
}

.mdi-leaf:before {
  content: "";
}

.mdi-led-off:before {
  content: "";
}

.mdi-led-on:before {
  content: "";
}

.mdi-led-outline:before {
  content: "";
}

.mdi-led-variant-off:before {
  content: "";
}

.mdi-led-variant-on:before {
  content: "";
}

.mdi-led-variant-outline:before {
  content: "";
}

.mdi-library:before {
  content: "";
}

.mdi-library-books:before {
  content: "";
}

.mdi-library-music:before {
  content: "";
}

.mdi-library-plus:before {
  content: "";
}

.mdi-lightbulb:before {
  content: "";
}

.mdi-lightbulb-outline:before {
  content: "";
}

.mdi-link:before {
  content: "";
}

.mdi-link-off:before {
  content: "";
}

.mdi-link-variant:before {
  content: "";
}

.mdi-link-variant-off:before {
  content: "";
}

.mdi-linkedin:before {
  content: "";
}

.mdi-linkedin-box:before {
  content: "";
}

.mdi-linux:before {
  content: "";
}

.mdi-lock:before {
  content: "";
}

.mdi-lock-open:before {
  content: "";
}

.mdi-lock-open-outline:before {
  content: "";
}

.mdi-lock-outline:before {
  content: "";
}

.mdi-login:before {
  content: "";
}

.mdi-logout:before {
  content: "";
}

.mdi-looks:before {
  content: "";
}

.mdi-loupe:before {
  content: "";
}

.mdi-lumx:before {
  content: "";
}

.mdi-magnet:before {
  content: "";
}

.mdi-magnet-on:before {
  content: "";
}

.mdi-magnify:before {
  content: "";
}

.mdi-magnify-minus:before {
  content: "";
}

.mdi-magnify-plus:before {
  content: "";
}

.mdi-mail-ru:before {
  content: "";
}

.mdi-map:before {
  content: "";
}

.mdi-map-marker:before {
  content: "";
}

.mdi-map-marker-circle:before {
  content: "";
}

.mdi-map-marker-multiple:before {
  content: "";
}

.mdi-map-marker-off:before {
  content: "";
}

.mdi-map-marker-radius:before {
  content: "";
}

.mdi-margin:before {
  content: "";
}

.mdi-markdown:before {
  content: "";
}

.mdi-marker-check:before {
  content: "";
}

.mdi-martini:before {
  content: "";
}

.mdi-material-ui:before {
  content: "";
}

.mdi-math-compass:before {
  content: "";
}

.mdi-maxcdn:before {
  content: "";
}

.mdi-medium:before {
  content: "";
}

.mdi-memory:before {
  content: "";
}

.mdi-menu:before {
  content: "";
}

.mdi-menu-down:before {
  content: "";
}

.mdi-menu-left:before {
  content: "";
}

.mdi-menu-right:before {
  content: "";
}

.mdi-menu-up:before {
  content: "";
}

.mdi-message:before {
  content: "";
}

.mdi-message-alert:before {
  content: "";
}

.mdi-message-draw:before {
  content: "";
}

.mdi-message-image:before {
  content: "";
}

.mdi-message-outline:before {
  content: "";
}

.mdi-message-processing:before {
  content: "";
}

.mdi-message-reply:before {
  content: "";
}

.mdi-message-reply-text:before {
  content: "";
}

.mdi-message-text:before {
  content: "";
}

.mdi-message-text-outline:before {
  content: "";
}

.mdi-message-video:before {
  content: "";
}

.mdi-microphone:before {
  content: "";
}

.mdi-microphone-off:before {
  content: "";
}

.mdi-microphone-outline:before {
  content: "";
}

.mdi-microphone-settings:before {
  content: "";
}

.mdi-microphone-variant:before {
  content: "";
}

.mdi-microphone-variant-off:before {
  content: "";
}

.mdi-microsoft:before {
  content: "";
}

.mdi-minus:before {
  content: "";
}

.mdi-minus-box:before {
  content: "";
}

.mdi-minus-circle:before {
  content: "";
}

.mdi-minus-circle-outline:before {
  content: "";
}

.mdi-minus-network:before {
  content: "";
}

.mdi-monitor:before {
  content: "";
}

.mdi-monitor-multiple:before {
  content: "";
}

.mdi-more:before {
  content: "";
}

.mdi-motorbike:before {
  content: "";
}

.mdi-mouse:before {
  content: "";
}

.mdi-mouse-off:before {
  content: "";
}

.mdi-mouse-variant:before {
  content: "";
}

.mdi-mouse-variant-off:before {
  content: "";
}

.mdi-movie:before {
  content: "";
}

.mdi-multiplication:before {
  content: "";
}

.mdi-multiplication-box:before {
  content: "";
}

.mdi-music-box:before {
  content: "";
}

.mdi-music-box-outline:before {
  content: "";
}

.mdi-music-circle:before {
  content: "";
}

.mdi-music-note:before {
  content: "";
}

.mdi-music-note-eighth:before {
  content: "";
}

.mdi-music-note-half:before {
  content: "";
}

.mdi-music-note-off:before {
  content: "";
}

.mdi-music-note-quarter:before {
  content: "";
}

.mdi-music-note-sixteenth:before {
  content: "";
}

.mdi-music-note-whole:before {
  content: "";
}

.mdi-nature:before {
  content: "";
}

.mdi-nature-people:before {
  content: "";
}

.mdi-navigation:before {
  content: "";
}

.mdi-needle:before {
  content: "";
}

.mdi-nest-protect:before {
  content: "";
}

.mdi-nest-thermostat:before {
  content: "";
}

.mdi-newspaper:before {
  content: "";
}

.mdi-nfc:before {
  content: "";
}

.mdi-nfc-tap:before {
  content: "";
}

.mdi-nfc-variant:before {
  content: "";
}

.mdi-nodejs:before {
  content: "";
}

.mdi-note:before {
  content: "";
}

.mdi-note-outline:before {
  content: "";
}

.mdi-note-plus:before {
  content: "";
}

.mdi-note-plus-outline:before {
  content: "";
}

.mdi-note-text:before {
  content: "";
}

.mdi-notification-clear-all:before {
  content: "";
}

.mdi-numeric:before {
  content: "";
}

.mdi-numeric-0-box:before {
  content: "";
}

.mdi-numeric-0-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-0-box-outline:before {
  content: "";
}

.mdi-numeric-1-box:before {
  content: "";
}

.mdi-numeric-1-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-1-box-outline:before {
  content: "";
}

.mdi-numeric-2-box:before {
  content: "";
}

.mdi-numeric-2-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-2-box-outline:before {
  content: "";
}

.mdi-numeric-3-box:before {
  content: "";
}

.mdi-numeric-3-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-3-box-outline:before {
  content: "";
}

.mdi-numeric-4-box:before {
  content: "";
}

.mdi-numeric-4-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-4-box-outline:before {
  content: "";
}

.mdi-numeric-5-box:before {
  content: "";
}

.mdi-numeric-5-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-5-box-outline:before {
  content: "";
}

.mdi-numeric-6-box:before {
  content: "";
}

.mdi-numeric-6-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-6-box-outline:before {
  content: "";
}

.mdi-numeric-7-box:before {
  content: "";
}

.mdi-numeric-7-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-7-box-outline:before {
  content: "";
}

.mdi-numeric-8-box:before {
  content: "";
}

.mdi-numeric-8-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-8-box-outline:before {
  content: "";
}

.mdi-numeric-9-box:before {
  content: "";
}

.mdi-numeric-9-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-9-box-outline:before {
  content: "";
}

.mdi-numeric-9-plus-box:before {
  content: "";
}

.mdi-numeric-9-plus-box-multiple-outline:before {
  content: "";
}

.mdi-numeric-9-plus-box-outline:before {
  content: "";
}

.mdi-nutrition:before {
  content: "";
}

.mdi-octagon:before {
  content: "";
}

.mdi-octagon-outline:before {
  content: "";
}

.mdi-odnoklassniki:before {
  content: "";
}

.mdi-office:before {
  content: "";
}

.mdi-oil:before {
  content: "";
}

.mdi-oil-temperature:before {
  content: "";
}

.mdi-omega:before {
  content: "";
}

.mdi-onedrive:before {
  content: "";
}

.mdi-open-in-app:before {
  content: "";
}

.mdi-open-in-new:before {
  content: "";
}

.mdi-opera:before {
  content: "";
}

.mdi-ornament:before {
  content: "";
}

.mdi-ornament-variant:before {
  content: "";
}

.mdi-outbox:before {
  content: "";
}

.mdi-owl:before {
  content: "";
}

.mdi-package:before {
  content: "";
}

.mdi-package-down:before {
  content: "";
}

.mdi-package-up:before {
  content: "";
}

.mdi-package-variant:before {
  content: "";
}

.mdi-package-variant-closed:before {
  content: "";
}

.mdi-palette:before {
  content: "";
}

.mdi-palette-advanced:before {
  content: "";
}

.mdi-panda:before {
  content: "";
}

.mdi-pandora:before {
  content: "";
}

.mdi-panorama:before {
  content: "";
}

.mdi-panorama-fisheye:before {
  content: "";
}

.mdi-panorama-horizontal:before {
  content: "";
}

.mdi-panorama-vertical:before {
  content: "";
}

.mdi-panorama-wide-angle:before {
  content: "";
}

.mdi-paper-cut-vertical:before {
  content: "";
}

.mdi-paperclip:before {
  content: "";
}

.mdi-parking:before {
  content: "";
}

.mdi-pause:before {
  content: "";
}

.mdi-pause-circle:before {
  content: "";
}

.mdi-pause-circle-outline:before {
  content: "";
}

.mdi-pause-octagon:before {
  content: "";
}

.mdi-pause-octagon-outline:before {
  content: "";
}

.mdi-paw:before {
  content: "";
}

.mdi-pen:before {
  content: "";
}

.mdi-pencil:before {
  content: "";
}

.mdi-pencil-box:before {
  content: "";
}

.mdi-pencil-box-outline:before {
  content: "";
}

.mdi-pencil-lock:before {
  content: "";
}

.mdi-pencil-off:before {
  content: "";
}

.mdi-percent:before {
  content: "";
}

.mdi-pharmacy:before {
  content: "";
}

.mdi-phone:before {
  content: "";
}

.mdi-phone-bluetooth:before {
  content: "";
}

.mdi-phone-forward:before {
  content: "";
}

.mdi-phone-hangup:before {
  content: "";
}

.mdi-phone-in-talk:before {
  content: "";
}

.mdi-phone-incoming:before {
  content: "";
}

.mdi-phone-locked:before {
  content: "";
}

.mdi-phone-log:before {
  content: "";
}

.mdi-phone-missed:before {
  content: "";
}

.mdi-phone-outgoing:before {
  content: "";
}

.mdi-phone-paused:before {
  content: "";
}

.mdi-phone-settings:before {
  content: "";
}

.mdi-phone-voip:before {
  content: "";
}

.mdi-pi:before {
  content: "";
}

.mdi-pi-box:before {
  content: "";
}

.mdi-pig:before {
  content: "";
}

.mdi-pill:before {
  content: "";
}

.mdi-pin:before {
  content: "";
}

.mdi-pin-off:before {
  content: "";
}

.mdi-pine-tree:before {
  content: "";
}

.mdi-pine-tree-box:before {
  content: "";
}

.mdi-pinterest:before {
  content: "";
}

.mdi-pinterest-box:before {
  content: "";
}

.mdi-pizza:before {
  content: "";
}

.mdi-play:before {
  content: "";
}

.mdi-play-box-outline:before {
  content: "";
}

.mdi-play-circle:before {
  content: "";
}

.mdi-play-circle-outline:before {
  content: "";
}

.mdi-play-pause:before {
  content: "";
}

.mdi-play-protected-content:before {
  content: "";
}

.mdi-playlist-minus:before {
  content: "";
}

.mdi-playlist-play:before {
  content: "";
}

.mdi-playlist-plus:before {
  content: "";
}

.mdi-playlist-remove:before {
  content: "";
}

.mdi-playstation:before {
  content: "";
}

.mdi-plus:before {
  content: "";
}

.mdi-plus-box:before {
  content: "";
}

.mdi-plus-circle:before {
  content: "";
}

.mdi-plus-circle-multiple-outline:before {
  content: "";
}

.mdi-plus-circle-outline:before {
  content: "";
}

.mdi-plus-network:before {
  content: "";
}

.mdi-plus-one:before {
  content: "";
}

.mdi-pocket:before {
  content: "";
}

.mdi-pokeball:before {
  content: "";
}

.mdi-polaroid:before {
  content: "";
}

.mdi-poll:before {
  content: "";
}

.mdi-poll-box:before {
  content: "";
}

.mdi-polymer:before {
  content: "";
}

.mdi-popcorn:before {
  content: "";
}

.mdi-pound:before {
  content: "";
}

.mdi-pound-box:before {
  content: "";
}

.mdi-power:before {
  content: "";
}

.mdi-power-settings:before {
  content: "";
}

.mdi-power-socket:before {
  content: "";
}

.mdi-presentation:before {
  content: "";
}

.mdi-presentation-play:before {
  content: "";
}

.mdi-printer:before {
  content: "";
}

.mdi-printer-3d:before {
  content: "";
}

.mdi-printer-alert:before {
  content: "";
}

.mdi-professional-hexagon:before {
  content: "";
}

.mdi-projector:before {
  content: "";
}

.mdi-projector-screen:before {
  content: "";
}

.mdi-pulse:before {
  content: "";
}

.mdi-puzzle:before {
  content: "";
}

.mdi-qrcode:before {
  content: "";
}

.mdi-qrcode-scan:before {
  content: "";
}

.mdi-quadcopter:before {
  content: "";
}

.mdi-quality-high:before {
  content: "";
}

.mdi-quicktime:before {
  content: "";
}

.mdi-radar:before {
  content: "";
}

.mdi-radiator:before {
  content: "";
}

.mdi-radio:before {
  content: "";
}

.mdi-radio-handheld:before {
  content: "";
}

.mdi-radio-tower:before {
  content: "";
}

.mdi-radioactive:before {
  content: "";
}

.mdi-radiobox-blank:before {
  content: "";
}

.mdi-radiobox-marked:before {
  content: "";
}

.mdi-raspberrypi:before {
  content: "";
}

.mdi-ray-end:before {
  content: "";
}

.mdi-ray-end-arrow:before {
  content: "";
}

.mdi-ray-start:before {
  content: "";
}

.mdi-ray-start-arrow:before {
  content: "";
}

.mdi-ray-start-end:before {
  content: "";
}

.mdi-ray-vertex:before {
  content: "";
}

.mdi-rdio:before {
  content: "";
}

.mdi-read:before {
  content: "";
}

.mdi-readability:before {
  content: "";
}

.mdi-receipt:before {
  content: "";
}

.mdi-record:before {
  content: "";
}

.mdi-record-rec:before {
  content: "";
}

.mdi-recycle:before {
  content: "";
}

.mdi-reddit:before {
  content: "";
}

.mdi-redo:before {
  content: "";
}

.mdi-redo-variant:before {
  content: "";
}

.mdi-refresh:before {
  content: "";
}

.mdi-regex:before {
  content: "";
}

.mdi-relative-scale:before {
  content: "";
}

.mdi-reload:before {
  content: "";
}

.mdi-remote:before {
  content: "";
}

.mdi-rename-box:before {
  content: "";
}

.mdi-repeat:before {
  content: "";
}

.mdi-repeat-off:before {
  content: "";
}

.mdi-repeat-once:before {
  content: "";
}

.mdi-replay:before {
  content: "";
}

.mdi-reply:before {
  content: "";
}

.mdi-reply-all:before {
  content: "";
}

.mdi-reproduction:before {
  content: "";
}

.mdi-resize-bottom-right:before {
  content: "";
}

.mdi-responsive:before {
  content: "";
}

.mdi-rewind:before {
  content: "";
}

.mdi-ribbon:before {
  content: "";
}

.mdi-road:before {
  content: "";
}

.mdi-road-variant:before {
  content: "";
}

.mdi-rocket:before {
  content: "";
}

.mdi-rotate-3d:before {
  content: "";
}

.mdi-rotate-left:before {
  content: "";
}

.mdi-rotate-left-variant:before {
  content: "";
}

.mdi-rotate-right:before {
  content: "";
}

.mdi-rotate-right-variant:before {
  content: "";
}

.mdi-router-wireless:before {
  content: "";
}

.mdi-routes:before {
  content: "";
}

.mdi-rss:before {
  content: "";
}

.mdi-rss-box:before {
  content: "";
}

.mdi-ruler:before {
  content: "";
}

.mdi-run:before {
  content: "";
}

.mdi-sale:before {
  content: "";
}

.mdi-satellite:before {
  content: "";
}

.mdi-satellite-variant:before {
  content: "";
}

.mdi-scale:before {
  content: "";
}

.mdi-scale-bathroom:before {
  content: "";
}

.mdi-school:before {
  content: "";
}

.mdi-screen-rotation:before {
  content: "";
}

.mdi-screen-rotation-lock:before {
  content: "";
}

.mdi-screwdriver:before {
  content: "";
}

.mdi-script:before {
  content: "";
}

.mdi-sd:before {
  content: "";
}

.mdi-seal:before {
  content: "";
}

.mdi-seat-flat:before {
  content: "";
}

.mdi-seat-flat-angled:before {
  content: "";
}

.mdi-seat-individual-suite:before {
  content: "";
}

.mdi-seat-legroom-extra:before {
  content: "";
}

.mdi-seat-legroom-normal:before {
  content: "";
}

.mdi-seat-legroom-reduced:before {
  content: "";
}

.mdi-seat-recline-extra:before {
  content: "";
}

.mdi-seat-recline-normal:before {
  content: "";
}

.mdi-security:before {
  content: "";
}

.mdi-security-network:before {
  content: "";
}

.mdi-select:before {
  content: "";
}

.mdi-select-all:before {
  content: "";
}

.mdi-select-inverse:before {
  content: "";
}

.mdi-select-off:before {
  content: "";
}

.mdi-selection:before {
  content: "";
}

.mdi-send:before {
  content: "";
}

.mdi-server:before {
  content: "";
}

.mdi-server-minus:before {
  content: "";
}

.mdi-server-network:before {
  content: "";
}

.mdi-server-network-off:before {
  content: "";
}

.mdi-server-off:before {
  content: "";
}

.mdi-server-plus:before {
  content: "";
}

.mdi-server-remove:before {
  content: "";
}

.mdi-server-security:before {
  content: "";
}

.mdi-settings:before {
  content: "";
}

.mdi-settings-box:before {
  content: "";
}

.mdi-shape-plus:before {
  content: "";
}

.mdi-share:before {
  content: "";
}

.mdi-share-variant:before {
  content: "";
}

.mdi-shield:before {
  content: "";
}

.mdi-shield-outline:before {
  content: "";
}

.mdi-shopping:before {
  content: "";
}

.mdi-shopping-music:before {
  content: "";
}

.mdi-shredder:before {
  content: "";
}

.mdi-shuffle:before {
  content: "";
}

.mdi-shuffle-disabled:before {
  content: "";
}

.mdi-shuffle-variant:before {
  content: "";
}

.mdi-sigma:before {
  content: "";
}

.mdi-sign-caution:before {
  content: "";
}

.mdi-signal:before {
  content: "";
}

.mdi-silverware:before {
  content: "";
}

.mdi-silverware-fork:before {
  content: "";
}

.mdi-silverware-spoon:before {
  content: "";
}

.mdi-silverware-variant:before {
  content: "";
}

.mdi-sim:before {
  content: "";
}

.mdi-sim-alert:before {
  content: "";
}

.mdi-sim-off:before {
  content: "";
}

.mdi-sitemap:before {
  content: "";
}

.mdi-skip-backward:before {
  content: "";
}

.mdi-skip-forward:before {
  content: "";
}

.mdi-skip-next:before {
  content: "";
}

.mdi-skip-previous:before {
  content: "";
}

.mdi-skype:before {
  content: "";
}

.mdi-skype-business:before {
  content: "";
}

.mdi-slack:before {
  content: "";
}

.mdi-sleep:before {
  content: "";
}

.mdi-sleep-off:before {
  content: "";
}

.mdi-smoking:before {
  content: "";
}

.mdi-smoking-off:before {
  content: "";
}

.mdi-snapchat:before {
  content: "";
}

.mdi-snowman:before {
  content: "";
}

.mdi-sofa:before {
  content: "";
}

.mdi-sort:before {
  content: "";
}

.mdi-sort-alphabetical:before {
  content: "";
}

.mdi-sort-ascending:before {
  content: "";
}

.mdi-sort-descending:before {
  content: "";
}

.mdi-sort-numeric:before {
  content: "";
}

.mdi-sort-variant:before {
  content: "";
}

.mdi-soundcloud:before {
  content: "";
}

.mdi-source-fork:before {
  content: "";
}

.mdi-source-pull:before {
  content: "";
}

.mdi-speaker:before {
  content: "";
}

.mdi-speaker-off:before {
  content: "";
}

.mdi-speedometer:before {
  content: "";
}

.mdi-spellcheck:before {
  content: "";
}

.mdi-spotify:before {
  content: "";
}

.mdi-spotlight:before {
  content: "";
}

.mdi-spotlight-beam:before {
  content: "";
}

.mdi-square-inc:before {
  content: "";
}

.mdi-square-inc-cash:before {
  content: "";
}

.mdi-stackoverflow:before {
  content: "";
}

.mdi-stairs:before {
  content: "";
}

.mdi-star:before {
  content: "";
}

.mdi-star-circle:before {
  content: "";
}

.mdi-star-half:before {
  content: "";
}

.mdi-star-off:before {
  content: "";
}

.mdi-star-outline:before {
  content: "";
}

.mdi-steam:before {
  content: "";
}

.mdi-steering:before {
  content: "";
}

.mdi-step-backward:before {
  content: "";
}

.mdi-step-backward-2:before {
  content: "";
}

.mdi-step-forward:before {
  content: "";
}

.mdi-step-forward-2:before {
  content: "";
}

.mdi-stethoscope:before {
  content: "";
}

.mdi-stocking:before {
  content: "";
}

.mdi-stop:before {
  content: "";
}

.mdi-store:before {
  content: "";
}

.mdi-store-24-hour:before {
  content: "";
}

.mdi-stove:before {
  content: "";
}

.mdi-subway:before {
  content: "";
}

.mdi-sunglasses:before {
  content: "";
}

.mdi-swap-horizontal:before {
  content: "";
}

.mdi-swap-vertical:before {
  content: "";
}

.mdi-swim:before {
  content: "";
}

.mdi-switch:before {
  content: "";
}

.mdi-sword:before {
  content: "";
}

.mdi-sync:before {
  content: "";
}

.mdi-sync-alert:before {
  content: "";
}

.mdi-sync-off:before {
  content: "";
}

.mdi-tab:before {
  content: "";
}

.mdi-tab-unselected:before {
  content: "";
}

.mdi-table:before {
  content: "";
}

.mdi-table-column-plus-after:before {
  content: "";
}

.mdi-table-column-plus-before:before {
  content: "";
}

.mdi-table-column-remove:before {
  content: "";
}

.mdi-table-column-width:before {
  content: "";
}

.mdi-table-edit:before {
  content: "";
}

.mdi-table-large:before {
  content: "";
}

.mdi-table-row-height:before {
  content: "";
}

.mdi-table-row-plus-after:before {
  content: "";
}

.mdi-table-row-plus-before:before {
  content: "";
}

.mdi-table-row-remove:before {
  content: "";
}

.mdi-tablet:before {
  content: "";
}

.mdi-tablet-android:before {
  content: "";
}

.mdi-tablet-ipad:before {
  content: "";
}

.mdi-tag:before {
  content: "";
}

.mdi-tag-faces:before {
  content: "";
}

.mdi-tag-multiple:before {
  content: "";
}

.mdi-tag-outline:before {
  content: "";
}

.mdi-tag-text-outline:before {
  content: "";
}

.mdi-target:before {
  content: "";
}

.mdi-taxi:before {
  content: "";
}

.mdi-teamviewer:before {
  content: "";
}

.mdi-telegram:before {
  content: "";
}

.mdi-television:before {
  content: "";
}

.mdi-television-guide:before {
  content: "";
}

.mdi-temperature-celsius:before {
  content: "";
}

.mdi-temperature-fahrenheit:before {
  content: "";
}

.mdi-temperature-kelvin:before {
  content: "";
}

.mdi-tennis:before {
  content: "";
}

.mdi-tent:before {
  content: "";
}

.mdi-terrain:before {
  content: "";
}

.mdi-text-to-speech:before {
  content: "";
}

.mdi-text-to-speech-off:before {
  content: "";
}

.mdi-texture:before {
  content: "";
}

.mdi-theater:before {
  content: "";
}

.mdi-theme-light-dark:before {
  content: "";
}

.mdi-thermometer:before {
  content: "";
}

.mdi-thermometer-lines:before {
  content: "";
}

.mdi-thumb-down:before {
  content: "";
}

.mdi-thumb-down-outline:before {
  content: "";
}

.mdi-thumb-up:before {
  content: "";
}

.mdi-thumb-up-outline:before {
  content: "";
}

.mdi-thumbs-up-down:before {
  content: "";
}

.mdi-ticket:before {
  content: "";
}

.mdi-ticket-account:before {
  content: "";
}

.mdi-ticket-confirmation:before {
  content: "";
}

.mdi-tie:before {
  content: "";
}

.mdi-timelapse:before {
  content: "";
}

.mdi-timer:before {
  content: "";
}

.mdi-timer-10:before {
  content: "";
}

.mdi-timer-3:before {
  content: "";
}

.mdi-timer-off:before {
  content: "";
}

.mdi-timer-sand:before {
  content: "";
}

.mdi-timetable:before {
  content: "";
}

.mdi-toggle-switch:before {
  content: "";
}

.mdi-toggle-switch-off:before {
  content: "";
}

.mdi-tooltip:before {
  content: "";
}

.mdi-tooltip-edit:before {
  content: "";
}

.mdi-tooltip-image:before {
  content: "";
}

.mdi-tooltip-outline:before {
  content: "";
}

.mdi-tooltip-outline-plus:before {
  content: "";
}

.mdi-tooltip-text:before {
  content: "";
}

.mdi-tor:before {
  content: "";
}

.mdi-traffic-light:before {
  content: "";
}

.mdi-train:before {
  content: "";
}

.mdi-tram:before {
  content: "";
}

.mdi-transcribe:before {
  content: "";
}

.mdi-transcribe-close:before {
  content: "";
}

.mdi-transfer:before {
  content: "";
}

.mdi-tree:before {
  content: "";
}

.mdi-trello:before {
  content: "";
}

.mdi-trending-down:before {
  content: "";
}

.mdi-trending-neutral:before {
  content: "";
}

.mdi-trending-up:before {
  content: "";
}

.mdi-triangle:before {
  content: "";
}

.mdi-triangle-outline:before {
  content: "";
}

.mdi-trophy:before {
  content: "";
}

.mdi-trophy-award:before {
  content: "";
}

.mdi-trophy-outline:before {
  content: "";
}

.mdi-trophy-variant:before {
  content: "";
}

.mdi-trophy-variant-outline:before {
  content: "";
}

.mdi-truck:before {
  content: "";
}

.mdi-truck-delivery:before {
  content: "";
}

.mdi-tshirt-crew:before {
  content: "";
}

.mdi-tshirt-v:before {
  content: "";
}

.mdi-tumblr:before {
  content: "";
}

.mdi-tumblr-reblog:before {
  content: "";
}

.mdi-twitch:before {
  content: "";
}

.mdi-twitter:before {
  content: "";
}

.mdi-twitter-box:before {
  content: "";
}

.mdi-twitter-circle:before {
  content: "";
}

.mdi-twitter-retweet:before {
  content: "";
}

.mdi-ubuntu:before {
  content: "";
}

.mdi-umbraco:before {
  content: "";
}

.mdi-umbrella:before {
  content: "";
}

.mdi-umbrella-outline:before {
  content: "";
}

.mdi-undo:before {
  content: "";
}

.mdi-undo-variant:before {
  content: "";
}

.mdi-unfold-less:before {
  content: "";
}

.mdi-unfold-more:before {
  content: "";
}

.mdi-ungroup:before {
  content: "";
}

.mdi-untappd:before {
  content: "";
}

.mdi-upload:before {
  content: "";
}

.mdi-usb:before {
  content: "";
}

.mdi-vector-arrange-above:before {
  content: "";
}

.mdi-vector-arrange-below:before {
  content: "";
}

.mdi-vector-circle:before {
  content: "";
}

.mdi-vector-circle-variant:before {
  content: "";
}

.mdi-vector-combine:before {
  content: "";
}

.mdi-vector-curve:before {
  content: "";
}

.mdi-vector-difference:before {
  content: "";
}

.mdi-vector-difference-ab:before {
  content: "";
}

.mdi-vector-difference-ba:before {
  content: "";
}

.mdi-vector-intersection:before {
  content: "";
}

.mdi-vector-line:before {
  content: "";
}

.mdi-vector-point:before {
  content: "";
}

.mdi-vector-polygon:before {
  content: "";
}

.mdi-vector-polyline:before {
  content: "";
}

.mdi-vector-selection:before {
  content: "";
}

.mdi-vector-square:before {
  content: "";
}

.mdi-vector-triangle:before {
  content: "";
}

.mdi-vector-union:before {
  content: "";
}

.mdi-verified:before {
  content: "";
}

.mdi-vibrate:before {
  content: "";
}

.mdi-video:before {
  content: "";
}

.mdi-video-off:before {
  content: "";
}

.mdi-video-switch:before {
  content: "";
}

.mdi-view-agenda:before {
  content: "";
}

.mdi-view-array:before {
  content: "";
}

.mdi-view-carousel:before {
  content: "";
}

.mdi-view-column:before {
  content: "";
}

.mdi-view-dashboard:before {
  content: "";
}

.mdi-view-day:before {
  content: "";
}

.mdi-view-grid:before {
  content: "";
}

.mdi-view-headline:before {
  content: "";
}

.mdi-view-list:before {
  content: "";
}

.mdi-view-module:before {
  content: "";
}

.mdi-view-quilt:before {
  content: "";
}

.mdi-view-stream:before {
  content: "";
}

.mdi-view-week:before {
  content: "";
}

.mdi-vimeo:before {
  content: "";
}

.mdi-vine:before {
  content: "";
}

.mdi-vk:before {
  content: "";
}

.mdi-vk-box:before {
  content: "";
}

.mdi-vk-circle:before {
  content: "";
}

.mdi-voicemail:before {
  content: "";
}

.mdi-volume-high:before {
  content: "";
}

.mdi-volume-low:before {
  content: "";
}

.mdi-volume-medium:before {
  content: "";
}

.mdi-volume-off:before {
  content: "";
}

.mdi-vpn:before {
  content: "";
}

.mdi-walk:before {
  content: "";
}

.mdi-wallet:before {
  content: "";
}

.mdi-wallet-giftcard:before {
  content: "";
}

.mdi-wallet-membership:before {
  content: "";
}

.mdi-wallet-travel:before {
  content: "";
}

.mdi-wan:before {
  content: "";
}

.mdi-watch:before {
  content: "";
}

.mdi-watch-export:before {
  content: "";
}

.mdi-watch-import:before {
  content: "";
}

.mdi-water:before {
  content: "";
}

.mdi-water-off:before {
  content: "";
}

.mdi-water-percent:before {
  content: "";
}

.mdi-water-pump:before {
  content: "";
}

.mdi-weather-cloudy:before {
  content: "";
}

.mdi-weather-fog:before {
  content: "";
}

.mdi-weather-hail:before {
  content: "";
}

.mdi-weather-lightning:before {
  content: "";
}

.mdi-weather-night:before {
  content: "";
}

.mdi-weather-partlycloudy:before {
  content: "";
}

.mdi-weather-pouring:before {
  content: "";
}

.mdi-weather-rainy:before {
  content: "";
}

.mdi-weather-snowy:before {
  content: "";
}

.mdi-weather-sunny:before {
  content: "";
}

.mdi-weather-sunset:before {
  content: "";
}

.mdi-weather-sunset-down:before {
  content: "";
}

.mdi-weather-sunset-up:before {
  content: "";
}

.mdi-weather-windy:before {
  content: "";
}

.mdi-weather-windy-variant:before {
  content: "";
}

.mdi-web:before {
  content: "";
}

.mdi-webcam:before {
  content: "";
}

.mdi-weight:before {
  content: "";
}

.mdi-weight-kilogram:before {
  content: "";
}

.mdi-whatsapp:before {
  content: "";
}

.mdi-wheelchair-accessibility:before {
  content: "";
}

.mdi-white-balance-auto:before {
  content: "";
}

.mdi-white-balance-incandescent:before {
  content: "";
}

.mdi-white-balance-irradescent:before {
  content: "";
}

.mdi-white-balance-sunny:before {
  content: "";
}

.mdi-wifi:before {
  content: "";
}

.mdi-wifi-off:before {
  content: "";
}

.mdi-wii:before {
  content: "";
}

.mdi-wikipedia:before {
  content: "";
}

.mdi-window-close:before {
  content: "";
}

.mdi-window-closed:before {
  content: "";
}

.mdi-window-maximize:before {
  content: "";
}

.mdi-window-minimize:before {
  content: "";
}

.mdi-window-open:before {
  content: "";
}

.mdi-window-restore:before {
  content: "";
}

.mdi-windows:before {
  content: "";
}

.mdi-wordpress:before {
  content: "";
}

.mdi-worker:before {
  content: "";
}

.mdi-wrap:before {
  content: "";
}

.mdi-wrench:before {
  content: "";
}

.mdi-wunderlist:before {
  content: "";
}

.mdi-xbox:before {
  content: "";
}

.mdi-xbox-controller:before {
  content: "";
}

.mdi-xbox-controller-off:before {
  content: "";
}

.mdi-xda:before {
  content: "";
}

.mdi-xing:before {
  content: "";
}

.mdi-xing-box:before {
  content: "";
}

.mdi-xing-circle:before {
  content: "";
}

.mdi-xml:before {
  content: "";
}

.mdi-yeast:before {
  content: "";
}

.mdi-yelp:before {
  content: "";
}

.mdi-youtube-play:before {
  content: "";
}

.mdi-zip-box:before {
  content: "";
}

.mdi-18px {
  font-size: 18px;
}

.mdi-24px {
  font-size: 24px;
}

.mdi-36px {
  font-size: 36px;
}

.mdi-48px {
  font-size: 48px;
}

.mdi-dark {
  color: rgba(0, 0, 0, 0.54);
}

.mdi-dark.mdi-inactive {
  color: rgba(0, 0, 0, 0.26);
}

.mdi-light {
  color: white;
}

.mdi-light.mdi-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/*# sourceMappingURL=materialdesignicons.css.map */
.icon {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 54px;
  line-height: 56px;
  font-style: normal;
}
.icon:before {
  display: inline-block;
  position: relative;
}

a.icon {
  transition: 0.3s;
}

.icon-rect,
.icon-circle,
.icon-rounded,
.icon-outlined {
  width: 70px;
  height: 70px;
  font-size: 32px;
  line-height: 70px;
  text-align: center;
  border: 2px solid;
}

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

.icon-rounded {
  border-radius: 5px;
}

.icon-outlined {
  position: relative;
}
.icon-outlined, .icon-outlined:after {
  border-radius: 50%;
}
.icon-outlined:after {
  position: absolute;
  top: -7px;
  right: -7px;
  bottom: -7px;
  left: -7px;
  content: "";
  border: 2px solid #f5f5f5;
}

.icon-xxs {
  font-size: 24px;
  line-height: 24px;
}
.icon-xxs.icon-rect, .icon-xxs.icon-rounded, .icon-xxs.icon-circle, .icon-xxs.icon-outlined {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}

.icon-xs {
  font-size: 36px;
  line-height: 36px;
}
.icon-xs.icon-rect, .icon-xs.icon-rounded, .icon-xs.icon-circle, .icon-xs.icon-outlined {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 21px;
}

.icon-sm {
  font-size: 42px;
  line-height: 42px;
}
.icon-sm.icon-rect, .icon-sm.icon-rounded, .icon-sm.icon-circle, .icon-sm.icon-outlined {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 26px;
}

.icon-lg {
  font-size: 72px;
  line-height: 72px;
}
.icon-lg.icon-rect, .icon-lg.icon-rounded, .icon-lg.icon-circle, .icon-lg.icon-outlined {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 36px;
}

.icon-xlg {
  font-size: 96px;
  line-height: 96px;
}
.icon-xlg.icon-rect, .icon-xlg.icon-rounded, .icon-xlg.icon-circle, .icon-xlg.icon-outlined {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 48px;
}

.icon-default {
  color: #434345;
  border-color: #cbcbcb;
}

.icon-darker {
  color: #434345;
  border-color: #434345;
}

.icon-primary {
  color: #3598db;
  border-color: #3598db;
}

.icon-deluge {
  color: #8668ad;
  border-color: #8668ad;
}

.icon-picton-blue {
  color: #55bbeb;
  border-color: #55bbeb;
}

.icon-success {
  color: #abcc37;
  border-color: #abcc37;
}

.icon-warning {
  color: #f5bf2f;
  border-color: #f5bf2f;
}

.icon-danger {
  color: #e50a0a;
  border-color: #e50a0a;
}

.icon-info {
  color: #2e5181;
  border-color: #2e5181;
}

.icon-blue-gray-filled, .icon-red-filled, .icon-carrot-filled, .icon-malibu-filled, .icon-pink-filled, .icon-mantis-filled, .icon-shark-filled, .icon-darkest-filled, .icon-darker-filled {
  color: #fff;
  border: none;
}

.icon-darker-filled {
  background: #434345;
}

.icon-darkest-filled {
  background: #212121;
}

.icon-shark-filled {
  background: -moz-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -webkit-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -o-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: -ms-linear-gradient(45deg, #191919 0%, #434345 100%);
  background: linear-gradient(45deg, #191919 0%, #434345 100%);
}

.icon-mantis-filled {
  background: -moz-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -webkit-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -o-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: -ms-linear-gradient(45deg, #3598db 0%, #84c450 100%);
  background: linear-gradient(45deg, #3598db 0%, #84c450 100%);
}

.icon-pink-filled {
  background: -moz-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -webkit-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -o-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: -ms-linear-gradient(45deg, #8668ad 0%, #695999 100%);
  background: linear-gradient(45deg, #8668ad 0%, #695999 100%);
}

.icon-malibu-filled {
  background: -moz-linear-gradient(45deg, #55bbeb 0%, #2e5181 100%);
  background: -webkit-linear-gradient(45deg, #55bbeb 0%, #2e5181 100%);
  background: -o-linear-gradient(45deg, #55bbeb 0%, #2e5181 100%);
  background: -ms-linear-gradient(45deg, #55bbeb 0%, #2e5181 100%);
  background: linear-gradient(45deg, #55bbeb 0%, #2e5181 100%);
}

.icon-carrot-filled {
  background: -moz-linear-gradient(45deg, #f5bf2f 0%, #F3A43D 100%);
  background: -webkit-linear-gradient(45deg, #f5bf2f 0%, #F3A43D 100%);
  background: -o-linear-gradient(45deg, #f5bf2f 0%, #F3A43D 100%);
  background: -ms-linear-gradient(45deg, #f5bf2f 0%, #F3A43D 100%);
  background: linear-gradient(45deg, #f5bf2f 0%, #F3A43D 100%);
}

.icon-red-filled {
  background: -moz-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -webkit-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -o-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: -ms-linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
  background: linear-gradient(45deg, #e50a0a 0%, #e50a0a 100%);
}

.icon-blue-gray-filled {
  background: -moz-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -webkit-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -o-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: -ms-linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
  background: linear-gradient(45deg, #8668ad 0%, #55bbeb 100%);
}

.icon.icon-sm.mdi-monitor {
  font-size: 36px;
}
.icon.icon-sm.mdi-code-brackets, .icon.icon-sm.mdi-clock, .icon.icon-sm.mdi-vector-arrange-below {
  font-size: 45px;
}
.icon-rect.mdi-vector-arrange-below, .icon-rect.mdi-share-variant, .icon-rect.mdi-magnify, .icon-rect.mdi-monitor,
.icon-circle.mdi-vector-arrange-below,
.icon-circle.mdi-share-variant,
.icon-circle.mdi-magnify,
.icon-circle.mdi-monitor,
.icon-rounded.mdi-vector-arrange-below,
.icon-rounded.mdi-share-variant,
.icon-rounded.mdi-magnify,
.icon-rounded.mdi-monitor,
.icon-outlined.mdi-vector-arrange-below,
.icon-outlined.mdi-share-variant,
.icon-outlined.mdi-magnify,
.icon-outlined.mdi-monitor {
  font-size: 36px;
}
.icon-rect.mdi-brush,
.icon-circle.mdi-brush,
.icon-rounded.mdi-brush,
.icon-outlined.mdi-brush {
  font-size: 38px;
}
.icon-rect.mdi-cube-outline, .icon-rect.mdi-palette,
.icon-circle.mdi-cube-outline,
.icon-circle.mdi-palette,
.icon-rounded.mdi-cube-outline,
.icon-rounded.mdi-palette,
.icon-outlined.mdi-cube-outline,
.icon-outlined.mdi-palette {
  font-size: 40px;
}
.icon-rect.mdi-format-bold, .icon-rect.mdi-spellcheck, .icon-rect.mdi-rocket, .icon-rect.mdi-xml,
.icon-circle.mdi-format-bold,
.icon-circle.mdi-spellcheck,
.icon-circle.mdi-rocket,
.icon-circle.mdi-xml,
.icon-rounded.mdi-format-bold,
.icon-rounded.mdi-spellcheck,
.icon-rounded.mdi-rocket,
.icon-rounded.mdi-xml,
.icon-outlined.mdi-format-bold,
.icon-outlined.mdi-spellcheck,
.icon-outlined.mdi-rocket,
.icon-outlined.mdi-xml {
  font-size: 42px;
}
a.icon-rect.fa-facebook:hover, a.icon-circle.fa-facebook:hover, a.icon-outlined.fa-facebook:hover, a.icon-rounded.fa-facebook:hover {
  color: #fff;
  background: #0956b5;
}
a.icon-rect.fa-twitter:hover, a.icon-circle.fa-twitter:hover, a.icon-outlined.fa-twitter:hover, a.icon-rounded.fa-twitter:hover {
  color: #fff;
  background: #28d4f9;
}
a.icon-rect.fa-google-plus:hover, a.icon-circle.fa-google-plus:hover, a.icon-outlined.fa-google-plus:hover, a.icon-rounded.fa-google-plus:hover {
  color: #fff;
  background: #f96a23;
}
a.icon-rect.fa-linkedin:hover, a.icon-circle.fa-linkedin:hover, a.icon-outlined.fa-linkedin:hover, a.icon-rounded.fa-linkedin:hover {
  color: #fff;
  background: #0E7EB5;
}
a.icon-rect.fa-500px:hover, a.icon-circle.fa-500px:hover, a.icon-outlined.fa-500px:hover, a.icon-rounded.fa-500px:hover {
  color: #fff;
  background: #bebebe;
}
a.icon-rect.fa-behance:hover, a.icon-circle.fa-behance:hover, a.icon-outlined.fa-behance:hover, a.icon-rounded.fa-behance:hover {
  background: #64aae1;
  color: #fff;
}

.fontawesome-icon-list {
  text-align: left;
}
.fontawesome-icon-list .icon-list-item {
  padding: 15px 0 15px 20px;
  font-size: 18px;
  line-height: 18px;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fontawesome-icon-list .icon-list-item i {
  padding-right: 15px;
  font-size: 22px;
  line-height: 22px;
  float: left;
}
.fontawesome-icon-list .icon-list-item:hover {
  background: #3598db;
  color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.fontawesome-icon-list .icon-list-item:hover i {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.input-group-addon {
  transition: 0.3s;
  vertical-align: middle;
  color: #fff;
}
.input-group-addon > .input-group-icon {
  position: relative;
  display: inline-block;
}

.input-group-addon-inverse {
  background: #fff;
  border-color: #cbcbcb;
  color: #434345;
}

.input-group .form-control {
  color: #212121;
  background: #fff;
}
.input-group > .input-group-addon > .input-group-icon {
  font-size: 28px;
}

.input-group.input-group-sm .form-control {
  height: 40px;
}
.input-group.input-group-sm > .input-group-addon > .input-group-icon {
  font-size: 19px;
  line-height: 1;
}
.input-group.input-group-sm > .input-group-addon > .input-group-icon.mdi {
  top: 2px;
}
.input-group.input-group-sm > .input-group-btn > .btn {
  font-size: 12px;
}

.input-group.input-group-lg .form-control {
  height: 70px;
}
.input-group.input-group-lg > .input-group-addon > .input-group-icon {
  font-size: 32px;
}

.input-group .form-control:not(:first-child):not(:last-child).form-control-last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.input-group-btn > .btn + .btn {
  margin-left: 0;
}

.label {
  padding: 0.2em 0.6em 0.2em;
}

.label-custom {
  display: inline-block;
  padding: 8px;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.06em;
  transition: 0.3s;
}
h1 .label-custom, h2 .label-custom, h3 .label-custom, h4 .label-custom, h5 .label-custom, h6 .label-custom, p .label-custom {
  margin-left: 10px;
}
.label-custom, .label-custom:hover, .label-custom:focus {
  color: #fff;
}

.label-ellipsis-custom {
  border-radius: 10px;
}

.label-rounded-custom {
  border-radius: 3px;
}

.label-xs-custom {
  padding: 3px 5px;
}

.label-sm-custom {
  padding: 7px;
}

.label-lg-custom {
  font-size: 12px;
  padding: 9px 10px;
}

.label-xl-custom {
  font-size: 12px;
  padding: 10px 12px;
}

.label-deluge {
  color: #fff;
  background-color: #8668ad;
}
.label-deluge[href]:hover, .label-deluge[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #6d5092;
}

.label-default {
  color: #212529;
  background-color: #cbcbcb;
}
.label-default[href]:hover, .label-default[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #b2b2b2;
}

.label-primary {
  color: #fff;
  background-color: #3598db;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #217dbc;
}

.label-success {
  color: #212529;
  background-color: #abcc37;
}
.label-success[href]:hover, .label-success[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #8aa62a;
}

.label-info {
  color: #fff;
  background-color: #2e5181;
}
.label-info[href]:hover, .label-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #21395b;
}

.label-warning {
  color: #212529;
  background-color: #f5bf2f;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e6aa0b;
}

.label-danger {
  color: #fff;
  background-color: #e50a0a;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #b40808;
}

html .page .inset-left-0 {
  padding-left: 0;
}
html .page .inset-left-10 {
  padding-left: 10px;
}
html .page .inset-left-20 {
  padding-left: 20px;
}
html .page .inset-left-30 {
  padding-left: 30px;
}
html .page .inset-left-50 {
  padding-left: 50px;
}
html .page .inset-left-80 {
  padding-left: 80px;
}
html .page .inset-left-93 {
  padding-left: 93px;
}
html .page .inset-left-100 {
  padding-left: 100px;
}
html .page .inset-left-115 {
  padding-left: 115px;
}
@media (min-width: 480px) {
  html .page .inset-sm-left-0 {
    padding-left: 0;
  }
  html .page .inset-sm-left-10 {
    padding-left: 10px;
  }
  html .page .inset-sm-left-20 {
    padding-left: 20px;
  }
  html .page .inset-sm-left-30 {
    padding-left: 30px;
  }
  html .page .inset-sm-left-50 {
    padding-left: 50px;
  }
  html .page .inset-sm-left-80 {
    padding-left: 80px;
  }
  html .page .inset-sm-left-93 {
    padding-left: 93px;
  }
  html .page .inset-sm-left-100 {
    padding-left: 100px;
  }
  html .page .inset-sm-left-115 {
    padding-left: 115px;
  }
}
@media (min-width: 768px) {
  html .page .inset-md-left-0 {
    padding-left: 0;
  }
  html .page .inset-md-left-10 {
    padding-left: 10px;
  }
  html .page .inset-md-left-20 {
    padding-left: 20px;
  }
  html .page .inset-md-left-30 {
    padding-left: 30px;
  }
  html .page .inset-md-left-50 {
    padding-left: 50px;
  }
  html .page .inset-md-left-80 {
    padding-left: 80px;
  }
  html .page .inset-md-left-93 {
    padding-left: 93px;
  }
  html .page .inset-md-left-100 {
    padding-left: 100px;
  }
  html .page .inset-md-left-115 {
    padding-left: 115px;
  }
}
@media (min-width: 992px) {
  html .page .inset-lg-left-0 {
    padding-left: 0;
  }
  html .page .inset-lg-left-10 {
    padding-left: 10px;
  }
  html .page .inset-lg-left-20 {
    padding-left: 20px;
  }
  html .page .inset-lg-left-30 {
    padding-left: 30px;
  }
  html .page .inset-lg-left-50 {
    padding-left: 50px;
  }
  html .page .inset-lg-left-80 {
    padding-left: 80px;
  }
  html .page .inset-lg-left-93 {
    padding-left: 93px;
  }
  html .page .inset-lg-left-100 {
    padding-left: 100px;
  }
  html .page .inset-lg-left-115 {
    padding-left: 115px;
  }
}
@media (min-width: 1200px) {
  html .page .inset-xl-left-0 {
    padding-left: 0;
  }
  html .page .inset-xl-left-10 {
    padding-left: 10px;
  }
  html .page .inset-xl-left-20 {
    padding-left: 20px;
  }
  html .page .inset-xl-left-30 {
    padding-left: 30px;
  }
  html .page .inset-xl-left-50 {
    padding-left: 50px;
  }
  html .page .inset-xl-left-80 {
    padding-left: 80px;
  }
  html .page .inset-xl-left-93 {
    padding-left: 93px;
  }
  html .page .inset-xl-left-100 {
    padding-left: 100px;
  }
  html .page .inset-xl-left-115 {
    padding-left: 115px;
  }
}
@media (min-width: 1600px) {
  html .page .inset-xxl-left-0 {
    padding-left: 0;
  }
  html .page .inset-xxl-left-10 {
    padding-left: 10px;
  }
  html .page .inset-xxl-left-20 {
    padding-left: 20px;
  }
  html .page .inset-xxl-left-30 {
    padding-left: 30px;
  }
  html .page .inset-xxl-left-50 {
    padding-left: 50px;
  }
  html .page .inset-xxl-left-80 {
    padding-left: 80px;
  }
  html .page .inset-xxl-left-93 {
    padding-left: 93px;
  }
  html .page .inset-xxl-left-100 {
    padding-left: 100px;
  }
  html .page .inset-xxl-left-115 {
    padding-left: 115px;
  }
}
html .page .inset-right-0 {
  padding-right: 0;
}
html .page .inset-right-10 {
  padding-right: 10px;
}
html .page .inset-right-20 {
  padding-right: 20px;
}
html .page .inset-right-30 {
  padding-right: 30px;
}
html .page .inset-right-50 {
  padding-right: 50px;
}
html .page .inset-right-80 {
  padding-right: 80px;
}
html .page .inset-right-93 {
  padding-right: 93px;
}
html .page .inset-right-100 {
  padding-right: 100px;
}
html .page .inset-right-115 {
  padding-right: 115px;
}
@media (min-width: 480px) {
  html .page .inset-sm-right-0 {
    padding-right: 0;
  }
  html .page .inset-sm-right-10 {
    padding-right: 10px;
  }
  html .page .inset-sm-right-20 {
    padding-right: 20px;
  }
  html .page .inset-sm-right-30 {
    padding-right: 30px;
  }
  html .page .inset-sm-right-50 {
    padding-right: 50px;
  }
  html .page .inset-sm-right-80 {
    padding-right: 80px;
  }
  html .page .inset-sm-right-93 {
    padding-right: 93px;
  }
  html .page .inset-sm-right-100 {
    padding-right: 100px;
  }
  html .page .inset-sm-right-115 {
    padding-right: 115px;
  }
}
@media (min-width: 768px) {
  html .page .inset-md-right-0 {
    padding-right: 0;
  }
  html .page .inset-md-right-10 {
    padding-right: 10px;
  }
  html .page .inset-md-right-20 {
    padding-right: 20px;
  }
  html .page .inset-md-right-30 {
    padding-right: 30px;
  }
  html .page .inset-md-right-50 {
    padding-right: 50px;
  }
  html .page .inset-md-right-80 {
    padding-right: 80px;
  }
  html .page .inset-md-right-93 {
    padding-right: 93px;
  }
  html .page .inset-md-right-100 {
    padding-right: 100px;
  }
  html .page .inset-md-right-115 {
    padding-right: 115px;
  }
}
@media (min-width: 992px) {
  html .page .inset-lg-right-0 {
    padding-right: 0;
  }
  html .page .inset-lg-right-10 {
    padding-right: 10px;
  }
  html .page .inset-lg-right-20 {
    padding-right: 20px;
  }
  html .page .inset-lg-right-30 {
    padding-right: 30px;
  }
  html .page .inset-lg-right-50 {
    padding-right: 50px;
  }
  html .page .inset-lg-right-80 {
    padding-right: 80px;
  }
  html .page .inset-lg-right-93 {
    padding-right: 93px;
  }
  html .page .inset-lg-right-100 {
    padding-right: 100px;
  }
  html .page .inset-lg-right-115 {
    padding-right: 115px;
  }
}
@media (min-width: 1200px) {
  html .page .inset-xl-right-0 {
    padding-right: 0;
  }
  html .page .inset-xl-right-10 {
    padding-right: 10px;
  }
  html .page .inset-xl-right-20 {
    padding-right: 20px;
  }
  html .page .inset-xl-right-30 {
    padding-right: 30px;
  }
  html .page .inset-xl-right-50 {
    padding-right: 50px;
  }
  html .page .inset-xl-right-80 {
    padding-right: 80px;
  }
  html .page .inset-xl-right-93 {
    padding-right: 93px;
  }
  html .page .inset-xl-right-100 {
    padding-right: 100px;
  }
  html .page .inset-xl-right-115 {
    padding-right: 115px;
  }
}
@media (min-width: 1600px) {
  html .page .inset-xxl-right-0 {
    padding-right: 0;
  }
  html .page .inset-xxl-right-10 {
    padding-right: 10px;
  }
  html .page .inset-xxl-right-20 {
    padding-right: 20px;
  }
  html .page .inset-xxl-right-30 {
    padding-right: 30px;
  }
  html .page .inset-xxl-right-50 {
    padding-right: 50px;
  }
  html .page .inset-xxl-right-80 {
    padding-right: 80px;
  }
  html .page .inset-xxl-right-93 {
    padding-right: 93px;
  }
  html .page .inset-xxl-right-100 {
    padding-right: 100px;
  }
  html .page .inset-xxl-right-115 {
    padding-right: 115px;
  }
}

.inset-left-7p {
  padding-left: 7%;
}

.inset-right-7p {
  padding-right: 7%;
}

.inset-left-11p {
  padding-left: 11%;
}

.inset-right-11p {
  padding-right: 11%;
}

html .page .offset-top-0 {
  margin-top: 0;
}
html .page .offset-top-4 {
  margin-top: 4px;
}
html .page .offset-top-10 {
  margin-top: 10px;
}
html .page .offset-top-14 {
  margin-top: 14px;
}
html .page .offset-top-20 {
  margin-top: 20px;
}
html .page .offset-top-24 {
  margin-top: 24px;
}
html .page .offset-top-30 {
  margin-top: 30px;
}
html .page .offset-top-34 {
  margin-top: 34px;
}
html .page .offset-top-41 {
  margin-top: 41px;
}
html .page .offset-top-50 {
  margin-top: 50px;
}
html .page .offset-top-66 {
  margin-top: 66px;
}
html .page .offset-top-98 {
  margin-top: 98px;
}
html .page .offset-top-110 {
  margin-top: 110px;
}
html .page .offset-top-124 {
  margin-top: 124px;
}
@media (min-width: 480px) {
  html .page .offset-sm-top-0 {
    margin-top: 0;
  }
  html .page .offset-sm-top-4 {
    margin-top: 4px;
  }
  html .page .offset-sm-top-10 {
    margin-top: 10px;
  }
  html .page .offset-sm-top-14 {
    margin-top: 14px;
  }
  html .page .offset-sm-top-20 {
    margin-top: 20px;
  }
  html .page .offset-sm-top-24 {
    margin-top: 24px;
  }
  html .page .offset-sm-top-30 {
    margin-top: 30px;
  }
  html .page .offset-sm-top-34 {
    margin-top: 34px;
  }
  html .page .offset-sm-top-41 {
    margin-top: 41px;
  }
  html .page .offset-sm-top-50 {
    margin-top: 50px;
  }
  html .page .offset-sm-top-66 {
    margin-top: 66px;
  }
  html .page .offset-sm-top-98 {
    margin-top: 98px;
  }
  html .page .offset-sm-top-110 {
    margin-top: 110px;
  }
  html .page .offset-sm-top-124 {
    margin-top: 124px;
  }
}
@media (min-width: 768px) {
  html .page .offset-md-top-0 {
    margin-top: 0;
  }
  html .page .offset-md-top-4 {
    margin-top: 4px;
  }
  html .page .offset-md-top-10 {
    margin-top: 10px;
  }
  html .page .offset-md-top-14 {
    margin-top: 14px;
  }
  html .page .offset-md-top-20 {
    margin-top: 20px;
  }
  html .page .offset-md-top-24 {
    margin-top: 24px;
  }
  html .page .offset-md-top-30 {
    margin-top: 30px;
  }
  html .page .offset-md-top-34 {
    margin-top: 34px;
  }
  html .page .offset-md-top-41 {
    margin-top: 41px;
  }
  html .page .offset-md-top-50 {
    margin-top: 50px;
  }
  html .page .offset-md-top-66 {
    margin-top: 66px;
  }
  html .page .offset-md-top-98 {
    margin-top: 98px;
  }
  html .page .offset-md-top-110 {
    margin-top: 110px;
  }
  html .page .offset-md-top-124 {
    margin-top: 124px;
  }
}
@media (min-width: 992px) {
  html .page .offset-lg-top-0 {
    margin-top: 0;
  }
  html .page .offset-lg-top-4 {
    margin-top: 4px;
  }
  html .page .offset-lg-top-10 {
    margin-top: 10px;
  }
  html .page .offset-lg-top-14 {
    margin-top: 14px;
  }
  html .page .offset-lg-top-20 {
    margin-top: 20px;
  }
  html .page .offset-lg-top-24 {
    margin-top: 24px;
  }
  html .page .offset-lg-top-30 {
    margin-top: 30px;
  }
  html .page .offset-lg-top-34 {
    margin-top: 34px;
  }
  html .page .offset-lg-top-41 {
    margin-top: 41px;
  }
  html .page .offset-lg-top-50 {
    margin-top: 50px;
  }
  html .page .offset-lg-top-66 {
    margin-top: 66px;
  }
  html .page .offset-lg-top-98 {
    margin-top: 98px;
  }
  html .page .offset-lg-top-110 {
    margin-top: 110px;
  }
  html .page .offset-lg-top-124 {
    margin-top: 124px;
  }
}
@media (min-width: 1200px) {
  html .page .offset-xl-top-0 {
    margin-top: 0;
  }
  html .page .offset-xl-top-4 {
    margin-top: 4px;
  }
  html .page .offset-xl-top-10 {
    margin-top: 10px;
  }
  html .page .offset-xl-top-14 {
    margin-top: 14px;
  }
  html .page .offset-xl-top-20 {
    margin-top: 20px;
  }
  html .page .offset-xl-top-24 {
    margin-top: 24px;
  }
  html .page .offset-xl-top-30 {
    margin-top: 30px;
  }
  html .page .offset-xl-top-34 {
    margin-top: 34px;
  }
  html .page .offset-xl-top-41 {
    margin-top: 41px;
  }
  html .page .offset-xl-top-50 {
    margin-top: 50px;
  }
  html .page .offset-xl-top-66 {
    margin-top: 66px;
  }
  html .page .offset-xl-top-98 {
    margin-top: 98px;
  }
  html .page .offset-xl-top-110 {
    margin-top: 110px;
  }
  html .page .offset-xl-top-124 {
    margin-top: 124px;
  }
}
@media (min-width: 1600px) {
  html .page .offset-xxl-top-0 {
    margin-top: 0;
  }
  html .page .offset-xxl-top-4 {
    margin-top: 4px;
  }
  html .page .offset-xxl-top-10 {
    margin-top: 10px;
  }
  html .page .offset-xxl-top-14 {
    margin-top: 14px;
  }
  html .page .offset-xxl-top-20 {
    margin-top: 20px;
  }
  html .page .offset-xxl-top-24 {
    margin-top: 24px;
  }
  html .page .offset-xxl-top-30 {
    margin-top: 30px;
  }
  html .page .offset-xxl-top-34 {
    margin-top: 34px;
  }
  html .page .offset-xxl-top-41 {
    margin-top: 41px;
  }
  html .page .offset-xxl-top-50 {
    margin-top: 50px;
  }
  html .page .offset-xxl-top-66 {
    margin-top: 66px;
  }
  html .page .offset-xxl-top-98 {
    margin-top: 98px;
  }
  html .page .offset-xxl-top-110 {
    margin-top: 110px;
  }
  html .page .offset-xxl-top-124 {
    margin-top: 124px;
  }
}

.rd-mailform {
  position: relative;
}

label {
  margin-bottom: 10px;
  font-weight: 400;
}

.input-sm,
.input-lg,
.form-control {
  font-size: 16px;
}
.input-sm, .input-sm:focus,
.input-lg,
.input-lg:focus,
.form-control,
.form-control:focus {
  box-shadow: none;
}

textarea.form-control {
  height: 170px;
  min-height: 50px;
  max-height: 370px;
  resize: vertical;
}

.form-control {
  height: 50px;
  -webkit-appearance: none;
  line-height: 28px;
}
.form-control:focus {
  outline: 0;
}

.input-sm {
  height: 40px;
  line-height: 24px;
}

.input-lg {
  height: 70px;
  line-height: 32px;
}

.form-control-rect {
  border-radius: 0;
}

.form-control-ellipse.form-control {
  border-radius: 25px;
}
.form-control-ellipse.form-control-sm, .input-group-sm > .form-control-ellipse.form-control,
.input-group-sm > .input-group-prepend > .form-control-ellipse.input-group-text,
.input-group-sm > .input-group-append > .form-control-ellipse.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-ellipse.btn,
.input-group-sm > .input-group-append > .form-control-ellipse.btn {
  border-radius: 20px;
}
.form-control-ellipse.form-control-lg, .input-group-lg > .form-control-ellipse.form-control,
.input-group-lg > .input-group-prepend > .form-control-ellipse.input-group-text,
.input-group-lg > .input-group-append > .form-control-ellipse.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-ellipse.btn,
.input-group-lg > .input-group-append > .form-control-ellipse.btn {
  border-radius: 35px;
}

.form-control-impressed {
  background: #f7f7f7;
  border: none;
}
.form-control-impressed, .form-control-impressed:focus {
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.form-control-impressed.form-validation-inside + .form-validation {
  background: #f7f7f7;
}

.form-group {
  position: relative;
}

.form-label {
  position: absolute;
  top: 25px;
  left: 16px;
  font-size: 16px;
  color: #212121;
  pointer-events: none;
  z-index: 9;
  transition: 0.3s;
  transform: translateY(-50%);
  transform-origin: 0 0;
}
.form-label.focus {
  color: #55bbeb;
  top: 0;
  transform: scale(0.6) translateY(0);
}
.form-label.auto-fill {
  color: #212121;
}

.form-label-sm {
  top: 20px;
  left: 12px;
}
.form-label-sm.focus {
  top: -1px;
}

.form-label-lg {
  top: 35px;
  left: 24px;
}
.form-label-lg.focus {
  top: 8px;
}

@media (min-width: 768px) {
  .form-label-outside {
    position: static;
  }
  .form-label-outside, .form-label-outside.focus, .form-label-outside.auto-fill {
    transform: none;
    color: #212121;
    font-size: 16px;
  }
}

.form-validation {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 10px;
  line-height: 10px;
  margin-top: 2px;
  transition: 0.3s;
}
.form-validation-inside + .form-validation {
  top: 2px;
  margin-top: 0;
  left: 12px;
  background: #fff;
  z-index: 10;
}

.form-control-feedback {
  font-size: 20px;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #e50a0a;
}
.has-error .form-control:not(.form-control-impressed), .has-error .form-control:not(.form-control-impressed):focus {
  border-color: #e50a0a;
  box-shadow: none;
}
.has-error .form-control-impressed, .has-error .form-control-impressed:focus {
  box-shadow: inset 0 0 0 1px #e50a0a;
}
.has-error .input-group-addon {
  color: #fff;
  border-color: #e50a0a;
  background-color: #e50a0a;
}
.has-error .input-group-btn > .btn {
  border-color: #e50a0a;
  background: #e50a0a;
}
.has-error .form-validation {
  color: #e50a0a;
}

.has-success .help-block,
.has-success .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: #84c450;
}
.has-success .form-control:not(.form-control-impressed), .has-success .form-control:not(.form-control-impressed):focus {
  border-color: #abcc37;
  box-shadow: none;
}
.has-success .form-control-impressed, .has-success .form-control-impressed:focus {
  box-shadow: inset 0 0 0 1px #abcc37;
}
.has-success .input-group-addon {
  color: #fff;
  border-color: #abcc37;
  background-color: #abcc37;
}
.has-success .input-group-btn > .btn {
  border-color: #abcc37;
  background: #abcc37;
}
.has-success .form-validation {
  color: #84c450;
}

.has-warning .help-block,
.has-warning .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: #F3A43D;
}
.has-warning .form-control:not(.form-control-impressed), .has-warning .form-control:not(.form-control-impressed):focus {
  border-color: #f5bf2f;
  box-shadow: none;
}
.has-warning .form-control-impressed, .has-warning .form-control-impressed:focus {
  box-shadow: inset 0 0 0 1px #f5bf2f;
}
.has-warning .input-group-addon {
  color: #fff;
  border-color: #f5bf2f;
  background-color: #f5bf2f;
}
.has-warning .input-group-btn > .btn {
  border-color: #f5bf2f;
  background: #f5bf2f;
}
.has-warning .form-validation {
  color: #F3A43D;
}

.has-info .help-block,
.has-info .control-label,
.has-info .radio,
.has-info .checkbox,
.has-info .radio-inline,
.has-info .checkbox-inline, .has-info.radio label, .has-info.checkbox label, .has-info.radio-inline label, .has-info.checkbox-inline label {
  color: #64aae1;
}
.has-info .form-control:not(.form-control-impressed), .has-info .form-control:not(.form-control-impressed):focus {
  border-color: #2e5181;
  box-shadow: none;
}
.has-info .form-control-impressed, .has-info .form-control-impressed:focus {
  box-shadow: inset 0 0 0 1px #2e5181;
}
.has-info .input-group-addon {
  color: #fff;
  border-color: #2e5181;
  background-color: #2e5181;
}
.has-info .input-group-btn > .btn {
  border-color: #2e5181;
  background: #2e5181;
}
.has-info .form-validation {
  color: #64aae1;
}

.has-feedback .form-label ~ .form-control-feedback {
  top: 0;
}
@media (min-width: 768px) {
  .has-feedback .form-label ~ .form-control-feedback {
    top: 34px;
  }
}

.has-feedback .input-sm ~ .form-control-feedback {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.has-feedback .form-control {
  padding-right: 50px;
}

.has-feedback .form-control.input-sm {
  padding-right: 40px;
}

.has-feedback .form-control.input-lg {
  padding-right: 70px;
}

#form-output-global {
  position: fixed;
  bottom: 30px;
  left: 15px;
  visibility: hidden;
  transform: translateX(-500px);
  transition: 0.3s all ease;
  z-index: 9999999;
}
#form-output-global.active {
  transform: translateX(0);
  visibility: visible;
}
@media (min-width: 480px) {
  #form-output-global {
    left: 30px;
  }
}

.form-output {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 10px;
  line-height: 10px;
  margin-top: 2px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.form-output.active {
  opacity: 1;
  visibility: visible;
}
.form-output.error {
  color: #e50a0a;
}
.form-output.success {
  color: #84c450;
}

.radio .radio-custom,
.radio-inline .radio-custom,
.checkbox .checkbox-custom,
.checkbox-inline .checkbox-custom {
  opacity: 0;
}
.radio .radio-custom, .radio .radio-custom-dummy,
.radio-inline .radio-custom,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom,
.checkbox-inline .checkbox-custom-dummy {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: -20px;
  margin-top: 5px;
  outline: none;
  cursor: pointer;
}
.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
  pointer-events: none;
  background: #f5f5f5;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.radio .radio-custom-dummy:after,
.radio-inline .radio-custom-dummy:after,
.checkbox .checkbox-custom-dummy:after,
.checkbox-inline .checkbox-custom-dummy:after {
  position: absolute;
  opacity: 0;
}
.radio .radio-custom:focus,
.radio-inline .radio-custom:focus,
.checkbox .checkbox-custom:focus,
.checkbox-inline .checkbox-custom:focus {
  outline: none;
}

.radio-custom:checked + .radio-custom-dummy:after,
.checkbox-custom:checked + .checkbox-custom-dummy:after {
  opacity: 1;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy {
  border-radius: 50%;
}
.radio .radio-custom-dummy:after,
.radio-inline .radio-custom-dummy:after {
  content: "";
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #434345;
  border-radius: 50%;
}

.checkbox,
.checkbox-inline {
  padding-left: 20px;
}
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
  pointer-events: none;
  border-radius: 3px;
  margin-left: 0;
  left: 0;
}
.checkbox .checkbox-custom-dummy:after,
.checkbox-inline .checkbox-custom-dummy:after {
  content: "";
  font-family: "Material Design Icons";
  font-size: 20px;
  line-height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  color: #434345;
}

.form-search {
  position: relative;
}
.form-search .form-group {
  margin-bottom: 0;
}

.form-search-submit {
  position: absolute;
  font-size: 24px;
  right: 8px;
  top: 0;
  bottom: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: #434345;
  transition: 0.3s all ease;
}
.form-search-submit:hover, .form-search-submit:focus {
  color: #3598db;
  outline: none;
}

.form-search-label {
  color: #212121;
}

.form-search-input {
  padding-right: 35px;
  color: #212121;
}

.box-pricing {
  text-align: left;
}
.box-pricing-title {
  display: flex;
  flex: 0 1 100%;
  flex-direction: row;
  flex-wrap: nowrap;
}
.box-pricing-title > *, .box-pricing-title:after {
  flex: 0 1 auto;
  flex-grow: 0;
}
.box-pricing-title .box-pricing-price {
  margin-top: 0;
}
.box-pricing-title .box-pricing-name {
  padding-top: 5px;
}
.box-pricing-title .box-pricing-dots {
  position: relative;
  flex-grow: 1;
  top: -6px;
  left: -2px;
  border-bottom: 2px dotted #434345;
}
.box-pricing li + li {
  margin-top: 23px;
}

.box-planning {
  display: block;
/*   margin-left: auto;
  margin-right: auto; */
  position: relative;
  padding: 34px;
}
.box-planning-label {
  display: none;
  z-index: 2;
  color: #fff;
}
.box-planning-label span {
  position: absolute;
}
.box-planning h1, .box-planning .h1 {
  margin-bottom: 0;
  margin-top: 0;
}
.box-planning h2, .box-planning .h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.box-planning .small {
  margin-top: 0;
  font-size: 13px;
  margin-bottom: 18px;
}
.box-planning .btn {
  margin-top: 35px;
}
.box-planning .divider {
  width: 100%;
  margin-top: 18px;
  margin-bottom: 21px;
}
.box-planning .plan-price sup {
  font-size: 35%;
  top: -1.2em;
}
.box-planning .plan-price sup.big {
  font-size: 60%;
  top: -0.6em;
}
.box-planning .plan-price sub {
  font-size: 35%;
  bottom: 0;
}
.box-planning .list span + span, .box-planning .list-separated span + span {
  margin-left: 6px;
}
.box-planning .box-planning-body {
  padding: 11% 8% 8% 8%;
  border: 1px solid #f5f5f5;
  border-top: none;
}
.box-planning.active .box-planning-label {
  display: block;
}

.box-planning-type-1 {
  /* max-width: 230px; */
  overflow: hidden;
}
.box-planning-type-1 .box-planning-label {
  position: absolute;
  top: -35px;
  right: -35px;
  font-size: 11px;
  font-weight: 900;
  line-height: 34px;
  text-transform: uppercase;
  letter-spacing: 0.119em;
}
.box-planning-type-1 .box-planning-label > span {
  right: 26px;
  top: 53px;
  transform: rotate(46deg);
}
.box-planning-type-1 .box-planning-label .box-planning-svg {
  width: 150px;
  height: 150px;
  fill: #3598db;
}
.box-planning-type-1.active {
  /* box-shadow: 0 5px 23px 0 rgba(0, 0, 0, 0.15); */
}
.box-planning-type-1.active .h1 {
  color: #3598db;
  background: -webkit-linear-gradient(0deg, #3598db 0%, #84c450 100%);
  /* safari5.1+,chrome10+ */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box-planning-type-2 {
  max-width: 320px;
}
.box-planning-type-2 .box-planning-label {
  position: absolute;
  top: 25px;
  right: -17px;
}
.box-planning-type-2 .box-planning-label span {
  right: 10px;
  top: 10px;
  transform: rotate(-27deg);
}
.box-planning-type-2 .box-planning-label .box-planning-svg {
  width: 75px;
  height: 75px;
}
.box-planning-type-2.active {
  box-shadow: 0 5px 23px 0 rgba(0, 0, 0, 0.15);
}

.box-planning-type-1,
.box-planning-type-2 {
  border: 1px solid #f5f5f5;
}

.box-planning-type-3, .box-planning-type-4 {
  max-width: 295px;
  padding: 0;
}
.box-planning-type-3 .box-planning-header, .box-planning-type-4 .box-planning-header {
  padding: 11%;
}
.box-planning-type-3 .box-planning-header h2, .box-planning-type-3 .box-planning-header .h2, .box-planning-type-4 .box-planning-header h2, .box-planning-type-4 .box-planning-header .h2 {
  margin-bottom: 0;
}
.box-planning-type-3 .box-planning-header h3, .box-planning-type-3 .box-planning-header .h3, .box-planning-type-4 .box-planning-header h3, .box-planning-type-4 .box-planning-header .h3 {
  margin-top: 5px;
  margin-bottom: 7px;
}
.box-planning-type-3 .btn, .box-planning-type-4 .btn {
  margin-top: 25px;
}
.box-planning-type-3 .btn-default, .box-planning-type-4 .btn-default {
  color: #fff;
  background-color: #434345;
  border-color: #434345;
}
.box-planning-type-3 .btn-default:focus, .box-planning-type-3 .btn-default.focus, .box-planning-type-3 .btn-default:hover, .box-planning-type-3 .btn-default:active, .box-planning-type-3 .btn-default.active, .open > .box-planning-type-3 .btn-default.dropdown-toggle, .box-planning-type-4 .btn-default:focus, .box-planning-type-4 .btn-default.focus, .box-planning-type-4 .btn-default:hover, .box-planning-type-4 .btn-default:active, .box-planning-type-4 .btn-default.active, .open > .box-planning-type-4 .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #3598db;
  border-color: #3598db;
}
.box-planning-type-3 .btn-default:active, .box-planning-type-3 .btn-default.active, .open > .box-planning-type-3 .btn-default.dropdown-toggle, .box-planning-type-4 .btn-default:active, .box-planning-type-4 .btn-default.active, .open > .box-planning-type-4 .btn-default.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.box-planning-type-3 .btn-default:active:hover, .box-planning-type-3 .btn-default:active:focus, .box-planning-type-3 .btn-default:active.focus, .box-planning-type-3 .btn-default.active:hover, .box-planning-type-3 .btn-default.active:focus, .box-planning-type-3 .btn-default.active.focus, .open > .box-planning-type-3 .btn-default.dropdown-toggle:hover, .open > .box-planning-type-3 .btn-default.dropdown-toggle:focus, .open > .box-planning-type-3 .btn-default.dropdown-toggle.focus, .box-planning-type-4 .btn-default:active:hover, .box-planning-type-4 .btn-default:active:focus, .box-planning-type-4 .btn-default:active.focus, .box-planning-type-4 .btn-default.active:hover, .box-planning-type-4 .btn-default.active:focus, .box-planning-type-4 .btn-default.active.focus, .open > .box-planning-type-4 .btn-default.dropdown-toggle:hover, .open > .box-planning-type-4 .btn-default.dropdown-toggle:focus, .open > .box-planning-type-4 .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #3598db;
  border-color: #3598db;
}
.box-planning-type-3 .btn-default.disabled, .box-planning-type-3 .btn-default[disabled], fieldset[disabled] .box-planning-type-3 .btn-default, .box-planning-type-4 .btn-default.disabled, .box-planning-type-4 .btn-default[disabled], fieldset[disabled] .box-planning-type-4 .btn-default {
  pointer-events: none;
  opacity: 0.5;
}
.box-planning-type-3 .btn-default .badge, .box-planning-type-4 .btn-default .badge {
  color: #434345;
  background-color: #fff;
}

.box-planning-type-4 {
  max-width: 270px;
}

@media (min-width: 992px) {
  .box-planning-type-1,
.box-planning-type-2 {
    border: none;
  }
}
.context-light .form-control-impressed {
  background: rgba(255, 255, 255, 0.6);
}
.context-light .form-control-impressed {
  box-shadow: none;
}
.context-light .form-label.focus {
  color: #434345;
}
.context-light .quote-outboxed .quote-body {
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}
.context-light .quote-outboxed .quote-body:before {
  color: #f5f5f5;
}
.context-light .quote-outboxed .quote-body:after {
  border-color: #fff transparent transparent transparent;
}

.context-dark, .bg-deluge, .context-dark .btn-link, .bg-deluge .btn-link, .context-dark .form-label, .bg-deluge .form-label, .context-dark .form-label-outside.focus, .bg-deluge .form-label-outside.focus,
.context-dark .select2-container--bootstrap .select2-selection--single .select2-selection__rendered,
.bg-deluge .select2-container--bootstrap .select2-selection--single .select2-selection__rendered,
.context-dark .select2-container--bootstrap .select2-selection,
.bg-deluge .select2-container--bootstrap .select2-selection,
.context-dark h1,
.bg-deluge h1, .context-dark .h1, .bg-deluge .h1, .context-dark h2, .bg-deluge h2, .context-dark .h2, .bg-deluge .h2, .context-dark h3, .bg-deluge h3, .context-dark .h3, .bg-deluge .h3, .context-dark h4, .bg-deluge h4, .context-dark .h4, .bg-deluge .h4, .context-dark h5, .bg-deluge h5, .context-dark .h5, .bg-deluge .h5, .context-dark h6, .bg-deluge h6, .context-dark .h6, .bg-deluge .h6 {
  color: #fff;
}
.context-dark .form-label.auto-fill, .bg-deluge .form-label.auto-fill {
  color: #212121;
}
.context-dark .btn-primary:focus, .bg-deluge .btn-primary:focus, .context-dark .btn-primary:hover, .bg-deluge .btn-primary:hover {
  color: #434345;
  background: #fff;
  border-color: #fff;
}
.context-dark .countdown-custom .countdown-amount, .bg-deluge .countdown-custom .countdown-amount, .context-dark .countdown-custom .countdown-period, .bg-deluge .countdown-custom .countdown-period {
  color: #fff;
}
.context-dark .form-group > .form-control, .bg-deluge .form-group > .form-control {
  color: #fff;
}
.context-dark .form-group > .form-control::-webkit-input-placeholder, .bg-deluge .form-group > .form-control::-webkit-input-placeholder {
  color: #fff;
}
.context-dark .form-group > .form-control::-moz-placeholder, .bg-deluge .form-group > .form-control::-moz-placeholder {
  color: #fff;
}
.context-dark .form-group > .form-control:-ms-input-placeholder, .bg-deluge .form-group > .form-control:-ms-input-placeholder {
  color: #fff;
}
.context-dark .form-group > .form-control:-moz-placeholder, .bg-deluge .form-group > .form-control:-moz-placeholder {
  color: #fff;
}
.context-dark .btn-default, .bg-deluge .btn-default {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.context-dark .btn-default:focus, .bg-deluge .btn-default:focus, .context-dark .btn-default.focus, .bg-deluge .btn-default.focus, .context-dark .btn-default:hover, .bg-deluge .btn-default:hover, .context-dark .btn-default:active, .bg-deluge .btn-default:active, .context-dark .btn-default.active, .bg-deluge .btn-default.active, .open > .context-dark .btn-default.dropdown-toggle, .open > .bg-deluge .btn-default.dropdown-toggle {
  color: #434345;
  background-color: #fff;
  border-color: #fff;
}
.context-dark .btn-default:active, .bg-deluge .btn-default:active, .context-dark .btn-default.active, .bg-deluge .btn-default.active, .open > .context-dark .btn-default.dropdown-toggle, .open > .bg-deluge .btn-default.dropdown-toggle {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.context-dark .btn-default:active:hover, .bg-deluge .btn-default:active:hover, .context-dark .btn-default:active:focus, .bg-deluge .btn-default:active:focus, .context-dark .btn-default:active.focus, .bg-deluge .btn-default:active.focus, .context-dark .btn-default.active:hover, .bg-deluge .btn-default.active:hover, .context-dark .btn-default.active:focus, .bg-deluge .btn-default.active:focus, .context-dark .btn-default.active.focus, .bg-deluge .btn-default.active.focus, .open > .context-dark .btn-default.dropdown-toggle:hover, .open > .bg-deluge .btn-default.dropdown-toggle:hover, .open > .context-dark .btn-default.dropdown-toggle:focus, .open > .bg-deluge .btn-default.dropdown-toggle:focus, .open > .context-dark .btn-default.dropdown-toggle.focus, .open > .bg-deluge .btn-default.dropdown-toggle.focus {
  color: #434345;
  background-color: #fff;
  border-color: #fff;
}
.context-dark .btn-default.disabled, .bg-deluge .btn-default.disabled, .context-dark .btn-default[disabled], .bg-deluge .btn-default[disabled], fieldset[disabled] .context-dark .btn-default, fieldset[disabled] .bg-deluge .btn-default {
  pointer-events: none;
  opacity: 0.5;
}
.context-dark .btn-default .badge, .bg-deluge .btn-default .badge {
  color: transparent;
  background-color: #fff;
}
.context-dark .btn-default.btn-anis-effect:before, .bg-deluge .btn-default.btn-anis-effect:before, .context-dark .btn-default.btn-anis-effect:after, .bg-deluge .btn-default.btn-anis-effect:after {
  background: #fff;
}
.context-dark .owl-carousel .owl-prev, .bg-deluge .owl-carousel .owl-prev,
.context-dark .owl-carousel .owl-next,
.bg-deluge .owl-carousel .owl-next {
  border-color: #fff;
  color: #fff;
}
.context-dark .counter-type-1 .divider, .bg-deluge .counter-type-1 .divider {
  background: #fff;
}
.context-dark .form-control-impressed, .bg-deluge .form-control-impressed {
  background: #191919;
}
.context-dark .contact-info dl dd a, .bg-deluge .contact-info dl dd a {
  color: #9b9b9b;
}
.context-dark .thumbnail-classic-caption, .bg-deluge .thumbnail-classic-caption {
  color: #434345;
}
.context-dark .thumbnail-classic-title, .bg-deluge .thumbnail-classic-title {
  color: #434345;
}
.context-dark .list-inline.p a:hover, .bg-deluge .list-inline.p a:hover {
  color: inherit;
}
.context-dark .has-error .form-validation, .bg-deluge .has-error .form-validation {
  color: #e50a0a;
}
@media (min-width: 768px) {
  .context-dark .form-label-outside.auto-fill, .bg-deluge .form-label-outside.auto-fill {
    color: #fff;
  }
}

.bg-gray-base .form-control-impressed {
  background: #111111;
}

.select2 {
  width: 100% !important;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 11px;
  font-size: 16px;
  transition: 0.3s;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--bootstrap {
  display: block;
}
.select2-container--bootstrap .select2-selection {
  background-color: transparent;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  color: #212121;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  outline: 0;
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  background-color: transparent;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  color: #212121;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.select2-container--bootstrap .select2-search__field {
  outline: 0;
  font-size: 16px;
}
.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #212121;
}
.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #212121;
}
.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #212121;
  opacity: 1;
}
.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #212121;
}
.select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #cbcbcb;
  cursor: not-allowed;
}
.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5;
  color: #434345;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #3598db;
  color: #fff;
}
.select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 11px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -16px;
  padding-left: 32px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -32px;
  padding-left: 48px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 64px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -64px;
  padding-left: 80px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -80px;
  padding-left: 96px;
}
.select2-container--bootstrap .select2-results__group {
  color: #9b9b9b;
  display: block;
  padding: 9px 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
}
.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  border-color: #cbcbcb;
}
@media screen and (prefers-reduced-motion: reduce) {
  .select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
    transition: none;
  }
}
.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #212121 transparent;
  border-width: 0 4px 4px 4px;
}
.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--bootstrap .select2-selection__clear {
  color: #212121;
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-right: 10px;
}
.select2-container--bootstrap .select2-selection__clear:hover {
  color: #333;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #cbcbcb;
  box-shadow: none;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #f5f5f5;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}
.select2-container--bootstrap .select2-dropdown {
  border-color: #cbcbcb;
  overflow-x: hidden;
}
.select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--bootstrap .select2-selection--single {
  text-align: left;
  height: 50px;
  line-height: 33px;
  padding: 9px 28px 9px 16px;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 16px;
  top: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b:before {
  position: absolute;
  top: 50%;
  font-weight: 400;
  margin-top: -10px;
  right: 0;
  height: 20px;
  line-height: 20px;
  content: "";
  font-family: "Material Design Icons";
  font-size: 20px;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #212121;
  padding: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #212121;
}
.select2-container--bootstrap .select2-selection--multiple {
  min-height: 50px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  display: block;
  line-height: 28px;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #212121;
  float: left;
  margin-top: 5px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #212121;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: default;
  float: left;
  margin: 10px 0 0 10px;
  padding: 0 9px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 16px;
  height: 48px;
  line-height: 28px;
  margin-top: 0;
  min-width: 5em;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 4.5px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 9px;
}
.select2-container--bootstrap.input-sm, .select2-container--bootstrap.input-lg {
  border-radius: 0;
  font-size: 12px;
  height: auto;
  line-height: 1;
  padding: 0;
}
.select2-container--bootstrap.input-sm .select2-selection--single, .input-group-sm .select2-container--bootstrap .select2-selection--single, .form-group-sm .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 15px;
  height: 40px;
  line-height: 1.5;
  padding: 7px 24px 7px 12px;
}
.select2-container--bootstrap.input-sm .select2-selection--single .select2-selection__arrow b, .input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -7px;
}
.select2-container--bootstrap.input-sm .select2-selection--multiple, .input-group-sm .select2-container--bootstrap .select2-selection--multiple, .form-group-sm .select2-container--bootstrap .select2-selection--multiple {
  min-height: 40px;
}
.select2-container--bootstrap.input-sm .select2-selection--multiple .select2-selection__choice, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 15px;
  line-height: 1.5;
  margin: 6px 0 0 6px;
  padding: 0 7px;
}
.select2-container--bootstrap.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 12px;
  font-size: 15px;
  height: 38px;
  line-height: 1.5;
}
.select2-container--bootstrap.input-sm .select2-selection--multiple .select2-selection__clear, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 7px;
}
.select2-container--bootstrap.input-lg .select2-selection--single, .input-group-lg .select2-container--bootstrap .select2-selection--single, .form-group-lg .select2-container--bootstrap .select2-selection--single {
  border-radius: 10px;
  font-size: 16px;
  height: 70px;
  line-height: 1.3333333;
  padding: 17px 39px 17px 24px;
}
.select2-container--bootstrap.input-lg .select2-selection--single .select2-selection__arrow, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}
.select2-container--bootstrap.input-lg .select2-selection--single .select2-selection__arrow b, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -17px;
  margin-top: -2.5px;
}
.select2-container--bootstrap.input-lg .select2-selection--multiple, .input-group-lg .select2-container--bootstrap .select2-selection--multiple, .form-group-lg .select2-container--bootstrap .select2-selection--multiple {
  min-height: 70px;
}
.select2-container--bootstrap.input-lg .select2-selection--multiple .select2-selection__choice, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 4px;
  margin: 16px 0 0 12px;
  padding: 0 17px;
}
.select2-container--bootstrap.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 24px;
  font-size: 16px;
  height: 68px;
  line-height: 1.3333333;
}
.select2-container--bootstrap.input-lg .select2-selection--multiple .select2-selection__clear, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 17px;
}
.select2-container--bootstrap.input-lg.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.select2-container--bootstrap.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #212121 transparent;
  border-width: 0 5px 5px 5px;
}
.input-group-lg .select2-container--bootstrap.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.input-group-lg .select2-container--bootstrap.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #212121 transparent;
  border-width: 0 5px 5px 5px;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--single {
  padding-left: 28px;
  padding-right: 16px;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
  /* 1 */
}
.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 16px;
  right: auto;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 8px;
}
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.has-warning .select2-dropdown,
.has-warning .select2-selection {
  border-color: #F3A43D;
}
.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f9d19d;
  border-color: #ee8d0f;
}
.has-warning.select2-drop-active {
  border-color: #ee8d0f;
}
.has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #ee8d0f;
}

.has-error .select2-dropdown,
.has-error .select2-selection {
  border-color: #e50a0a;
}
.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f85d5d;
  border-color: #b40808;
}
.has-error.select2-drop-active {
  border-color: #b40808;
}
.has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #b40808;
}

.has-success .select2-dropdown,
.has-success .select2-selection {
  border-color: #84c450;
}
.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #bade9c;
  border-color: #6ba839;
}
.has-success.select2-drop-active {
  border-color: #6ba839;
}
.has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #6ba839;
}

.input-group .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group.select2-bootstrap-prepend .select2-container--bootstrap .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group.select2-bootstrap-append .select2-container--bootstrap .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-bootstrap-append .select2-container--bootstrap,
.select2-bootstrap-append .input-group-btn,
.select2-bootstrap-append .input-group-btn .btn,
.select2-bootstrap-prepend .select2-container--bootstrap,
.select2-bootstrap-prepend .input-group-btn,
.select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}

.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

.form-inline .select2-container--bootstrap {
  display: inline-block;
}

.fw500 {
	font-weight: 500;
	font-size: 16px;
}
/*# sourceMappingURL=bootstrap-custom.css.map */
