/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Form Enhancements
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Cards
- Alerts
- Progress Bars
- Modals
- Dropdowns
- Tooltips
- Navigation
- Tabs
- Accordion
- Breadcrumbs
- Pagination
- Loading Spinners
- Avatars
- Dividers
- Badges
- Sidebar/Off-canvas
- Image Gallery
- Data Tables
- Stepper/Wizard
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

/* CSS Reset - Remove browser default margins and padding */
html, body {
  margin: 0;
  padding: 0; }

html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1779ba;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
  transition: color 0.25s ease-in-out; }
a:hover,
a:focus {
  color: #14679e;
  text-decoration: none; }
a img {
  border: 0; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 40px;
  padding: 8px 12px; /* Foundation-inspired generous padding */
  background-color: #fff;
  border: 1px solid #cacaca;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  box-sizing: border-box;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  color: #0a0a0a;
  transition: border-color 0.25s ease-in-out, box-shadow 0.5s; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
  resize: vertical; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #1779ba;
  background-color: #fff;
  outline: 0;
  box-shadow: 0 0 5px #cacaca;
  transition: border-color 0.25s ease-in-out, box-shadow 0.5s; }
/* Placeholder styling */
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca; }
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cacaca; }
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
  color: #cacaca;
  opacity: 1; }

label,
legend {
  display: inline-block;
  vertical-align: baseline;
    margin-left: .5rem;
    margin-right: 1rem;
    margin-bottom: 0;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Form Enhancements
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Toggle Switches */
.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px; }

.toggle input {
  opacity: 0;
  width: 0;
  height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 24px; }

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%; }

.toggle input:checked + .toggle-slider {
  background: #33c3f0; }

.toggle input:checked + .toggle-slider:before {
  transform: translateX(26px); }

/* Range Sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #e1e1e1;
  border-radius: 3px;
  outline: none;
  padding: 0;
  margin: 15px 0; }

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #33c3f0;
  cursor: pointer; }

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #33c3f0;
  cursor: pointer;
  border: none; }

/* File Upload */
.file-upload {
  position: relative;
  display: inline-block;
  width: 100%; }

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%; }

.file-upload-area {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background: #fafafa; }

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: #33c3f0;
  background: #f0f8ff; }

.file-upload-text {
  color: #666;
  font-size: 16px; }

.file-upload-icon {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 10px; }

/* Form Validation States */
.form-group {
  position: relative;
  margin-bottom: 1.5rem; }

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
  border-color: #5cb85c;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><path fill="%235cb85c" d="m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px; }

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #d9534f;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23d9534f" d="M7.48 6l3.75-3.75-1.48-1.48L6 4.52 2.25.77.77 2.25 4.52 6 .77 9.75l1.48 1.48L6 7.48l3.75 3.75 1.48-1.48z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px; }

.form-feedback {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 14px; }

.form-feedback.valid {
  color: #5cb85c; }

.form-feedback.invalid {
  color: #d9534f; }

/* Loading states */
.form-group.loading input,
.form-group.loading textarea,
.form-group.loading select {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle cx="8" cy="8" r="7" fill="none" stroke="%23ccc" stroke-width="2"/><circle cx="8" cy="8" r="7" fill="none" stroke="%2333c3f0" stroke-width="2" stroke-linecap="round" stroke-dasharray="43.98" stroke-dashoffset="43.98"><animate attributeName="stroke-dashoffset" values="43.98;0" dur="1.5s" repeatCount="indefinite"/></circle></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }



/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

/* Spacing Utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.5rem !important; }
.m-2 { margin: 1rem !important; }
.m-3 { margin: 1.5rem !important; }
.m-4 { margin: 2rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.5rem !important; }
.mr-2 { margin-right: 1rem !important; }
.mr-3 { margin-right: 1.5rem !important; }
.mr-4 { margin-right: 2rem !important; }
.mr-5 { margin-right: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.5rem !important; }
.ml-2 { margin-left: 1rem !important; }
.ml-3 { margin-left: 1.5rem !important; }
.ml-4 { margin-left: 2rem !important; }
.ml-5 { margin-left: 3rem !important; }

.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-2 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-3 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-4 { margin-left: 2rem !important; margin-right: 2rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-2 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-3 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-4 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pt-4 { padding-top: 2rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.5rem !important; }
.pr-2 { padding-right: 1rem !important; }
.pr-3 { padding-right: 1.5rem !important; }
.pr-4 { padding-right: 2rem !important; }
.pr-5 { padding-right: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 2rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.5rem !important; }
.pl-2 { padding-left: 1rem !important; }
.pl-3 { padding-left: 1.5rem !important; }
.pl-4 { padding-left: 2rem !important; }
.pl-5 { padding-left: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-2 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-3 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-4 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Flexbox Utilities */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !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-stretch { align-items: stretch !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-stretch { align-self: stretch !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Text Transform */
.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Cards
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card {
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e1e1e1;
  font-weight: 600; }

.card-body {
  padding: 20px; }

.card-footer {
  padding: 15px 20px;
  border-top: 1px solid #e1e1e1;
  background: #f9f9f9; }

/* Alerts
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }

.alert-info {
  color: #31708f;
  background: #d9edf7;
  border-color: #bce8f1; }

.alert-success {
  color: #3c763d;
  background: #dff0d8;
  border-color: #d6e9c6; }

.alert-warning {
  color: #8a6d3b;
  background: #fcf8e3;
  border-color: #faebcc; }

.alert-error {
  color: #a94442;
  background: #f2dede;
  border-color: #ebccd1; }

/* Progress Bars
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.progress {
  background: #e1e1e1;
  border-radius: 4px;
  height: 20px;
  margin-bottom: 20px; }

.progress-bar {
  background: #33c3f0;
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease; }

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

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

.progress-bar-error {
  background: #d9534f; }

/* Modals
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000; }

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center; }

.modal-content {
  background: white;
  border-radius: 4px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto; }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px; }

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999; }

/* Dropdowns
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.dropdown {
  position: relative;
  display: inline-block; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-width: 160px;
  z-index: 1000;
  display: none; }

.dropdown.active .dropdown-menu {
  display: block; }

.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #f1f1f1; }

.dropdown-item:last-child {
  border-bottom: none; }

.dropdown-item:hover {
  background: #f9f9f9;
  color: #222; }

/* Tooltips
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tooltip {
  position: relative;
  display: inline-block; }

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s; }

.tooltip:hover::after {
  opacity: 1;
  visibility: visible; }

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.navbar {
  background: rgba(255, 255, 255, 0);
  padding: 0.8rem 0;
  position: static;
  z-index: 1000; }

.navbar .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px; }

.navbar-brand {
  font-size: 120%;
  font-family: 'Rubik Mono One', sans-serif;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  padding: 0;
  margin: 0; }

.navbar-brand:hover {
  color: #000; }

.navbar-brand span {
  color: #0d550a; }

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0; }

.navbar-nav li {
  height: 100%; }

.navbar-nav a {
  color: #000;
  text-decoration: none;
  padding: 0.8rem 1rem;
  font-weight: 400;
  position: relative;
  height: 100%;
  display: block; }

.navbar-nav li:hover {
  background-color: rgba(167, 205, 240, 0.39); }

.navbar-nav a.active {
  background-color: transparent;
  border-bottom: 5px solid #000000;
  color: rgba(6, 6, 6, 1);
  text-transform: uppercase;
  font-size: larger; }

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto; }

/* Mobile Navigation */
@media (max-width: 640px) {
  .navbar {
    display: none; }
}

/* Tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tabs {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px; }

.tab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; }

.tab-item {
  margin-right: 5px; }

.tab-link {
  display: block;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  border-radius: 4px 4px 0 0; }

.tab-link:hover {
  color: #33c3f0;
  background: #f9f9f9; }

.tab-link.active {
  color: #33c3f0;
  border-bottom-color: #33c3f0;
  background: #f9f9f9; }

.tab-content {
  display: none; }

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

/* Accordion
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordion-item {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-bottom: 10px; }

.accordion-header {
  padding: 15px 20px;
  background: #f9f9f9;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease; }

.accordion-header:hover {
  background: #f1f1f1; }

.accordion-header::after {
  content: '+';
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease; }

.accordion-header.active::after {
  content: '+';
  transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px; }

.accordion-content.active {
  padding: 20px; }

/* Breadcrumbs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 14px; }

.breadcrumbs li {
  display: flex;
  align-items: center; }

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: #999; }

.breadcrumbs a {
  color: #33c3f0;
  text-decoration: none; }

.breadcrumbs a:hover {
  text-decoration: underline; }

.breadcrumbs .current {
  color: #555; }

/* Pagination
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pagination {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center; }

.pagination li {
  margin: 0 2px; }

.pagination a,
.pagination span {
  display: block;
  padding: 8px 12px;
  color: #555;
  text-decoration: none;
  border: 1px solid #e1e1e1;
  border-radius: 4px; }

.pagination a:hover {
  color: #33c3f0;
  background: #f9f9f9; }

.pagination .current {
  color: white;
  background: #33c3f0;
  border-color: #33c3f0; }

.pagination .disabled {
  color: #999;
  cursor: not-allowed; }

.pagination .disabled:hover {
  color: #999;
  background: none; }

/* Loading Spinners
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e1e1e1;
  border-radius: 50%;
  border-top-color: #33c3f0;
  animation: spin 1s ease-in-out infinite; }

.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 4px; }

.spinner-sm {
  width: 16px;
  height: 16px;
  border-width: 2px; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-dots {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 10px; }

.spinner-dots div {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33c3f0;
  animation: spinner-dots 1.2s linear infinite; }

.spinner-dots div:nth-child(1) {
  left: 0;
  animation-delay: 0s; }

.spinner-dots div:nth-child(2) {
  left: 16px;
  animation-delay: -0.4s; }

.spinner-dots div:nth-child(3) {
  left: 32px;
  animation-delay: -0.8s; }

@keyframes spinner-dots {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5; }
  40% {
    transform: scale(1);
    opacity: 1; }
}

.spinner-pulse {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #33c3f0;
  border-radius: 50%;
  animation: spinner-pulse 1.5s ease-in-out infinite; }

@keyframes spinner-pulse {
  0% {
    transform: scale(0);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; }
}

/* Avatars
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e1e1e1;
  color: #555;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden; }

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; }

.avatar-sm {
  width: 24px;
  height: 24px;
  font-size: 10px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  font-size: 24px; }

.avatar-xl {
  width: 80px;
  height: 80px;
  font-size: 32px; }

.avatar[data-initials]::before {
  content: attr(data-initials);
  text-transform: uppercase; }

.avatar.avatar-primary {
  background: #33c3f0;
  color: white; }

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

.avatar.avatar-warning {
  background: #f0ad4e;
  color: white; }

.avatar.avatar-error {
  background: #d9534f;
  color: white; }

/* Dividers
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.divider {
  border: none;
  height: 1px;
  background: #e1e1e1;
  margin: 2rem 0; }

.divider-thick {
  height: 2px;
  background: #d1d1d1; }

.divider-dashed {
  background: none;
  border-top: 1px dashed #e1e1e1; }

.divider-dotted {
  background: none;
  border-top: 1px dotted #e1e1e1; }

.divider-vertical {
  display: inline-block;
  height: 20px;
  width: 1px;
  background: #e1e1e1;
  vertical-align: middle;
  margin: 0 1rem; }

.divider-text {
  position: relative;
  text-align: center;
  background: none;
  margin: 2rem 0; }

.divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e1e1; }

.divider-text span {
  background: white;
  padding: 0 1rem;
  color: #666;
  font-size: 14px; }

/* Badges
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.badge {
  position: relative;
  display: inline-block; }

.badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  text-align: center;
  font-weight: bold; }

.badge-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%; }

/* Sidebar/Off-canvas
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sidebar {
  position: fixed;
  top: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  border-right: 1px solid #e1e1e1;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem 1.5rem; }

.sidebar.sidebar-right {
  right: 0;
  left: auto;
  border-right: none;
  border-left: 1px solid #e1e1e1;
  transform: translateX(100%); }

.sidebar.sidebar-open {
  transform: translateX(0); }

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999; }

.sidebar-overlay.sidebar-overlay-active {
  opacity: 1;
  visibility: visible; }

.sidebar-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 0.5rem; }

.sidebar h4 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e1e1e1; }

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.sidebar ul li {
  margin-bottom: 0.5rem; }

.sidebar ul li a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: #555;
  border-radius: 4px;
  transition: background-color 0.2s ease; }

.sidebar ul li a:hover {
  background: #f8f8f8;
  color: #33c3f0; }

/* Image Gallery
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem; }

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f8f8f8; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

.gallery-item:hover img {
  transform: scale(1.05); }

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000; }

.lightbox.lightbox-active {
  display: flex; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh; }

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; }

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.7); }

.lightbox-prev {
  left: -60px; }

.lightbox-next {
  right: -60px; }

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem; }

/* Data Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.data-table-container {
  position: relative;
  margin-bottom: 2rem; }

.data-table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem; }

.data-table-search {
  flex: 1;
  max-width: 300px; }

.data-table-search input {
  width: 100%; }

.data-table-filter select {
  min-width: 120px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.data-table th {
  background: #f8f8f8;
  border-bottom: 2px solid #e1e1e1;
  cursor: pointer;
  user-select: none;
  position: relative; }

.data-table th.sortable:hover {
  background: #e8e8e8; }

.data-table th.sorted-asc::after,
.data-table th.sorted-desc::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0; }

.data-table th.sorted-asc::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #555; }

.data-table th.sorted-desc::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #555; }

.data-table tbody tr:nth-child(even) {
  background: #f9f9f9; }

.data-table tbody tr:hover {
  background: #f0f0f0; }

.data-table tbody tr.filtered-out {
  display: none; }

.data-table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 0; }

.data-table-info {
  font-size: 0.9rem;
  color: #666; }

.data-table-page-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.data-table-page-controls button {
  min-width: auto;
  padding: 0.4rem 0.8rem; }

.data-table-page-controls select {
  margin: 0 0.5rem; }

/* Stepper/Wizard
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stepper {
  margin-bottom: 2rem; }

.stepper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative; }

.stepper-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e1e1e1;
  z-index: 1; }

.stepper-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 0 1rem;
  min-width: 100px; }

.stepper-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e1e1e1;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease; }

.stepper-step.step-active .stepper-step-circle {
  background: #33c3f0;
  color: #fff; }

.stepper-step.step-completed .stepper-step-circle {
  background: #28a745;
  color: #fff; }

.stepper-step.step-completed .stepper-step-circle::after {
  content: '✓';
  font-size: 0.8rem; }

.stepper-step-title {
  font-size: 0.8rem;
  text-align: center;
  color: #666;
  font-weight: 600; }

.stepper-step.step-active .stepper-step-title {
  color: #33c3f0; }

.stepper-step.step-completed .stepper-step-title {
  color: #28a745; }

.stepper-content {
  min-height: 300px;
  padding: 2rem;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  background: #fff; }

.stepper-step-content {
  display: none; }

.stepper-step-content.step-content-active {
  display: block; }

.stepper-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e1e1; }

.stepper-actions .button {
  min-width: 100px; }

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
