﻿/**
* Template Name: Nova - v1.1.0
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #56b8e6;
  --color-secondary: #1b2f45;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #82cbed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: rgba(27, 47, 69, 0.9);
  padding: 12px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Header2
--------------------------------------------------------------*/
.header2 {
    background: rgba(27, 47, 69, 0.9);
    transition: all 0.5s;
    z-index: 997;
    padding: 16px 0;
}

@media (max-width: 1200px) {
    .header2 {
        padding: 12px 0;
    }
}

.header2.sticked {
    background: rgba(27, 47, 69, 0.9);
    padding: 12px 0;
}

.header2 .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header2 .logo h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-secondary);
    margin: 0;
}

.btn-get-started {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--color-primary);
}

    .btn-get-started:hover {
        background: rgba(86, 184, 230, 0.8);
    }

.getstarted,
.getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.getstarted:hover,
.getstarted:focus:hover {
        color: #fff;
        background: #31a9e1;
    }

.getstarted1,
.getstarted1:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 16px;
    border: 2px solid var(--color-primary);
    font-weight: 600;
    width: 300px;
}

    .getstarted1:hover,
    .getstarted1:focus:hover {
        color: #fff;
        background: var(--color-primary);
    }

        .getstarted2,
        .getstarted2:focus {
            padding: 8px 20px;
            margin-left: 30px;
            border-radius: 50px;
            color: var(--color-primary);
            font-size: 16px;
            border: 2px solid #47b2e4;
            font-weight: 600;
        }

            .getstarted2:hover,
            .getstarted2:focus:hover {
                color: #fff;
                background: #31a9e1;
            }

.getstarted3,
.getstarted3:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: var(--color-secondary);
    font-size: 16px;
    border: 2px solid var(--color-secondary);
    font-weight: 600;
    width: 300px;
}

    .getstarted3:hover,
    .getstarted3:focus:hover {
        color: #fff;
        background: var(--color-secondary);
    }

    .getstarted4,
    .getstarted4:focus {
        padding: 8px 20px;
        border-radius: 50px;
        color: var(--color-primary);
        font-size: 16px;
        border: 2px solid var(--color-primary);
        font-weight: 600;
    }

        .getstarted4:hover,
        .getstarted4:focus:hover {
            color: #fff;
            background: var(--color-primary);
        }

        .getred,
        .getred:focus {
            padding: 8px 20px;
            border-radius: 50px;
            color: red;
            font-size: 16px;
            border: 2px solid red;
            font-weight: 600;
        }

            .getred:hover,
            .getred:focus:hover {
                color: #fff;
                background: red;
            }

            .getsucc,
            .getsucc:focus {
                padding: 8px 20px;
                border-radius: 50px;
                color: red;
                font-size: 16px;
                border: 2px solid red;
                font-weight: 600;
            }

                .getsucc:hover,
                .getsucc:focus:hover {
                    color: #fff;
                    background: red;
                }


    .bootstrap-touchspin-up:hover,
    .bootstrap-touchspin-up:focus:hover{
        color: #fff !important;
        background: var(--color-primary) !important;
    }

.bootstrap-touchspin-down:hover,
.bootstrap-touchspin-down:focus:hover{
    color: white;
    background: var(--color-primary) !important;
}

.bootstrap-touchspin{
    float: left !important;
}

.col-sm-6{
    float:left !important;
}

.col-sm-3{
    float:left !important;
}
/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
    content: "\2b";
}
    /* line 38, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_glyphicons.scss */
    .glyphicon-minus:before {
        content: "\2212";
    }

    .glyphicon {
        color: var(--color-primary);
        position: relative;
        top: -30px;
        margin-top:4px;
        display: inline-block;
        font-family: 'Glyphicons Halflings';
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 0;
        -webkit-font-smoothing: antialiased;
    }


    .getedit,
    .getedit:focus {
        padding: 6px 10px;
        border-radius: 10px;
        color: var(--color-primary);
        background-color: transparent;
        font-size: 18px;
        border: 2px solid var(--color-primary);
        font-weight: 600;
    }

    .getedit:hover,
    .getedit:focus:hover {
        color: #fff;
        background: var(--color-primary);
    }

    .getdelete,
    .getdelete:focus {
        padding: 6px 10px;
        border-radius: 10px;
        color: red;
        background-color: transparent;
        font-size: 18px;
        border: 2px solid red;
        font-weight: 600;
    }

        .getdelete:hover,
        .getdelete:focus:hover {
            color: #fff;
            background: red;
        }

.getdelete2,
.getdelete2:focus {
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--color-secondary);
    background-color: transparent;
    font-size: 15.5px;
    border: 2px solid var(--color-secondary);
    font-weight: 600;
}

    .getdelete2:hover,
    .getdelete2:focus:hover {
        color: #fff;
        background: var(--color-secondary);
    }


    .getdelete3,
    .getdelete3:focus {
        padding: 6px 10px;
        border-radius: 10px;
        color: var(--color-secondary);
        background-color: transparent;
        font-size: 13px;
        border: 2px solid var(--color-secondary);
        font-weight: 600;
    }

        .getdelete3:hover,
        .getdelete3:focus:hover {
            color: #fff;
            background: var(--color-secondary);
        }
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar .getstarted,
        .navbar .getstarted:focus {
            padding: 8px 20px;
            margin-left: 30px;
            border-radius: 50px;
            color: #fff;
            font-size: 14px;
            border: 2px solid #47b2e4;
            font-weight: 600;
        }

            .navbar .getstarted:hover,
            .navbar .getstarted:focus:hover {
                color: #fff;
                background: #31a9e1;
            }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0 15px 30px;
            font-family: var(--font-default);
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 14px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.2s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--color-secondary);
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(27, 47, 69, 0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar .getstarted,
        .navbar .getstarted:focus {
            padding: 8px 20px;
            margin-left: 30px;
            border-radius: 50px;
            color: #fff;
            font-size: 14px;
            border: 2px solid #47b2e4;
            font-weight: 600;
        }

            .navbar .getstarted:hover,
            .navbar .getstarted:focus:hover {
                color: #fff;
                background: #31a9e1;
            }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-default);
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: rgba(20, 35, 51, 0.6);
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        color: rgba(255, 255, 255, 0.9);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
    }

    .mobile-nav-hide {
        color: rgba(255, 255, 255, 0.9);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(27, 47, 69, 0.7);
                z-index: 9996;
            }

        .mobile-nav-active .getstarted,
        .mobile-nav-active .getstarted:focus {
            margin: 15px;
            color: #fff;
        }
}

@media(max-width:575px) {
  
    .datepicker.dropdown-menu{
        display:none !important;
    }
    .left{
        float:none !important;
    }
    .col-sm-1 {
        margin-top: 10px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}
/*--------------------------------------------------------------
# Row
--------------------------------------------------------------*/
.row {
    --bs-gutter-x: 0 !important;
}

.row .col-md-6{
    padding-right:10px !important;
}

@media (max-width:991px){
    .rowanagrafica{
        display:block !important;
    }
    .bodyanagrafica{
        display:flex !important;
        justify-content:center !important;
    }
    .aanagrafica{
        margin-left:0 !important;
        width:200px !important;
    }
    .aanagrafica2 {
        margin-left: 0 !important;
        width: 300px !important;
    }
    .marg{
        margin-bottom:10px !important;
    }
}

@media(max-width:767px){
    .col-md-6{
        width:100% !important;
    }
}

.selwidth{
    width:100% !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 150px 0;
  z-index: 0;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 5%;
    background: var(--color-secondary);
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.6);
  inset: 0;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 60px 0 0 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

.

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.why-us .count-box {
  padding-top: 30px;
  padding-bottom: 60px;
  width: 100%;
}

.why-us .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.why-us .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #365870;
  margin-left: 60px;
}

.why-us .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}

.why-us .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.why-us .count-box a:hover {
  color: #477392;
}

.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #2aa5df;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section 1
--------------------------------------------------------------*/

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 12px 30px;
  margin-top: 60px;
  place-content: center;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.pricing .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 sub {
  font-size: 18px;
}
.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;

}

.pricing .btn-danger {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .btn-danger:hover {
  background: #CC0000;
  color: #fff;
  border: 1px solid #CC0000;

}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 12px 30px;
  margin-top: 60px;
  place-content: center;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.faq .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.faq{
  background-color: #f7f9fc;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team{
  background-color: #f7f9fc;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}


/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
  margin: 0 auto;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}


/*
 *
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 *
 */
/* line 8, ../../../bower_components/switchery/dist/switchery.css */
.switchery {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    position: absolute;
    vertical-align: middle;
    width: 45px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.switchery:active{
    background-color:var(--color-secondary);
}
    /* line 30, ../../../bower_components/switchery/dist/switchery.css */
    .switchery > small {
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        height: 25px;
        position: absolute;
        top: 0;
        width: 25px;
    }

/**
 * Switchery
 */
/* line 167, ../../src/sass/_override-custom-libs.scss */
.switchery {
    background-color: transparent !important;
}

/*--------------------------------------------------------------
# Login Klaggio App
--------------------------------------------------------------*/

.login-widget {
    background-color: #f7f9fc;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}



    .login_restyle .btn-get-started {
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        padding: 12px 30px;
        margin-top: 60px;
        place-content: center;
        border-radius: 50px;
        transition: 0.5s;
        color: #fff;
        background: var(--color-primary);
    }

    .login_restyle .btn-get-started:hover {
        background: rgba(86, 184, 230, 0.8);
    }

.login-widget .form-actions .forgot, .registration-widget .form-actions .forgot {
    display: block;
    text-align: center;
    padding: 5px 0;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 4px rgba(102, 175, 233, 0.6);
    box-shadow: inset 1px rgba(0, 0, 0, 0.075), 0 0 4px rgba(102, 175, 233, 0.6);
}

/* line 7, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
    /* line 13, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group[class*="col-"] {
        float: none;
        padding-left: 0;
        padding-right: 0;
    }
    /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

    /* line 54, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon,
    .input-group-btn,
    .input-group .form-control {
        display: table-cell;
    }
        /* line 59, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
        .input-group-addon:not(:first-child):not(:last-child),
        .input-group-btn:not(:first-child):not(:last-child),
        .input-group .form-control:not(:first-child):not(:last-child) {
            border-radius: 0;
        }

/* line 64, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

/* line 73, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
    padding: 5px 12px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    text-align: center;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 0px;
}
    /* line 85, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon.input-sm,
    .input-group-sm > .input-group-addon,
    .input-group-sm > .input-group-btn > .input-group-addon.btn {
        padding: 4px 10px;
        font-size: 16px;
        border-radius: 3px;
    }
    /* line 90, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon.input-lg,
    .input-group-lg > .input-group-addon,
    .input-group-lg > .input-group-btn > .input-group-addon.btn {
        padding: 10px 16px;
        font-size: 16.25px;
        border-radius: 6px;
    }
    /* line 97, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon input[type="radio"],
    .input-group-addon input[type="checkbox"] {
        margin-top: 0;
    }

    /* line 104, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group > .btn,
    .input-group-btn:first-child > .dropdown-toggle,
    .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    /* line 113, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon:first-child {
        border-right: 0;
    }

    /* line 116, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    /* line 125, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon:last-child {
        border-left: 0;
    }

/* line 131, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}
    /* line 140, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-btn > .btn {
        position: relative;
    }
        /* line 142, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }
   
    /* line 155, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }
    /* line 161, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group {
        margin-left: -1px;
    }




/* line 10, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_component-animations.scss */

    /* line 13, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_component-animations.scss */


.modal .getstarted,
.modal .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #47b2e4;
    background-color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

    .modal .getstarted:hover,
    .modal .getstarted:focus:hover {
        color: #fff;
        background: #31a9e1;
    }

/* line 6, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_close.scss */
.close {
    float: right;
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: black;
    text-shadow: 0 1px 0 white;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
    /* line 15, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_close.scss */
    .close:hover, .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

/* line 29, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_close.scss */
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

@media (min-width: 768px) {
    /* line 134, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
}

/***************************/
/*          Alerts         */
/***************************/
/* line 789, ../../src/sass/_override-bootstrap.scss */
.alert {
    text-shadow: none;
    font-weight: normal;
}

/* line 9, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    border-radius: 3px;
}
    /* line 16, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
    .alert h4 {
        margin-top: 0;
        color: inherit;
    }
    /* line 22, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
    .alert .alert-link {
        font-weight: bold;
    }
    /* line 27, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }
        /* line 31, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
        .alert > p + p {
            margin-top: 5px;
        }

/* line 40, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
    /* line 45, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
    .alert-dismissable .close,
    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

/* line 57, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
    background-color: rgba(214, 233, 198, 0.28);
    border-color: #d6e9c6;
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-success hr {
        border-top-color: #c9e2b4;
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-success .alert-link {
        color: #e6e6e6;
    }

/* line 60, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
    background-color: rgba(74, 176, 206, 0.29);
    border-color: #4ab0ce;
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-info hr {
        border-top-color: #36a7c8;
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-info .alert-link {
        color: #e6e6e6;
    }

/* line 63, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
    background-color: rgba(229, 190, 86, 0.28);
    border-color: #e5be56;
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-warning hr {
        border-top-color: #e2b540;
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-warning .alert-link {
        color: #e6e6e6;
    }

/* line 66, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
    background-color: rgba(242, 99, 73, 0.29);
    border-color: rgba(242, 99, 73, 0.7);
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-danger hr {
        border-top-color: rgba(240, 79, 49, 0.7);
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-danger .alert-link {
        color: #e6e6e6;
    }

/* line 794, ../../src/sass/_override-bootstrap.scss */
.close {
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    text-shadow: none;
}

/* line 799, ../../src/sass/_override-bootstrap.scss */
.alert-sm {
    padding: 10px 12px;
    font-size: 12px;
}
    /* line 803, ../../src/sass/_override-bootstrap.scss */
    .alert-sm .close {
        font-size: 18px;
    }

.alert-danger {
    background-color: rgb(242, 99, 73, 0.29);
    border-color: rgb(242, 99, 73, 0.7);
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-danger hr {
        border-top-color: rgb(240, 79, 49, 0.7);
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-danger .alert-link {
        color: #e6e6e6;
    }

}

.alert-info {
    background-color: rgba(153, 242, 131);
    border-color: rgba(81, 217, 48);
    color: white;
}
    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-info hr {
        border-top-color: rgba(81, 217, 48);
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
    .alert-info .alert-link {
        color: #e6e6e6;
    }



/***********************************/
/**          SIDEBAR             **/
/**********************************/
/* line 68, ../../src/sass/_base.scss */
.sidebar {
    position: absolute;
    width: 120px;
    padding: 10px 0;
    top: 0;
    color: var(--color-secondary);
    z-index: 1;
    margin: 80px 0 0 25px;
    font-weight: 300;
}

/* line 81, ../../src/sass/_base.scss */
.sidebar .settings {
    margin-top: 10px;
    text-align: center;
}
    /* line 85, ../../src/sass/_base.scss */
    .sidebar .settings .btn-auto {
        display: none;
    }
/* line 90, ../../src/sass/_base.scss */
.sidebar .panel {
    background: none;
}
/* line 94, ../../src/sass/_base.scss */
.sidebar.collapse {
    display: block;
    visibility: visible;
}

/* line 100, ../../src/sass/_base.scss */
.side-nav {
    margin: 0;
    width:200px;
}
    /* line 103, ../../src/sass/_base.scss */
    .side-nav li {
        list-style: none;
    }
        /* line 106, ../../src/sass/_base.scss */
        .side-nav li i[class*=fa] {
            width: 16px;
            margin-right: 8px;
            float: left;
            line-height: 20px;
            font-size: 16px;
            opacity: 0.7;
            text-align: right;
            color: var(--color-primary);
        }
        /* line 116, ../../src/sass/_base.scss */
        .side-nav li a:hover, .side-nav li a:focus {
            color: var(--color-primary);
          
        }
        /* line 120, ../../src/sass/_base.scss */
        .side-nav li a {
            color: white;
            -webkit-transition: background-color 0.2s;
            -o-transition: background-color 0.2s;
            transition: background-color 0.2s;
            text-decoration: none;
            display: block;
            padding: 10px 30px;
            -moz-border-radius: 6px;
            -webkit-border-radius: 6px;
            border-radius: 6px;
            width:100%;
        }
            /* line 128, ../../src/sass/_base.scss */
            .side-nav li a .fa-angle-down {
                width: auto;
                float: right;
                margin-right: -8px;
                opacity: 1;
                -webkit-transition: -webkit-transform 0.3s ease-in-out;
                -moz-transition: -moz-transform 0.3s ease-in-out;
                -o-transition: -o-transform 0.3s ease-in-out;
                transition: transform 0.3s ease-in-out;
            }
            /* line 136, ../../src/sass/_base.scss */
            .side-nav li a.collapsed .fa-angle-down {
                -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                transform: rotate(90deg);
            }
            /* line 141, ../../src/sass/_base.scss */
            .side-nav li a[data-toggle="collapse"]:before {
                display: inline-block;
                font-family: FontAwesome;
                content: "\f107";
                float: right;
                margin-right: -8px;
                position: relative;
                top: 1px;
                -webkit-transition: transform 0.3s ease-in-out;
                -o-transition: transform 0.3s ease-in-out;
                transition: transform 0.3s ease-in-out;
            }
            /* line 151, ../../src/sass/_base.scss */
            .side-nav li a[data-toggle="collapse"].collapsed:before {
                -moz-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }
        /* line 159, ../../src/sass/_base.scss */
        .side-nav li.active > a {
            font-weight: 700;
        }
    /* line 164, ../../src/sass/_base.scss */
    .side-nav .panel-collapse li a {
        padding: 4px 20px;
        padding-left: 50px;
    }
        /* line 169, ../../src/sass/_base.scss */
        .side-nav .panel-collapse li a:hover, .side-nav .panel-collapse li a:focus {
            background: rgba(0, 0, 0, 0.07);
        }
        /* line 173, ../../src/sass/_base.scss */
        .side-nav .panel-collapse li a i[class*="fa"] {
            float: none;
            font-size: inherit;
        }
    /* line 180, ../../src/sass/_base.scss */
    .side-nav .panel-collapse .panel-collapse .panel-collapse > li a {
        padding-left: 70px;
    }
    /* line 184, ../../src/sass/_base.scss */
    .side-nav .panel-collapse .panel-collapse > li a {
        padding-left: 60px;
    }
    /* line 190, ../../src/sass/_base.scss */
    .side-nav .panel {
        margin: 0;
        border: none;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
    /* line 196, ../../src/sass/_base.scss */
    .side-nav .panel-collapse.collapse {
        display: block;
        position: relative;
        height: 0;
        overflow: hidden;
        -webkit-transition: height 0.35s ease;
        -o-transition: height 0.35s ease;
        transition: height 0.35s ease;
    }
        /* line 202, ../../src/sass/_base.scss */
        .side-nav .panel-collapse.collapse.in {
            height: auto;
        }

}

/* line 233, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
    margin: 8px -15px;
}
    /* line 236, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 18px;
    }

@media (max-width: 767px) {
    /* line 244, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
        /* line 252, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }
        /* line 256, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 18px;
        }
            /* line 258, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
            .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width: 768px) {
    /* line 233, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
    .navbar-nav {
        float: left;
        margin: 0;
    }
        /* line 271, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
        .navbar-nav > li {
            float: left;
        }
            /* line 273, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
            .navbar-nav > li > a {
                padding-top: 16px;
                padding-bottom: 16px;
            }
}



/***************************/
/*          Navs           */
/***************************/
/* line 423, ../../src/sass/_override-bootstrap.scss */
.nav {
    margin-bottom: 0;
}
    /* line 427, ../../src/sass/_override-bootstrap.scss */
    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        background-color: #eeeeee;
        border-color: transparent;
    }

    /* line 436, ../../src/sass/_override-bootstrap.scss */
    .nav > li > a {
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }

        /* line 440, ../../src/sass/_override-bootstrap.scss */
        .nav > li > a:hover,
        .nav > li > a:focus,
        .nav .open > a,
        .nav .open > a:hover,
        .nav .open > a:focus {
            background-color: rgba(255, 255, 255, 0.25);
        }

/* line 448, ../../src/sass/_override-bootstrap.scss */
.nav-tabs > li > a {
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px;
    border-radius: 3px 3px 0 0;
    color: #4d9dd7;
    padding-top: 8px;
    padding-bottom: 8px;
}
    /* line 453, ../../src/sass/_override-bootstrap.scss */
    .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
        border-color: transparent;
    }

/* line 459, ../../src/sass/_override-bootstrap.scss */
.nav-tabs > .active {
    margin-bottom: -1px;
}

/* line 463, ../../src/sass/_override-bootstrap.scss */
.nav-tabs {
    border-bottom: 1px solid #dddddd;
}

    /* line 467, ../../src/sass/_override-bootstrap.scss */
    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        color: #666666;
        background-color: white;
        border-color: #dddddd;
        border-bottom-color: white;
    }

    /* line 476, ../../src/sass/_override-bootstrap.scss */
    .nav-tabs .dropdown-menu {
        -moz-border-radius: 0 0 3px 3px;
        -webkit-border-radius: 0;
        border-radius: 0 0 3px 3px;
    }

/* line 479, ../../src/sass/_override-bootstrap.scss */
.nav-pills .dropdown-menu {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* line 482, ../../src/sass/_override-bootstrap.scss */
.tabs-below > .nav-tabs {
    border-top: 1px solid #dddddd;
}

    /* line 486, ../../src/sass/_override-bootstrap.scss */
    .tabs-below > .nav-tabs > li > a {
        -moz-border-radius: 0 0 3px 3px;
        -webkit-border-radius: 0;
        border-radius: 0 0 3px 3px;
    }

/* line 490, ../../src/sass/_override-bootstrap.scss */
.tabs-left > .nav-tabs {
    margin-right: 0;
    border-right: 1px solid #dddddd;
}

    /* line 495, ../../src/sass/_override-bootstrap.scss */
    .tabs-left > .nav-tabs > li > a {
        -moz-border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px 0 0 3px;
    }

/* line 499, ../../src/sass/_override-bootstrap.scss */
.tabs-right > .nav-tabs {
    margin-left: 0;
    border-left: 1px solid #dddddd;
}

    /* line 503, ../../src/sass/_override-bootstrap.scss */
    .tabs-right > .nav-tabs > li > a {
        -moz-border-radius: 0 3px 3px 0;
        -webkit-border-radius: 0;
        border-radius: 0 3px 3px 0;
    }

/* line 507, ../../src/sass/_override-bootstrap.scss */
.tabs-below > .nav-tabs > li {
    margin-top: -1px;
}

    /* line 512, ../../src/sass/_override-bootstrap.scss */
    .tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
        border-top-color: transparent;
    }

/* line 523, ../../src/sass/_override-bootstrap.scss */
.tabs-left > .nav-tabs > li > a {
    margin-right: 0;
}

    /* line 526, ../../src/sass/_override-bootstrap.scss */
    .tabs-left > .nav-tabs > li > a:hover,
    .tabs-left > .nav-tabs > li > a:focus {
        border-color: transparent;
    }

/* line 530, ../../src/sass/_override-bootstrap.scss */
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
    border-color: #dddddd;
    border-right-color: white;
}

/* line 537, ../../src/sass/_override-bootstrap.scss */
.tabs-left > .nav-tabs .active {
    margin-right: -1px;
}

/* line 541, ../../src/sass/_override-bootstrap.scss */
.tabs-right > .nav-tabs .active {
    margin-left: -1px;
}

/* line 545, ../../src/sass/_override-bootstrap.scss */
.tabs-right > .nav-tabs > li > a {
    margin-left: 0;
}

    /* line 548, ../../src/sass/_override-bootstrap.scss */
    .tabs-right > .nav-tabs > li > a:hover,
    .tabs-right > .nav-tabs > li > a:focus {
        border-color: transparent;
    }

/* line 552, ../../src/sass/_override-bootstrap.scss */
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
    border-color: #dddddd;
    border-left-color: white;
}

/* line 559, ../../src/sass/_override-bootstrap.scss */
.nav-pills > li > a {
    margin-top: 2px;
    margin-bottom: 2px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #eeeeee;
}

/* line 567, ../../src/sass/_override-bootstrap.scss */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #666666;
    background: none;
}

/* line 574, ../../src/sass/_override-bootstrap.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
    padding: 0 1.28%;
}

/***************************/
/*         Navbars         */
/***************************/
/* line 582, ../../src/sass/_override-bootstrap.scss */
.navbar {
    margin: 0;
}
    /* line 585, ../../src/sass/_override-bootstrap.scss */
    .navbar .btn-navbar {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* line 592, ../../src/sass/_override-bootstrap.scss */
    .navbar .nav > .active > a,
    .navbar .nav > .active > a:hover,
    .navbar .nav > .active > a:focus {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* line 599, ../../src/sass/_override-bootstrap.scss */
.navbar-nav {
    margin: -7px;
}
    /* line 602, ../../src/sass/_override-bootstrap.scss */
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 18px;
    }

@media (max-width: 767px) {
    /* line 610, ../../src/sass/_override-bootstrap.scss */
    .navbar-nav .open .dropdown-menu {
        position: absolute;
        float: left;
        margin: 2px 0 0;
        background-color: white;
        border: 0;
        box-shadow: none;
    }
}



/***************************/
/*        Dropdowns        */
/***************************/
/* line 233, ../../src/sass/_override-bootstrap.scss */
.dropdown-menu {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

    /* line 237, ../../src/sass/_override-bootstrap.scss */
    .dropdown-menu > li > a {
        font-weight: 400;
    }

/***********************************/
/**          HEADER               **/
/**********************************/
/* line 486, ../../src/sass/_base.scss */
.page-header {
    border: none;
    margin: 15px 2.5641% 0;
    padding: 0;
    position: relative;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
}
    /* line 495, ../../src/sass/_base.scss */
    .page-header .navbar {
        min-height: 40px;
        border: none;
    }
    
    /* line 518, ../../src/sass/_base.scss */
    .page-header .nav > li {
        position: relative;
        background: none;
        float: left;
    }
        /* line 523, ../../src/sass/_base.scss */
        .page-header .nav > li > a {
            color: var(--color-primary);
            width: 30px;
            padding: 0;
            font-size: 15px;
            
            outline: 0;
            background: none;
            text-align: center;
            vertical-align: middle;
            line-height: 50px;
            text-shadow: none;
        }
            /* line 535, ../../src/sass/_base.scss */
            .page-header .nav > li > a:hover {
                color: var(--color-secondary);
            }
.dropdown .bx-log-in {
    font-size: 25px !important;
}

.dropdown .bx-user {
    font-size: 23px !important;
}
.dropdown .bi-people {
    font-size: 23px !important;
}
    /* line 590, ../../src/sass/_base.scss */
    .page-header .navbar .nav > li > .dropdown-menu:after {
        content: '';
        display: inline-block;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid white;
        position: absolute;
        top: -6px;
        left: 10px;
    }
    /* line 603, ../../src/sass/_base.scss */
    .page-header .navbar .pull-right > li > .dropdown-menu,
    .page-header .navbar .nav > li > .dropdown-menu.pull-right {
        left: auto;
        right: 0;
    }
        /* line 607, ../../src/sass/_base.scss */
        .page-header .navbar .pull-right > li > .dropdown-menu:before,
        .page-header .navbar .nav > li > .dropdown-menu.pull-right:before {
            left: auto;
            right: 12px;
        }
        /* line 611, ../../src/sass/_base.scss */
        .page-header .navbar .pull-right > li > .dropdown-menu:after,
        .page-header .navbar .nav > li > .dropdown-menu.pull-right:after {
            left: auto;
            right: 13px;
        }
        /* line 615, ../../src/sass/_base.scss */
        .page-header .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
        .page-header .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
            left: auto;
            right: 100%;
            margin-left: 0;
            margin-right: -1px;
            -moz-border-radius: 6px 0 6px 6px;
            -webkit-border-radius: 6px;
            border-radius: 6px 0 6px 6px;
        }


/***********************************/
/**          ACCOUNT             **/
/**********************************/
/* line 811, ../../src/sass/_base.scss */
.account {
    width: 210px;
    background: white;
    border-radius: 3px !important;
    color: #666666;
}

/* line 820, ../../src/sass/_base.scss */
.navbar .nav > li > .account:before {
    border-bottom: none;
}
/* line 823, ../../src/sass/_base.scss */
.navbar .nav > li > .account:after {
    border-bottom-color: white;
}

/* line 828, ../../src/sass/_base.scss */
.account > li > a {
    color: #666666;
}
    /* line 831, ../../src/sass/_base.scss */
    .account > li > a:hover, .account > li > a:focus {
        color: #666666;
    }

/* line 839, ../../src/sass/_base.scss */
.account-picture {
    padding: 5px 10px;
    font-weight: normal;
}
    /* line 842, ../../src/sass/_base.scss */
    .account-picture img {
        width: 50px;
        margin-right: 5px;
    }

/* line 848, ../../src/sass/_base.scss */
.account > li > a {
    padding: 7px 10px;
}

/* line 218, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto;
}

/* line 222, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto;
}
/* line 603, ../../src/sass/_base.scss */
.page-header .navbar .pull-right > li > .dropdown-menu,
.page-header .navbar .nav > li > .dropdown-menu.pull-right {
    left: auto;
    right: 0;
}
    /* line 607, ../../src/sass/_base.scss */
    .page-header .navbar .pull-right > li > .dropdown-menu:before,
    .page-header .navbar .nav > li > .dropdown-menu.pull-right:before {
        left: auto;
        right: 12px;
    }
    /* line 611, ../../src/sass/_base.scss */
    .page-header .navbar .pull-right > li > .dropdown-menu:after,
    .page-header .navbar .nav > li > .dropdown-menu.pull-right:after {
        left: auto;
        right: 13px;
    }
    /* line 615, ../../src/sass/_base.scss */
    .page-header .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
    .page-header .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: -1px;
        -moz-border-radius: 6px 0 6px 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px 0 6px 6px;
    }

/***********************************/
/**          CONTENT              **/
/**********************************/
/*main content*/
/* line 327, ../../src/sass/_base.scss */


/*content except of header*/
/* line 332, ../../src/sass/_base.scss */
.content {
    padding: 25px 2.5641%;
    -webkit-transition: margin-top 0.35s ease, opacity 0.2s;
    -o-transition: margin-top 0.35s ease, opacity 0.2s;
    transition: margin-top 0.35s ease, opacity 0.2s;
    max-width: none;
    width: auto;
    opacity: 1;
}
    /* line 339, ../../src/sass/_base.scss */
    .content.hiding {
        opacity: 0;
    }

/* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
/* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
    clear: both;
}

/* line 10, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_grid.scss */
.container {
    margin-right: auto;
    margin-left: auto;
    z-index:1 !important;
}
    /* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
    .container:before, .container:after {
        content: " ";
        display: table;
    }
    /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
    .container:after {
        clear: both;
    }

    .tableAnaList {
        min-width: 500px !important;
    }

    .tableRegList {
        min-width: 600px !important;
    }

    .tableAgeList{
        min-width: 450px !important;
    }

@media (max-width: 900px) {
    
    .tableAnaList .sorting{
        width: 40% !important;
    }

    .tableAnaList .no-sort{
        width: 20% !important;
    }

    .tableRegList .sorting{
        width: auto !important;
    }

    .tableRegList .no-sort{
        width: 35% !important;
    }

    .tableAgeList .sorting{
        width: auto !important;
    }

    .tableAgeList .no-sort{
        width: 33% !important;
    }
}

@media (min-width: 1200px) {
    /* line 10, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_grid.scss */
    .container {
        width: 1250px;
    }
}





.Master {
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 1034px) {
    .Master:after {
        position: absolute;
        content: "";
        width: 0% !important;
        background: var(--color-secondary);
        top: 0;
        bottom: 0;
        z-index:-1;
    }
}

.Master:before {
    position: absolute;
    content: "";
    inset: 0;
    z-index:-1;
}

/*--------------------------------------------------------------
# Anagrafica List
--------------------------------------------------------------*/

/* line 625, ../../src/sass/_base.scss */
.page-title {
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1;
    margin: 11px 0 18px;
}
    /* line 631, ../../src/sass/_base.scss */
    .page-title small {
        color: #d9d9d9;
    }

/* line 60, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-md-offset-10 {
    float:right;
}

/* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}


/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
    width: 100%;
}

/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-sm-1 {
    width: 10.5%;
}

/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-sm-3 {
    width: 25%;
}

/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-sm-2 {
    width: 18%;
}

@media (max-width: 1999px){
    .col-sm-2{
        width:40%;
    }
}

/* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-md-6 {
    width: 50%;
    padding-right:50px;
}

.be4-sm1-min {
    min-width: 100px;
}

    @font-face {
        font-family: 'Glyphicons Halflings';
        src: url("../../css/fonts/bootstrap/");
        src: url("../../css/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../../css/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../../css/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../../css/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
    }

    .glyphicon-chevron-up:before {
        content: "\e113";
    }

    .glyphicon-chevron-down:before {
        content: "\e114";
    }

/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url("../../css/fonts/font-awesome/fontawesome-webfont.eot?v=4.2.0");
    src: url("../../css/fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("../../css/fonts/font-awesome/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("../../css/fonts/font-awesome/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("../../css/fonts/font-awesome/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}
/* line 4, ../../../bower_components/font-awesome/scss/_core.scss */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 16, ../../../bower_components/font-awesome/scss/_icons.scss */
.fa-check:before {
    content: "\f00c";
}

/* line 110, ../../../bower_components/font-awesome/scss/_icons.scss */
.fa-plus:before {
    content: "\f067";
}

/* line 17, ../../../bower_components/font-awesome/scss/_icons.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}


.switchery-default {
    background-color: transparent !important;
    border-radius: 50px;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
}

.btn-danger,
.btn-danger:focus {
    background-color: transparent !important;
    padding: 8px 20px;
    border-radius: 50px;
    color: red !important;
    font-size: 13px;
    border: 2px solid red !important;
    font-weight: 600;
    box-shadow:none !important;
}

    .btn-danger:hover,
    .btn-danger:focus:hover {
        color: #fff !important;
        background: red !important;
        box-shadow: none !important;
    }

.btn-success,
.btn-success:focus {
    background-color: transparent !important;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-primary) !important;
    font-size: 13px;
    border: 2px solid var(--color-primary) !important;
    font-weight: 600;
    box-shadow: none !important;
}

    .btn-success:hover,
    .btn-success:focus:hover {
        color: #fff !important;
        background: var(--color-primary) !important;
        box-shadow: none !important;
    }

.btn-default,
.btn-default:focus {
    padding: 8px 20px;
    border-radius: 50px;
    color: red;
    font-size: 13px;
    border: 2px solid red;
    font-weight: 600;
}

    .btn-default:hover,
    .btn-default:focus:hover {
        color: #fff;
        background: red;
    }

.btn-default1 {
    color: var(--color-secondary);
    background-color: white;
    border-color: var(--color-secondary);
}

    /* line 21, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_buttons.scss */
    .btn-default1:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
        background-image: none;
    }

/* line 63, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
    color: white !important;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}
  
    /* line 21, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_buttons.scss */
    .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
        background-image: none;
    }



@media (min-width: 992px) {
    /* line 27, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    /* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-md-2 {
        width: 16.6666666667%;
    }

    /* line 60, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-md-offset-1 {
        margin-left: 8.3333333333%;
    }

    /* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-md-10 {
        width: 83.3333333333%;
    }



    /* line 60, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-sm-offset-1 {
        margin-left: 8.3333333333%;
    }
    /* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-sm-5 {
        width: 40% !important;
    }
}


    /* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
    .col-sm-4 {
        width: 33.3333333333%;
    }
    /***********************************/
    /**          WIDGET               **/
    /**********************************/
    /* line 350, ../../src/sass/_base.scss */
    .widget {
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        padding: 50px 20px;
        color: black;
        background: white;
        margin-bottom: 20px;
        position: relative;
    }
        /* line 361, ../../src/sass/_base.scss */
        .widget.normal {
            height: 220px;
        }
        /* line 365, ../../src/sass/_base.scss */
        .widget.large {
            height: 315px;
        }
            /* line 368, ../../src/sass/_base.scss */
            .widget.large .body {
                height: 280px;
            }
        /* line 373, ../../src/sass/_base.scss */
        .widget.xlarge {
            height: 415px;
        }
            /* line 376, ../../src/sass/_base.scss */
            .widget.xlarge .body {
                height: 380px;
            }
        /* line 381, ../../src/sass/_base.scss */
        .widget.tiny {
            height: 188px;
        }
        /* line 385, ../../src/sass/_base.scss */
        .widget.tiny-x2 {
            height: 426px;
        }
        /* line 389, ../../src/sass/_base.scss */
        .widget.transparent {
            background: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
        }
        /* line 394, ../../src/sass/_base.scss */
        .widget > header {
            position: relative;
            background: none;
            color: #666666;
        }
            /* line 399, ../../src/sass/_base.scss */
            .widget > header h1, .widget > header h2, .widget > header h3, .widget > header h4, .widget > header h5 {
                margin: 0;
                line-height: 20px;
                font-weight: 600;
                color: inherit;
            }
                /* line 405, ../../src/sass/_base.scss */
                .widget > header h1 small, .widget > header h2 small, .widget > header h3 small, .widget > header h4 small, .widget > header h5 small {
                    text-transform: lowercase;
                    color: #999999;
                }
            /* line 411, ../../src/sass/_base.scss */
            .widget > header h4 {
                color: var(--color-secondary);
                font-size: 20px;
            }
        /* line 416, ../../src/sass/_base.scss */
        .widget .body {
            margin-top: 20px;
        }
        /* line 420, ../../src/sass/_base.scss */
        .widget > footer {
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
        }
        /* line 428, ../../src/sass/_base.scss */
        .widget .actions {
            position: absolute;
            right: 0;
            top: 0;
        }
            /* line 432, ../../src/sass/_base.scss */
            .widget .actions a {
                text-decoration: none;
            }
        /* line 437, ../../src/sass/_base.scss */
        .widget .widget-table-overflow {
            margin: 0 -17px -12px;
            border-bottom-left-radius: 3px;
            border-bottom-right-radius: 3px;
        }

    /* line 444, ../../src/sass/_base.scss */
    .widget-controls {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        font-size: 12px;
        word-spacing: 1px;
    }
        /* line 452, ../../src/sass/_base.scss */
        .widget-controls.left {
            left: 0;
            right: auto;
        }
        /* line 457, ../../src/sass/_base.scss */
        .widget-controls > a, .widget-controls > span {
            padding: 1px 4px;
            border-radius: 4px;
            color: #a6a6a6;
            -webkit-transition: color 0.15s ease-in-out;
            -o-transition: color 0.15s ease-in-out;
            transition: color 0.15s ease-in-out;
        }
            /* line 463, ../../src/sass/_base.scss */
            .widget-controls > a > .fa, .widget-controls > span > .fa {
                vertical-align: middle;
            }
            /* line 467, ../../src/sass/_base.scss */
            .widget-controls > a > .glyphicon, .widget-controls > span > .glyphicon {
                vertical-align: -1px;
            }
            /* line 472, ../../src/sass/_base.scss */
            .widget-controls > a:hover {
                color: #737373;
            }
        /* line 476, ../../src/sass/_base.scss */
        .widget-controls .fa-refresh {
            position: relative;
            top: -1px;
        }


    /* line 35, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_glyphicons.scss */
    .glyphicon-plus:before {
        content: "\2b";
    }
    /* line 38, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_glyphicons.scss */
    .glyphicon-minus:before {
        content: "\2212";
    }

    .glyphicon {
        color: var(--color-secondary);
        position: a;
        top: -30px;
        margin-top: 4px;
        display: inline-block;
        font-family: 'Glyphicons Halflings';
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 0;
        -webkit-font-smoothing: antialiased;
    }




    /***********************************/
    /**          TABLES               **/
    /**********************************/

   

    /* line 1154, ../../src/sass/_base.scss */
    .table th {
        font-weight: 400;
        color: white;
    }
    /* line 1157, ../../src/sass/_base.scss */
    .widget .table th {
        color: var(--color-secondary);
    }

    /* line 1163, ../../src/sass/_base.scss */
    .table-images td {
        height: 60px;
        vertical-align: middle;
    }
        /* line 1166, ../../src/sass/_base.scss */
        .table-images td img {
            height: 60px;
        }

    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(1n) {
        color: #e5603b;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(2n) {
        color: #eac85e;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(3n) {
        color: #8cbf26;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(4n) {
        color: #56bc76;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(5n) {
        color: #4ab0ce;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(6n) {
        color: #618fb0;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(7n) {
        color: #a05000;
    }
    /* line 1176, ../../src/sass/_base.scss */
    .table-colored tbody tr:nth-child(8n) {
        color: #d04f4f;
    }

    /* line 1183, ../../src/sass/_base.scss */
    .table-editable th a {
        display: block;
        cursor: pointer;
        color: #666666;
        text-decoration: underline;
    }

    /* line 1190, ../../src/sass/_base.scss */
    .table-editable td.editor,
    .table-editable tbody tr:nth-child(odd) td.editor {
        background-color: rgba(97, 143, 176, 0.05);
        outline: 1px solid #618fb0;
        outline-offset: -1px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition-duration: 200ms;
        -moz-transition-duration: 200ms;
        -o-transition-duration: 200ms;
        transition-duration: 200ms;
        -webkit-transition-property: width, outline, background-color;
        -moz-transition-property: width, outline, background-color;
        -o-transition-property: width, outline, background-color;
        transition-property: width, outline, background-color;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

        /* line 1212, ../../src/sass/_base.scss */
        .table-editable td.editor input[type=text] {
            color: #666666;
            display: block;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            background-color: transparent;
            border: 0;
            outline: 0;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        /* line 1232, ../../src/sass/_base.scss */
        .table-editable td.editor.error,
        .table-editable tbody tr:nth-child(odd) td.editor.error {
            background-color: rgba(234, 200, 94, 0.1);
            outline: 1px solid #eac85e;
        }

        /* line 1238, ../../src/sass/_base.scss */
        .table-editable td.editor :focus,
        .table-editable th.editor :focus {
            outline: 0;
        }

    /* line 1243, ../../src/sass/_base.scss */
    .table-editable .sort-caret {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 0.3em;
        border: 0;
        content: "";
        font: 15px FontAwesome;
    }

    /* line 1254, ../../src/sass/_base.scss */
    .table-editable .ascending .sort-caret:before {
        content: "\f0d8";
    }

    /* line 1260, ../../src/sass/_base.scss */
    .table-editable .descending .sort-caret:before {
        content: "\f0d7";
    }

    /* line 1265, ../../src/sass/_base.scss */
    .chart-col-header {
        width: 100px;
    }

    /* line 1269, ../../src/sass/_base.scss */
    .table .chart-cell {
        padding: 3px;
    }

    /* line 1273, ../../src/sass/_base.scss */
    .source-col-header {
        width: 30%;
    }

    /* line 1279, ../../src/sass/_base.scss */
    .sources-table td, .sources-table th {
        text-align: center;
    }
        /* line 1281, ../../src/sass/_base.scss */
        .sources-table td:first-child, .sources-table th:first-child {
            text-align: left;
        }

    /***********************************/
    /* custom widgets classes (email widget, charts, etc). This file can be removed. */
    /***********************************/
    /***********************************/
    /**          EVENTS               **/
    /**********************************/
    /* line 9, ../../src/sass/_widgets.scss */
    .external-event {
        margin: 15px 0;
        padding: 5px 10px;
        color: #fff;
        cursor: pointer;
        border-radius: 3px;
    }

    /***********************************/
    /**          FEED                 **/
    /**********************************/
    /* line 22, ../../src/sass/_widgets.scss */
    .feed {
        height: 100%;
        position: relative;
    }
        /* line 27, ../../src/sass/_widgets.scss */
        .feed .wrapper {
            position: relative;
        }
        /* line 31, ../../src/sass/_widgets.scss */
        .feed .vertical-line {
            height: 100%;
            width: 2px;
            background: #eeeeee;
            position: absolute;
            left: 13px;
        }

    /* line 40, ../../src/sass/_widgets.scss */
    .feed-item {
        padding-right: 6px;
    }
        /* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .feed-item:before, .feed-item:after {
            content: " ";
            display: table;
        }
        /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .feed-item:after {
            clear: both;
        }
        /* line 43, ../../src/sass/_widgets.scss */
        .feed-item .icon {
            position: relative;
            z-index: 1;
            background: #eeeeee;
            text-align: center;
            color: white;
            width: 28px;
            height: 28px;
            line-height: 28px;
            vertical-align: middle;
            -moz-border-radius: 20px;
            -webkit-border-radius: 20px;
            border-radius: 20px;
            font-size: 16px;
        }
            /* line 56, ../../src/sass/_widgets.scss */
            .feed-item .icon img {
                position: relative;
                top: -2px;
                width: 26px;
                height: 26px;
            }

        /* line 65, ../../src/sass/_widgets.scss */
        .feed-item + .feed-item {
            margin-top: 10px;
        }

    /* line 69, ../../src/sass/_widgets.scss */
    .feed-item-body {
        padding-top: 3px;
        margin-left: 40px;
        vertical-align: bottom;
    }
        /* line 74, ../../src/sass/_widgets.scss */
        .feed-item-body .time {
            font-size: 12px;
            line-height: 1.5em;
            color: gray;
        }

    /* line 83, ../../src/sass/_widgets.scss */
    table.table thead .sorting,
    table.table thead .sorting_asc,
    table.table thead .sorting_desc,
    table.table thead .sorting_asc_disabled,
    table.table thead .sorting_desc_disabled {
        cursor: pointer;
        *cursor: hand;
    }

    /* line 45, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_utilities.scss */
    .hidden {
        visibility: hidden !important;
        display: none !important;
    }

    /* line 92, ../../src/sass/_widgets.scss */
    table.table thead .sorting {
        background: url("../img/datatables/sort_both.png") no-repeat center right;
    }

    /* line 93, ../../src/sass/_widgets.scss */
    table.table thead .sorting_asc {
        background: url("../img/datatables/sort_asc.png") no-repeat center right;
    }

    /* line 94, ../../src/sass/_widgets.scss */
    table.table thead .sorting_desc {
        background: url("../img/datatables/sort_desc.png") no-repeat center right;
    }

    /* line 96, ../../src/sass/_widgets.scss */
    table.table thead .sorting_asc_disabled {
        background: url("../img/datatables/sort_asc_disabled.png") no-repeat center right;
    }

    /* line 97, ../../src/sass/_widgets.scss */
    table.table thead .sorting_desc_disabled {
        background: url("../img/datatables/sort_desc_disabled.png") no-repeat center right;
    }

    /* line 99, ../../src/sass/_widgets.scss */
    .per-page-selector label {
        vertical-align: middle;
        line-height: 26px;
    }

    /* line 196, ../../src/sass/_override-bootstrap.scss */
    .table > thead > tr > th {
        font-weight: 600;
        text-transform: uppercase;
        border-bottom-width: 1px;
    }


    /* line 104, ../../src/sass/_widgets.scss */
    .table-top-control {
        margin-bottom: 5px;
    }

    /* line 108, ../../src/sass/_widgets.scss */
    .table-bottom-control {
        margin-top: 10px;
    }
        /* line 110, ../../src/sass/_widgets.scss */
        .table-bottom-control .pagination {
            margin: 0;
        }

    /* line 83, ../../src/sass/_override-bootstrap.scss */
    .form-control {
        -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
        -o-transition: border linear 0.2s, box-shadow linear 0.2s;
        transition: border linear 0.2s, box-shadow linear 0.2s;
    }
        /* line 86, ../../src/sass/_override-bootstrap.scss */
        .form-control[type=search], .form-control.search {
            padding-left: 26px;
        }

    /* line 295, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-control-static {
        padding-top: 6px;
        padding-bottom: 6px;
        margin-bottom: 0;
    }
        /* line 302, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
        .input-group-lg > .form-control-static.input-group-addon,
        .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
        .input-group-sm > .form-control-static.input-group-addon,
        .input-group-sm > .input-group-btn > .form-control-static.btn {
            padding-left: 0;
            padding-right: 0;
        }

    /* line 71, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .input-sm, .input-group-sm > .form-control,
    .input-group-sm > .input-group-addon,
    .input-group-sm > .input-group-btn > .btn, .form-group-sm .form-control {
        height: 28px;
        padding: 4px 10px;
        font-size: 12px;
        line-height: 1.5;
        border-radius: 3px;
    }

    /* line 79, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    select.input-sm, .input-group-sm > select.form-control,
    .input-group-sm > select.input-group-addon,
    .input-group-sm > .input-group-btn > select.btn, .form-group-sm .form-control {
        height: 28px;
        line-height: 28px;
    }

    /* line 84, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    textarea.input-sm, .input-group-sm > textarea.form-control,
    .input-group-sm > textarea.input-group-addon,
    .input-group-sm > .input-group-btn > textarea.btn, .form-group-sm .form-control,
    select[multiple].input-sm,
    .input-group-sm > select[multiple].form-control,
    .input-group-sm > select[multiple].input-group-addon,
    .input-group-sm > .input-group-btn > select[multiple].btn, .form-group-sm .form-control {
        height: auto;
    }

    /* line 71, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .input-lg, .input-group-lg > .form-control,
    .input-group-lg > .input-group-addon,
    .input-group-lg > .input-group-btn > .btn, .form-group-lg .form-control {
        height: 44px;
        padding: 10px 16px;
        font-size: 16.25px;
        line-height: 1.33;
        border-radius: 6px;
    }

    /* line 79, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    select.input-lg, .input-group-lg > select.form-control,
    .input-group-lg > select.input-group-addon,
    .input-group-lg > .input-group-btn > select.btn, .form-group-lg .form-control {
        height: 44px;
        line-height: 44px;
    }

    /* line 84, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    textarea.input-lg, .input-group-lg > textarea.form-control,
    .input-group-lg > textarea.input-group-addon,
    .input-group-lg > .input-group-btn > textarea.btn, .form-group-lg .form-control,
    select[multiple].input-lg,
    .input-group-lg > select[multiple].form-control,
    .input-group-lg > select[multiple].input-group-addon,
    .input-group-lg > .input-group-btn > select[multiple].btn, .form-group-lg .form-control {
        height: auto;
    }

    /* line 324, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .has-feedback {
        position: relative;
    }
        /* line 329, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .has-feedback .form-control {
            padding-right: 37.5px;
        }

    /* line 334, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-control-feedback {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        pointer-events: none;
    }

    /* line 346, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
    .input-group-lg > .input-group-addon + .form-control-feedback,
    .input-group-lg > .input-group-btn > .btn + .form-control-feedback {
        width: 44px;
        height: 44px;
        line-height: 44px;
    }

    /* line 351, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
    .input-group-sm > .input-group-addon + .form-control-feedback,
    .input-group-sm > .input-group-btn > .btn + .form-control-feedback {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }

    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .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: white;
    }
    /* line 21, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-success .form-control {
        border-color: white;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
        /* line 24, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
        .has-success .form-control:focus {
            border-color: #e6e6e6;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        }
    /* line 31, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-success .input-group-addon {
        color: white;
        border-color: white;
        background-color: rgba(214, 233, 198, 0.28);
    }
    /* line 37, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-success .form-control-feedback {
        color: white;
    }

    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .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: white;
    }
    /* line 21, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-warning .form-control {
        border-color: white;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
        /* line 24, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
        .has-warning .form-control:focus {
            border-color: #e6e6e6;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        }
    /* line 31, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-warning .input-group-addon {
        color: white;
        border-color: white;
        background-color: rgba(229, 190, 86, 0.28);
    }
    /* line 37, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-warning .form-control-feedback {
        color: white;
    }

    /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .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: white;
    }
    /* line 21, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-error .form-control {
        border-color: white;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
        /* line 24, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
        .has-error .form-control:focus {
            border-color: #e6e6e6;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        }
    /* line 31, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-error .input-group-addon {
        color: white;
        border-color: white;
        background-color: rgba(242, 99, 73, 0.29);
    }
    /* line 37, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_forms.scss */
    .has-error .form-control-feedback {
        color: white;
    }

    /* line 371, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .has-feedback label ~ .form-control-feedback {
        top: 23px;
    }
    /* line 374, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .has-feedback label.sr-only ~ .form-control-feedback {
        top: 0;
    }

    /* line 385, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .help-block {
        display: block;
        margin-top: 5px;
        margin-bottom: 10px;
        color: white;
    }

    @media (min-width: 768px) {
        /* line 410, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .form-group {
            display: inline-block;
            margin-bottom: 0;
            vertical-align: middle;
        }
        /* line 417, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .form-control {
            display: inline-block;
            width: auto;
            vertical-align: middle;
        }
        /* line 424, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .form-control-static {
            display: inline-block;
        }
        /* line 428, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .input-group {
            display: inline-table;
            vertical-align: middle;
        }
            /* line 432, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            .form-inline .input-group .input-group-addon,
            .form-inline .input-group .input-group-btn,
            .form-inline .input-group .form-control {
                width: auto;
            }
            /* line 440, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            .form-inline .input-group > .form-control {
                width: 100%;
            }
        /* line 444, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .control-label {
            margin-bottom: 0;
            vertical-align: middle;
        }
        /* line 452, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .radio,
        .form-inline .checkbox {
            display: inline-block;
            margin-top: 0;
            margin-bottom: 0;
            vertical-align: middle;
        }
            /* line 459, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            .form-inline .radio label,
            .form-inline .checkbox label {
                padding-left: 0;
            }
            /* line 463, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            .form-inline .radio input[type="radio"],
            .form-inline .checkbox input[type="checkbox"] {
                position: relative;
                margin-left: 0;
            }
        /* line 470, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-inline .has-feedback .form-control-feedback {
            top: 0;
        }
    }

    /* line 492, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-horizontal .radio,
    .form-horizontal .checkbox,
    .form-horizontal .radio-inline,
    .form-horizontal .checkbox-inline {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 6px;
    }
    /* line 502, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-horizontal .radio,
    .form-horizontal .checkbox {
        min-height: 24px;
    }
    /* line 508, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-horizontal .form-group {
        margin-left: -15px;
        margin-right: -15px;
    }
        /* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .form-horizontal .form-group:before, .form-horizontal .form-group:after {
            content: " ";
            display: table;
        }
        /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .form-horizontal .form-group:after {
            clear: both;
        }

    @media (min-width: 768px) {
        /* line 515, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .control-label {
            text-align: right;
            margin-bottom: 0;
            padding-top: 6px;
        }
    }
    /* line 526, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-horizontal .has-feedback .form-control-feedback {
        right: 15px;
    }

    @media (min-width: 768px) {
        /* line 536, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .form-group-lg .control-label {
            padding-top: 14.3px;
        }
    }

    @media (min-width: 768px) {
        /* line 543, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .form-group-sm .control-label {
            padding-top: 5px;
        }
    }


    /* line 165, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    input[type="search"] {
        -webkit-appearance: none;
    }

    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        /* line 178, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        input[type="date"],
        input[type="time"],
        input[type="datetime-local"],
        input[type="month"] {
            line-height: 30px;
        }

            /* line 184, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
            .input-group-sm > input[type="date"].input-group-addon,
            .input-group-sm > .input-group-btn > input[type="date"].btn,
            input[type="time"].input-sm,
            .input-group-sm > input[type="time"].form-control,
            .input-group-sm > input[type="time"].input-group-addon,
            .input-group-sm > .input-group-btn > input[type="time"].btn,
            input[type="datetime-local"].input-sm,
            .input-group-sm > input[type="datetime-local"].form-control,
            .input-group-sm > input[type="datetime-local"].input-group-addon,
            .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
            input[type="month"].input-sm,
            .input-group-sm > input[type="month"].form-control,
            .input-group-sm > input[type="month"].input-group-addon,
            .input-group-sm > .input-group-btn > input[type="month"].btn {
                line-height: 28px;
            }

            /* line 190, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
            input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
            .input-group-lg > input[type="date"].input-group-addon,
            .input-group-lg > .input-group-btn > input[type="date"].btn,
            input[type="time"].input-lg,
            .input-group-lg > input[type="time"].form-control,
            .input-group-lg > input[type="time"].input-group-addon,
            .input-group-lg > .input-group-btn > input[type="time"].btn,
            input[type="datetime-local"].input-lg,
            .input-group-lg > input[type="datetime-local"].form-control,
            .input-group-lg > input[type="datetime-local"].input-group-addon,
            .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
            input[type="month"].input-lg,
            .input-group-lg > input[type="month"].form-control,
            .input-group-lg > input[type="month"].input-group-addon,
            .input-group-lg > .input-group-btn > input[type="month"].btn {
                line-height: 44px;
            }
    }

    /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

    /* line 54, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
    .input-group-addon,
    .input-group-btn,
    .input-group .form-control {
        display: table-cell;
    }
        /* line 59, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_input-groups.scss */
        .input-group-addon:not(:first-child):not(:last-child),
        .input-group-btn:not(:first-child):not(:last-child),
        .input-group .form-control:not(:first-child):not(:last-child) {
            border-radius: 0;
        }


    /* line 911, ../../src/sass/_base.scss */
    .form-control.input-transparent {
        border: none;
        color: #f8f8f8;
        background-color: white;
    }
        /* line 103, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
        .form-control.input-transparent::-moz-placeholder {
            color: rgba(238, 238, 238, 0.76);
            opacity: 1;
        }
        /* line 107, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
        .form-control.input-transparent:-ms-input-placeholder {
            color: rgba(238, 238, 238, 0.76);
        }
        /* line 108, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
        .form-control.input-transparent::-webkit-input-placeholder {
            color: rgba(238, 238, 238, 0.76);
        }
        /* line 917, ../../src/sass/_base.scss */
        .form-control.input-transparent:focus {
            color: #f8f8f8;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
        }
        /* line 922, ../../src/sass/_base.scss */
        .form-control.input-transparent[disabled], .form-control.input-transparent[readonly], fieldset[disabled] .form-control.input-transparent {
            background-color: white;
        }

    /***********************************/
    /**           Backgrid            **/
    /***********************************/
    /* line 486, ../../src/sass/_override-custom-libs.scss */
    .table-editable th > a {
        color: #f8f8f8;
        cursor: pointer;
    }
    /* line 491, ../../src/sass/_override-custom-libs.scss */
    .table-editable .sort-caret {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 0.3em;
        border: 0;
        content: "";
        font: 15px FontAwesome;
    }
    /* line 502, ../../src/sass/_override-custom-libs.scss */
    .table-editable .ascending .sort-caret:before {
        content: "\f0d8";
    }
    /* line 508, ../../src/sass/_override-custom-libs.scss */
    .table-editable .descending .sort-caret:before {
        content: "\f0d7";
    }
    /* line 513, ../../src/sass/_override-custom-libs.scss */
    .table-editable + .backgrid-paginator > ul {
        font-weight: 400;
        display: inline-block;
        padding-left: 0;
        margin: 18px 0;
        border-radius: 3px;
    }
        /* line 520, ../../src/sass/_override-custom-libs.scss */
        .table-editable + .backgrid-paginator > ul > li {
            display: inline;
        }
            /* line 522, ../../src/sass/_override-custom-libs.scss */
            .table-editable + .backgrid-paginator > ul > li > a,
            .table-editable + .backgrid-paginator > ul > li > span {
                position: relative;
                float: left;
                line-height: 1.428571429;
                text-decoration: none;
                color: #666666;
                background-color: transparent;
                border: 1px solid transparent;
                border-radius: 3px;
                margin: 0 2px;
            }
                /* line 534, ../../src/sass/_override-custom-libs.scss */
                .table-editable + .backgrid-paginator > ul > li > a > .fa-lg,
                .table-editable + .backgrid-paginator > ul > li > span > .fa-lg {
                    position: relative;
                    top: -1px;
                }
            /* line 540, ../../src/sass/_override-custom-libs.scss */
            .table-editable + .backgrid-paginator > ul > li:first-child > a,
            .table-editable + .backgrid-paginator > ul > li:first-child > span {
                margin-left: 0;
            }
            /* line 549, ../../src/sass/_override-custom-libs.scss */
            .table-editable + .backgrid-paginator > ul > li > a:hover, .table-editable + .backgrid-paginator > ul > li > a:focus,
            .table-editable + .backgrid-paginator > ul > li > span:hover,
            .table-editable + .backgrid-paginator > ul > li > span:focus {
                color: #666666;
                background-color: #eeeeee;
                border-color: transparent;
            }
        /* line 559, ../../src/sass/_override-custom-libs.scss */
        .table-editable + .backgrid-paginator > ul > .active > a, .table-editable + .backgrid-paginator > ul > .active > a:hover, .table-editable + .backgrid-paginator > ul > .active > a:focus,
        .table-editable + .backgrid-paginator > ul > .active > span,
        .table-editable + .backgrid-paginator > ul > .active > span:hover,
        .table-editable + .backgrid-paginator > ul > .active > span:focus {
            z-index: 2;
            color: #666666;
            background-color: #eeeeee;
            border-color: transparent;
            cursor: default;
        }
        /* line 571, ../../src/sass/_override-custom-libs.scss */
        .table-editable + .backgrid-paginator > ul > .disabled > span,
        .table-editable + .backgrid-paginator > ul > .disabled > span:hover,
        .table-editable + .backgrid-paginator > ul > .disabled > span:focus,
        .table-editable + .backgrid-paginator > ul > .disabled > a,
        .table-editable + .backgrid-paginator > ul > .disabled > a:hover,
        .table-editable + .backgrid-paginator > ul > .disabled > a:focus {
            color: gray;
            background-color: transparent;
            border-color: transparent;
            cursor: not-allowed;
        }
        /* line 5, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
        .table-editable + .backgrid-paginator > ul > li > a,
        .table-editable + .backgrid-paginator > ul > li > span {
            padding: 4px 10px;
            font-size: 12px;
        }
        /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
        .table-editable + .backgrid-paginator > ul > li:first-child > a,
        .table-editable + .backgrid-paginator > ul > li:first-child > span {
            border-bottom-left-radius: 3px;
            border-top-left-radius: 3px;
        }
        /* line 17, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
        .table-editable + .backgrid-paginator > ul > li:last-child > a,
        .table-editable + .backgrid-paginator > ul > li:last-child > span {
            border-bottom-right-radius: 3px;
            border-top-right-radius: 3px;
        }

    /***********************************/
    /**          Datatables           **/
    /***********************************/
    /* line 592, ../../src/sass/_override-custom-libs.scss */
    table.dataTable thead .sorting {
        background: url("../img/datatables/sort_both.png") no-repeat center right;
    }

    /* line 595, ../../src/sass/_override-custom-libs.scss */
    table.dataTable thead .sorting_asc {
        background: url("../img/datatables/sort_asc.png") no-repeat center right;
    }

    /* line 598, ../../src/sass/_override-custom-libs.scss */
    table.dataTable thead .sorting_desc {
        background: url("../img/datatables/ort_desc.png") no-repeat center right;
    }

    /* line 601, ../../src/sass/_override-custom-libs.scss */
    table.dataTable thead .sorting_asc_disabled {
        background: url("../img/datatables/sort_asc_disabled.png") no-repeat center right;
    }

    /* line 604, ../../src/sass/_override-custom-libs.scss */
    table.dataTable thead .sorting_desc_disabled {
        background: url("../img/datatables/sort_desc_disabled.png") no-repeat center right;
    }

    /* line 608, ../../src/sass/_override-custom-libs.scss */
    .dataTables_wrapper .dataTables_paginate {
        text-align: right;
    }

    /* line 83, ../../src/sass/_widgets.scss */
    table.table thead .sorting,
    table.table thead .sorting_asc,
    table.table thead .sorting_desc,
    table.table thead .sorting_asc_disabled,
    table.table thead .sorting_desc_disabled {
        cursor: pointer;
        *cursor: hand;
    }


    /* line 1243, ../../src/sass/_base.scss */
    .table-editable .sort-caret {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 0.3em;
        border: 0;
        content: "";
        font: 15px FontAwesome;
    }

    /* line 1254, ../../src/sass/_base.scss */
    .table-editable .ascending .sort-caret:before {
        content: "\f0d8";
    }

    /* line 1260, ../../src/sass/_base.scss */
    .table-editable .descending .sort-caret:before {
        content: "\f0d7";
    }


    /***********************************/
    /**      LIST GROUP SORTABLE      **/
    /***********************************/
    /* line 1277, ../../src/sass/_widgets.scss */
    .list-group-sortable > .list-group-item {
        margin-bottom: 0;
        border-radius: 3px;
    }
        /* line 1281, ../../src/sass/_widgets.scss */
        .list-group-sortable > .list-group-item + .list-group-item {
            margin-top: 9px;
        }
    /* line 1286, ../../src/sass/_widgets.scss */
    .list-group-sortable > .list-group-item-placeholder {
        border: 1px dashed #999999;
        background-color: rgba(255, 255, 255, 0.25);
    }
    /* line 1291, ../../src/sass/_widgets.scss */
    .list-group-sortable:last-of-type > .list-group-item:last-child {
        border-bottom: 1px solid transparent;
    }


    /***************************/
    /*         Modals          */
    /***************************/
    /* line 662, ../../src/sass/_override-bootstrap.scss */
    .modal {
        color: #555555;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }
        /* line 666, ../../src/sass/_override-bootstrap.scss */
        .modal h1, .modal h2, .modal h3, .modal h4, .modal h5, .modal h6 {
            color: #555555;
        }

    /* line 671, ../../src/sass/_override-bootstrap.scss */
    .modal-footer {
        background-color: #fff;
    }

    @-webkit-keyframes fadeIn {
        /* line 1127, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
        }
        /* line 1131, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        /* line 1137, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
        }
        /* line 1141, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
        }
    }
    /* line 1146, ../../../bower_components/animate.css/animate.css */
    .fadeIn {
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
    }

    @-webkit-keyframes fadeInDown {
        /* line 1152, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        /* line 1158, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInDown {
        /* line 1166, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            -ms-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        /* line 1173, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1181, ../../../bower_components/animate.css/animate.css */
    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
    }

    @-webkit-keyframes fadeInDownBig {
        /* line 1187, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
        }
        /* line 1193, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInDownBig {
        /* line 1201, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -2000px, 0);
            -ms-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
        }
        /* line 1208, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1216, ../../../bower_components/animate.css/animate.css */
    .fadeInDownBig {
        -webkit-animation-name: fadeInDownBig;
        animation-name: fadeInDownBig;
    }

    @-webkit-keyframes fadeInLeft {
        /* line 1222, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }
        /* line 1228, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInLeft {
        /* line 1236, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            -ms-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }
        /* line 1243, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1251, ../../../bower_components/animate.css/animate.css */
    .fadeInLeft {
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft;
    }

    @-webkit-keyframes fadeInLeftBig {
        /* line 1257, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
        }
        /* line 1263, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInLeftBig {
        /* line 1271, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px, 0, 0);
            -ms-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
        }
        /* line 1278, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1286, ../../../bower_components/animate.css/animate.css */
    .fadeInLeftBig {
        -webkit-animation-name: fadeInLeftBig;
        animation-name: fadeInLeftBig;
    }

    @-webkit-keyframes fadeInRight {
        /* line 1292, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        /* line 1298, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInRight {
        /* line 1306, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        /* line 1313, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1321, ../../../bower_components/animate.css/animate.css */
    .fadeInRight {
        -webkit-animation-name: fadeInRight;
        animation-name: fadeInRight;
    }

    @-webkit-keyframes fadeInRightBig {
        /* line 1327, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
        }
        /* line 1333, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInRightBig {
        /* line 1341, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(2000px, 0, 0);
            -ms-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
        }
        /* line 1348, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1356, ../../../bower_components/animate.css/animate.css */
    .fadeInRightBig {
        -webkit-animation-name: fadeInRightBig;
        animation-name: fadeInRightBig;
    }

    @-webkit-keyframes fadeInUp {
        /* line 1362, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        /* line 1368, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInUp {
        /* line 1376, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            -ms-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        /* line 1383, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1391, ../../../bower_components/animate.css/animate.css */
    .fadeInUp {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

    @-webkit-keyframes fadeInUpBig {
        /* line 1397, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
        }
        /* line 1403, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInUpBig {
        /* line 1411, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 2000px, 0);
            -ms-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
        }
        /* line 1418, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    /* line 1426, ../../../bower_components/animate.css/animate.css */
    .fadeInUpBig {
        -webkit-animation-name: fadeInUpBig;
        animation-name: fadeInUpBig;
    }

    @-webkit-keyframes fadeOut {
        /* line 1432, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1436, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
        }
    }

    @keyframes fadeOut {
        /* line 1442, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1446, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
        }
    }
    /* line 1451, ../../../bower_components/animate.css/animate.css */
    .fadeOut {
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
    }

    @-webkit-keyframes fadeOutDown {
        /* line 1457, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1461, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
    }

    @keyframes fadeOutDown {
        /* line 1469, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1473, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            -ms-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
    }
    /* line 1481, ../../../bower_components/animate.css/animate.css */
    .fadeOutDown {
        -webkit-animation-name: fadeOutDown;
        animation-name: fadeOutDown;
    }

    @-webkit-keyframes fadeOutDownBig {
        /* line 1487, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1491, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
        }
    }

    @keyframes fadeOutDownBig {
        /* line 1499, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1503, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, 2000px, 0);
            -ms-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
        }
    }
    /* line 1511, ../../../bower_components/animate.css/animate.css */
    .fadeOutDownBig {
        -webkit-animation-name: fadeOutDownBig;
        animation-name: fadeOutDownBig;
    }

    @-webkit-keyframes fadeOutLeft {
        /* line 1517, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1521, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }
    }

    @keyframes fadeOutLeft {
        /* line 1529, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1533, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            -ms-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }
    }
    /* line 1541, ../../../bower_components/animate.css/animate.css */
    .fadeOutLeft {
        -webkit-animation-name: fadeOutLeft;
        animation-name: fadeOutLeft;
    }

    @-webkit-keyframes fadeOutLeftBig {
        /* line 1547, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1551, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
        }
    }

    @keyframes fadeOutLeftBig {
        /* line 1559, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1563, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px, 0, 0);
            -ms-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
        }
    }
    /* line 1571, ../../../bower_components/animate.css/animate.css */
    .fadeOutLeftBig {
        -webkit-animation-name: fadeOutLeftBig;
        animation-name: fadeOutLeftBig;
    }

    @-webkit-keyframes fadeOutRight {
        /* line 1577, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1581, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
    }

    @keyframes fadeOutRight {
        /* line 1589, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1593, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
    }
    /* line 1601, ../../../bower_components/animate.css/animate.css */
    .fadeOutRight {
        -webkit-animation-name: fadeOutRight;
        animation-name: fadeOutRight;
    }

    @-webkit-keyframes fadeOutRightBig {
        /* line 1607, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1611, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
        }
    }

    @keyframes fadeOutRightBig {
        /* line 1619, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1623, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(2000px, 0, 0);
            -ms-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
        }
    }
    /* line 1631, ../../../bower_components/animate.css/animate.css */
    .fadeOutRightBig {
        -webkit-animation-name: fadeOutRightBig;
        animation-name: fadeOutRightBig;
    }

    @-webkit-keyframes fadeOutUp {
        /* line 1637, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1641, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
    }

    @keyframes fadeOutUp {
        /* line 1649, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1653, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            -ms-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
    }
    /* line 1661, ../../../bower_components/animate.css/animate.css */
    .fadeOutUp {
        -webkit-animation-name: fadeOutUp;
        animation-name: fadeOutUp;
    }

    @-webkit-keyframes fadeOutUpBig {
        /* line 1667, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1671, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
        }
    }

    @keyframes fadeOutUpBig {
        /* line 1679, ../../../bower_components/animate.css/animate.css */
        0% {
            opacity: 1;
        }
        /* line 1683, ../../../bower_components/animate.css/animate.css */
        100% {
            opacity: 0;
            -webkit-transform: translate3d(0, -2000px, 0);
            -ms-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
        }
    }
    /* line 1691, ../../../bower_components/animate.css/animate.css */
    .fadeOutUpBig {
        -webkit-animation-name: fadeOutUpBig;
        animation-name: fadeOutUpBig;
    }

    /***********************************/
    /**          FILEUPLOAD          **/
    /**********************************/
    /* line 123, ../../src/sass/_widgets.scss */
    .fileupload-progress.fade.in .progress {
        margin-top: 20px;
        margin-bottom: 5px;
    }
    /* line 128, ../../src/sass/_widgets.scss */
    .fileupload-progress.fade.in .progress-extended {
        margin-bottom: 10px;
    }
    /* line 133, ../../src/sass/_widgets.scss */
    .fileupload-progress.fade .progress {
        margin: 0;
    }

    /* line 138, ../../src/sass/_widgets.scss */
    .template-upload video {
        max-width: 200px;
    }

    /* line 142, ../../src/sass/_widgets.scss */
    .dropzone {
        border: 2px dashed #aaaaaa;
        margin-top: 10px;
        font-size: 40px;
        color: #aaaaaa;
        line-height: 120px;
        padding-left: 7%;
        vertical-align: middle;
        border-radius: 3px;
    }
        /* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .dropzone:before, .dropzone:after {
            content: " ";
            display: table;
        }
        /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .dropzone:after {
            clear: both;
        }
        /* line 154, ../../src/sass/_widgets.scss */
        .dropzone i {
            margin-top: 20px;
            padding-right: 10%;
        }

    /* line 683, ../../src/sass/_widgets.scss */
    .carousel-fade .carousel-inner > .item {
        -webkit-transition: opacity 0.2s ease-in-out;
        -o-transition: opacity 0.2s ease-in-out;
        transition: opacity 0.2s ease-in-out;
    }
    /* line 687, ../../src/sass/_widgets.scss */
    .carousel-fade .carousel-inner > .next,
    .carousel-fade .carousel-inner > .prev {
        left: auto;
    }
        /* line 691, ../../src/sass/_widgets.scss */
        .carousel-fade .carousel-inner > .next.left,
        .carousel-fade .carousel-inner > .prev.right {
            opacity: 1;
            left: auto;
        }
    /* line 697, ../../src/sass/_widgets.scss */
    .carousel-fade .carousel-inner > .active.left,
    .carousel-fade .carousel-inner > .active.right,
    .carousel-fade .carousel-inner > .next,
    .carousel-fade .carousel-inner > .prev {
        opacity: 0;
        left: auto;
    }

    /* line 10, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_component-animations.scss */
    .fade {
        opacity: 0;
        -webkit-transition: opacity 0.15s linear;
        -o-transition: opacity 0.15s linear;
        transition: opacity 0.15s linear;
    }
        /* line 13, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_component-animations.scss */
        .fade.in {
            opacity: 1;
        }

    /* line 32, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -moz-transition: -moz-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
    }

    /* line 64, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-backdrop {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        background-color: black;
    }
        /* line 71, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-backdrop.fade {
            opacity: 0;
            filter: alpha(opacity=0);
            z-index: -1;
        }
        /* line 72, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-backdrop.in {
            opacity: 0;
            filter: alpha(opacity=50);
            z-index: -1;
        }


    /***********************************/
    /**            MODALS            **/
    /**********************************/
    /* line 1134, ../../src/sass/_base.scss */
    .modal img {
        max-width: 100%;
    }

    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-open {
        overflow: hidden;
    }

    /* line 16, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal {
        display: none;
        overflow: hidden;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040 !important;
        -webkit-overflow-scrolling: touch;
        outline: 0;
    }
        /* line 32, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal.fade .modal-dialog {
            -webkit-transform: translate(0, -25%);
            -ms-transform: translate(0, -25%);
            -o-transform: translate(0, -25%);
            transform: translate(0, -25%);
            -webkit-transition: -webkit-transform 0.3s ease-out;
            -moz-transition: -moz-transform 0.3s ease-out;
            -o-transition: -o-transform 0.3s ease-out;
            transition: transform 0.3s ease-out;
        }
        /* line 36, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal.in .modal-dialog {
            -webkit-transform: translate(0, 0);
            -ms-transform: translate(0, 0);
            -o-transform: translate(0, 0);
            transform: translate(0, 0);
        }

    /* line 38, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* line 44, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-dialog {
        position: relative;
        width: auto;
        margin: 10px;
    }

    /* line 77, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-header {
        padding: 15px;
        border-bottom: 1px solid #e5e5e5;
        min-height: 16.428571429px;
    }

        /* line 83, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-header .close {
            margin-top: -2px;
        }

    /* line 88, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */

    /* line 51, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-content {
        position: relative;
        background-color: white;
        border: 1px solid var(--color-primary);
        border-radius: 10px;
        -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        background-clip: padding-box;
        outline: 0;
    }


    /* line 77, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-header {
        padding: 15px;
        border-bottom: 1px solid #e5e5e5;
        min-height: 16.428571429px;
    }

        /* line 83, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-header .close {
            margin-top: -2px;
        }

    /* line 88, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-title {
        color: var(--color-secondary);
        margin: 0;
        line-height: 1.428571429;
    }

    /* line 95, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-body {
        text-align: center !important;
        position: relative;
        padding: 30px 0 30px 0;
    }

    /* line 101, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-footer {
        padding: 15px;
        text-align: right;
        border-top: 1px solid #e5e5e5;
    }
        /* line 14, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .modal-footer:before, .modal-footer:after {
            content: " ";
            display: table;
        }
        /* line 19, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
        .modal-footer:after {
            clear: both;
        }
        /* line 108, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-footer .btn + .btn {
            margin-left: 5px;
            margin-bottom: 0;
        }
        /* line 113, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-footer .btn-group .btn + .btn {
            margin-left: -1px;
        }
        /* line 117, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-footer .btn-block + .btn-block {
            margin-left: 0;
        }

    /* line 123, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
    .modal-scrollbar-measure {
        position: absolute;
        top: -9999px;
        width: 50px;
        height: 50px;
        overflow: scroll;
    }

    @media (min-width: 768px) {
        /* line 134, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-dialog {
            width: 600px;
            margin: 30px auto;
        }

        /* line 138, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-content {
            -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        /* line 143, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-sm {
            width: 300px;
        }
    }

    @media (min-width: 992px) {
        /* line 147, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_modals.scss */
        .modal-lg {
            width: 900px;
        }
    }


    @media (min-width: 768px) {
        /* line 379, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
        .navbar-left {
            float: left !important;
        }

        /* line 382, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
        .navbar-right {
            float: right !important;
            margin-right: -15px;
        }
            /* line 386, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_navbar.scss */
            .navbar-right ~ .navbar-right {
                margin-right: 0;
            }
    }

    /***********************************/
    /**           Rickshaw            **/
    /***********************************/
    /* line 617, ../../src/sass/_override-custom-libs.scss */

    /* line 10, ../../../bower_components/font-awesome/scss/_bordered-pulled.scss */
    .pull-right {
        float: right !important;
        margin-bottom: 50px;
        color: var(--color-secondary);
    }

    /* line 39, ../../src/sass/_mixins.scss */
    .ml-sm {
        margin-left: 10px;
    }

    /* line 15, ../../../bower_components/font-awesome/scss/_bordered-pulled.scss */
    .fa.pull-right {
        margin-left: .3em;
    }

    /* line 218, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
        right: 12px;
        left: auto;
    }

    /* line 222, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
        right: 13px;
        left: auto;
    }



    /* line 38, ../../src/sass/_general.scss */
    body {
        background-color: #f7f9fc;
        /*
  background-image: radial-gradient(farthest-side ellipse at 10% 0, rgba(74, 121, 147, 0.89), rgba(204, 204, 204, 0.85) 80%, rgba(185, 135, 131, 0.87) 120%);
  background-image: -webkit-radial-gradient(10% 0, farthest-side ellipse, rgba(74, 121, 147, 0.89), rgba(204, 204, 204, 0.85) 80%, rgba(185, 135, 131, 0.87) 120%);
  background-image: -moz-radial-gradient(10% 0, farthest-side ellipse, rgba(74, 121, 147, 0.89), rgba(204, 204, 204, 0.85) 80%, rgba(185, 135, 131, 0.87) 120%);
  background-attachment: fixed, fixed;
  */
    }


    /* line 66, ../../src/sass/_general.scss */
    input[type=search], input.search {
        padding-left: 30px;
        background-color: white;
        background: url(https://api.iconify.design/bx/search-alt-2.svg) 5px 10px no-repeat white;
    }
        /* line 71, ../../src/sass/_general.scss */
        input[type=search].input-transparent, input.search.input-transparent {
            border: none;
            color: #666666;
            background: url(https://api.iconify.design/bx/search-alt-2.svg) 5px 10px no-repeat white;
        }
            /* line 103, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
            input[type=search].input-transparent::-moz-placeholder, input.search.input-transparent::-moz-placeholder {
                color: rgba(238, 238, 238, 0.76);
                opacity: 1;
            }
            /* line 107, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
            input[type=search].input-transparent:-ms-input-placeholder, input.search.input-transparent:-ms-input-placeholder {
                color: rgba(238, 238, 238, 0.76);
            }
            /* line 108, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
            input[type=search].input-transparent::-webkit-input-placeholder, input.search.input-transparent::-webkit-input-placeholder {
                color: rgba(238, 238, 238, 0.76);
            }

    /* line 79, ../../src/sass/_general.scss */
    ul ul,
    ol ul {
        list-style: none;
    }

    /* line 84, ../../src/sass/_general.scss */
    ul, ol {
        list-style: none;
        padding: 10px;
    }

    /* line 92, ../../src/sass/_general.scss */
    iframe {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* line 97, ../../src/sass/_general.scss */
    fieldset {
        width: 100%;
        min-width: 0;
    }


    /* line 103, ../../src/sass/_general.scss */
    form {
        margin-bottom: 0;
    }

    /* line 107, ../../src/sass/_general.scss */
    a {
        -webkit-transition: color 0.2s;
        -o-transition: color 0.2s;
        transition: color 0.2s;
    }

    /* line 111, ../../src/sass/_general.scss */
    .btn {
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }

    /* line 122, ../../src/sass/_override-bootstrap.scss */
    .search-query, .navbar-form .search-query {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        line-height: 18px;
    }
    /* line 53, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .form-search .bootstrap-select.btn-group,
    .form-inline .bootstrap-select.btn-group,
    .form-horizontal .bootstrap-select.btn-group,
    .form-group .bootstrap-select.btn-group {
        margin-bottom: 0;
    }

    /* line 230, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .bs-searchbox,
    .bs-actionsbox {
        padding: 4px 8px;
    }

    /* line 134, ../../src/sass/_override-bootstrap.scss */
    .form-horizontal input + .help-block,
    .form-horizontal select + .help-block,
    .form-horizontal textarea + .help-block,
    .form-horizontal .uneditable-input + .help-block,
    .form-horizontal .input-prepend + .help-block,
    .form-horizontal .input-append + .help-block {
        margin-top: 4.5px;
    }

    /* line 140, ../../src/sass/_override-bootstrap.scss */
    .form-group {
        margin-bottom: 18px;
    }

    @media (min-width: 768px) {
        /* line 146, ../../src/sass/_override-bootstrap.scss */
        .form-horizontal.form-label-left .control-label {
            text-align: left;
        }
    }

    /* line 183, ../../src/sass/_responsive.scss */
    .form-horizontal .control-label {
        float: none;
        width: auto;
        padding-top: 0;
        text-align: left;
    }
    /* line 190, ../../src/sass/_responsive.scss */
    .form-horizontal .controls {
        margin-left: 0;
    }
    /* line 194, ../../src/sass/_responsive.scss */
    .form-horizontal .control-list {
        padding-top: 0;
    }
    /* line 198, ../../src/sass/_responsive.scss */
    .form-horizontal .form-actions {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* line 244, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .bs-searchbox + .bs-actionsbox {
        padding: 0 8px 4px;
    }

    /* line 247, ../../../bower_components/bootstrap-select/dist/css/bootstrap-select.css */
    .bs-searchbox input.form-control {
        margin-bottom: 0;
        width: 100%;
    }

    /* line 14, ../../../bower_components/select2/select2.css */
    .select2-container,
    .select2-drop,
    .select2-search,
    .select2-search input {
        /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
        -webkit-box-sizing: border-box;
        /* webkit */
        -moz-box-sizing: border-box;
        /* firefox */
        box-sizing: border-box;
        /* css3 */
    }


        /* line 28, ../../../bower_components/select2/select2.css */
        .select2-container .select2-choice {
            display: block;
            height: 26px;
            padding: 0 0 0 8px;
            overflow: hidden;
            position: relative;
            border: 1px solid #aaa;
            white-space: nowrap;
            line-height: 26px;
            color: #444;
            text-decoration: none;
            border-radius: 4px;
            background-clip: padding-box;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: #fff;
            background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
            background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
            background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
            background-image: linear-gradient(to top, #eeeeee 0%, #ffffff 50%);
        }


    /*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
    /* line 4, ../../../bower_components/select2/select2.css */
    .select2-container {
        margin: 0;
        position: relative;
        display: inline-block;
        /* inline-block for ie7 */
        zoom: 1;
        *display: inline;
        vertical-align: middle;
    }

    /* line 14, ../../../bower_components/select2/select2.css */
    .select2-container,
    .select2-drop,
    .select2-search,
    .select2-search input {
        /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
        -webkit-box-sizing: border-box;
        /* webkit */
        -moz-box-sizing: border-box;
        /* firefox */
        box-sizing: border-box;
        /* css3 */
    }

        /* line 28, ../../../bower_components/select2/select2.css */
        .select2-container .select2-choice {
            display: block;
            height: 26px;
            padding: 0 0 0 8px;
            overflow: hidden;
            position: relative;
            border: 1px solid #aaa;
            white-space: nowrap;
            line-height: 26px;
            color: #444;
            text-decoration: none;
            border-radius: 4px;
            background-clip: padding-box;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: #fff;
            background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
            background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
            background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
            background-image: linear-gradient(to top, #eeeeee 0%, #ffffff 50%);
        }

    /* line 59, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container .select2-choice {
        padding: 0 8px 0 0;
    }

    /* line 63, ../../../bower_components/select2/select2.css */
    .select2-container.select2-drop-above .select2-choice {
        border-bottom-color: #aaa;
        border-radius: 0 0 4px 4px;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
        background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
        background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
        background-image: linear-gradient(to bottom, #eeeeee 0%, #ffffff 90%);
    }

    /* line 75, ../../../bower_components/select2/select2.css */
    .select2-container.select2-allowclear .select2-choice .select2-chosen {
        margin-right: 42px;
    }

    /* line 79, ../../../bower_components/select2/select2.css */
    .select2-container .select2-choice > .select2-chosen {
        margin-right: 26px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        float: none;
        width: auto;
    }

    /* line 91, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
        margin-left: 26px;
        margin-right: 0;
    }

    /* line 96, ../../../bower_components/select2/select2.css */
    .select2-container .select2-choice abbr {
        display: none;
        width: 12px;
        height: 12px;
        position: absolute;
        right: 24px;
        top: 8px;
        font-size: 1px;
        text-decoration: none;
        border: 0;
        background: url("select2.png") right top no-repeat;
        cursor: pointer;
        outline: 0;
    }

    /* line 113, ../../../bower_components/select2/select2.css */
    .select2-container.select2-allowclear .select2-choice abbr {
        display: inline-block;
    }

    /* line 117, ../../../bower_components/select2/select2.css */
    .select2-container .select2-choice abbr:hover {
        background-position: right -11px;
        cursor: pointer;
    }

    /* line 122, ../../../bower_components/select2/select2.css */
    .select2-drop-mask {
        border: 0;
        margin: 0;
        padding: 0;
        position: fixed;
        left: 0;
        top: 0;
        min-height: 100%;
        min-width: 100%;
        height: auto;
        width: auto;
        opacity: 0;
        z-index: 9998;
        /* styles required for IE to work */
        background-color: #fff;
        filter: alpha(opacity=0);
    }

    /* line 140, ../../../bower_components/select2/select2.css */
    .select2-drop {
        width: 100%;
        margin-top: -1px;
        position: absolute;
        z-index: 9999;
        top: 100%;
        background: #fff;
        color: #000;
        border: 1px solid #aaa;
        border-top: 0;
        border-radius: 0 0 4px 4px;
        -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    }

        /* line 158, ../../../bower_components/select2/select2.css */
        .select2-drop.select2-drop-above {
            margin-top: 1px;
            border-top: 1px solid #aaa;
            border-bottom: 0;
            border-radius: 4px 4px 0 0;
            -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
        }

    /* line 169, ../../../bower_components/select2/select2.css */
    .select2-drop-active {
        border: 1px solid #5897fb;
        border-top: none;
    }

    /* line 174, ../../../bower_components/select2/select2.css */
    .select2-drop.select2-drop-above.select2-drop-active {
        border-top: 1px solid #5897fb;
    }

    /* line 178, ../../../bower_components/select2/select2.css */
    .select2-drop-auto-width {
        border-top: 1px solid #aaa;
        width: auto;
    }

        /* line 183, ../../../bower_components/select2/select2.css */
        .select2-drop-auto-width .select2-search {
            padding-top: 4px;
        }

    /* line 187, ../../../bower_components/select2/select2.css */
    .select2-container .select2-choice .select2-arrow {
        display: inline-block;
        width: 18px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        border-left: 1px solid #aaa;
        border-radius: 0 4px 4px 0;
        background-clip: padding-box;
        background: #ccc;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #cccccc), color-stop(0.6, #eeeeee));
        background-image: -webkit-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%);
        background-image: -moz-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
        background-image: linear-gradient(to top, #cccccc 0%, #eeeeee 60%);
    }

    /* line 208, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
        left: 0;
        right: auto;
        border-left: none;
        border-right: 1px solid #aaa;
        border-radius: 4px 0 0 4px;
    }

    /* line 217, ../../../bower_components/select2/select2.css */
    .select2-container .select2-choice .select2-arrow b {
        display: block;
        width: 100%;
        height: 100%;
        background: url("select2.png") no-repeat 0 1px;
    }

    /* line 224, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
        background-position: 2px 1px;
    }

    /* line 228, ../../../bower_components/select2/select2.css */
    .select2-search {
        display: inline-block;
        width: 100%;
        min-height: 26px;
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        z-index: 10000;
        white-space: nowrap;
    }

        /* line 242, ../../../bower_components/select2/select2.css */
        .select2-search input {
            width: 100%;
            height: auto !important;
            min-height: 26px;
            padding: 4px 20px 4px 5px;
            margin: 0;
            outline: 0;
            font-family: sans-serif;
            font-size: 1em;
            border: 1px solid #aaa;
            border-radius: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: white url("select2.png") no-repeat 100% -22px;
            background: url("select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
            background: url("select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
            background: url("select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
            background: url("select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%) 0 0;
        }

    /* line 266, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-search input {
        padding: 4px 5px 4px 20px;
        background: white url("select2.png") no-repeat -37px -22px;
        background: url("select2.png") no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
        background: url("select2.png") no-repeat -37px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url("select2.png") no-repeat -37px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url("select2.png") no-repeat -37px -22px, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%) 0 0;
    }

    /* line 276, ../../../bower_components/select2/select2.css */
    .select2-drop.select2-drop-above .select2-search input {
        margin-top: 4px;
    }

    /* line 280, ../../../bower_components/select2/select2.css */
    .select2-search input.select2-active {
        background: white url("select2-spinner.gif") no-repeat 100%;
        background: url("select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
        background: url("select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url("select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url("select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%) 0 0;
    }

    /* line 288, ../../../bower_components/select2/select2.css */
    .select2-container-active .select2-choice,
    .select2-container-active .select2-choices {
        border: 1px solid #5897fb;
        outline: none;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    /* line 297, ../../../bower_components/select2/select2.css */
    .select2-dropdown-open .select2-choice {
        border-bottom-color: transparent;
        -webkit-box-shadow: 0 1px 0 #fff inset;
        box-shadow: 0 1px 0 #fff inset;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background-color: #eee;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
        background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
        background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
        background-image: linear-gradient(to top, #ffffff 0%, #eeeeee 50%);
    }

    /* line 313, ../../../bower_components/select2/select2.css */
    .select2-dropdown-open.select2-drop-above .select2-choice,
    .select2-dropdown-open.select2-drop-above .select2-choices {
        border: 1px solid #5897fb;
        border-top-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(0.5, #eeeeee));
        background-image: -webkit-linear-gradient(center top, white 0%, #eeeeee 50%);
        background-image: -moz-linear-gradient(center top, white 0%, #eeeeee 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
        background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
    }

    /* line 325, ../../../bower_components/select2/select2.css */
    .select2-dropdown-open .select2-choice .select2-arrow {
        background: transparent;
        border-left: none;
        filter: none;
    }

    /* line 330, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
        border-right: none;
    }

    /* line 334, ../../../bower_components/select2/select2.css */
    .select2-dropdown-open .select2-choice .select2-arrow b {
        background-position: -18px 1px;
    }

    /* line 338, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
        background-position: -16px 1px;
    }

    /* line 342, ../../../bower_components/select2/select2.css */
    .select2-hidden-accessible {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    /* results */
    /* line 354, ../../../bower_components/select2/select2.css */
    .select2-results {
        max-height: 200px;
        padding: 0 0 0 4px;
        margin: 4px 4px 4px 0;
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-tap-highlight-color: transparent;
    }

    /* line 364, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-results {
        padding: 0 4px 0 0;
        margin: 4px 0 4px 4px;
    }

    /* line 369, ../../../bower_components/select2/select2.css */
    .select2-results ul.select2-result-sub {
        margin: 0;
        padding-left: 0;
    }

    /* line 374, ../../../bower_components/select2/select2.css */
    .select2-results li {
        list-style: none;
        display: list-item;
        background-image: none;
    }

        /* line 380, ../../../bower_components/select2/select2.css */
        .select2-results li.select2-result-with-children > .select2-result-label {
            font-weight: bold;
        }

    /* line 384, ../../../bower_components/select2/select2.css */
    .select2-results .select2-result-label {
        padding: 3px 7px 4px;
        margin: 0;
        cursor: pointer;
        min-height: 1em;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* line 398, ../../../bower_components/select2/select2.css */
    .select2-results-dept-1 .select2-result-label {
        padding-left: 20px;
    }

    /* line 399, ../../../bower_components/select2/select2.css */
    .select2-results-dept-2 .select2-result-label {
        padding-left: 40px;
    }

    /* line 400, ../../../bower_components/select2/select2.css */
    .select2-results-dept-3 .select2-result-label {
        padding-left: 60px;
    }

    /* line 401, ../../../bower_components/select2/select2.css */
    .select2-results-dept-4 .select2-result-label {
        padding-left: 80px;
    }

    /* line 402, ../../../bower_components/select2/select2.css */
    .select2-results-dept-5 .select2-result-label {
        padding-left: 100px;
    }

    /* line 403, ../../../bower_components/select2/select2.css */
    .select2-results-dept-6 .select2-result-label {
        padding-left: 110px;
    }

    /* line 404, ../../../bower_components/select2/select2.css */
    .select2-results-dept-7 .select2-result-label {
        padding-left: 120px;
    }

    /* line 406, ../../../bower_components/select2/select2.css */
    .select2-results .select2-highlighted {
        background: #3875d7;
        color: #fff;
    }

    /* line 411, ../../../bower_components/select2/select2.css */
    .select2-results li em {
        background: #feffde;
        font-style: normal;
    }

    /* line 416, ../../../bower_components/select2/select2.css */
    .select2-results .select2-highlighted em {
        background: transparent;
    }

    /* line 420, ../../../bower_components/select2/select2.css */
    .select2-results .select2-highlighted ul {
        background: #fff;
        color: #000;
    }

    /* line 425, ../../../bower_components/select2/select2.css */
    .select2-results .select2-no-results,
    .select2-results .select2-searching,
    .select2-results .select2-ajax-error,
    .select2-results .select2-selection-limit {
        background: #f4f4f4;
        display: list-item;
        padding-left: 5px;
    }

    /*
disabled look for disabled choices in the results dropdown
*/
    /* line 437, ../../../bower_components/select2/select2.css */
    .select2-results .select2-disabled.select2-highlighted {
        color: #666;
        background: #f4f4f4;
        display: list-item;
        cursor: default;
    }

    /* line 443, ../../../bower_components/select2/select2.css */
    .select2-results .select2-disabled {
        background: #f4f4f4;
        display: list-item;
        cursor: default;
    }

    /* line 449, ../../../bower_components/select2/select2.css */
    .select2-results .select2-selected {
        display: none;
    }

    /* line 453, ../../../bower_components/select2/select2.css */
    .select2-more-results.select2-active {
        background: #f4f4f4 url("select2-spinner.gif") no-repeat 100%;
    }

    /* line 457, ../../../bower_components/select2/select2.css */
    .select2-results .select2-ajax-error {
        background: rgba(255, 50, 50, 0.2);
    }

    /* line 461, ../../../bower_components/select2/select2.css */
    .select2-more-results {
        background: #f4f4f4;
        display: list-item;
    }

    /* disabled styles */
    /* line 468, ../../../bower_components/select2/select2.css */
    .select2-container.select2-container-disabled .select2-choice {
        background-color: #f4f4f4;
        background-image: none;
        border: 1px solid #ddd;
        cursor: default;
    }

        /* line 475, ../../../bower_components/select2/select2.css */
        .select2-container.select2-container-disabled .select2-choice .select2-arrow {
            background-color: #f4f4f4;
            background-image: none;
            border-left: 0;
        }

        /* line 481, ../../../bower_components/select2/select2.css */
        .select2-container.select2-container-disabled .select2-choice abbr {
            display: none;
        }

    /* multiselect */
    /* line 488, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices {
        height: auto !important;
        height: 1%;
        margin: 0;
        padding: 0 5px 0 0;
        position: relative;
        border: 1px solid #aaa;
        cursor: text;
        overflow: hidden;
        background-color: #fff;
        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, white));
        background-image: -webkit-linear-gradient(top, #eeeeee 1%, white 15%);
        background-image: -moz-linear-gradient(top, #eeeeee 1%, white 15%);
        background-image: linear-gradient(to bottom, #eeeeee 1%, #ffffff 15%);
    }

    /* line 506, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container-multi .select2-choices {
        padding: 0 0 0 5px;
    }

    /* line 510, ../../../bower_components/select2/select2.css */
    .select2-locked {
        padding: 3px 5px 3px 5px !important;
    }

    /* line 514, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices {
        min-height: 26px;
    }

    /* line 518, ../../../bower_components/select2/select2.css */
    .select2-container-multi.select2-container-active .select2-choices {
        border: 1px solid #5897fb;
        outline: none;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    /* line 525, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices li {
        float: left;
        list-style: none;
    }

    /* line 529, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container-multi .select2-choices li {
        float: right;
    }

    /* line 533, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-field {
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

        /* line 539, ../../../bower_components/select2/select2.css */
        .select2-container-multi .select2-choices .select2-search-field input {
            padding: 5px;
            margin: 1px 0;
            font-family: sans-serif;
            font-size: 100%;
            color: #666;
            outline: 0;
            border: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: transparent !important;
        }

            /* line 553, ../../../bower_components/select2/select2.css */
            .select2-container-multi .select2-choices .select2-search-field input.select2-active {
                background: white url("select2-spinner.gif") no-repeat 100% !important;
            }

    /* line 557, ../../../bower_components/select2/select2.css */
    .select2-default {
        color: #999 !important;
    }

    /* line 561, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-choice {
        padding: 3px 5px 3px 18px;
        margin: 3px 0 3px 5px;
        position: relative;
        line-height: 13px;
        color: #333;
        cursor: default;
        border: 1px solid #aaaaaa;
        border-radius: 3px;
        -webkit-box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #e4e4e4;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
        background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
        background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
        background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    }

    /* line 591, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
        margin: 3px 5px 3px 0;
        padding: 3px 18px 3px 5px;
    }

    /* line 596, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
        cursor: default;
    }

    /* line 599, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-choice-focus {
        background: #d4d4d4;
    }

    /* line 603, ../../../bower_components/select2/select2.css */
    .select2-search-choice-close {
        display: block;
        width: 12px;
        height: 13px;
        position: absolute;
        right: 3px;
        top: 4px;
        font-size: 1px;
        outline: none;
        background: url("select2.png") right top no-repeat;
    }

    /* line 615, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-search-choice-close {
        right: auto;
        left: 3px;
    }

    /* line 620, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-search-choice-close {
        left: 3px;
    }

    /* line 624, ../../../bower_components/select2/select2.css */
    html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
        left: auto;
        right: 2px;
    }

    /* line 629, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
        background-position: right -11px;
    }

    /* line 632, ../../../bower_components/select2/select2.css */
    .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
        background-position: right -11px;
    }

    /* disabled styles */
    /* line 637, ../../../bower_components/select2/select2.css */
    .select2-container-multi.select2-container-disabled .select2-choices {
        background-color: #f4f4f4;
        background-image: none;
        border: 1px solid #ddd;
        cursor: default;
    }

        /* line 644, ../../../bower_components/select2/select2.css */
        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
            padding: 3px 5px 3px 5px;
            border: 1px solid #ddd;
            background-image: none;
            background-color: #f4f4f4;
        }

            /* line 651, ../../../bower_components/select2/select2.css */
            .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
                display: none;
                background: none;
            }

    /* end multiselect */
    /* line 657, ../../../bower_components/select2/select2.css */
    .select2-result-selectable .select2-match,
    .select2-result-unselectable .select2-match {
        text-decoration: underline;
    }

    /* line 662, ../../../bower_components/select2/select2.css */
    .select2-offscreen, .select2-offscreen:focus {
        clip: rect(0 0 0 0) !important;
        width: 1px !important;
        height: 1px !important;
        border: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        outline: 0 !important;
        left: 0px !important;
        top: 0px !important;
    }

    /* line 676, ../../../bower_components/select2/select2.css */
    .select2-display-none {
        display: none;
    }

    /* line 680, ../../../bower_components/select2/select2.css */
    .select2-measure-scrollbar {
        position: absolute;
        top: -10000px;
        left: -10000px;
        width: 100px;
        height: 100px;
        overflow: scroll;
    }

    /* Retina-ize icons */
    @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
        /* line 692, ../../../bower_components/select2/select2.css */
        .select2-search input,
        .select2-search-choice-close,
        .select2-container .select2-choice abbr,
        .select2-container .select2-choice .select2-arrow b {
            background-image: url("select2x2.png") !important;
            background-repeat: no-repeat !important;
            background-size: 60px 40px !important;
        }

        /* line 701, ../../../bower_components/select2/select2.css */
        .select2-search input {
            background-position: 100% -21px !important;
        }
    }
    /**
 * Select2 Bootstrap 3 CSS v1.4.1
 * Tested with Bootstrap v3.2.0 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, master
 * in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
 * MIT License
 */
    /**
 * Reset Bootstrap 3 .form-control styles which - if applied to the
 * original <select>-element the Select2-plugin may be run against -
 * are copied to the .select2-container.
 *
 * 1. Overwrite .select2-container's original display:inline-block
 *    with Bootstrap 3's default for .form-control, display:block;
 *    courtesy of @juristr (@see https://github.com/fk/select2-bootstrap-css/pull/1)
 */
    /* line 18, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.form-control {
        background: transparent;
        border: none;
        display: block;
        /* 1 */
        margin: 0;
        padding: 0;
    }

    /**
 * Adjust Select2 inputs to fit Bootstrap 3 default .form-control appearance.
 */
    /* line 40, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choices .select2-search-field input,
    .select2-container .select2-choice,
    .select2-container .select2-choices {
        background: none;
        padding: 0;
        border-color: #cccccc;
        border-radius: 3px;
        color: #555555;
        font-family: "Open Sans", sans-serif;
        background-color: white;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }

    /* line 48, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-search input {
        border-color: #cccccc;
        border-radius: 3px;
        color: #555555;
        font-family: "Open Sans", sans-serif;
        background-color: white;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }

    /* line 52, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choices .select2-search-field input {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /**
 * Adjust Select2 input heights to match the Bootstrap default.
 */
    /* line 61, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choice {
        height: auto;
        line-height: 1.428571429;
    }

    /**
 * Address Multi Select2's height which - depending on how many elements have been selected -
 * may grown higher than their initial size.
 */
    /* line 71, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.select2-container-multi.form-control {
        height: auto;
    }

    /**
 * Address Bootstrap 3 control sizing classes
 * @see http://getbootstrap.com/css/#forms-control-sizes
 */
    /* line 80, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.input-sm .select2-choice, .input-group-sm > .select2-container.form-control .select2-choice,
    .input-group-sm > .select2-container.input-group-addon .select2-choice,
    .input-group-sm > .input-group-btn > .select2-container.btn .select2-choice,
    .input-group-sm .select2-container .select2-choice {
        height: 28px;
        line-height: 1.5;
        border-radius: 3px;
    }

    /* line 87, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.input-lg .select2-choice, .input-group-lg > .select2-container.form-control .select2-choice,
    .input-group-lg > .select2-container.input-group-addon .select2-choice,
    .input-group-lg > .input-group-btn > .select2-container.btn .select2-choice,
    .input-group-lg .select2-container .select2-choice {
        height: 44px;
        line-height: 1.33;
        border-radius: 6px;
    }

    /* line 94, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi .select2-choices .select2-search-field input {
        height: 28px;
    }

    /* line 98, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi.input-sm .select2-choices .select2-search-field input, .input-group-sm > .select2-container-multi.form-control .select2-choices .select2-search-field input,
    .input-group-sm > .select2-container-multi.input-group-addon .select2-choices .select2-search-field input,
    .input-group-sm > .input-group-btn > .select2-container-multi.btn .select2-choices .select2-search-field input,
    .input-group-sm .select2-container-multi .select2-choices .select2-search-field input {
        height: 26px;
    }

    /* line 103, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi.input-lg .select2-choices .select2-search-field input, .input-group-lg > .select2-container-multi.form-control .select2-choices .select2-search-field input,
    .input-group-lg > .select2-container-multi.input-group-addon .select2-choices .select2-search-field input,
    .input-group-lg > .input-group-btn > .select2-container-multi.btn .select2-choices .select2-search-field input,
    .input-group-lg .select2-container-multi .select2-choices .select2-search-field input {
        height: 42px;
    }

    /**
 * Adjust height and line-height for .select2-search-field amd multi-select Select2 widgets.
 *
 * 1. Class repetition to address missing .select2-chosen in Select2 < 3.3.2.
 */
    /* line 114, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi .select2-choices .select2-search-field input {
        margin: 0;
    }

    /* line 118, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-chosen,
    .select2-choice > span:first-child,
    .select2-container .select2-choices .select2-search-field input {
        padding: 5px 12px;
    }

    /* line 124, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-sm .select2-chosen, .input-group-sm > .form-control .select2-chosen,
    .input-group-sm > .input-group-addon .select2-chosen,
    .input-group-sm > .input-group-btn > .btn .select2-chosen,
    .input-group-sm .select2-chosen,
    .input-sm .select2-choice > span:first-child,
    .input-group-sm > .form-control .select2-choice > span:first-child,
    .input-group-sm > .input-group-addon .select2-choice > span:first-child,
    .input-group-sm > .input-group-btn > .btn .select2-choice > span:first-child,
    .input-group-sm .select2-choice > span:first-child,
    .input-sm .select2-choices .select2-search-field input,
    .input-group-sm > .form-control .select2-choices .select2-search-field input,
    .input-group-sm > .input-group-addon .select2-choices .select2-search-field input,
    .input-group-sm > .input-group-btn > .btn .select2-choices .select2-search-field input,
    .input-group-sm .select2-choices .select2-search-field input {
        padding: 4px 10px;
    }

    /* line 133, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-lg .select2-chosen, .input-group-lg > .form-control .select2-chosen,
    .input-group-lg > .input-group-addon .select2-chosen,
    .input-group-lg > .input-group-btn > .btn .select2-chosen,
    .input-group-lg .select2-chosen,
    .input-lg .select2-choice > span:first-child,
    .input-group-lg > .form-control .select2-choice > span:first-child,
    .input-group-lg > .input-group-addon .select2-choice > span:first-child,
    .input-group-lg > .input-group-btn > .btn .select2-choice > span:first-child,
    .input-group-lg .select2-choice > span:first-child,
    .input-lg .select2-choices .select2-search-field input,
    .input-group-lg > .form-control .select2-choices .select2-search-field input,
    .input-group-lg > .input-group-addon .select2-choices .select2-search-field input,
    .input-group-lg > .input-group-btn > .btn .select2-choices .select2-search-field input,
    .input-group-lg .select2-choices .select2-search-field input {
        padding: 10px 16px;
    }

    /* line 142, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi .select2-choices .select2-search-choice {
        margin-top: 5px;
        margin-bottom: 3px;
    }

    /* line 147, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi.input-sm .select2-choices .select2-search-choice, .input-group-sm > .select2-container-multi.form-control .select2-choices .select2-search-choice,
    .input-group-sm > .select2-container-multi.input-group-addon .select2-choices .select2-search-choice,
    .input-group-sm > .input-group-btn > .select2-container-multi.btn .select2-choices .select2-search-choice,
    .input-group-sm .select2-container-multi .select2-choices .select2-search-choice {
        margin-top: 3px;
        margin-bottom: 2px;
    }

    /* line 153, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi.input-lg .select2-choices .select2-search-choice, .input-group-lg > .select2-container-multi.form-control .select2-choices .select2-search-choice,
    .input-group-lg > .select2-container-multi.input-group-addon .select2-choices .select2-search-choice,
    .input-group-lg > .input-group-btn > .select2-container-multi.btn .select2-choices .select2-search-choice,
    .input-group-lg .select2-container-multi .select2-choices .select2-search-choice {
        line-height: 24px;
    }

    /**
 * Adjust the single Select2's dropdown arrow button appearance.
 *
 * 1. For Select2 v.3.3.2.
 */
    /* line 164, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choice .select2-arrow,
    .select2-container .select2-choice div {
        border-left: 1px solid #cccccc;
        background: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }

    /* line 171, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open .select2-choice .select2-arrow,
    .select2-dropdown-open .select2-choice div {
        border-left-color: transparent;
        background: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }

    /**
 * Adjust the dropdown arrow button icon position for the single-select Select2 elements
 * to make it line up vertically now that we increased the height of .select2-container.
 *
 * 1. Class repetition to address missing .select2-chosen in Select2 v.3.3.2.
 */
    /* line 185, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choice .select2-arrow b,
    .select2-container .select2-choice div b {
        background-position: 0 3px;
    }

    /* line 190, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open .select2-choice .select2-arrow b,
    .select2-dropdown-open .select2-choice div b {
        background-position: -18px 3px;
    }

    /* line 195, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.input-sm .select2-choice .select2-arrow b, .input-group-sm > .select2-container.form-control .select2-choice .select2-arrow b,
    .input-group-sm > .select2-container.input-group-addon .select2-choice .select2-arrow b,
    .input-group-sm > .input-group-btn > .select2-container.btn .select2-choice .select2-arrow b,
    .input-group-sm .select2-container .select2-choice .select2-arrow b,
    .select2-container.input-sm .select2-choice div b,
    .input-group-sm > .select2-container.form-control .select2-choice div b,
    .input-group-sm > .select2-container.input-group-addon .select2-choice div b,
    .input-group-sm > .input-group-btn > .select2-container.btn .select2-choice div b,
    .input-group-sm .select2-container .select2-choice div b {
        background-position: 0 1px;
    }

    /* line 202, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open.input-sm .select2-choice .select2-arrow b, .input-group-sm > .select2-dropdown-open.form-control .select2-choice .select2-arrow b,
    .input-group-sm > .select2-dropdown-open.input-group-addon .select2-choice .select2-arrow b,
    .input-group-sm > .input-group-btn > .select2-dropdown-open.btn .select2-choice .select2-arrow b,
    .input-group-sm .select2-dropdown-open .select2-choice .select2-arrow b,
    .select2-dropdown-open.input-sm .select2-choice div b,
    .input-group-sm > .select2-dropdown-open.form-control .select2-choice div b,
    .input-group-sm > .select2-dropdown-open.input-group-addon .select2-choice div b,
    .input-group-sm > .input-group-btn > .select2-dropdown-open.btn .select2-choice div b,
    .input-group-sm .select2-dropdown-open .select2-choice div b {
        background-position: -18px 1px;
    }

    /* line 209, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.input-lg .select2-choice .select2-arrow b, .input-group-lg > .select2-container.form-control .select2-choice .select2-arrow b,
    .input-group-lg > .select2-container.input-group-addon .select2-choice .select2-arrow b,
    .input-group-lg > .input-group-btn > .select2-container.btn .select2-choice .select2-arrow b,
    .input-group-lg .select2-container .select2-choice .select2-arrow b,
    .select2-container.input-lg .select2-choice div b,
    .input-group-lg > .select2-container.form-control .select2-choice div b,
    .input-group-lg > .select2-container.input-group-addon .select2-choice div b,
    .input-group-lg > .input-group-btn > .select2-container.btn .select2-choice div b,
    .input-group-lg .select2-container .select2-choice div b {
        background-position: 0 9px;
    }

    /* line 216, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open.input-lg .select2-choice .select2-arrow b, .input-group-lg > .select2-dropdown-open.form-control .select2-choice .select2-arrow b,
    .input-group-lg > .select2-dropdown-open.input-group-addon .select2-choice .select2-arrow b,
    .input-group-lg > .input-group-btn > .select2-dropdown-open.btn .select2-choice .select2-arrow b,
    .input-group-lg .select2-dropdown-open .select2-choice .select2-arrow b,
    .select2-dropdown-open.input-lg .select2-choice div b,
    .input-group-lg > .select2-dropdown-open.form-control .select2-choice div b,
    .input-group-lg > .select2-dropdown-open.input-group-addon .select2-choice div b,
    .input-group-lg > .input-group-btn > .select2-dropdown-open.btn .select2-choice div b,
    .input-group-lg .select2-dropdown-open .select2-choice div b {
        background-position: -18px 9px;
    }

    /**
 * Address Bootstrap's validation states and change Select2's border colors and focus states.
 * Apply .has-warning, .has-danger or .has-succes to #select2-drop to match Bootstraps' colors.
 */
    /* line 229, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-warning .select2-choice,
    .has-warning .select2-choices {
        border-color: white;
    }
    /* line 233, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-warning .select2-container-active .select2-choice,
    .has-warning .select2-container-multi.select2-container-active .select2-choices {
        border-color: var(--color-secondary);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
    }
    /* line 239, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-warning.select2-drop-active {
        border-color: var(--color-secondary);
    }
        /* line 241, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
        .has-warning.select2-drop-active.select2-drop.select2-drop-above {
            border-top-color: var(--color-secondary);
        }

    /* line 229, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-error .select2-choice,
    .has-error .select2-choices {
        border-color: white;
    }
    /* line 233, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-error .select2-container-active .select2-choice,
    .has-error .select2-container-multi.select2-container-active .select2-choices {
        border-color: var(--color-secondary);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
    }
    /* line 239, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-error.select2-drop-active {
        border-color: var(--color-secondary);
    }
        /* line 241, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
        .has-error.select2-drop-active.select2-drop.select2-drop-above {
            border-top-color: var(--color-secondary);
        }

    /* line 229, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-success .select2-choice,
    .has-success .select2-choices {
        border-color: white;
    }
    /* line 233, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-success .select2-container-active .select2-choice,
    .has-success .select2-container-multi.select2-container-active .select2-choices {
        border-color: var(--color-secondary);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
    }
    /* line 239, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .has-success.select2-drop-active {
        border-color: var(--color-secondary);
    }
        /* line 241, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
        .has-success.select2-drop-active.select2-drop.select2-drop-above {
            border-top-color: var(--color-secondary);
        }

    /**
 * Make Select2's active-styles - applied to .select2-container when the widget receives focus -
 * fit Bootstrap 3's .form-element:focus appearance.
 */
    /* line 264, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-active .select2-choice,
    .select2-container-multi.select2-container-active .select2-choices {
        border-color: var(--color-secondary);
        height: auto;
        outline: none;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
        -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    }

    /* line 274, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-drop-active {
        border-color: var(--color-secondary);
    }

    /* line 278, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-drop-auto-width,
    .select2-drop.select2-drop-above.select2-drop-active {
        border-top-color: var(--color-secondary);
    }

    /**
 * Select2 widgets in Bootstrap Input Groups
 *
 * When Select2 widgets are combined with other elements using Bootstrap 3's
 * "Input Group" component, we don't want specific edges of the Select2 container
 * to have a border-radius.
 *
 * In Bootstrap 2, input groups required a markup where these style adjustments
 * could be bound to a CSS-class identifying if the additional elements are appended,
 * prepended or both.
 *
 * Bootstrap 3 doesn't rely on these classes anymore, so we have to use our own.
 * Use .select2-bootstrap-prepend and .select2-bootstrap-append on a Bootstrap 3 .input-group
 * to let the contained Select2 widget know which edges should not be rounded as they are
 * directly followed by another element.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
    /* line 302, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.select2-bootstrap-prepend [class^="select2-choice"] {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    /* line 306, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.select2-bootstrap-append [class^="select2-choice"] {
        border-bottom-right-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    /* line 310, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open [class^="select2-choice"] {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    /* line 314, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-top-right-radius: 0 !important;
        border-top-left-radius: 0 !important;
        border-bottom-right-radius: 3px !important;
        border-bottom-left-radius: 3px !important;
    }
    /* line 317, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.select2-bootstrap-prepend .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }
    /* line 320, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.select2-bootstrap-append .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-right-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    /* line 323, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.input-group-sm.select2-bootstrap-prepend .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-right-radius: 3px !important;
    }
    /* line 326, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.input-group-lg.select2-bootstrap-prepend .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-right-radius: 6px !important;
    }
    /* line 329, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.input-group-sm.select2-bootstrap-append .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-left-radius: 3px !important;
    }
    /* line 332, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .input-group.input-group-lg.select2-bootstrap-append .select2-dropdown-open.select2-drop-above [class^="select2-choice"] {
        border-bottom-left-radius: 6px !important;
    }

    /**
 * Adjust Select2's choices hover and selected styles to match Bootstrap 3's default dropdown styles.
 */
    /* line 341, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-results .select2-highlighted {
        color: white;
        background-color: var(--color-secondary) !important;
    }

    /**
 * Adjust alignment of Bootstrap 3 buttons in Bootstrap 3 Input Groups to address
 * Multi Select2's height which - depending on how many elements have been selected -
 * may grown higher than their initial size.
 */
    /* line 354, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-bootstrap-append .select2-container-multiple,
    .select2-bootstrap-append .input-group-btn,
    .select2-bootstrap-append .input-group-btn .btn,
    .select2-bootstrap-prepend .select2-container-multiple,
    .select2-bootstrap-prepend .input-group-btn,
    .select2-bootstrap-prepend .input-group-btn .btn {
        vertical-align: top;
    }

    /**
 * Make Multi Select2's choices match Bootstrap 3's default button styles.
 */
    /* line 365, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi .select2-choices .select2-search-choice {
        color: #555555;
        background: #666666;
        border-color: rgba(0, 0, 0, 0.15);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* line 374, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container-multi .select2-choices .select2-search-choice-focus {
        background: #525252;
        border-color: rgba(0, 0, 0, 0.15);
        color: white;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /**
 * Address Multi Select2's choice close-button vertical alignment.
 */
    /* line 386, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-search-choice-close {
        margin-top: -7px;
        top: 50%;
    }

    /**
 * Adjust the single Select2's clear button position (used to reset the select box
 * back to the placeholder value and visible once a selection is made
 * activated by Select2's "allowClear" option).
 */
    /* line 397, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container .select2-choice abbr {
        top: 50%;
    }

    /**
 * Adjust "no results" and "selection limit" messages to make use
 * of Bootstrap 3's default "Alert" style.
 *
 * @see http://getbootstrap.com/components/#alerts-default
 */
    /* line 408, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-results .select2-no-results,
    .select2-results .select2-searching,
    .select2-results .select2-selection-limit {
        /*background-color: rgba(229, 190, 86, 0.28);*/
        background-color: var(--color-secondary);
        color: white;
    }

    /**
 * Address disabled Select2 styles.
 *
 * 1. For Select2 v.3.3.2.
 * 2. Revert border-left:0 inherited from Select2's CSS to prevent the arrow
 *    from jumping when switching from disabled to enabled state and vice versa.
 */
    /* line 424, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-container.select2-container-disabled .select2-choice,
    .select2-container.select2-container-disabled .select2-choices {
        cursor: not-allowed;
        background-color: #eeeeee;
        border-color: #cccccc;
    }
        /* line 429, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
        .select2-container.select2-container-disabled .select2-choice .select2-arrow,
        .select2-container.select2-container-disabled .select2-choice div,
        .select2-container.select2-container-disabled .select2-choices .select2-arrow,
        .select2-container.select2-container-disabled .select2-choices div {
            background-color: transparent;
            border-left: 1px solid transparent;
            /* 2 */
        }

    /**
 * Address Select2's loading indicator position - which should not stick
 * to the right edge of Select2's search input.
 *
 * 1. in .select2-search input
 * 2. in Multi Select2's .select2-search-field input
 * 3. in the status-message of infinite-scroll with remote data (@see http://ivaynberg.github.io/select2/#infinite)
 *
 * These styles alter Select2's default background-position of 100%
 * and supply the new background-position syntax to browsers which support it:
 *
 * 1. Android, Safari < 6/Mobile, IE<9: change to a relative background-position of 99%
 * 2. Chrome 25+, Firefox 13+, IE 9+, Opera 10.5+: use the new CSS3-background-position syntax
 *
 * @see http://www.w3.org/TR/css3-background/#background-position
 *
 * @todo Since both Select2 and Bootstrap 3 only support IE8 and above,
 * we could use the :after-pseudo-element to display the loading indicator.
 * Alternatively, we could supply an altered loading indicator image which already
 * contains an offset to the right.
 */
    /* line 459, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-search input.select2-active,
    .select2-container-multi .select2-choices .select2-search-field input.select2-active,
    .select2-more-results.select2-active {
        background-position: 99%;
        /* 4 */
        background-position: right 4px center;
        /* 5 */
    }

    /**
 * To support Select2 pre v3.4.2 in combination with Bootstrap v3.2.0,
 * ensure that .select2-offscreen width, height and position can not be overwritten.
 *
 * This adresses changes in Bootstrap somewhere after the initial v3.0.0 which -
 * in combination with Select2's pre-v3.4.2 CSS missing the "!important" after
 * the following rules - allow Bootstrap to overwrite the latter, which results in
 * the original <select> element Select2 is replacing not be properly being hidden
 * when used in a "Bootstrap Input Group with Addon".
 **/
    /* line 477, ../../../bower_components/select2-bootstrap-css/lib/select2-bootstrap.scss */
    .select2-offscreen,
    .select2-offscreen:focus {
        width: 1px !important;
        height: 1px !important;
        position: absolute !important;
    }


    /**
 * Select2 Bootstrap CSS
 */
    /*
 * override .form-control:focus shadow
 */
    /* line 125, ../../src/sass/_override-custom-libs.scss */
    .select2-container-active .select2-choice,
    .select2-container-multi.select2-container-active .select2-choices {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* line 130, ../../src/sass/_override-custom-libs.scss */
    .select2-container-multi .select2-choices .select2-search-choice {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

    /**
 * setting correct urls
 */
    /* line 137, ../../src/sass/_override-custom-libs.scss */
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
        background-image: url("../../lib/select2/select2.png") !important;
    }

    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        /* line 137, ../../src/sass/_override-custom-libs.scss */
        .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
            background-image: url("../../lib/select2/select2x2.png") !important;
        }
    }

    /* line 144, ../../src/sass/_override-custom-libs.scss */
    .select2-search input.select2-active,
    .select2-more-results.select2-active,
    .select2-container-multi .select2-choices .select2-search-field input.select2-active {
        background-image: url("../../lib/select2/select2-spinner.gif");
    }

    /* line 150, ../../src/sass/_override-custom-libs.scss */
    .select2-container .select2-choice .select2-arrow,
    .select2-container .select2-choice div {
        border-left: none;
    }

    /**
 * Make Multi Select2's choices match Bootstrap 3's default button styles.
 */
    /* line 159, ../../src/sass/_override-custom-libs.scss */
    .select2-container-multi .select2-choices .select2-search-choice {
        background: #f8f8f8;
    }

    /**********
*  Legend
*/
    /* line 197, ../../../bower_components/nvd3/nv.d3.css */
    .nvd3 .nv-legend .nv-series {
        cursor: pointer;
    }

    /* line 201, ../../../bower_components/nvd3/nv.d3.css */
    .nvd3 .nv-legend .disabled circle {
        fill-opacity: 0;
    }



    /* line 390, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_normalize.scss */
    legend {
        border: 0;
        padding: 0;
    }


    /* line 20, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    legend {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 18px;
        font-size: 19.5px;
        line-height: inherit;
        color: var(--color-primary);
        border: 0;
        border-bottom: 1px solid #e5e5e5;
    }

        /* line 78, ../../src/sass/_override-bootstrap.scss */
        legend small {
            color: gray;
            font-size: 14px;
        }


    /* line 5, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_labels.scss */
    .label {
        display: inline;
        padding: .2em .6em .3em;
        font-size: 75%;
        font-weight: bold;
        line-height: 1;
        color: white;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: .25em;
    }
        /* line 20, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_labels.scss */
        .label:empty {
            display: none;
        }

    @media (min-width: 768px) {
        /* line 146, ../../src/sass/_override-bootstrap.scss */
        .form-horizontal.form-label-left .control-label {
            text-align: left;
        }
    }

    /* line 183, ../../src/sass/_responsive.scss */
    .form-horizontal .control-label {
        float: none;
        width: auto;
        padding-top: 0;
        text-align: left;
    }

    @media (min-width: 768px) {
        /* line 515, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .control-label {
            text-align: right;
            margin-bottom: 0;
            padding-top: 6px;
        }
    }
    /* line 526, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
    .form-horizontal .has-feedback .form-control-feedback {
        right: 15px;
    }

    @media (min-width: 768px) {
        /* line 536, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .form-group-lg .control-label {
            padding-top: 14.3px;
        }
    }

    @media (min-width: 768px) {
        /* line 543, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_forms.scss */
        .form-horizontal .form-group-sm .control-label {
            padding-top: 5px;
        }
    }

    /* line 930, ../../src/sass/_base.scss */
    .select-block-level {
        width: 100%;
    }

    /***************************/
    /*        Pagination       */
    /***************************/
    /* line 645, ../../src/sass/_override-bootstrap.scss */
    .pagination {
        font-weight: 400;
    }
        /* line 648, ../../src/sass/_override-bootstrap.scss */
        .pagination > li {
            display: inline;
        }
            /* line 650, ../../src/sass/_override-bootstrap.scss */
            .pagination > li > a,
            .pagination > li > span {
                border-radius: 10px;
                margin: 0 2px;
            }

    /* line 4, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
    .pagination {
        display: inline-block;
        padding-left: 0;
        margin: 18px 0;
        border-radius: 10px;
    }
        /* line 10, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
        .pagination > li {
            display: inline;
        }
            /* line 12, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
            .pagination > li > a,
            .pagination > li > span {
                position: relative;
                float: left;
                padding: 5px 12px;
                line-height: 1.428571429;
                text-decoration: none;
                color: var(--color-secondary);
                background-color: transparent;
                border: 1px solid var(--color-secondary);
                margin-left: -1px;
            }
            /* line 25, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
            .pagination > li:first-child > a,
            .pagination > li:first-child > span {
                margin-left: 0;
                border-bottom-left-radius: 10px;
                border-top-left-radius: 10px;
            }
            /* line 32, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
            .pagination > li:last-child > a,
            .pagination > li:last-child > span {
                border-bottom-right-radius: 10px;
                border-top-right-radius: 10px;
            }
            /* line 41, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
            .pagination > li > a:hover, .pagination > li > a:focus,
            .pagination > li > span:hover,
            .pagination > li > span:focus {
                color: white;
                background-color: var(--color-secondary);
                border-color: var(--color-secondary);
            }
        /* line 51, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
        .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
        .pagination > .active > span,
        .pagination > .active > span:hover,
        .pagination > .active > span:focus {
            z-index: 2;
            color: white;
            background-color: var(--color-secondary);
            border-color: var(--color-secondary);
            cursor: default;
        }
        /* line 63, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_pagination.scss */
        .pagination > .disabled > span,
        .pagination > .disabled > span:hover,
        .pagination > .disabled > span:focus,
        .pagination > .disabled > a,
        .pagination > .disabled > a:hover,
        .pagination > .disabled > a:focus {
            color: gray;
            background-color: transparent;
            border-color: transparent;
            cursor: not-allowed;
        }

    /* line 5, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-lg > li > a,
    .pagination-lg > li > span {
        padding: 10px 16px;
        font-size: 16.25px;
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-lg > li:first-child > a,
    .pagination-lg > li:first-child > span {
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px;
    }
    /* line 17, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-lg > li:last-child > a,
    .pagination-lg > li:last-child > span {
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
    }

    /* line 5, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-sm > li > a,
    .pagination-sm > li > span {
        padding: 4px 10px;
        font-size: 12px;
    }
    /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-sm > li:first-child > a,
    .pagination-sm > li:first-child > span {
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px;
    }
    /* line 17, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_pagination.scss */
    .pagination-sm > li:last-child > a,
    .pagination-sm > li:last-child > span {
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
    }


    /* line 63, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_alerts.scss */
    .alert-warning {
        background-color: rgba(229, 190, 86, 0.28);
        border-color: #e5be56;
        color: white;
    }
        /* line 8, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
        .alert-warning hr {
            border-top-color: #e2b540;
        }
        /* line 11, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_alerts.scss */
        .alert-warning .alert-link {
            color: #e6e6e6;
        }
    /* line 9, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_table-row.scss */
    .table > thead > tr > td.info,
    .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
    .table > tbody > tr > td.info,
    .table > tbody > tr > th.info,
    .table > tbody > tr.info > td,
    .table > tbody > tr.info > th,
    .table > tfoot > tr > td.info,
    .table > tfoot > tr > th.info,
    .table > tfoot > tr.info > td,
    .table > tfoot > tr.info > th {
        background-color: rgba(74, 176, 206, 0.29);
    }

    /* line 20, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_table-row.scss */
    .table-hover > tbody > tr > td.info:hover,
    .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
        background-color: rgba(54, 167, 200, 0.29);
    }

    .left {
        float: left;
    }

    /* line 114, ../../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_tables.scss */
    .table-striped > tbody > tr:nth-child(odd) {
        background-color: #f7f9fc !important;
    }

    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    .footer {
        font-size: 14px;
    }

        .footer .footer-content {
            background-color: #f7f9fc;
            background-size: contain;
            padding: 60px 0 30px 0;
        }

            .footer .footer-content .footer-info {
                margin-bottom: 30px;
            }

                .footer .footer-content .footer-info .logo {
                    line-height: 0;
                    margin-bottom: 25px;
                }

                    .footer .footer-content .footer-info .logo img {
                        max-height: 40px;
                        margin-right: 6px;
                    }

                    .footer .footer-content .footer-info .logo span {
                        font-size: 30px;
                        font-weight: 700;
                        letter-spacing: 1px;
                        color: var(--color-secondary);
                        font-family: var(--font-secondary);
                        margin-top: 3px;
                    }

                .footer .footer-content .footer-info p {
                    font-size: 15px;
                    margin-bottom: 0;
                    font-family: var(--font-primary);
                    color: var(--color-secondary);
                }

            .footer .footer-content .social-links a {
                font-size: 14px;
                line-height: 0;
                display: inline-block;
                width: 32px;
                height: 32px;
                color: rgba(27, 47, 69, 0.5);
                margin-right: 10px;
                transition: 0.3s;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--color-primary);
                color: #fff;
                border-radius: 50px;
            }

                .footer .footer-content .social-links a:hover {
                    background-color: #38618e;
                }

            .footer .footer-content h4 {
                font-size: 16px;
                font-weight: bold;
                color: #29486a;
                position: relative;
                padding-bottom: 12px;
            }

            .footer .footer-content .footer-links {
                margin-bottom: 30px;
                margin-left: 40px;
            }

                .footer .footer-content .footer-links ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }

                    .footer .footer-content .footer-links ul i {
                        margin-right: 2px;
                        color: var(--color-primary);
                        font-size: 16px;
                        line-height: 0;
                    }

                    .footer .footer-content .footer-links ul li {
                        padding: 10px 0;
                        display: flex;
                        align-items: center;
                    }

                        .footer .footer-content .footer-links ul li:first-child {
                            padding-top: 0;
                        }

                    .footer .footer-content .footer-links ul a {
                        color: #31547c;
                        transition: 0.3s;
                        display: inline-block;
                        line-height: 1;
                    }

                        .footer .footer-content .footer-links ul a:hover {
                            color: var(--color-primary);
                        }

            .footer .footer-content .footer-contact p {
                line-height: 26px;
                color: var(--color-secondary);
            }

        .footer .footer-legal {
            background: #fff;
            padding: 30px 0;
        }

            .footer .footer-legal .copyright {
                text-align: center;
                color: var(--color-secondary);
            }

            .footer .footer-legal .credits {
                padding-top: 4px;
                text-align: center;
                font-size: 13px;
                color: var(--color-secondary);
            }