cadviewer
Version:
CADViewer - JavaScript CAD Viewer Library for FrameWorks (ReactJS, Angular, VueJS, etc.)
1,868 lines (1,699 loc) • 134 kB
CSS
/* ========================================================================
* bootstrap-switch - v2.0.1
* http://www.bootstrap-switch.org
* ========================================================================
* Copyright 2012-2013 Mattia Larentis
*
* ========================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================================
*/
/* line 22, ../sass/vendors/_bootstrap-switch.scss */
.has-switch {
display: inline-block;
cursor: pointer;
border-radius: 4px;
border: 1px solid;
border-color: #cccccc;
position: relative;
text-align: left;
overflow: hidden;
line-height: 8px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
vertical-align: middle;
min-width: 100px;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
/* line 42, ../sass/vendors/_bootstrap-switch.scss */
.has-switch:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
/* line 48, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-mini {
min-width: 72px;
}
/* line 51, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-mini span,
.has-switch.switch-mini label {
padding-bottom: 4px;
padding-top: 4px;
font-size: 10px;
line-height: 9px;
}
/* line 58, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-mini i.switch-mini-icons {
height: 1.20em;
line-height: 9px;
vertical-align: text-top;
text-align: center;
transform: scale(0.6);
margin-top: -1px;
margin-bottom: -1px;
}
/* line 67, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-small {
min-width: 80px;
}
/* line 70, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-small span,
.has-switch.switch-small label {
padding-bottom: 3px;
padding-top: 3px;
font-size: 12px;
line-height: 18px;
}
/* line 77, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-large {
min-width: 120px;
}
/* line 80, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-large span,
.has-switch.switch-large label {
padding-bottom: 9px;
padding-top: 9px;
font-size: 16px;
line-height: normal;
}
/* line 87, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-animate > div {
-webkit-transition: left 0.5s;
transition: left 0.5s;
}
/* line 91, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-off > div {
left: -50%;
}
/* line 94, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.switch-on > div {
left: 0%;
}
/* line 97, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.disabled {
opacity: 0.5;
filter: alpha(opacity=50);
cursor: default !important;
}
/* line 102, ../sass/vendors/_bootstrap-switch.scss */
.has-switch.disabled span,
.has-switch.disabled label {
cursor: default !important;
}
/* line 106, ../sass/vendors/_bootstrap-switch.scss */
.has-switch > div {
display: inline-block;
width: 150%;
position: relative;
top: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
/* line 114, ../sass/vendors/_bootstrap-switch.scss */
.has-switch input[type=radio],
.has-switch input[type=checkbox] {
display: none;
}
/* line 118, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span,
.has-switch label {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: pointer;
position: relative;
display: inline-block !important;
height: 100%;
padding-bottom: 4px;
padding-top: 4px;
font-size: 14px;
line-height: 20px;
}
/* line 132, ../sass/vendors/_bootstrap-switch.scss */
.has-switch label {
text-align: center;
margin-top: -1px;
margin-bottom: -1px;
z-index: 100;
width: 33.333333333%;
background: #ffffff;
}
/* line 140, ../sass/vendors/_bootstrap-switch.scss */
.has-switch label i {
color: #000;
text-shadow: 0 1px 0 #fff;
line-height: 18px;
pointer-events: none;
}
/* line 146, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span {
text-align: center;
z-index: 1;
width: 33.333333333%;
}
/* line 151, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-left {
color: #f00;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
/* line 156, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-right {
color: #000;
background: #eeeeee;
}
/* line 160, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-primary,
.has-switch span.switch-left {
color: #fff;
background: #428bca;
}
/* line 165, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-info {
color: #fff;
background: #5bc0de;
}
/* line 169, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-success {
color: #fff;
background: #5cb85c;
}
/* line 173, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-warning {
background: #f0ad4e;
color: #fff;
}
/* line 177, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-danger {
color: #fff;
background: #d9534f;
}
/* line 181, ../sass/vendors/_bootstrap-switch.scss */
.has-switch span.switch-default {
color: #000;
background: #eeeeee;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container {
position: absolute;
list-style-type: none;
margin: 0;
padding: 0;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container .input-group {
margin: 5px;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li {
padding: 0;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > a.multiselect-all label {
font-weight: 700;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > label.multiselect-group {
margin: 0;
padding: 3px 20px;
height: 100%;
font-weight: 700;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > a {
padding: 0;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > a > label {
margin: 0;
height: 100%;
cursor: pointer;
font-weight: 400;
padding: 3px 20px 3px 40px;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > a > label.radio, .multiselect-container > li > a > label.checkbox {
margin: 0;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.multiselect-container > li > a > label > input[type=checkbox] {
margin-bottom: 5px;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio {
padding: 3px 20px 3px 40px;
}
/* line 1, ../sass/vendors/_bootstrap-multiselect.scss */
.form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] {
margin-left: -20px;
margin-right: 0;
}
/*
Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014
*/
/* line 4, ../sass/vendors/_select2.scss */
.select2-container {
margin: 0;
position: relative;
display: inline-block;
/* inline-block for ie7 */
zoom: 1;
*display: inline;
vertical-align: middle;
}
/* line 14, ../sass/vendors/_select2.scss */
.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, ../sass/vendors/_select2.scss */
.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, #eee), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
/* line 59, ../sass/vendors/_select2.scss */
.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, #eee), color-stop(0.9, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}
/* line 71, ../sass/vendors/_select2.scss */
.select2-container.select2-allowclear .select2-choice .select2-chosen {
margin-right: 42px;
}
/* line 75, ../sass/vendors/_select2.scss */
.select2-container .select2-choice > .select2-chosen {
margin-right: 26px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
float: none;
width: auto;
}
/* line 87, ../sass/vendors/_select2.scss */
.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 104, ../sass/vendors/_select2.scss */
.select2-container.select2-allowclear .select2-choice abbr {
display: inline-block;
}
/* line 108, ../sass/vendors/_select2.scss */
.select2-container .select2-choice abbr:hover {
background-position: right -11px;
cursor: pointer;
}
/* line 113, ../sass/vendors/_select2.scss */
.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 131, ../sass/vendors/_select2.scss */
.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 149, ../sass/vendors/_select2.scss */
.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 160, ../sass/vendors/_select2.scss */
.select2-drop-active {
border: 1px solid #5897fb;
border-top: none;
}
/* line 165, ../sass/vendors/_select2.scss */
.select2-drop.select2-drop-above.select2-drop-active {
border-top: 1px solid #5897fb;
}
/* line 169, ../sass/vendors/_select2.scss */
.select2-drop-auto-width {
border-top: 1px solid #aaa;
width: auto;
}
/* line 174, ../sass/vendors/_select2.scss */
.select2-drop-auto-width .select2-search {
padding-top: 4px;
}
/* line 178, ../sass/vendors/_select2.scss */
.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, #ccc), color-stop(0.6, #eee));
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}
/* line 199, ../sass/vendors/_select2.scss */
.select2-container .select2-choice .select2-arrow b {
display: block;
width: 100%;
height: 100%;
background: url("select2.png") no-repeat 0 1px;
}
/* line 206, ../sass/vendors/_select2.scss */
.select2-search {
display: inline-block;
width: 100%;
min-height: 26px;
margin: 0;
padding-left: 4px;
padding-right: 4px;
position: relative;
z-index: 10000;
white-space: nowrap;
}
/* line 220, ../sass/vendors/_select2.scss */
.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: #fff 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, #fff), color-stop(0.99, #eee));
background: url("select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url("select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url("select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
/* line 244, ../sass/vendors/_select2.scss */
.select2-drop.select2-drop-above .select2-search input {
margin-top: 4px;
}
/* line 248, ../sass/vendors/_select2.scss */
.select2-search input.select2-active {
background: #fff 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, #fff), color-stop(0.99, #eee));
background: url("select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url("select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url("select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
/* line 256, ../sass/vendors/_select2.scss */
.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 265, ../sass/vendors/_select2.scss */
.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, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}
/* line 281, ../sass/vendors/_select2.scss */
.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, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}
/* line 293, ../sass/vendors/_select2.scss */
.select2-dropdown-open .select2-choice .select2-arrow {
background: transparent;
border-left: none;
filter: none;
}
/* line 298, ../sass/vendors/_select2.scss */
.select2-dropdown-open .select2-choice .select2-arrow b {
background-position: -18px 1px;
}
/* line 302, ../sass/vendors/_select2.scss */
.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 314, ../sass/vendors/_select2.scss */
.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 324, ../sass/vendors/_select2.scss */
.select2-results ul.select2-result-sub {
margin: 0;
padding-left: 0;
}
/* line 329, ../sass/vendors/_select2.scss */
.select2-results li {
list-style: none;
display: list-item;
background-image: none;
}
/* line 335, ../sass/vendors/_select2.scss */
.select2-results li.select2-result-with-children > .select2-result-label {
font-weight: bold;
}
/* line 339, ../sass/vendors/_select2.scss */
.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 353, ../sass/vendors/_select2.scss */
.select2-results-dept-1 .select2-result-label {
padding-left: 20px;
}
/* line 354, ../sass/vendors/_select2.scss */
.select2-results-dept-2 .select2-result-label {
padding-left: 40px;
}
/* line 355, ../sass/vendors/_select2.scss */
.select2-results-dept-3 .select2-result-label {
padding-left: 60px;
}
/* line 356, ../sass/vendors/_select2.scss */
.select2-results-dept-4 .select2-result-label {
padding-left: 80px;
}
/* line 357, ../sass/vendors/_select2.scss */
.select2-results-dept-5 .select2-result-label {
padding-left: 100px;
}
/* line 358, ../sass/vendors/_select2.scss */
.select2-results-dept-6 .select2-result-label {
padding-left: 110px;
}
/* line 359, ../sass/vendors/_select2.scss */
.select2-results-dept-7 .select2-result-label {
padding-left: 120px;
}
/* line 361, ../sass/vendors/_select2.scss */
.select2-results .select2-highlighted {
background: #3875d7;
color: #fff;
}
/* line 366, ../sass/vendors/_select2.scss */
.select2-results li em {
background: #feffde;
font-style: normal;
}
/* line 371, ../sass/vendors/_select2.scss */
.select2-results .select2-highlighted em {
background: transparent;
}
/* line 375, ../sass/vendors/_select2.scss */
.select2-results .select2-highlighted ul {
background: #fff;
color: #000;
}
/* line 381, ../sass/vendors/_select2.scss */
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
background: #f4f4f4;
display: list-item;
padding-left: 5px;
}
/*
disabled look for disabled choices in the results dropdown
*/
/* line 392, ../sass/vendors/_select2.scss */
.select2-results .select2-disabled.select2-highlighted {
color: #666;
background: #f4f4f4;
display: list-item;
cursor: default;
}
/* line 398, ../sass/vendors/_select2.scss */
.select2-results .select2-disabled {
background: #f4f4f4;
display: list-item;
cursor: default;
}
/* line 404, ../sass/vendors/_select2.scss */
.select2-results .select2-selected {
display: none;
}
/* line 408, ../sass/vendors/_select2.scss */
.select2-more-results.select2-active {
background: #f4f4f4 url("select2-spinner.gif") no-repeat 100%;
}
/* line 412, ../sass/vendors/_select2.scss */
.select2-more-results {
background: #f4f4f4;
display: list-item;
}
/* disabled styles */
/* line 419, ../sass/vendors/_select2.scss */
.select2-container.select2-container-disabled .select2-choice {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
/* line 426, ../sass/vendors/_select2.scss */
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
background-color: #f4f4f4;
background-image: none;
border-left: 0;
}
/* line 432, ../sass/vendors/_select2.scss */
.select2-container.select2-container-disabled .select2-choice abbr {
display: none;
}
/* multiselect */
/* line 439, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices {
height: auto !important;
height: 1%;
margin: 0;
padding: 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%, #eee), color-stop(15%, #fff));
background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}
/* line 457, ../sass/vendors/_select2.scss */
.select2-locked {
padding: 3px 5px 3px 5px !important;
}
/* line 461, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices {
min-height: 26px;
}
/* line 465, ../sass/vendors/_select2.scss */
.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 472, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices li {
float: left;
list-style: none;
}
/* line 476, ../sass/vendors/_select2.scss */
html[dir="rtl"] .select2-container-multi .select2-choices li {
float: right;
}
/* line 480, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-field {
margin: 0;
padding: 0;
white-space: nowrap;
}
/* line 486, ../sass/vendors/_select2.scss */
.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 500, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
background: #fff url("select2-spinner.gif") no-repeat 100% !important;
}
/* line 504, ../sass/vendors/_select2.scss */
.select2-default {
color: #999 !important;
}
/* line 508, ../sass/vendors/_select2.scss */
.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 #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 0 2px #fff 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%, #eee));
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
/* line 538, ../sass/vendors/_select2.scss */
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
margin-left: 0;
margin-right: 5px;
}
/* line 543, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
cursor: default;
}
/* line 546, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-choice-focus {
background: #d4d4d4;
}
/* line 550, ../sass/vendors/_select2.scss */
.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 562, ../sass/vendors/_select2.scss */
html[dir="rtl"] .select2-search-choice-close {
right: auto;
left: 3px;
}
/* line 567, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-search-choice-close {
left: 3px;
}
/* line 571, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
background-position: right -11px;
}
/* line 574, ../sass/vendors/_select2.scss */
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
background-position: right -11px;
}
/* disabled styles */
/* line 579, ../sass/vendors/_select2.scss */
.select2-container-multi.select2-container-disabled .select2-choices {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
/* line 586, ../sass/vendors/_select2.scss */
.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 593, ../sass/vendors/_select2.scss */
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
display: none;
background: none;
}
/* end multiselect */
/* line 599, ../sass/vendors/_select2.scss */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
text-decoration: underline;
}
/* line 604, ../sass/vendors/_select2.scss */
.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 618, ../sass/vendors/_select2.scss */
.select2-display-none {
display: none;
}
/* line 622, ../sass/vendors/_select2.scss */
.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 634, ../sass/vendors/_select2.scss */
.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 643, ../sass/vendors/_select2.scss */
.select2-search input {
background-position: 100% -21px !important;
}
}
/*!
* Slider for Bootstrap
*
* Copyright 2012 Stefan Petre
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
/* line 9, ../sass/vendors/_bootstrap-slider.scss */
.slider {
display: inline-block;
vertical-align: middle;
position: relative;
}
/* line 14, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-horizontal {
width: 210px;
height: 20px;
}
/* line 18, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-horizontal .slider-track {
height: 10px;
width: 100%;
margin-top: -5px;
top: 50%;
left: 0;
}
/* line 25, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-horizontal .slider-selection {
height: 100%;
top: 0;
bottom: 0;
}
/* line 30, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-horizontal .slider-handle {
margin-left: -10px;
margin-top: -5px;
}
/* line 34, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-horizontal .slider-handle.triangle {
border-width: 0 10px 10px 10px;
width: 0;
height: 0;
border-bottom-color: #0480be;
margin-top: 0;
}
/* line 41, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-vertical {
height: 210px;
width: 20px;
}
/* line 45, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-vertical .slider-track {
width: 10px;
height: 100%;
margin-left: -5px;
left: 50%;
top: 0;
}
/* line 52, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-vertical .slider-selection {
width: 100%;
left: 0;
top: 0;
bottom: 0;
}
/* line 58, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-vertical .slider-handle {
margin-left: -5px;
margin-top: -10px;
}
/* line 62, ../sass/vendors/_bootstrap-slider.scss */
.slider.slider-vertical .slider-handle.triangle {
border-width: 10px 0 10px 10px;
width: 1px;
height: 1px;
border-left-color: #0480be;
margin-left: 0;
}
/* line 69, ../sass/vendors/_bootstrap-slider.scss */
.slider input {
display: none;
}
/* line 72, ../sass/vendors/_bootstrap-slider.scss */
.slider .tooltip-inner {
white-space: nowrap;
}
/* line 75, ../sass/vendors/_bootstrap-slider.scss */
.slider-track {
position: absolute;
cursor: pointer;
background-color: #f7f7f7;
background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* line 93, ../sass/vendors/_bootstrap-slider.scss */
.slider-selection {
position: absolute;
background-color: #f7f7f7;
background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* line 113, ../sass/vendors/_bootstrap-slider.scss */
.slider-handle {
position: absolute;
width: 20px;
height: 20px;
background-color: #0e90d2;
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
background-image: -o-linear-gradient(top, #149bdf, #0480be);
background-image: linear-gradient(to bottom, #149bdf, #0480be);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
opacity: 0.8;
border: 0px solid transparent;
}
/* line 131, ../sass/vendors/_bootstrap-slider.scss */
.slider-handle.round {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
/* line 136, ../sass/vendors/_bootstrap-slider.scss */
.slider-handle.triangle {
background: transparent none;
}
/*------------------------------------------------*/
/* General Styles
/*------------------------------------------------*/
/* line 5, ../sass/partials/_general.scss */
html,
body {
height: 100%;
}
/* line 10, ../sass/partials/_general.scss */
body {
font-family: Arial, sans-serif;
font-size: 13px;
color: #555;
background: #ececec;
}
/* line 17, ../sass/partials/_general.scss */
h1, h2 {
font-family: "Helvetica";
}
/* line 21, ../sass/partials/_general.scss */
h3, h4, h5, h6 {
font-family: Arial, sans-serif;
}
/* line 25, ../sass/partials/_general.scss */
hr {
border-top-color: #ddd;
}
/* line 28, ../sass/partials/_general.scss */
hr.inner-separator {
border-style: dashed;
}
/* line 33, ../sass/partials/_general.scss */
label {
font-weight: 300;
}
/* line 37, ../sass/partials/_general.scss */
blockquote {
border-color: #e4e4e4;
}
/* line 41, ../sass/partials/_general.scss */
input {
border-radius: 0;
}
@media screen and (min-width: 768px) {
/* line 46, ../sass/partials/_general.scss */
.container {
max-width: 100%;
width: 100%;
}
}
/* line 70, ../sass/partials/_general.scss */
.wrapper {
width: 100%;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -34px;
/* always the same as footer height including paddings and/or borders */
}
/* line 78, ../sass/partials/_general.scss */
.push-sticky-footer {
height: 34px;
/* always the same as footer height including paddings and/or borders */
}
/* full page such as 404, login, register */
/* line 84, ../sass/partials/_general.scss */
.full-page-wrapper .inner-page {
padding-top: 5%;
margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
/* line 83, ../sass/partials/_general.scss */
.full-page-wrapper {
position: initial;
padding-top: 5em;
margin-top: 0;
}
/* line 94, ../sass/partials/_general.scss */
.full-page-wrapper .inner-page {
position: relative;
padding: 0 1em;
}
}
@media screen and (max-width: 480px) {
/* line 83, ../sass/partials/_general.scss */
.full-page-wrapper {
padding-top: 0;
}
/* line 103, ../sass/partials/_general.scss */
.full-page-wrapper .inner-page {
padding: 5em 1em;
}
}
/* line 110, ../sass/partials/_general.scss */
.red-font {
color: #E60404 !important;
}
/* line 114, ../sass/partials/_general.scss */
.yellow-font {
color: #FFB800 !important;
}
/* line 118, ../sass/partials/_general.scss */
.green-font {
color: #3E9C1A !important;
}
/* line 122, ../sass/partials/_general.scss */
.dropdown-menu,
.panel,
.well,
code {
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
}
/* line 129, ../sass/partials/_general.scss */
.panel {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 133, ../sass/partials/_general.scss */
.link-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
pointer-events: none;
cursor: not-allowed;
}
/* line 140, ../sass/partials/_general.scss */
.no-padding {
padding: 0 !important;
}
/* line 144, ../sass/partials/_general.scss */
.bottom-30px {
margin-bottom: 30px;
}
/* 2 column data presentation */
/* line 149, ../sass/partials/_general.scss */
.data-row {
margin-bottom: 0;
}
/* line 152, ../sass/partials/_general.scss */
.data-row .data-name,
.data-row .data-value {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
padding: 5px;
}
@media screen and (max-width: 480px) {
/* line 152, ../sass/partials/_general.scss */
.data-row .data-name,
.data-row .data-value {
display: block;
}
}
/* line 163, ../sass/partials/_general.scss */
.data-row .data-name {
width: 12em;
background-color: #ececec;
color: #b9b9b9;
font-size: 0.9em;
vertical-align: top;
}
/* line 171, ../sass/partials/_general.scss */
.data-row .data-value {
padding-left: 10px;
}
/* nav stacked */
/* line 178, ../sass/partials/_general.scss */
.nav-stacked > li {
border: 1px solid #ddd;
}
/* line 181, ../sass/partials/_general.scss */
.nav-stacked > li:not(:first-child) {
border-top: none;
}
/* line 185, ../sass/partials/_general.scss */
.nav-stacked > li > a {
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
}
/* line 189, ../sass/partials/_general.scss */
.nav-stacked > li + li {
margin-top: 0;
}
/* line 195, ../sass/partials/_general.scss */
.control-inline {
display: -moz-inline-stack !important;
display: inline-block !important;
vertical-align: middle !important;
zoom: 1 !important;
margin-right: 10px;
}
/*------------------------------------------------*/
/* Launcher Menu
/*------------------------------------------------*/
/* line 7, ../sass/partials/_launcher.scss */
.modal-dialog-launcher {
width: 540px;
}
/* line 12, ../sass/partials/_launcher.scss */
#launcherModal .modal-body {
height: 480px;
}
/* line 15, ../sass/partials/_launcher.scss */
#launcherModal .container {
display: table;
}
/* line 18, ../sass/partials/_launcher.scss */
#launcherModal .tiles {
width: 540px;
vertical-align: middle;
display: table-cell;
}
/* line 23, ../sass/partials/_launcher.scss */
#launcherModal .row-tiles {
height: 80px;
width: 540px;
display: block;
clear: both;
margin: 0;
}
/* line 31, ../sass/partials/_launcher.scss */
#launcherModal .row-tiles .tile h3 {
position: absolute;
bottom: 8px;
line-height: 14px;
color: #fff;
font-weight: 700;
font-size: 12px;
width: 80px;
text-align: center;
margin-bottom: -1px;
}
/* line 44, ../sass/partials/_launcher.scss */
#launcherModal .row-tiles ul {
margin: 0;
}
/* line 48, ../sass/partials/_launcher.scss */
#launcherModal .tile img {
position: absolute;
left: 50%;
margin-left: -21px;
top: 50%;
margin-top: -34px;
}
/* line 55, ../sass/partials/_launcher.scss */
#launcherModal .tile {
height: 80px;
width: 80px;
position: relative;
float: left;
margin: 11px;
display: block;
line-height: 120%;
}
/* line 64, ../sass/partials/_launcher.scss */
#launcherModal .active {
background: #008CBC;
cursor: pointer;
}
/* line 68, ../sass/partials/_launcher.scss */
#launcherModal .active:hover {
opacity: .5;
}
/* line 71, ../sass/partials/_launcher.scss */
#launcherModal .inactive {
background: #bbb;
}
/*------------------------------------------------*/
/* Main Content
/*------------------------------------------------*/
/* line 5, ../sass/partials/_main-content.scss */
.content-wrapper {
padding: 15px 30px;
}
/* line 8, ../sass/partials/_main-content.scss */
.content-wrapper.expanded {
width: 100%;
padding-left: 65px;
}
@media screen and (max-width: 480px) {
/* line 5, ../sass/partials/_main-content.scss */
.content-wrapper {
padding: 15px;
}
}
/* line 18, ../sass/partials/_main-content.scss */
.breadcrumb {
background-color: inherit;
padding-left: 0;
}
/* line 22, ../sass/partials/_main-content.scss */
.breadcrumb a {
color: #555;
}
/* line 26, ../sass/partials/_main-content.scss */
.breadcrumb .fa {
font-size: 1.2em;
margin-right: 5px;
}
/* line 31, ../sass/partials/_main-content.scss */
.breadcrumb .active {
font-weight: 300;
}
/* top content, visible on every page */
@media screen and (max-width: 1199px) {
/* line 38, ../sass/partials/_main-content.scss */
div[class*="col-lg-"] .top-content {
text-align: center;
}
}
/* line 44, ../sass/partials/_main-content.scss */
.top-content {
text-align: right;
margin-bottom: 20px;
/* every page except dashboard */
}
/* line 49, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
margin-bottom: 0;
}
@media screen and (max-width: 992px) {
/* line 49, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat {
display: block;
}
}
/* line 58, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat > li {
border-left: 1px solid #ddd;
padding-left: 15px;
padding-right: 15px;
}
/* line 63, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat > li:first-child {
border-left: none;
}
@media screen and (max-width: 992px) {
/* line 58, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat > li {
width: 100%;
border-left: none;
padding-bottom: 15px;
}
}
@media screen and (min-width: 992px) {
/* line 58, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat > li {
padding-left: 10px;
padding-right: 10px;
}
}
/* line 79, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat h5 {
float: left;
margin: 0;
text-align: left;
font-size: 0.85em;
color: #888888;
}
/* line 86, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat h5 .stat-value {
display: block;
font-size: 1.5em;
margin-top: 3px;
}
/* line 91, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat h5 .stat-value.stat-color-seagreen {
color: #3F7577;
}
/* line 95, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat h5 .stat-value.stat-color-blue {
color: #1D92AF;
}
/* line 99, ../sass/partials/_main-content.scss */
.top-content ul.mini-stat h5 .stat-value.stat-color-orange {
color: #CE7B11;
}
/* line 106, ../sass/partials/_main-content.scss */
.top-content .mini-bar-chart {
display: block;
float: right;
margin: 6px 0 0 20px;
}
/* line 113, ../sass/partials/_main-content.scss */
.top-content ul.quick-access {
margin-bottom: 0;
}
/* line 116, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li {
width: 15em;
padding: 0;
}
@media screen and (max-width: 768px) {
/* line 116, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li {
width: 100%;
}
}
/* line 124, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li a, .top-content ul.quick-access > li a:focus, .top-content ul.quick-access > li a:hover {
text-decoration: none;
}
/* line 128, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item {
display: block;
position: relative;
background-color: #555;
color: #fff;
padding: 15px;
text-align: left;
overflow: hidden;
}
/* line 137, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item h5, .top-content ul.quick-access > li .quick-access-item p {
margin: 0;
}
/* line 141, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item em {
font-size: 0.85em;
}
/* line 145, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item .fa {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
opacity: 0.1;
-moz-transform: rotate(-20deg);
-ms-transform: rotate(-20deg);
-webkit-transform: rotate(-20deg);
transform: rotate(-20deg);
position: absolute;
top: 0.15em;
right: -0.1em;
font-size: 5em;
}
/* line 155, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item:hover .fa {
-moz-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
-webkit-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
}
/* line 159, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item.bg-color-green {
background-color: #859419;
}
/* line 162, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item.bg-color-blue {
background-color: #1D92AF;
}
/* line 165, ../sass/partials/_main-content.scss */
.top-content ul.quick-access > li .quick-access-item.bg-color-orange {
background-color: #CE7B11;
}
/* line 173, ../sass/partials/_main-content.scss */
.main-header {
margin-bottom: 50px;
}
/* line 176, ../sass/partials/_main-content.scss */
.main-header h2 {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
border-right: 1px solid #ccc;
margin: 0;
padding-right: 10px;
margin-right: 10px;
}
@media screen and (max-width: 768px) {
/* line 176, ../sass/partials/_main-content.scss */
.main-header h2 {
display: block;
border-right: none;
}
}
/* line 190, ../sass/partials/_main-content.scss */
.main-header em {
color: #bbbbbb;
}
/* line 198, ../sass/partials/_main-content.scss */
.bottom .container .content-wrapper {
background-color: #f1f1f1;
border-left: 1px solid #e4e4e4;
}
/* line 209, ../sass/partials/_main-content.scss */
.row-widget {
margin-bottom: 0;
}
/* line 213, ../sass/partials/_main-content.scss */
.widget {
border-width: 1px;
border-style: solid;
margin-bottom: 20px;
background-color: #f9f9f9;
border-color: lightgray;
}
/* line 220, ../sass/partials/_main-content.scss */
.widget.widget-table {
overflow: hidden;
}
/* line 224, ../sass/partials/_main-content.scss */
.widget.widget-hide-header {
border: none;
background: none;
}
/* line 229, ../sass/partials/_main-content.scss */
.widget.widget-focus-enabled {
z-index: 999;
position: relative;
}
/* line 234, ../sass/partials/_main-content.scss */
.widget .widget-header {
padding: 0 10px;
height: 35px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: lightgray;
background-color: #eeeeee;
}
@media screen and (max-width: 480px) {
/* line 234, ../sass/partials/_main-content.scss */
.widget .widget-header {
height: 100%;
}
}
/* line 246, ../sass/partials/_main-content.scss */
.widget .widget-header h3 {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
font-family: "Helvetica";
font-size: 1.1em;
margin: 0;
line-height: 35px;
float: left;
}
@media screen and (max-width: 480px) {
/* line 246, ../sass/partials/_main-content.scss */
.widget .widget-header h3 {
float: none;
}
}
/* line 260, ../sass/partials/_main-content.scss */
.widget .widget-header .fa {
margin-right: 5px;
}
/* line 264, ../sass/partials/_main-content.scss */
.widget .widget-header em {
float: left;
font-size: 0.9em;
color: #a4a4a4;
line-height: 35px;
margin-left: 4px;
}
@media screen and (max-width: 1279px) {
/* line 264, ../sass/partials/_main-content.scss */
.widget .widget-header em {
display: none;
}
}
/* line 276, ../sass/partials/_main-content.scss */
.widget .widget-header .btn-help {
float: left;
padding: 0;
position: relative;
top: 3px;
left: 3px;
}
@media screen and (max-width: 1279px) {
/* line 276, ../sass/partials/_main-content.scss */
.widget .widget-header .btn-help {
display: none;
}
}
/* line 289, ../sass/partials/_main-content.scss */
.widget .widget-header .btn-group > a {
color: #555;
}
/* line 294, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar {
float: right;
width: auto;
height: 35px;
border-left: 1px solid #ddd;
padding-left: 10px;
margin-left: 10px;
}
@media screen and (max-width: 480px) {
/* line 294, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar {
display: block;
float: none;
border-left: none;
margin-left: 0;
padding-left: 0;
}
}
/* line 310, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar > a {
margin-left: 5px;
}
/* line 314, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar.btn-init-hide {
display: none;
}
/* line 318, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar .control-title {
font-size: 0.9em;
color: #a4a4a4;
position: relative;
top: 1px;
}
/* line 325, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar .label {
position: relative;
top: 8px;
}
/* line 330, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar .toolbar-item-group {
padding-top: 0.3em;
height: 100%;
}
/* line 334, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar .toolbar-item-group .label {
position: relative;
top: 1px;
}
/* line 339, ../sass/partials/_main-content.scss */
.widget .widget-header .widget-header-toolbar .toolbar-item-group .mu