html {
   --navbar-height: 1rem;
   --navbar-sm-height: 3.75rem;
}

/**
 See @page-script.js 
*/
#scroll-down {
   position: absolute;
   top: 60vh;
}
#scroll-up {
   position: absolute;
   top: 0;
}


/* when we scroll down a little bit, navbar becomes fixed (+compact) and appears from top */
@keyframes navbarAppearIn {
   0% { transform: translateY(-100%); }
   100% { transform: none; }
}


/* if our ace.css is compiled using sticky: true, then we should make it position: fixed again to fix a few glitches */
.navbar-fixed {
   position: relative;
   animation: none;
   transition: none;
}
.navbar-compact {
   height: 5rem;
}

.navbar-fixed .navbar-inner {
   position: fixed;
   top: 0;
}

.navbar-compact .navbar-inner {
   height: 4rem;
   animation: navbarAppearIn 300ms;
}

@media (prefers-reduced-motion: reduce) {
   .navbar .navbar-inner {
   transition: none !important;
   animation: none !important;
   } 
}



#navbar-dark.navbar-compact .navbar-inner {
   border-bottom: 1px solid rgba(0,0,0,0.075);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
}


/* the shadow for the 3 feature items ... speed, flexibility, etc */
.shadow-1 {
   box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.1);
}


/* the triangle in light/white version */
.shape-triangle {
   width: 0;
   height: 0;
   border-style: solid;
   border-width: 0 12px 20px 12px;
   border-top-color: transparent !important;
   border-left-color: transparent !important;
   border-right-color: transparent !important;
}

input.largerCheckbox {
    width: 25px;
    height: 25px;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .panel-default > .panel-heading a {
        display: block;
        padding: 10px 15px;
    }

        .panel-default > .panel-heading a:after {
            content: "";
            position: relative;
            top: 1px;
            display: inline-block;
            font-family: 'Glyphicons Halflings';
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            float: right;
            transition: transform .25s linear;
            -webkit-transition: -webkit-transform .25s linear;
        }

        .panel-default > .panel-heading a[aria-expanded="true"] {
            background-color: #2B8B41;
        }

            .panel-default > .panel-heading a[aria-expanded="true"]:after {
                content: "\2212";
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

        .panel-default > .panel-heading a[aria-expanded="false"]:after {
            content: "\002b";
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
        }

.headerBloque {
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
    background-color: #2B8B41 !important;
}

.borderPanel {
    border-color: #2B8B41 !important;
}

.titleHeaderSubpanel {
    color: black !important;
    font-weight: bold !important;
    font-size: 16px !important;
    background-color: #ededed !important;
    padding: 10px;
    width: 100%;
}
